2019-04-11 14:45:22 +08:00
|
|
|
package cn.keking.config;
|
|
|
|
|
2019-04-16 21:09:32 +08:00
|
|
|
import org.artofsolving.jodconverter.office.OfficeUtils;
|
|
|
|
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;
|
2020-05-13 10:20:08 +08:00
|
|
|
import java.util.concurrent.CopyOnWriteArraySet;
|
2020-02-18 19:36:15 +08:00
|
|
|
import java.util.Set;
|
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 {
|
|
|
|
|
2020-05-13 10:20:08 +08:00
|
|
|
private static Boolean CACHE_ENABLED;
|
|
|
|
private static String[] SIM_TEXT = {};
|
|
|
|
private static String[] MEDIA = {};
|
|
|
|
private static String OFFICE_PREVIEW_TYPE;
|
|
|
|
private static String FTP_USERNAME;
|
|
|
|
private static String FTP_PASSWORD;
|
|
|
|
private static String FTP_CONTROL_ENCODING;
|
|
|
|
private static String BASE_URL;
|
|
|
|
private static String FILE_DIR = OfficeUtils.getHomePath() + File.separator + "file" + File.separator;
|
|
|
|
private static CopyOnWriteArraySet<String> TRUST_HOST_SET;
|
2020-05-14 19:28:21 +08:00
|
|
|
private static String PDF_DOWNLOAD_DISABLE;
|
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-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";
|
2020-02-18 19:36:15 +08:00
|
|
|
public static final String DEFAULT_TRUST_HOST = "default";
|
2020-05-14 19:28:21 +08:00
|
|
|
public static final String DEFAULT_PDF_DOWNLOAD_DISABLE = "true";
|
2019-10-25 13:59:29 +08:00
|
|
|
|
2019-08-22 15:22:05 +08:00
|
|
|
public static Boolean isCacheEnabled() {
|
2020-05-13 10:20:08 +08:00
|
|
|
return CACHE_ENABLED;
|
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) {
|
2020-05-13 10:20:08 +08:00
|
|
|
CACHE_ENABLED = cacheEnabled;
|
2019-08-22 15:22:05 +08:00
|
|
|
}
|
|
|
|
|
2019-04-11 14:45:22 +08:00
|
|
|
public static String[] getSimText() {
|
2020-05-13 10:20:08 +08:00
|
|
|
return SIM_TEXT;
|
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) {
|
2020-05-13 10:20:08 +08:00
|
|
|
SIM_TEXT = simText;
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public static String[] getMedia() {
|
2020-05-13 10:20:08 +08:00
|
|
|
return MEDIA;
|
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) {
|
|
|
|
MEDIA = Media;
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|
|
|
|
|
2019-04-25 18:39:58 +08:00
|
|
|
public static String getOfficePreviewType() {
|
2020-05-13 10:20:08 +08:00
|
|
|
return OFFICE_PREVIEW_TYPE;
|
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) {
|
2020-05-13 10:20:08 +08:00
|
|
|
OFFICE_PREVIEW_TYPE = officePreviewType;
|
2019-04-25 18:39:58 +08:00
|
|
|
}
|
|
|
|
|
2019-06-19 14:18:09 +08:00
|
|
|
public static String getFtpUsername() {
|
2020-05-13 10:20:08 +08:00
|
|
|
return FTP_USERNAME;
|
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) {
|
2020-05-13 10:20:08 +08:00
|
|
|
FTP_USERNAME = ftpUsername;
|
2019-06-19 14:18:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public static String getFtpPassword() {
|
2020-05-13 10:20:08 +08:00
|
|
|
return FTP_PASSWORD;
|
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) {
|
2020-05-13 10:20:08 +08:00
|
|
|
FTP_PASSWORD = ftpPassword;
|
2019-06-19 14:18:09 +08:00
|
|
|
}
|
|
|
|
|
2020-05-13 10:20:08 +08:00
|
|
|
public static String getFtpControlEncoding() {
|
|
|
|
return FTP_CONTROL_ENCODING;
|
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) {
|
2020-05-13 10:20:08 +08:00
|
|
|
FTP_CONTROL_ENCODING = ftpControlEncoding;
|
2019-04-16 21:09:32 +08:00
|
|
|
}
|
|
|
|
|
2019-10-17 10:59:38 +08:00
|
|
|
public static String getBaseUrl() {
|
2020-05-13 10:20:08 +08:00
|
|
|
return BASE_URL;
|
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) {
|
2020-05-13 10:20:08 +08:00
|
|
|
BASE_URL = baseUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getFileDir() {
|
|
|
|
return FILE_DIR;
|
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) {
|
2019-10-25 13:59:29 +08:00
|
|
|
if (!DEFAULT_FILE_DIR_VALUE.equals(fileDir.toLowerCase())) {
|
2019-04-16 21:09:32 +08:00
|
|
|
if (!fileDir.endsWith(File.separator)) {
|
|
|
|
fileDir = fileDir + File.separator;
|
|
|
|
}
|
2020-05-13 10:20:08 +08:00
|
|
|
FILE_DIR = fileDir;
|
2019-04-16 21:09:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-02-18 19:36:15 +08:00
|
|
|
if (DEFAULT_TRUST_HOST.equals(trustHost.toLowerCase())) {
|
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() {
|
2020-05-13 10:20:08 +08:00
|
|
|
return TRUST_HOST_SET;
|
2020-02-18 19:36:15 +08:00
|
|
|
}
|
|
|
|
|
2020-05-13 10:20:08 +08:00
|
|
|
private static void setTrustHostSet(CopyOnWriteArraySet<String> trustHostSet) {
|
|
|
|
ConfigConstants.TRUST_HOST_SET = trustHostSet;
|
2020-02-18 19:36:15 +08:00
|
|
|
}
|
2020-05-14 19:28:21 +08:00
|
|
|
|
|
|
|
public static String getPdfDownloadDisable() {
|
|
|
|
return PDF_DOWNLOAD_DISABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@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) {
|
2020-05-14 19:28:21 +08:00
|
|
|
PDF_DOWNLOAD_DISABLE = pdfDownloadDisable;
|
|
|
|
}
|
2020-05-15 18:09:19 +08:00
|
|
|
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|