2019-04-11 14:45:22 +08:00
|
|
|
package cn.keking.config;
|
|
|
|
|
2022-12-15 18:19:30 +08:00
|
|
|
import cn.keking.utils.ConfigUtils;
|
2019-04-16 21:09:32 +08:00
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
import java.io.File;
|
2020-02-18 19:36:15 +08:00
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.Set;
|
2022-07-21 11:19:46 +08:00
|
|
|
import java.util.concurrent.CopyOnWriteArraySet;
|
2019-04-16 21:09:32 +08:00
|
|
|
|
2019-04-11 14:45:22 +08:00
|
|
|
/**
|
2020-05-15 18:09:19 +08:00
|
|
|
* @author: chenjh
|
|
|
|
* @since: 2019/4/10 17:22
|
2019-04-11 14:45:22 +08:00
|
|
|
*/
|
2019-04-16 21:09:32 +08:00
|
|
|
@Component
|
2019-04-11 14:45:22 +08:00
|
|
|
public class ConfigConstants {
|
|
|
|
|
2021-02-04 11:38:45 +08:00
|
|
|
static {
|
|
|
|
//pdfbox兼容低版本jdk
|
|
|
|
System.setProperty("sun.java2d.cmm", "sun.java2d.cmm.kcms.KcmsServiceProvider");
|
|
|
|
}
|
|
|
|
|
2021-03-12 21:32:01 +08:00
|
|
|
private static Boolean cacheEnabled;
|
|
|
|
private static String[] simTexts = {};
|
|
|
|
private static String[] medias = {};
|
2021-04-18 12:40:59 +08:00
|
|
|
private static String[] convertMedias = {};
|
|
|
|
private static String mediaConvertDisable;
|
2021-03-12 21:32:01 +08:00
|
|
|
private static String officePreviewType;
|
|
|
|
private static String officePreviewSwitchDisabled;
|
|
|
|
private static String ftpUsername;
|
|
|
|
private static String ftpPassword;
|
|
|
|
private static String ftpControlEncoding;
|
|
|
|
private static String baseUrl;
|
|
|
|
private static String fileDir = ConfigUtils.getHomePath() + File.separator + "file" + File.separator;
|
2021-11-25 13:47:51 +08:00
|
|
|
private static String localPreviewDir;
|
2021-03-12 21:32:01 +08:00
|
|
|
private static CopyOnWriteArraySet<String> trustHostSet;
|
2021-11-16 11:50:12 +08:00
|
|
|
private static String pdfPresentationModeDisable;
|
|
|
|
private static String pdfOpenFileDisable;
|
|
|
|
private static String pdfPrintDisable;
|
2021-03-12 21:32:01 +08:00
|
|
|
private static String pdfDownloadDisable;
|
2021-11-16 11:50:12 +08:00
|
|
|
private static String pdfBookmarkDisable;
|
2021-07-06 09:09:19 +08:00
|
|
|
private static Boolean fileUploadDisable;
|
2021-12-05 12:38:30 +08:00
|
|
|
private static String tifPreviewType;
|
2023-07-03 14:34:40 +08:00
|
|
|
private static String beian;
|
2023-05-06 16:51:06 +08:00
|
|
|
private static String[] prohibit = {};
|
2023-04-10 17:32:26 +08:00
|
|
|
private static String size;
|
|
|
|
private static String password;
|
2023-04-27 16:27:04 +08:00
|
|
|
private static int pdf2JpgDpi;
|
2023-06-02 14:55:32 +08:00
|
|
|
private static String officeTypeWeb;
|
2023-07-20 10:54:47 +08:00
|
|
|
private static String cadPreviewType;
|
2023-05-06 16:51:06 +08:00
|
|
|
private static Boolean deleteSourceFile;
|
2023-07-21 17:52:27 +08:00
|
|
|
private static Boolean deleteCaptcha;
|
2023-07-22 08:51:23 +08:00
|
|
|
private static String officePageRange;
|
|
|
|
private static String officeWatermark;
|
|
|
|
private static String officeQuality;
|
|
|
|
private static String officeMaxImageResolution;
|
|
|
|
private static Boolean officeExportBookmarks;
|
|
|
|
private static Boolean officeExportNotes;
|
|
|
|
private static Boolean officeDocumentOpenPasswords;
|
2019-04-11 14:45:22 +08:00
|
|
|
|
2020-02-18 19:36:15 +08:00
|
|
|
public static final String DEFAULT_CACHE_ENABLED = "true";
|
2020-05-15 18:09:19 +08:00
|
|
|
public static final String DEFAULT_TXT_TYPE = "txt,html,htm,asp,jsp,xml,json,properties,md,gitignore,log,java,py,c,cpp,sql,sh,bat,m,bas,prg,cmd";
|
2020-02-18 19:36:15 +08:00
|
|
|
public static final String DEFAULT_MEDIA_TYPE = "mp3,wav,mp4,flv";
|
2020-05-13 10:20:08 +08:00
|
|
|
public static final String DEFAULT_OFFICE_PREVIEW_TYPE = "image";
|
2020-12-25 18:19:30 +08:00
|
|
|
public static final String DEFAULT_OFFICE_PREVIEW_SWITCH_DISABLED = "false";
|
2020-02-18 19:36:15 +08:00
|
|
|
public static final String DEFAULT_FTP_USERNAME = null;
|
|
|
|
public static final String DEFAULT_FTP_PASSWORD = null;
|
|
|
|
public static final String DEFAULT_FTP_CONTROL_ENCODING = "UTF-8";
|
|
|
|
public static final String DEFAULT_BASE_URL = "default";
|
2020-05-13 10:20:08 +08:00
|
|
|
public static final String DEFAULT_FILE_DIR_VALUE = "default";
|
2021-11-25 13:47:51 +08:00
|
|
|
public static final String DEFAULT_LOCAL_PREVIEW_DIR_VALUE = "default";
|
2020-02-18 19:36:15 +08:00
|
|
|
public static final String DEFAULT_TRUST_HOST = "default";
|
2021-11-16 11:50:12 +08:00
|
|
|
public static final String DEFAULT_PDF_PRESENTATION_MODE_DISABLE = "true";
|
|
|
|
public static final String DEFAULT_PDF_OPEN_FILE_DISABLE = "true";
|
|
|
|
public static final String DEFAULT_PDF_PRINT_DISABLE = "true";
|
2020-05-14 19:28:21 +08:00
|
|
|
public static final String DEFAULT_PDF_DOWNLOAD_DISABLE = "true";
|
2021-11-16 11:50:12 +08:00
|
|
|
public static final String DEFAULT_PDF_BOOKMARK_DISABLE = "true";
|
2021-07-06 09:09:19 +08:00
|
|
|
public static final String DEFAULT_FILE_UPLOAD_DISABLE = "false";
|
2021-12-09 17:19:15 +08:00
|
|
|
public static final String DEFAULT_TIF_PREVIEW_TYPE = "tif";
|
2023-07-20 10:54:47 +08:00
|
|
|
public static final String DEFAULT_CAD_PREVIEW_TYPE = "pdf";
|
2023-05-06 16:51:06 +08:00
|
|
|
public static final String DEFAULT_BEIAN = "无";
|
|
|
|
public static final String DEFAULT_SIZE = "500MB";
|
|
|
|
public static final String DEFAULT_PROHIBIT = "exe,dll";
|
|
|
|
public static final String DEFAULT_PASSWORD = "123456";
|
2023-05-06 16:53:15 +08:00
|
|
|
public static final String DEFAULT_PDF2_JPG_DPI = "105";
|
2023-06-19 09:14:53 +08:00
|
|
|
public static final String DEFAULT_OFFICE_TYPE_WEB = "web";
|
2023-05-06 16:51:06 +08:00
|
|
|
public static final String DEFAULT_DELETE_SOURCE_FILE = "true";
|
2023-07-21 17:52:27 +08:00
|
|
|
public static final String DEFAULT_DELETE_CAPTCHA = "false";
|
2021-03-12 21:32:01 +08:00
|
|
|
|
2023-07-22 08:51:23 +08:00
|
|
|
|
|
|
|
public static final String DEFAULT_OFFICE_PAQERANQE = "false";
|
|
|
|
public static final String DEFAULT_OFFICE_WATERMARK = "false";
|
|
|
|
public static final String DEFAULT_OFFICE_QUALITY = "80";
|
|
|
|
public static final String DEFAULT_OFFICE_MAXIMAQERESOLUTION = "150";
|
|
|
|
public static final String DEFAULT_OFFICE_EXPORTBOOKMARKS = "true";
|
|
|
|
public static final String DEFAULT_OFFICE_EXPORTNOTES = "true";
|
|
|
|
public static final String DEFAULT_EOCUMENTOPENPASSWORDS = "true";
|
|
|
|
|
2019-08-22 15:22:05 +08:00
|
|
|
public static Boolean isCacheEnabled() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return cacheEnabled;
|
2019-08-22 15:22:05 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
@Value("${cache.enabled:true}")
|
2020-05-18 09:46:52 +08:00
|
|
|
public void setCacheEnabled(String cacheEnabled) {
|
2020-05-15 18:09:19 +08:00
|
|
|
setCacheEnabledValueValue(Boolean.parseBoolean(cacheEnabled));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setCacheEnabledValueValue(Boolean cacheEnabled) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.cacheEnabled = cacheEnabled;
|
2019-08-22 15:22:05 +08:00
|
|
|
}
|
|
|
|
|
2019-04-11 14:45:22 +08:00
|
|
|
public static String[] getSimText() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return simTexts;
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
@Value("${simText:txt,html,htm,asp,jsp,xml,json,properties,md,gitignore,log,java,py,c,cpp,sql,sh,bat,m,bas,prg,cmd}")
|
|
|
|
public void setSimText(String simText) {
|
|
|
|
String[] simTextArr = simText.split(",");
|
|
|
|
setSimTextValue(simTextArr);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setSimTextValue(String[] simText) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.simTexts = simText;
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public static String[] getMedia() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return medias;
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
@Value("${media:mp3,wav,mp4,flv}")
|
|
|
|
public void setMedia(String media) {
|
|
|
|
String[] mediaArr = media.split(",");
|
|
|
|
setMediaValue(mediaArr);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setMediaValue(String[] Media) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.medias = Media;
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|
|
|
|
|
2021-04-18 12:40:59 +08:00
|
|
|
public static String[] getConvertMedias() {
|
|
|
|
return convertMedias;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${convertMedias:avi,mov,wmv,mkv,3gp,rm}")
|
|
|
|
public void setConvertMedias(String convertMedia) {
|
|
|
|
String[] mediaArr = convertMedia.split(",");
|
|
|
|
setConvertMediaValue(mediaArr);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setConvertMediaValue(String[] ConvertMedia) {
|
|
|
|
ConfigConstants.convertMedias = ConvertMedia;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getMediaConvertDisable() {
|
|
|
|
return mediaConvertDisable;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Value("${media.convert.disable:true}")
|
|
|
|
public void setMediaConvertDisable(String mediaConvertDisable) {
|
|
|
|
setMediaConvertDisableValue(mediaConvertDisable);
|
|
|
|
}
|
|
|
|
public static void setMediaConvertDisableValue(String mediaConvertDisable) {
|
|
|
|
ConfigConstants.mediaConvertDisable = mediaConvertDisable;
|
|
|
|
}
|
|
|
|
|
2019-04-25 18:39:58 +08:00
|
|
|
public static String getOfficePreviewType() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return officePreviewType;
|
2019-04-25 18:39:58 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
@Value("${office.preview.type:image}")
|
|
|
|
public void setOfficePreviewType(String officePreviewType) {
|
|
|
|
setOfficePreviewTypeValue(officePreviewType);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setOfficePreviewTypeValue(String officePreviewType) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.officePreviewType = officePreviewType;
|
2019-04-25 18:39:58 +08:00
|
|
|
}
|
|
|
|
|
2019-06-19 14:18:09 +08:00
|
|
|
public static String getFtpUsername() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return ftpUsername;
|
2019-06-19 14:18:09 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
@Value("${ftp.username:}")
|
|
|
|
public void setFtpUsername(String ftpUsername) {
|
|
|
|
setFtpUsernameValue(ftpUsername);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setFtpUsernameValue(String ftpUsername) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.ftpUsername = ftpUsername;
|
2019-06-19 14:18:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public static String getFtpPassword() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return ftpPassword;
|
2019-06-19 14:18:09 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
@Value("${ftp.password:}")
|
|
|
|
public void setFtpPassword(String ftpPassword) {
|
|
|
|
setFtpPasswordValue(ftpPassword);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setFtpPasswordValue(String ftpPassword) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.ftpPassword = ftpPassword;
|
2019-06-19 14:18:09 +08:00
|
|
|
}
|
|
|
|
|
2020-05-13 10:20:08 +08:00
|
|
|
public static String getFtpControlEncoding() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return ftpControlEncoding;
|
2019-06-19 14:18:09 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
@Value("${ftp.control.encoding:UTF-8}")
|
|
|
|
public void setFtpControlEncoding(String ftpControlEncoding) {
|
|
|
|
setFtpControlEncodingValue(ftpControlEncoding);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setFtpControlEncodingValue(String ftpControlEncoding) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.ftpControlEncoding = ftpControlEncoding;
|
2019-04-16 21:09:32 +08:00
|
|
|
}
|
|
|
|
|
2019-10-17 10:59:38 +08:00
|
|
|
public static String getBaseUrl() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return baseUrl;
|
2019-10-17 10:59:38 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
@Value("${base.url:default}")
|
|
|
|
public void setBaseUrl(String baseUrl) {
|
|
|
|
setBaseUrlValue(baseUrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setBaseUrlValue(String baseUrl) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.baseUrl = baseUrl;
|
2020-05-13 10:20:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public static String getFileDir() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return fileDir;
|
2019-10-17 10:59:38 +08:00
|
|
|
}
|
|
|
|
|
2019-04-16 21:09:32 +08:00
|
|
|
@Value("${file.dir:default}")
|
|
|
|
public void setFileDir(String fileDir) {
|
2020-05-15 18:09:19 +08:00
|
|
|
setFileDirValue(fileDir);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setFileDirValue(String fileDir) {
|
2020-12-26 00:56:48 +08:00
|
|
|
if (!DEFAULT_FILE_DIR_VALUE.equalsIgnoreCase(fileDir)) {
|
2019-04-16 21:09:32 +08:00
|
|
|
if (!fileDir.endsWith(File.separator)) {
|
|
|
|
fileDir = fileDir + File.separator;
|
|
|
|
}
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.fileDir = fileDir;
|
2019-04-16 21:09:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-25 13:47:51 +08:00
|
|
|
public static String getLocalPreviewDir() {
|
|
|
|
return localPreviewDir;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${local.preview.dir:default}")
|
|
|
|
public void setLocalPreviewDir(String localPreviewDir) {
|
|
|
|
setLocalPreviewDirValue(localPreviewDir);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setLocalPreviewDirValue(String localPreviewDir) {
|
|
|
|
if (!DEFAULT_LOCAL_PREVIEW_DIR_VALUE.equals(localPreviewDir)) {
|
|
|
|
if (!localPreviewDir.endsWith(File.separator)) {
|
|
|
|
localPreviewDir = localPreviewDir + File.separator;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ConfigConstants.localPreviewDir = localPreviewDir;
|
|
|
|
}
|
|
|
|
|
2020-05-13 10:20:08 +08:00
|
|
|
@Value("${trust.host:default}")
|
2020-05-15 18:09:19 +08:00
|
|
|
public void setTrustHost(String trustHost) {
|
|
|
|
setTrustHostValue(trustHost);
|
2020-02-18 19:36:15 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
public static void setTrustHostValue(String trustHost) {
|
2020-05-13 10:20:08 +08:00
|
|
|
CopyOnWriteArraySet<String> trustHostSet;
|
2020-12-26 00:56:48 +08:00
|
|
|
if (DEFAULT_TRUST_HOST.equalsIgnoreCase(trustHost)) {
|
2020-05-13 10:20:08 +08:00
|
|
|
trustHostSet = new CopyOnWriteArraySet<>();
|
2020-02-18 19:36:15 +08:00
|
|
|
} else {
|
|
|
|
String[] trustHostArray = trustHost.toLowerCase().split(",");
|
2020-05-13 10:20:08 +08:00
|
|
|
trustHostSet = new CopyOnWriteArraySet<>(Arrays.asList(trustHostArray));
|
|
|
|
setTrustHostSet(trustHostSet);
|
2020-02-18 19:36:15 +08:00
|
|
|
}
|
2020-05-13 10:20:08 +08:00
|
|
|
setTrustHostSet(trustHostSet);
|
2020-02-18 19:36:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public static Set<String> getTrustHostSet() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return trustHostSet;
|
2020-02-18 19:36:15 +08:00
|
|
|
}
|
|
|
|
|
2020-05-13 10:20:08 +08:00
|
|
|
private static void setTrustHostSet(CopyOnWriteArraySet<String> trustHostSet) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.trustHostSet = trustHostSet;
|
2020-02-18 19:36:15 +08:00
|
|
|
}
|
2020-05-14 19:28:21 +08:00
|
|
|
|
2021-11-16 11:50:12 +08:00
|
|
|
public static String getPdfPresentationModeDisable() {
|
|
|
|
return pdfPresentationModeDisable;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${pdf.presentationMode.disable:true}")
|
|
|
|
public void setPdfPresentationModeDisable(String pdfPresentationModeDisable) {
|
|
|
|
setPdfPresentationModeDisableValue(pdfPresentationModeDisable);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setPdfPresentationModeDisableValue(String pdfPresentationModeDisable) {
|
|
|
|
ConfigConstants.pdfPresentationModeDisable = pdfPresentationModeDisable;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getPdfOpenFileDisable() {
|
|
|
|
return pdfOpenFileDisable;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${pdf.openFile.disable:true}")
|
2022-12-13 18:17:20 +08:00
|
|
|
public void setPdfOpenFileDisable(String pdfOpenFileDisable) {
|
2021-11-16 11:50:12 +08:00
|
|
|
setPdfOpenFileDisableValue(pdfOpenFileDisable);
|
|
|
|
}
|
|
|
|
public static void setPdfOpenFileDisableValue(String pdfOpenFileDisable) {
|
|
|
|
ConfigConstants.pdfOpenFileDisable = pdfOpenFileDisable;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getPdfPrintDisable() {
|
|
|
|
return pdfPrintDisable;
|
|
|
|
}
|
|
|
|
@Value("${pdf.print.disable:true}")
|
2022-12-13 18:17:20 +08:00
|
|
|
public void setPdfPrintDisable(String pdfPrintDisable) {
|
2021-11-16 11:50:12 +08:00
|
|
|
setPdfPrintDisableValue(pdfPrintDisable);
|
|
|
|
}
|
|
|
|
public static void setPdfPrintDisableValue(String pdfPrintDisable) {
|
|
|
|
ConfigConstants.pdfPrintDisable = pdfPrintDisable;
|
|
|
|
}
|
|
|
|
|
2020-05-14 19:28:21 +08:00
|
|
|
public static String getPdfDownloadDisable() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return pdfDownloadDisable;
|
2020-05-14 19:28:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${pdf.download.disable:true}")
|
|
|
|
public void setPdfDownloadDisable(String pdfDownloadDisable) {
|
2020-05-15 18:09:19 +08:00
|
|
|
setPdfDownloadDisableValue(pdfDownloadDisable);
|
|
|
|
}
|
|
|
|
public static void setPdfDownloadDisableValue(String pdfDownloadDisable) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.pdfDownloadDisable = pdfDownloadDisable;
|
2020-05-14 19:28:21 +08:00
|
|
|
}
|
2020-05-15 18:09:19 +08:00
|
|
|
|
2021-11-16 11:50:12 +08:00
|
|
|
public static String getPdfBookmarkDisable() {
|
|
|
|
return pdfBookmarkDisable;
|
|
|
|
}
|
|
|
|
@Value("${pdf.bookmark.disable:true}")
|
|
|
|
public void setPdfBookmarkDisable(String pdfBookmarkDisable) {
|
|
|
|
setPdfBookmarkDisableValue(pdfBookmarkDisable);
|
|
|
|
}
|
|
|
|
public static void setPdfBookmarkDisableValue(String pdfBookmarkDisable) {
|
|
|
|
ConfigConstants.pdfBookmarkDisable = pdfBookmarkDisable;
|
|
|
|
}
|
|
|
|
|
2020-12-25 18:19:30 +08:00
|
|
|
public static String getOfficePreviewSwitchDisabled() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return officePreviewSwitchDisabled;
|
2020-12-25 18:19:30 +08:00
|
|
|
}
|
|
|
|
@Value("${office.preview.switch.disabled:true}")
|
2020-12-26 00:56:48 +08:00
|
|
|
public void setOfficePreviewSwitchDisabled(String officePreviewSwitchDisabled) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.officePreviewSwitchDisabled = officePreviewSwitchDisabled;
|
2020-12-26 00:56:48 +08:00
|
|
|
}
|
|
|
|
public static void setOfficePreviewSwitchDisabledValue(String officePreviewSwitchDisabled) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.officePreviewSwitchDisabled = officePreviewSwitchDisabled;
|
2020-12-25 18:19:30 +08:00
|
|
|
}
|
2021-03-12 21:32:01 +08:00
|
|
|
|
2021-07-06 09:09:19 +08:00
|
|
|
public static Boolean getFileUploadDisable() {
|
|
|
|
return fileUploadDisable;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${file.upload.disable:false}")
|
2022-12-13 18:17:20 +08:00
|
|
|
public void setFileUploadDisable(Boolean fileUploadDisable) {
|
2021-07-06 09:09:19 +08:00
|
|
|
setFileUploadDisableValue(fileUploadDisable);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setFileUploadDisableValue(Boolean fileUploadDisable) {
|
|
|
|
ConfigConstants.fileUploadDisable = fileUploadDisable;
|
|
|
|
}
|
2021-12-05 12:38:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
public static String getTifPreviewType() {
|
|
|
|
return tifPreviewType;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${tif.preview.type:tif}")
|
|
|
|
public void setTifPreviewType(String tifPreviewType) {
|
|
|
|
setTifPreviewTypeValue(tifPreviewType);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setTifPreviewTypeValue(String tifPreviewType) {
|
|
|
|
ConfigConstants.tifPreviewType = tifPreviewType;
|
|
|
|
}
|
2023-04-10 17:32:26 +08:00
|
|
|
|
2023-07-03 14:34:40 +08:00
|
|
|
public static String getBeian() {
|
|
|
|
return beian;
|
2023-04-10 17:32:26 +08:00
|
|
|
}
|
2023-07-03 14:34:40 +08:00
|
|
|
@Value("${beian:default}")
|
|
|
|
public void setBeian(String beian) {
|
|
|
|
setBeianValue(beian);
|
2023-04-10 17:32:26 +08:00
|
|
|
}
|
2023-07-03 14:34:40 +08:00
|
|
|
public static void setBeianValue(String beian) {
|
|
|
|
ConfigConstants.beian = beian;
|
2023-04-10 17:32:26 +08:00
|
|
|
}
|
2023-05-06 16:51:06 +08:00
|
|
|
public static String[] getProhibit() {
|
2023-04-10 17:32:26 +08:00
|
|
|
return prohibit;
|
|
|
|
}
|
|
|
|
@Value("${prohibit:exe,dll}")
|
2023-05-06 16:51:06 +08:00
|
|
|
public void setProhibit(String prohibit) {
|
|
|
|
String[] prohibitArr = prohibit.split(",");
|
|
|
|
setProhibitValue(prohibitArr);
|
2023-04-10 17:32:26 +08:00
|
|
|
}
|
|
|
|
|
2023-05-06 16:51:06 +08:00
|
|
|
public static void setProhibitValue(String[] prohibit) {
|
2023-04-10 17:32:26 +08:00
|
|
|
ConfigConstants.prohibit = prohibit;
|
|
|
|
}
|
2023-05-06 16:51:06 +08:00
|
|
|
public static String maxSize() {
|
2023-04-10 17:32:26 +08:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
@Value("${spring.servlet.multipart.max-file-size:500MB}")
|
2023-05-06 16:51:06 +08:00
|
|
|
public void setSize(String size) {
|
|
|
|
setSizeValue(size);
|
2023-04-10 17:32:26 +08:00
|
|
|
}
|
2023-05-06 16:51:06 +08:00
|
|
|
public static void setSizeValue(String size) {
|
2023-04-10 17:32:26 +08:00
|
|
|
ConfigConstants.size = size;
|
|
|
|
}
|
|
|
|
|
2023-05-06 16:51:06 +08:00
|
|
|
public static String getPassword() {
|
2023-04-10 17:32:26 +08:00
|
|
|
return password;
|
|
|
|
}
|
2023-06-18 09:50:31 +08:00
|
|
|
@Value("${delete.password:123456}")
|
2023-05-06 16:51:06 +08:00
|
|
|
public void setPassword(String password) {
|
|
|
|
setPasswordValue(password);
|
2023-04-10 17:32:26 +08:00
|
|
|
}
|
2023-05-06 16:51:06 +08:00
|
|
|
public static void setPasswordValue(String password) {
|
2023-04-10 17:32:26 +08:00
|
|
|
ConfigConstants.password = password;
|
|
|
|
}
|
|
|
|
|
2023-04-27 16:27:04 +08:00
|
|
|
|
2023-05-06 16:51:06 +08:00
|
|
|
public static int getPdf2JpgDpi() {
|
2023-04-27 16:27:04 +08:00
|
|
|
return pdf2JpgDpi;
|
|
|
|
}
|
2023-06-02 14:55:32 +08:00
|
|
|
@Value("${pdf2jpg.dpi:105}")
|
2023-04-27 16:27:04 +08:00
|
|
|
public void pdf2JpgDpi(int pdf2JpgDpi) {
|
2023-05-06 16:51:06 +08:00
|
|
|
setPdf2JpgDpiValue(pdf2JpgDpi);
|
2023-04-27 16:27:04 +08:00
|
|
|
}
|
2023-05-06 16:51:06 +08:00
|
|
|
public static void setPdf2JpgDpiValue(int pdf2JpgDpi) {
|
2023-04-27 16:27:04 +08:00
|
|
|
ConfigConstants.pdf2JpgDpi = pdf2JpgDpi;
|
|
|
|
}
|
|
|
|
|
2023-06-19 09:14:53 +08:00
|
|
|
public static String getOfficeTypeWeb() {
|
2023-06-02 14:55:32 +08:00
|
|
|
return officeTypeWeb;
|
|
|
|
}
|
|
|
|
@Value("${office.type.web:web}")
|
2023-06-19 09:14:53 +08:00
|
|
|
public void setOfficeTypeWeb(String officeTypeWeb) {
|
|
|
|
setOfficeTypeWebValue(officeTypeWeb);
|
2023-06-02 14:55:32 +08:00
|
|
|
}
|
2023-06-19 09:14:53 +08:00
|
|
|
public static void setOfficeTypeWebValue(String officeTypeWeb) {
|
2023-06-02 14:55:32 +08:00
|
|
|
ConfigConstants.officeTypeWeb = officeTypeWeb;
|
|
|
|
}
|
|
|
|
|
2023-04-27 16:27:04 +08:00
|
|
|
|
2023-05-06 16:51:06 +08:00
|
|
|
public static Boolean getDeleteSourceFile() {
|
|
|
|
return deleteSourceFile;
|
2023-04-21 09:56:46 +08:00
|
|
|
}
|
|
|
|
|
2023-04-21 11:31:27 +08:00
|
|
|
@Value("${delete.source.file:true}")
|
2023-05-06 16:51:06 +08:00
|
|
|
public void setDeleteSourceFile(Boolean deleteSourceFile) {
|
|
|
|
setDeleteSourceFileValue(deleteSourceFile);
|
2023-04-21 09:56:46 +08:00
|
|
|
}
|
|
|
|
|
2023-07-21 17:52:27 +08:00
|
|
|
public static void setDeleteSourceFileValue(Boolean deleteSourceFile) {
|
|
|
|
ConfigConstants.deleteSourceFile = deleteSourceFile;
|
|
|
|
}
|
2023-07-20 10:54:47 +08:00
|
|
|
|
|
|
|
public static String getCadPreviewType() {
|
|
|
|
return cadPreviewType;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${cad.preview.type:pdf}")
|
|
|
|
public void setCadPreviewType(String cadPreviewType) {
|
|
|
|
setCadPreviewTypeValue(cadPreviewType);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setCadPreviewTypeValue(String cadPreviewType) {
|
|
|
|
ConfigConstants.cadPreviewType = cadPreviewType;
|
|
|
|
}
|
|
|
|
|
2023-07-21 17:52:27 +08:00
|
|
|
public static Boolean getDeleteCaptcha() {
|
|
|
|
return deleteCaptcha;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${delete.captcha:false}")
|
|
|
|
public void setDeleteCaptcha(Boolean deleteCaptcha) {
|
|
|
|
setDeleteCaptchaValue(deleteCaptcha);
|
2023-04-21 09:56:46 +08:00
|
|
|
}
|
|
|
|
|
2023-07-21 17:52:27 +08:00
|
|
|
public static void setDeleteCaptchaValue(Boolean deleteCaptcha) {
|
|
|
|
ConfigConstants.deleteCaptcha = deleteCaptcha;
|
|
|
|
}
|
2023-07-22 08:51:23 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 以下为OFFICE转换模块设置
|
|
|
|
*/
|
|
|
|
|
|
|
|
public static String getofficePageRange() {
|
|
|
|
return officePageRange;
|
|
|
|
}
|
|
|
|
@Value("${office.pagerange:false}")
|
|
|
|
public void setOfficePageRange(String officepagerange) {
|
|
|
|
setOfficePageRangeValue(officepagerange);
|
|
|
|
}
|
|
|
|
public static void setOfficePageRangeValue(String officepagerange) {
|
|
|
|
ConfigConstants.officePageRange = officepagerange;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getofficeWatermark() {
|
|
|
|
return officeWatermark;
|
|
|
|
}
|
|
|
|
@Value("${office.watermark:false}")
|
|
|
|
public void setOfficeWatermark(String officewatermark) {
|
|
|
|
setOfficeWatermarkValue(officewatermark);
|
|
|
|
}
|
|
|
|
public static void setOfficeWatermarkValue(String officewatermark) {
|
|
|
|
ConfigConstants.officeWatermark = officewatermark;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getofficeQuality() {
|
|
|
|
return officeQuality;
|
|
|
|
}
|
|
|
|
@Value("${office.Quality:80}")
|
|
|
|
public void setOfficeQuality(String officequality) {
|
|
|
|
setOfficeQualityValue(officequality);
|
|
|
|
}
|
|
|
|
public static void setOfficeQualityValue(String officequality) {
|
|
|
|
ConfigConstants.officeQuality = officequality;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getofficeMaxImageResolution() {
|
|
|
|
return officeMaxImageResolution;
|
|
|
|
}
|
|
|
|
@Value("${office.maximageresolution:150}")
|
|
|
|
public void setofficeMaxImageResolution(String officemaximageresolution) {
|
|
|
|
setOfficeMaxImageResolutionValue(officemaximageresolution);
|
|
|
|
}
|
|
|
|
public static void setOfficeMaxImageResolutionValue(String officemaximageresolution) {
|
|
|
|
ConfigConstants.officeMaxImageResolution = officemaximageresolution;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Boolean getofficeExportBookmarks() {
|
|
|
|
return officeExportBookmarks;
|
|
|
|
}
|
|
|
|
@Value("${office.exportbookmarks:true}")
|
|
|
|
public void setofficeExportBookmarks(Boolean officeexportbookmarks) {
|
|
|
|
setOfficeExportBookmarksValue(officeexportbookmarks);
|
|
|
|
}
|
|
|
|
public static void setOfficeExportBookmarksValue(Boolean officeexportbookmarks) {
|
|
|
|
ConfigConstants.officeExportBookmarks = officeexportbookmarks;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Boolean getofficeExportNotes() {
|
|
|
|
return officeExportNotes;
|
|
|
|
}
|
|
|
|
@Value("${office.exportnotes:true}")
|
|
|
|
public void setExportNotes(Boolean officeofficeexportnotes) {
|
|
|
|
setOfficeExportNotesValue(officeofficeexportnotes);
|
|
|
|
}
|
|
|
|
public static void setOfficeExportNotesValue(Boolean officeofficeexportnotes) {
|
|
|
|
ConfigConstants.officeExportNotes = officeofficeexportnotes;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Boolean getofficeDocumentOpenPasswords() {
|
|
|
|
return officeDocumentOpenPasswords;
|
|
|
|
}
|
|
|
|
@Value("${office.documentopenpasswords:true}")
|
|
|
|
public void setDocumentOpenPasswords(Boolean officedocumentopenpasswords) {
|
|
|
|
setOfficeDocumentOpenPasswordsValue(officedocumentopenpasswords);
|
|
|
|
}
|
|
|
|
public static void setOfficeDocumentOpenPasswordsValue(Boolean officedocumentopenpasswords) {
|
|
|
|
ConfigConstants.officeDocumentOpenPasswords = officedocumentopenpasswords;
|
|
|
|
}
|
|
|
|
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|