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;
|
|
|
|
import java.util.HashSet;
|
|
|
|
import java.util.Set;
|
2019-04-16 21:09:32 +08:00
|
|
|
|
2019-04-11 14:45:22 +08:00
|
|
|
/**
|
|
|
|
* @auther: chenjh
|
|
|
|
* @time: 2019/4/10 17:22
|
|
|
|
* @description
|
|
|
|
*/
|
2019-04-16 21:09:32 +08:00
|
|
|
@Component
|
2019-04-11 14:45:22 +08:00
|
|
|
public class ConfigConstants {
|
|
|
|
|
2019-08-22 15:22:05 +08:00
|
|
|
private static Boolean cacheEnabled;
|
2019-04-11 14:45:22 +08:00
|
|
|
private static String[] simText = {};
|
|
|
|
private static String[] media = {};
|
2019-04-25 18:39:58 +08:00
|
|
|
private static String officePreviewType;
|
2019-06-19 14:18:09 +08:00
|
|
|
private static String ftpUsername;
|
|
|
|
private static String ftpPassword;
|
|
|
|
private static String ftpControlEncoding;
|
2019-04-16 21:09:32 +08:00
|
|
|
private static String fileDir = OfficeUtils.getHomePath() + File.separator + "file" + File.separator;
|
2019-10-17 10:59:38 +08:00
|
|
|
private static String baseUrl;
|
2020-02-18 19:36:15 +08:00
|
|
|
private static String trustHost;
|
|
|
|
private static Set<String> trustHostSet;
|
2019-04-11 14:45:22 +08:00
|
|
|
|
2020-02-18 19:36:15 +08:00
|
|
|
public static final String DEFAULT_CACHE_ENABLED = "true";
|
|
|
|
public static final String DEFAULT_TXT_TYPE = "txt,html,htm,asp,jsp,xml,json,properties,md,gitignore,,java,py,c,cpp,sql,sh,bat,m,bas,prg,cmd";
|
|
|
|
public static final String DEFAULT_MEDIA_TYPE = "mp3,wav,mp4,flv";
|
2019-10-25 13:59:29 +08:00
|
|
|
public static final String DEFAULT_FILE_DIR_VALUE = "default";
|
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_OFFICE_PREVIEW_TYPE = "image";
|
|
|
|
public static final String DEFAULT_BASE_URL = "default";
|
|
|
|
public static final String DEFAULT_TRUST_HOST = "default";
|
2019-10-25 13:59:29 +08:00
|
|
|
|
2019-08-22 15:22:05 +08:00
|
|
|
public static Boolean isCacheEnabled() {
|
|
|
|
return cacheEnabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setCacheEnabled(Boolean cacheEnabled) {
|
|
|
|
ConfigConstants.cacheEnabled = cacheEnabled;
|
|
|
|
}
|
|
|
|
|
2019-04-11 14:45:22 +08:00
|
|
|
public static String[] getSimText() {
|
|
|
|
return simText;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setSimText(String[] simText) {
|
|
|
|
ConfigConstants.simText = simText;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String[] getMedia() {
|
|
|
|
return media;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setMedia(String[] media) {
|
|
|
|
ConfigConstants.media = media;
|
|
|
|
}
|
|
|
|
|
2019-04-25 18:39:58 +08:00
|
|
|
public static String getOfficePreviewType() {
|
|
|
|
return officePreviewType;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setOfficePreviewType(String officePreviewType) {
|
|
|
|
ConfigConstants.officePreviewType = officePreviewType;
|
|
|
|
}
|
|
|
|
|
2019-06-19 14:18:09 +08:00
|
|
|
public static String getFtpUsername() {
|
|
|
|
return ftpUsername;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setFtpUsername(String ftpUsername) {
|
|
|
|
ConfigConstants.ftpUsername = ftpUsername;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getFtpPassword() {
|
|
|
|
return ftpPassword;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getFtpControlEncoding() {
|
|
|
|
return ftpControlEncoding;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setFtpControlEncoding(String ftpControlEncoding) {
|
|
|
|
ConfigConstants.ftpControlEncoding = ftpControlEncoding;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setFtpPassword(String ftpPassword) {
|
|
|
|
ConfigConstants.ftpPassword = ftpPassword;
|
|
|
|
}
|
|
|
|
|
2019-04-16 21:09:32 +08:00
|
|
|
public static String getFileDir() {
|
|
|
|
return fileDir;
|
|
|
|
}
|
|
|
|
|
2019-10-17 10:59:38 +08:00
|
|
|
public static String getBaseUrl() {
|
|
|
|
return baseUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setBaseUrl(String baseUrl) {
|
2019-10-25 13:59:29 +08:00
|
|
|
ConfigConstants.baseUrl = baseUrl;
|
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) {
|
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;
|
|
|
|
}
|
|
|
|
ConfigConstants.fileDir = fileDir;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-18 19:36:15 +08:00
|
|
|
static String getTrustHost() {
|
|
|
|
return trustHost;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${trust.host:default}")
|
|
|
|
static void setTrustHost(String trustHost) {
|
|
|
|
ConfigConstants.trustHost = trustHost;
|
|
|
|
Set<String> trustHostSet;
|
|
|
|
if (DEFAULT_TRUST_HOST.equals(trustHost.toLowerCase())) {
|
|
|
|
trustHostSet = new HashSet<>();
|
|
|
|
} else {
|
|
|
|
String[] trustHostArray = trustHost.toLowerCase().split(",");
|
|
|
|
trustHostSet = new HashSet<>(Arrays.asList(trustHostArray));
|
|
|
|
ConfigConstants.setTrustHostSet(trustHostSet);
|
|
|
|
}
|
|
|
|
ConfigConstants.setTrustHostSet(trustHostSet);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Set<String> getTrustHostSet() {
|
|
|
|
return trustHostSet;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void setTrustHostSet(Set<String> trustHostSet) {
|
|
|
|
ConfigConstants.trustHostSet = trustHostSet;
|
|
|
|
}
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|