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
|
|
|
*/
|
2023-08-14 20:19:28 +08:00
|
|
|
@Component(value = ConfigConstants.BEAN_NAME)
|
2019-04-11 14:45:22 +08:00
|
|
|
public class ConfigConstants {
|
2023-08-14 20:19:28 +08:00
|
|
|
public static final String BEAN_NAME = "configConstants";
|
2024-03-06 19:49:59 +08:00
|
|
|
|
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;
|
2024-03-06 19:49:59 +08:00
|
|
|
private static CopyOnWriteArraySet<String> notTrustHostSet;
|
2021-11-16 11:50:12 +08:00
|
|
|
private static String pdfPresentationModeDisable;
|
2023-08-16 09:04:12 +08:00
|
|
|
private static String pdfDisableEditing;
|
2021-11-16 11:50:12 +08:00
|
|
|
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;
|
2023-07-22 09:19:09 +08:00
|
|
|
private static String cadTimeout;
|
|
|
|
private static int cadThread;
|
2024-03-06 19:49:59 +08:00
|
|
|
private static String homePageNumber;
|
2023-08-22 10:16:02 +08:00
|
|
|
private static String homePagination;
|
|
|
|
private static String homePageSize;
|
|
|
|
private static String homeSearch;
|
2024-05-20 10:12:11 +08:00
|
|
|
private static int pdfTimeout;
|
|
|
|
private static int pdfTimeout80;
|
|
|
|
private static int pdfTimeout200;
|
|
|
|
private static int pdfThread;
|
2019-04-11 14:45:22 +08:00
|
|
|
|
2020-02-18 19:36:15 +08:00
|
|
|
public static final String DEFAULT_CACHE_ENABLED = "true";
|
2023-07-24 09:47:04 +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,xbrl";
|
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";
|
2024-03-06 19:49:59 +08:00
|
|
|
public static final String DEFAULT_VALUE = "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";
|
2023-08-16 09:04:12 +08:00
|
|
|
public static final String DEFAULT_PDF_DISABLE_EDITING = "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";
|
2023-07-22 09:19:09 +08:00
|
|
|
public static final String DEFAULT_CAD_TIMEOUT = "90";
|
|
|
|
public static final String DEFAULT_CAD_THREAD = "5";
|
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";
|
2023-07-22 13:42:29 +08:00
|
|
|
public static final String DEFAULT_OFFICE_EOCUMENTOPENPASSWORDS = "true";
|
2023-08-22 10:16:02 +08:00
|
|
|
public static final String DEFAULT_HOME_PAGENUMBER = "1";
|
|
|
|
public static final String DEFAULT_HOME_PAGINATION = "true";
|
|
|
|
public static final String DEFAULT_HOME_PAGSIZE = "15";
|
|
|
|
public static final String DEFAULT_HOME_SEARCH = "true";
|
2024-05-20 10:12:11 +08:00
|
|
|
public static final String DEFAULT_PDF_TIMEOUT = "90";
|
|
|
|
public static final String DEFAULT_PDF_TIMEOUT80 = "180";
|
|
|
|
public static final String DEFAULT_PDF_TIMEOUT200 = "300";
|
|
|
|
public static final String DEFAULT_PDF_THREAD = "5";
|
2024-03-06 19:49:59 +08:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2023-07-24 09:47:04 +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,xbrl}")
|
2020-05-15 18:09:19 +08:00
|
|
|
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);
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2021-04-18 12:40:59 +08:00
|
|
|
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) {
|
2024-03-06 19:49:59 +08:00
|
|
|
if (!DEFAULT_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) {
|
2024-03-06 19:49:59 +08:00
|
|
|
if (!DEFAULT_VALUE.equals(localPreviewDir)) {
|
2021-11-25 13:47:51 +08:00
|
|
|
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) {
|
2024-03-06 19:49:59 +08:00
|
|
|
setTrustHostSet(getHostValue(trustHost));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setTrustHostValue(String trustHost){
|
|
|
|
setTrustHostSet(getHostValue(trustHost));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${not.trust.host:default}")
|
|
|
|
public void setNotTrustHost(String notTrustHost) {
|
|
|
|
setNotTrustHostSet(getHostValue(notTrustHost));
|
2020-02-18 19:36:15 +08:00
|
|
|
}
|
|
|
|
|
2024-03-06 19:49:59 +08:00
|
|
|
public static void setNotTrustHostValue(String notTrustHost){
|
|
|
|
setNotTrustHostSet(getHostValue(notTrustHost));
|
|
|
|
}
|
|
|
|
|
|
|
|
private static CopyOnWriteArraySet<String> getHostValue(String trustHost) {
|
|
|
|
if (DEFAULT_VALUE.equalsIgnoreCase(trustHost)) {
|
|
|
|
return new CopyOnWriteArraySet<>();
|
2020-02-18 19:36:15 +08:00
|
|
|
} else {
|
|
|
|
String[] trustHostArray = trustHost.toLowerCase().split(",");
|
2024-03-06 19:49:59 +08:00
|
|
|
return new CopyOnWriteArraySet<>(Arrays.asList(trustHostArray));
|
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
|
|
|
|
2024-03-06 19:49:59 +08:00
|
|
|
public static Set<String> getNotTrustHostSet() {
|
|
|
|
return notTrustHostSet;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setNotTrustHostSet(CopyOnWriteArraySet<String> notTrustHostSet) {
|
|
|
|
ConfigConstants.notTrustHostSet = notTrustHostSet;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2021-11-16 11:50:12 +08:00
|
|
|
public static void setPdfOpenFileDisableValue(String pdfOpenFileDisable) {
|
|
|
|
ConfigConstants.pdfOpenFileDisable = pdfOpenFileDisable;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getPdfPrintDisable() {
|
|
|
|
return pdfPrintDisable;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2021-11-16 11:50:12 +08:00
|
|
|
@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);
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2021-11-16 11:50:12 +08:00
|
|
|
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);
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
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;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2021-11-16 11:50:12 +08:00
|
|
|
@Value("${pdf.bookmark.disable:true}")
|
|
|
|
public void setPdfBookmarkDisable(String pdfBookmarkDisable) {
|
|
|
|
setPdfBookmarkDisableValue(pdfBookmarkDisable);
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2021-11-16 11:50:12 +08:00
|
|
|
public static void setPdfBookmarkDisableValue(String pdfBookmarkDisable) {
|
|
|
|
ConfigConstants.pdfBookmarkDisable = pdfBookmarkDisable;
|
|
|
|
}
|
|
|
|
|
2023-08-16 09:04:12 +08:00
|
|
|
|
|
|
|
public static String getPdfDisableEditing() {
|
|
|
|
return pdfDisableEditing;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-08-16 09:04:12 +08:00
|
|
|
@Value("${pdf.disable.editing:true}")
|
|
|
|
public void setpdfDisableEditing(String pdfDisableEditing) {
|
|
|
|
setPdfDisableEditingValue(pdfDisableEditing);
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-08-16 09:04:12 +08:00
|
|
|
public static void setPdfDisableEditingValue(String pdfDisableEditing) {
|
|
|
|
ConfigConstants.pdfDisableEditing = pdfDisableEditing;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
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
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
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-05-06 16:51:06 +08:00
|
|
|
public static String[] getProhibit() {
|
2023-04-10 17:32:26 +08:00
|
|
|
return prohibit;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-04-10 17:32:26 +08:00
|
|
|
@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;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-05-06 16:51:06 +08:00
|
|
|
public static String maxSize() {
|
2023-04-10 17:32:26 +08:00
|
|
|
return size;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-04-10 17:32:26 +08:00
|
|
|
@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
|
|
|
}
|
2024-03-06 19:49:59 +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;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
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
|
|
|
}
|
2024-03-06 19:49:59 +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;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
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
|
|
|
}
|
2024-03-06 19:49:59 +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;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-06-02 14:55:32 +08:00
|
|
|
@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
|
|
|
}
|
2024-03-06 19:49:59 +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
|
|
|
|
2023-07-22 09:19:09 +08:00
|
|
|
public static Boolean getDeleteCaptcha() {
|
|
|
|
return deleteCaptcha;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${delete.captcha:false}")
|
|
|
|
public void setDeleteCaptcha(Boolean deleteCaptcha) {
|
|
|
|
setDeleteCaptchaValue(deleteCaptcha);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setDeleteCaptchaValue(Boolean deleteCaptcha) {
|
|
|
|
ConfigConstants.deleteCaptcha = deleteCaptcha;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 以下为cad转换模块设置
|
|
|
|
*/
|
|
|
|
|
2023-07-20 10:54:47 +08:00
|
|
|
public static String getCadPreviewType() {
|
|
|
|
return cadPreviewType;
|
|
|
|
}
|
|
|
|
|
2023-07-22 14:31:22 +08:00
|
|
|
@Value("${cad.preview.type:svg}")
|
2023-07-20 10:54:47 +08:00
|
|
|
public void setCadPreviewType(String cadPreviewType) {
|
|
|
|
setCadPreviewTypeValue(cadPreviewType);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setCadPreviewTypeValue(String cadPreviewType) {
|
|
|
|
ConfigConstants.cadPreviewType = cadPreviewType;
|
|
|
|
}
|
|
|
|
|
2023-07-22 09:19:09 +08:00
|
|
|
|
|
|
|
public static String getCadTimeout() {
|
|
|
|
return cadTimeout;
|
2023-07-21 17:52:27 +08:00
|
|
|
}
|
|
|
|
|
2023-07-22 09:19:09 +08:00
|
|
|
@Value("${cad.timeout:90}")
|
|
|
|
public void setCadTimeout(String cadTimeout) {
|
|
|
|
setCadTimeoutValue(cadTimeout);
|
2023-04-21 09:56:46 +08:00
|
|
|
}
|
|
|
|
|
2023-07-22 09:19:09 +08:00
|
|
|
public static void setCadTimeoutValue(String cadTimeout) {
|
|
|
|
ConfigConstants.cadTimeout = cadTimeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static int getCadThread() {
|
|
|
|
return cadThread;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${cad.thread:5}")
|
2023-07-22 14:33:02 +08:00
|
|
|
public void setCadThread(int cadThread) {
|
|
|
|
setCadThreadValue(cadThread);
|
2023-07-22 09:19:09 +08:00
|
|
|
}
|
|
|
|
|
2023-07-22 14:33:02 +08:00
|
|
|
public static void setCadThreadValue(int cadThread) {
|
|
|
|
ConfigConstants.cadThread = cadThread;
|
2023-07-21 17:52:27 +08:00
|
|
|
}
|
2023-07-22 08:51:23 +08:00
|
|
|
|
2024-05-20 10:12:11 +08:00
|
|
|
/**
|
|
|
|
* 以下为pdf转换模块设置
|
|
|
|
*/
|
|
|
|
public static int getPdfTimeout() {
|
|
|
|
return pdfTimeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${pdf.timeout:90}")
|
|
|
|
public void setPdfTimeout(int pdfTimeout) {
|
|
|
|
setPdfTimeoutValue(pdfTimeout);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setPdfTimeoutValue(int pdfTimeout) {
|
|
|
|
ConfigConstants.pdfTimeout = pdfTimeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static int getPdfTimeout80() {
|
|
|
|
return pdfTimeout80;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${pdf.timeout80:180}")
|
|
|
|
public void setPdfTimeout80(int pdfTimeout80) {
|
|
|
|
setPdfTimeout80Value(pdfTimeout80);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setPdfTimeout80Value(int pdfTimeout80) {
|
|
|
|
ConfigConstants.pdfTimeout80 = pdfTimeout80;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static int getPdfTimeout200() {
|
|
|
|
return pdfTimeout200;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${pdf.timeout200:300}")
|
|
|
|
public void setPdfTimeout200(int pdfTimeout200) {
|
|
|
|
setPdfTimeout200Value(pdfTimeout200);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setPdfTimeout200Value(int pdfTimeout200) {
|
|
|
|
ConfigConstants.pdfTimeout200 = pdfTimeout200;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static int getPdfThread() {
|
|
|
|
return pdfThread;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${pdf.thread:5}")
|
|
|
|
public void setPdfThread(int pdfThread) {
|
|
|
|
setPdfThreadValue(pdfThread);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setPdfThreadValue(int pdfThread) {
|
|
|
|
ConfigConstants.pdfThread = pdfThread;
|
|
|
|
}
|
|
|
|
|
2023-07-22 08:51:23 +08:00
|
|
|
/**
|
|
|
|
* 以下为OFFICE转换模块设置
|
|
|
|
*/
|
|
|
|
|
2023-07-22 13:42:29 +08:00
|
|
|
public static String getOfficePageRange() {
|
2023-07-22 08:51:23 +08:00
|
|
|
return officePageRange;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-07-22 08:51:23 +08:00
|
|
|
@Value("${office.pagerange:false}")
|
2023-07-22 13:42:29 +08:00
|
|
|
public void setOfficePageRange(String officePageRange) {
|
|
|
|
setOfficePageRangeValue(officePageRange);
|
2023-07-22 08:51:23 +08:00
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-07-22 13:42:29 +08:00
|
|
|
public static void setOfficePageRangeValue(String officePageRange) {
|
|
|
|
ConfigConstants.officePageRange = officePageRange;
|
2023-07-22 08:51:23 +08:00
|
|
|
}
|
|
|
|
|
2023-07-22 13:42:29 +08:00
|
|
|
public static String getOfficeWatermark() {
|
2023-07-22 08:51:23 +08:00
|
|
|
return officeWatermark;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-07-22 08:51:23 +08:00
|
|
|
@Value("${office.watermark:false}")
|
2023-07-22 13:42:29 +08:00
|
|
|
public void setOfficeWatermark(String officeWatermark) {
|
|
|
|
setOfficeWatermarkValue(officeWatermark);
|
2023-07-22 08:51:23 +08:00
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-07-22 13:42:29 +08:00
|
|
|
public static void setOfficeWatermarkValue(String officeWatermark) {
|
|
|
|
ConfigConstants.officeWatermark = officeWatermark;
|
2023-07-22 08:51:23 +08:00
|
|
|
}
|
|
|
|
|
2023-07-22 13:42:29 +08:00
|
|
|
public static String getOfficeQuality() {
|
2023-07-22 08:51:23 +08:00
|
|
|
return officeQuality;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-07-22 13:42:29 +08:00
|
|
|
@Value("${office.quality:80}")
|
|
|
|
public void setOfficeQuality(String officeQuality) {
|
|
|
|
setOfficeQualityValue(officeQuality);
|
2023-07-22 08:51:23 +08:00
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-07-22 13:42:29 +08:00
|
|
|
public static void setOfficeQualityValue(String officeQuality) {
|
|
|
|
ConfigConstants.officeQuality = officeQuality;
|
2023-07-22 08:51:23 +08:00
|
|
|
}
|
|
|
|
|
2023-07-22 13:42:29 +08:00
|
|
|
public static String getOfficeMaxImageResolution() {
|
2023-07-22 08:51:23 +08:00
|
|
|
return officeMaxImageResolution;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-07-22 08:51:23 +08:00
|
|
|
@Value("${office.maximageresolution:150}")
|
2023-07-22 13:42:29 +08:00
|
|
|
public void setOfficeMaxImageResolution(String officeMaxImageResolution) {
|
|
|
|
setOfficeMaxImageResolutionValue(officeMaxImageResolution);
|
2023-07-22 08:51:23 +08:00
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-07-22 13:42:29 +08:00
|
|
|
public static void setOfficeMaxImageResolutionValue(String officeMaxImageResolution) {
|
|
|
|
ConfigConstants.officeMaxImageResolution = officeMaxImageResolution;
|
2023-07-22 08:51:23 +08:00
|
|
|
}
|
|
|
|
|
2023-07-22 13:42:29 +08:00
|
|
|
public static Boolean getOfficeExportBookmarks() {
|
2023-07-22 08:51:23 +08:00
|
|
|
return officeExportBookmarks;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-07-22 08:51:23 +08:00
|
|
|
@Value("${office.exportbookmarks:true}")
|
2023-07-22 13:42:29 +08:00
|
|
|
public void setOfficeExportBookmarks(Boolean officeExportBookmarks) {
|
|
|
|
setOfficeExportBookmarksValue(officeExportBookmarks);
|
2023-07-22 08:51:23 +08:00
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-07-22 13:42:29 +08:00
|
|
|
public static void setOfficeExportBookmarksValue(Boolean officeExportBookmarks) {
|
|
|
|
ConfigConstants.officeExportBookmarks = officeExportBookmarks;
|
2023-07-22 08:51:23 +08:00
|
|
|
}
|
|
|
|
|
2023-07-22 13:42:29 +08:00
|
|
|
public static Boolean getOfficeExportNotes() {
|
2023-07-22 08:51:23 +08:00
|
|
|
return officeExportNotes;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-07-22 08:51:23 +08:00
|
|
|
@Value("${office.exportnotes:true}")
|
2023-07-22 13:42:29 +08:00
|
|
|
public void setExportNotes(Boolean officeExportNotes) {
|
|
|
|
setOfficeExportNotesValue(officeExportNotes);
|
2023-07-22 08:51:23 +08:00
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-07-22 13:42:29 +08:00
|
|
|
public static void setOfficeExportNotesValue(Boolean officeExportNotes) {
|
|
|
|
ConfigConstants.officeExportNotes = officeExportNotes;
|
2023-07-22 08:51:23 +08:00
|
|
|
}
|
|
|
|
|
2023-07-22 13:42:29 +08:00
|
|
|
public static Boolean getOfficeDocumentOpenPasswords() {
|
2023-07-22 08:51:23 +08:00
|
|
|
return officeDocumentOpenPasswords;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-07-22 08:51:23 +08:00
|
|
|
@Value("${office.documentopenpasswords:true}")
|
2023-07-22 13:42:29 +08:00
|
|
|
public void setDocumentOpenPasswords(Boolean officeDocumentOpenPasswords) {
|
|
|
|
setOfficeDocumentOpenPasswordsValue(officeDocumentOpenPasswords);
|
2023-07-22 08:51:23 +08:00
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-07-22 13:42:29 +08:00
|
|
|
public static void setOfficeDocumentOpenPasswordsValue(Boolean officeDocumentOpenPasswords) {
|
|
|
|
ConfigConstants.officeDocumentOpenPasswords = officeDocumentOpenPasswords;
|
2023-07-22 08:51:23 +08:00
|
|
|
}
|
|
|
|
|
2023-08-22 10:16:02 +08:00
|
|
|
/**
|
|
|
|
* 以下为首页显示
|
|
|
|
*/
|
|
|
|
|
|
|
|
public static String getBeian() {
|
|
|
|
return beian;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-08-22 10:16:02 +08:00
|
|
|
@Value("${beian:default}")
|
|
|
|
public void setBeian(String beian) {
|
|
|
|
setBeianValue(beian);
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-08-22 10:16:02 +08:00
|
|
|
public static void setBeianValue(String beian) {
|
|
|
|
ConfigConstants.beian = beian;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-03-06 19:49:59 +08:00
|
|
|
public static String getHomePageNumber() {
|
|
|
|
return homePageNumber;
|
2023-08-22 10:16:02 +08:00
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-08-22 10:16:02 +08:00
|
|
|
@Value("${home.pagenumber:1}")
|
2024-03-06 19:49:59 +08:00
|
|
|
public void setHomePageNumber(String homePageNumber) {
|
|
|
|
setHomePageNumberValue(homePageNumber);
|
2023-08-22 10:16:02 +08:00
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
|
|
|
public static void setHomePageNumberValue(String homePageNumber) {
|
|
|
|
ConfigConstants.homePageNumber = homePageNumber;
|
2023-08-22 10:16:02 +08:00
|
|
|
}
|
|
|
|
|
2024-03-06 19:49:59 +08:00
|
|
|
public static String getHomePagination() {
|
2023-08-22 10:16:02 +08:00
|
|
|
return homePagination;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-08-22 10:16:02 +08:00
|
|
|
@Value("${home.pagination:true}")
|
2024-03-06 19:49:59 +08:00
|
|
|
public void setHomePagination(String homePagination) {
|
|
|
|
setHomePaginationValue(homePagination);
|
2023-08-22 10:16:02 +08:00
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
|
|
|
public static void setHomePaginationValue(String homePagination) {
|
2023-08-22 10:16:02 +08:00
|
|
|
ConfigConstants.homePagination = homePagination;
|
|
|
|
}
|
|
|
|
|
2024-03-06 19:49:59 +08:00
|
|
|
public static String getHomePageSize() {
|
2023-08-22 10:16:02 +08:00
|
|
|
return homePageSize;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-08-22 10:16:02 +08:00
|
|
|
@Value("${home.pagesize:15}")
|
2024-03-06 19:49:59 +08:00
|
|
|
public void setHomePageSize(String homePageSize) {
|
|
|
|
setHomePageSizeValue(homePageSize);
|
2023-08-22 10:16:02 +08:00
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
|
|
|
public static void setHomePageSizeValue(String homePageSize) {
|
2023-08-22 10:16:02 +08:00
|
|
|
ConfigConstants.homePageSize = homePageSize;
|
|
|
|
}
|
|
|
|
|
2024-03-06 19:49:59 +08:00
|
|
|
public static String getHomeSearch() {
|
2023-08-22 10:16:02 +08:00
|
|
|
return homeSearch;
|
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
2023-08-22 10:16:02 +08:00
|
|
|
@Value("${home.search:1}")
|
2024-03-06 19:49:59 +08:00
|
|
|
public void setHomeSearch(String homeSearch) {
|
|
|
|
setHomeSearchValue(homeSearch);
|
2023-08-22 10:16:02 +08:00
|
|
|
}
|
2024-03-06 19:49:59 +08:00
|
|
|
|
|
|
|
public static void setHomeSearchValue(String homeSearch) {
|
2023-08-22 10:16:02 +08:00
|
|
|
ConfigConstants.homeSearch = homeSearch;
|
|
|
|
}
|
|
|
|
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|