2020-12-27 14:06:06 +08:00
|
|
|
package cn.keking.config;
|
2019-04-11 14:45:22 +08:00
|
|
|
|
2022-12-15 18:19:30 +08:00
|
|
|
import cn.keking.utils.ConfigUtils;
|
2019-04-11 14:45:22 +08:00
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
import javax.annotation.PostConstruct;
|
|
|
|
import java.io.BufferedReader;
|
|
|
|
import java.io.FileReader;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.Properties;
|
2020-12-27 14:06:06 +08:00
|
|
|
import java.util.concurrent.TimeUnit;
|
2019-04-11 14:45:22 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @auther: chenjh
|
|
|
|
* @time: 2019/4/10 16:16
|
|
|
|
* @description 每隔1s读取并更新一次配置文件
|
|
|
|
*/
|
|
|
|
@Component
|
|
|
|
public class ConfigRefreshComponent {
|
|
|
|
|
|
|
|
private static final Logger LOGGER = LoggerFactory.getLogger(ConfigRefreshComponent.class);
|
|
|
|
|
|
|
|
@PostConstruct
|
|
|
|
void refresh() {
|
|
|
|
Thread configRefreshThread = new Thread(new ConfigRefreshThread());
|
|
|
|
configRefreshThread.start();
|
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
static class ConfigRefreshThread implements Runnable {
|
2019-04-11 14:45:22 +08:00
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
try {
|
|
|
|
Properties properties = new Properties();
|
2019-04-15 10:23:03 +08:00
|
|
|
String text;
|
|
|
|
String media;
|
2020-05-15 18:09:19 +08:00
|
|
|
boolean cacheEnabled;
|
2019-04-25 18:39:58 +08:00
|
|
|
String[] textArray;
|
2019-04-15 10:23:03 +08:00
|
|
|
String[] mediaArray;
|
2019-04-25 18:39:58 +08:00
|
|
|
String officePreviewType;
|
2020-12-25 18:19:30 +08:00
|
|
|
String officePreviewSwitchDisabled;
|
2019-06-19 14:18:09 +08:00
|
|
|
String ftpUsername;
|
|
|
|
String ftpPassword;
|
|
|
|
String ftpControlEncoding;
|
2020-12-26 17:30:24 +08:00
|
|
|
String configFilePath = ConfigUtils.getCustomizedConfigPath();
|
2019-10-31 16:52:58 +08:00
|
|
|
String baseUrl;
|
2020-02-18 19:36:15 +08:00
|
|
|
String trustHost;
|
2024-03-06 19:49:59 +08:00
|
|
|
String notTrustHost;
|
2021-11-16 11:50:12 +08:00
|
|
|
String pdfPresentationModeDisable;
|
|
|
|
String pdfOpenFileDisable;
|
|
|
|
String pdfPrintDisable;
|
2020-05-14 19:28:21 +08:00
|
|
|
String pdfDownloadDisable;
|
2021-11-16 11:50:12 +08:00
|
|
|
String pdfBookmarkDisable;
|
2023-08-16 09:04:12 +08:00
|
|
|
String pdfDisableEditing;
|
2021-07-06 09:09:19 +08:00
|
|
|
boolean fileUploadDisable;
|
2021-12-05 12:38:30 +08:00
|
|
|
String tifPreviewType;
|
2023-04-10 17:32:51 +08:00
|
|
|
String prohibit;
|
|
|
|
String[] prohibitArray;
|
2023-07-03 14:34:40 +08:00
|
|
|
String beian;
|
2023-04-10 17:32:51 +08:00
|
|
|
String size;
|
|
|
|
String password;
|
2023-04-27 16:27:04 +08:00
|
|
|
int pdf2JpgDpi;
|
2023-06-02 14:55:32 +08:00
|
|
|
String officeTypeWeb;
|
2023-07-20 10:54:47 +08:00
|
|
|
String cadPreviewType;
|
2023-05-06 16:51:06 +08:00
|
|
|
boolean deleteSourceFile;
|
2023-07-21 17:52:27 +08:00
|
|
|
boolean deleteCaptcha;
|
2023-07-22 08:51:23 +08:00
|
|
|
String officPageRange;
|
|
|
|
String officWatermark;
|
|
|
|
String officQuality;
|
|
|
|
String officMaxImageResolution;
|
|
|
|
boolean officExportBookmarks;
|
|
|
|
boolean officeExportNotes;
|
|
|
|
boolean officeDocumentOpenPasswords;
|
2023-07-22 09:19:09 +08:00
|
|
|
String cadTimeout;
|
|
|
|
int cadThread;
|
2024-03-06 19:49:59 +08:00
|
|
|
String homePageNumber;
|
2023-08-22 10:16:02 +08:00
|
|
|
String homePagination;
|
|
|
|
String homePageSize;
|
|
|
|
String homeSearch;
|
2019-04-11 14:45:22 +08:00
|
|
|
while (true) {
|
2019-05-16 17:42:35 +08:00
|
|
|
FileReader fileReader = new FileReader(configFilePath);
|
|
|
|
BufferedReader bufferedReader = new BufferedReader(fileReader);
|
2019-04-11 14:45:22 +08:00
|
|
|
properties.load(bufferedReader);
|
2022-12-15 18:19:30 +08:00
|
|
|
ConfigUtils.restorePropertiesFromEnvFormat(properties);
|
2020-05-15 18:09:19 +08:00
|
|
|
cacheEnabled = Boolean.parseBoolean(properties.getProperty("cache.enabled", ConfigConstants.DEFAULT_CACHE_ENABLED));
|
2020-02-18 19:36:15 +08:00
|
|
|
text = properties.getProperty("simText", ConfigConstants.DEFAULT_TXT_TYPE);
|
|
|
|
media = properties.getProperty("media", ConfigConstants.DEFAULT_MEDIA_TYPE);
|
|
|
|
officePreviewType = properties.getProperty("office.preview.type", ConfigConstants.DEFAULT_OFFICE_PREVIEW_TYPE);
|
2021-03-31 14:16:38 +08:00
|
|
|
officePreviewSwitchDisabled = properties.getProperty("office.preview.switch.disabled", ConfigConstants.DEFAULT_OFFICE_PREVIEW_SWITCH_DISABLED);
|
2020-02-18 19:36:15 +08:00
|
|
|
ftpUsername = properties.getProperty("ftp.username", ConfigConstants.DEFAULT_FTP_USERNAME);
|
|
|
|
ftpPassword = properties.getProperty("ftp.password", ConfigConstants.DEFAULT_FTP_PASSWORD);
|
|
|
|
ftpControlEncoding = properties.getProperty("ftp.control.encoding", ConfigConstants.DEFAULT_FTP_CONTROL_ENCODING);
|
2019-04-11 14:45:22 +08:00
|
|
|
textArray = text.split(",");
|
|
|
|
mediaArray = media.split(",");
|
2024-03-06 19:49:59 +08:00
|
|
|
baseUrl = properties.getProperty("base.url", ConfigConstants.DEFAULT_VALUE);
|
|
|
|
trustHost = properties.getProperty("trust.host", ConfigConstants.DEFAULT_VALUE);
|
|
|
|
notTrustHost = properties.getProperty("not.trust.host", ConfigConstants.DEFAULT_VALUE);
|
2021-11-16 11:50:12 +08:00
|
|
|
pdfPresentationModeDisable = properties.getProperty("pdf.presentationMode.disable", ConfigConstants.DEFAULT_PDF_PRESENTATION_MODE_DISABLE);
|
|
|
|
pdfOpenFileDisable = properties.getProperty("pdf.openFile.disable", ConfigConstants.DEFAULT_PDF_OPEN_FILE_DISABLE);
|
|
|
|
pdfPrintDisable = properties.getProperty("pdf.print.disable", ConfigConstants.DEFAULT_PDF_PRINT_DISABLE);
|
2020-05-14 19:28:21 +08:00
|
|
|
pdfDownloadDisable = properties.getProperty("pdf.download.disable", ConfigConstants.DEFAULT_PDF_DOWNLOAD_DISABLE);
|
2021-11-16 11:50:12 +08:00
|
|
|
pdfBookmarkDisable = properties.getProperty("pdf.bookmark.disable", ConfigConstants.DEFAULT_PDF_BOOKMARK_DISABLE);
|
2023-08-16 09:04:12 +08:00
|
|
|
pdfDisableEditing = properties.getProperty("pdf.disable.editing", ConfigConstants.DEFAULT_PDF_DISABLE_EDITING);
|
2021-07-06 09:09:19 +08:00
|
|
|
fileUploadDisable = Boolean.parseBoolean(properties.getProperty("file.upload.disable", ConfigConstants.DEFAULT_FILE_UPLOAD_DISABLE));
|
2021-12-05 12:38:30 +08:00
|
|
|
tifPreviewType = properties.getProperty("tif.preview.type", ConfigConstants.DEFAULT_TIF_PREVIEW_TYPE);
|
2023-07-20 10:54:47 +08:00
|
|
|
cadPreviewType = properties.getProperty("cad.preview.type", ConfigConstants.DEFAULT_CAD_PREVIEW_TYPE);
|
2023-05-06 16:51:06 +08:00
|
|
|
size = properties.getProperty("spring.servlet.multipart.max-file-size", ConfigConstants.DEFAULT_SIZE);
|
2023-07-03 14:34:40 +08:00
|
|
|
beian = properties.getProperty("beian", ConfigConstants.DEFAULT_BEIAN);
|
2023-05-06 16:51:06 +08:00
|
|
|
prohibit = properties.getProperty("prohibit", ConfigConstants.DEFAULT_PROHIBIT);
|
2023-06-18 09:50:31 +08:00
|
|
|
password = properties.getProperty("delete.password", ConfigConstants.DEFAULT_PASSWORD);
|
2023-05-06 16:53:15 +08:00
|
|
|
pdf2JpgDpi = Integer.parseInt(properties.getProperty("pdf2jpg.dpi", ConfigConstants.DEFAULT_PDF2_JPG_DPI));
|
2023-06-19 09:14:53 +08:00
|
|
|
officeTypeWeb = properties.getProperty("office.type.web", ConfigConstants.DEFAULT_OFFICE_TYPE_WEB);
|
2023-05-06 16:51:06 +08:00
|
|
|
deleteSourceFile = Boolean.parseBoolean(properties.getProperty("delete.source.file", ConfigConstants.DEFAULT_DELETE_SOURCE_FILE));
|
2023-07-21 17:52:27 +08:00
|
|
|
deleteCaptcha = Boolean.parseBoolean(properties.getProperty("delete.captcha", ConfigConstants.DEFAULT_DELETE_CAPTCHA));
|
2023-07-22 08:51:23 +08:00
|
|
|
officPageRange = properties.getProperty("office.pagerange", ConfigConstants.DEFAULT_OFFICE_PAQERANQE);
|
|
|
|
officWatermark = properties.getProperty("office.watermark", ConfigConstants.DEFAULT_OFFICE_WATERMARK);
|
|
|
|
officQuality = properties.getProperty("office.quality", ConfigConstants.DEFAULT_OFFICE_QUALITY);
|
|
|
|
officMaxImageResolution = properties.getProperty("office.maximageresolution", ConfigConstants.DEFAULT_OFFICE_MAXIMAQERESOLUTION);
|
|
|
|
officExportBookmarks = Boolean.parseBoolean(properties.getProperty("office.exportbookmarks", ConfigConstants.DEFAULT_OFFICE_EXPORTBOOKMARKS));
|
|
|
|
officeExportNotes = Boolean.parseBoolean(properties.getProperty("office.exportnotes", ConfigConstants.DEFAULT_OFFICE_EXPORTNOTES));
|
2023-07-22 13:42:29 +08:00
|
|
|
officeDocumentOpenPasswords = Boolean.parseBoolean(properties.getProperty("office.documentopenpasswords", ConfigConstants.DEFAULT_OFFICE_EOCUMENTOPENPASSWORDS));
|
2023-07-22 09:19:09 +08:00
|
|
|
cadTimeout = properties.getProperty("cad.timeout", ConfigConstants.DEFAULT_CAD_TIMEOUT);
|
2024-03-06 19:49:59 +08:00
|
|
|
homePageNumber = properties.getProperty("home.pagenumber", ConfigConstants.DEFAULT_HOME_PAGENUMBER);
|
2023-08-22 10:16:02 +08:00
|
|
|
homePagination = properties.getProperty("home.pagination", ConfigConstants.DEFAULT_HOME_PAGINATION);
|
|
|
|
homePageSize = properties.getProperty("home.pagesize", ConfigConstants.DEFAULT_HOME_PAGSIZE);
|
|
|
|
homeSearch = properties.getProperty("home.search", ConfigConstants.DEFAULT_HOME_SEARCH);
|
2023-07-22 09:19:09 +08:00
|
|
|
cadThread = Integer.parseInt(properties.getProperty("cad.thread", ConfigConstants.DEFAULT_CAD_THREAD));
|
2023-04-10 17:32:51 +08:00
|
|
|
prohibitArray = prohibit.split(",");
|
2021-12-05 12:38:30 +08:00
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
ConfigConstants.setCacheEnabledValueValue(cacheEnabled);
|
|
|
|
ConfigConstants.setSimTextValue(textArray);
|
|
|
|
ConfigConstants.setMediaValue(mediaArray);
|
|
|
|
ConfigConstants.setOfficePreviewTypeValue(officePreviewType);
|
|
|
|
ConfigConstants.setFtpUsernameValue(ftpUsername);
|
|
|
|
ConfigConstants.setFtpPasswordValue(ftpPassword);
|
|
|
|
ConfigConstants.setFtpControlEncodingValue(ftpControlEncoding);
|
|
|
|
ConfigConstants.setBaseUrlValue(baseUrl);
|
|
|
|
ConfigConstants.setTrustHostValue(trustHost);
|
2024-03-06 19:49:59 +08:00
|
|
|
ConfigConstants.setNotTrustHostValue(notTrustHost);
|
2020-12-26 00:56:48 +08:00
|
|
|
ConfigConstants.setOfficePreviewSwitchDisabledValue(officePreviewSwitchDisabled);
|
2021-11-16 11:50:12 +08:00
|
|
|
ConfigConstants.setPdfPresentationModeDisableValue(pdfPresentationModeDisable);
|
|
|
|
ConfigConstants.setPdfOpenFileDisableValue(pdfOpenFileDisable);
|
|
|
|
ConfigConstants.setPdfPrintDisableValue(pdfPrintDisable);
|
2020-05-14 19:28:21 +08:00
|
|
|
ConfigConstants.setPdfDownloadDisableValue(pdfDownloadDisable);
|
2021-11-16 11:50:12 +08:00
|
|
|
ConfigConstants.setPdfBookmarkDisableValue(pdfBookmarkDisable);
|
2023-08-16 09:04:12 +08:00
|
|
|
ConfigConstants.setPdfDisableEditingValue(pdfDisableEditing);
|
2021-07-06 09:09:19 +08:00
|
|
|
ConfigConstants.setFileUploadDisableValue(fileUploadDisable);
|
2021-12-05 12:38:30 +08:00
|
|
|
ConfigConstants.setTifPreviewTypeValue(tifPreviewType);
|
2023-07-20 10:54:47 +08:00
|
|
|
ConfigConstants.setCadPreviewTypeValue(cadPreviewType);
|
2023-07-03 14:34:40 +08:00
|
|
|
ConfigConstants.setBeianValue(beian);
|
2023-05-06 16:51:06 +08:00
|
|
|
ConfigConstants.setSizeValue(size);
|
|
|
|
ConfigConstants.setProhibitValue(prohibitArray);
|
|
|
|
ConfigConstants.setPasswordValue(password);
|
|
|
|
ConfigConstants.setPdf2JpgDpiValue(pdf2JpgDpi);
|
2023-06-19 09:14:53 +08:00
|
|
|
ConfigConstants.setOfficeTypeWebValue(officeTypeWeb);
|
2023-07-22 08:51:23 +08:00
|
|
|
ConfigConstants.setOfficePageRangeValue(officPageRange);
|
|
|
|
ConfigConstants.setOfficeWatermarkValue(officWatermark);
|
|
|
|
ConfigConstants.setOfficeQualityValue(officQuality);
|
|
|
|
ConfigConstants.setOfficeMaxImageResolutionValue(officMaxImageResolution);
|
|
|
|
ConfigConstants.setOfficeExportBookmarksValue(officExportBookmarks);
|
|
|
|
ConfigConstants.setOfficeExportNotesValue(officeExportNotes);
|
|
|
|
ConfigConstants.setOfficeDocumentOpenPasswordsValue(officeDocumentOpenPasswords);
|
2023-05-06 16:51:06 +08:00
|
|
|
ConfigConstants.setDeleteSourceFileValue(deleteSourceFile);
|
2023-07-21 17:52:27 +08:00
|
|
|
ConfigConstants.setDeleteCaptchaValue(deleteCaptcha);
|
2023-07-22 09:19:09 +08:00
|
|
|
ConfigConstants.setCadTimeoutValue(cadTimeout);
|
|
|
|
ConfigConstants.setCadThreadValue(cadThread);
|
2024-03-06 19:49:59 +08:00
|
|
|
ConfigConstants.setHomePageNumberValue(homePageNumber);
|
|
|
|
ConfigConstants.setHomePaginationValue(homePagination);
|
|
|
|
ConfigConstants.setHomePageSizeValue(homePageSize);
|
|
|
|
ConfigConstants.setHomeSearchValue(homeSearch);
|
2020-05-13 19:40:31 +08:00
|
|
|
setWatermarkConfig(properties);
|
2019-05-16 17:42:35 +08:00
|
|
|
bufferedReader.close();
|
|
|
|
fileReader.close();
|
2020-12-27 14:06:06 +08:00
|
|
|
TimeUnit.SECONDS.sleep(1);
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|
|
|
|
} catch (IOException | InterruptedException e) {
|
2019-06-19 14:18:09 +08:00
|
|
|
LOGGER.error("读取配置文件异常", e);
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|
|
|
|
}
|
2020-05-13 19:40:31 +08:00
|
|
|
|
|
|
|
private void setWatermarkConfig(Properties properties) {
|
|
|
|
String watermarkTxt = properties.getProperty("watermark.txt", WatermarkConfigConstants.DEFAULT_WATERMARK_TXT);
|
|
|
|
String watermarkXSpace = properties.getProperty("watermark.x.space", WatermarkConfigConstants.DEFAULT_WATERMARK_X_SPACE);
|
|
|
|
String watermarkYSpace = properties.getProperty("watermark.y.space", WatermarkConfigConstants.DEFAULT_WATERMARK_Y_SPACE);
|
|
|
|
String watermarkFont = properties.getProperty("watermark.font", WatermarkConfigConstants.DEFAULT_WATERMARK_FONT);
|
|
|
|
String watermarkFontsize = properties.getProperty("watermark.fontsize", WatermarkConfigConstants.DEFAULT_WATERMARK_FONTSIZE);
|
|
|
|
String watermarkColor = properties.getProperty("watermark.color", WatermarkConfigConstants.DEFAULT_WATERMARK_COLOR);
|
|
|
|
String watermarkAlpha = properties.getProperty("watermark.alpha", WatermarkConfigConstants.DEFAULT_WATERMARK_ALPHA);
|
|
|
|
String watermarkWidth = properties.getProperty("watermark.width", WatermarkConfigConstants.DEFAULT_WATERMARK_WIDTH);
|
|
|
|
String watermarkHeight = properties.getProperty("watermark.height", WatermarkConfigConstants.DEFAULT_WATERMARK_HEIGHT);
|
|
|
|
String watermarkAngle = properties.getProperty("watermark.angle", WatermarkConfigConstants.DEFAULT_WATERMARK_ANGLE);
|
|
|
|
WatermarkConfigConstants.setWatermarkTxtValue(watermarkTxt);
|
|
|
|
WatermarkConfigConstants.setWatermarkXSpaceValue(watermarkXSpace);
|
|
|
|
WatermarkConfigConstants.setWatermarkYSpaceValue(watermarkYSpace);
|
|
|
|
WatermarkConfigConstants.setWatermarkFontValue(watermarkFont);
|
|
|
|
WatermarkConfigConstants.setWatermarkFontsizeValue(watermarkFontsize);
|
|
|
|
WatermarkConfigConstants.setWatermarkColorValue(watermarkColor);
|
|
|
|
WatermarkConfigConstants.setWatermarkAlphaValue(watermarkAlpha);
|
|
|
|
WatermarkConfigConstants.setWatermarkWidthValue(watermarkWidth);
|
|
|
|
WatermarkConfigConstants.setWatermarkHeightValue(watermarkHeight);
|
|
|
|
WatermarkConfigConstants.setWatermarkAngleValue(watermarkAngle);
|
|
|
|
|
|
|
|
}
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|
|
|
|
}
|