2023-12-05 17:13:36 +00:00
|
|
|
class AllSetting {
|
|
|
|
|
|
|
|
constructor(data) {
|
|
|
|
this.webListen = "";
|
|
|
|
this.webDomain = "";
|
2023-12-10 14:06:42 +00:00
|
|
|
this.webPort = 2053;
|
2023-12-05 17:13:36 +00:00
|
|
|
this.webCertFile = "";
|
|
|
|
this.webKeyFile = "";
|
|
|
|
this.webBasePath = "/";
|
2024-09-12 07:41:24 +00:00
|
|
|
this.sessionMaxAge = 60;
|
2024-07-01 19:11:42 +00:00
|
|
|
this.pageSize = 50;
|
2024-08-06 19:17:12 +00:00
|
|
|
this.expireDiff = 0;
|
|
|
|
this.trafficDiff = 0;
|
2023-12-08 19:31:17 +00:00
|
|
|
this.remarkModel = "-ieo";
|
2024-01-02 08:32:21 +00:00
|
|
|
this.datepicker = "gregorian";
|
2023-12-05 17:13:36 +00:00
|
|
|
this.tgBotEnable = false;
|
|
|
|
this.tgBotToken = "";
|
2024-01-02 09:42:07 +00:00
|
|
|
this.tgBotProxy = "";
|
2024-10-17 08:59:42 +00:00
|
|
|
this.tgBotAPIServer = "";
|
2023-12-05 17:13:36 +00:00
|
|
|
this.tgBotChatId = "";
|
|
|
|
this.tgRunTime = "@daily";
|
|
|
|
this.tgBotBackup = false;
|
2024-08-06 19:17:12 +00:00
|
|
|
this.tgBotLoginNotify = true;
|
|
|
|
this.tgCpu = 80;
|
2023-12-10 14:06:42 +00:00
|
|
|
this.tgLang = "en-US";
|
|
|
|
this.xrayTemplateConfig = "";
|
|
|
|
this.secretEnable = false;
|
2023-12-05 17:13:36 +00:00
|
|
|
this.subEnable = false;
|
|
|
|
this.subListen = "";
|
2024-08-06 15:06:39 +00:00
|
|
|
this.subPort = 2096;
|
2023-12-05 17:13:36 +00:00
|
|
|
this.subPath = "/sub/";
|
2024-02-21 10:47:52 +00:00
|
|
|
this.subJsonPath = "/json/";
|
2023-12-05 17:13:36 +00:00
|
|
|
this.subDomain = "";
|
|
|
|
this.subCertFile = "";
|
|
|
|
this.subKeyFile = "";
|
2024-08-06 19:17:12 +00:00
|
|
|
this.subUpdates = 12;
|
2023-12-05 17:13:36 +00:00
|
|
|
this.subEncrypt = true;
|
2024-08-06 19:17:12 +00:00
|
|
|
this.subShowInfo = true;
|
2024-03-12 16:14:51 +00:00
|
|
|
this.subURI = "";
|
|
|
|
this.subJsonURI = "";
|
|
|
|
this.subJsonFragment = "";
|
2024-09-17 07:33:44 +00:00
|
|
|
this.subJsonNoises = "";
|
2024-03-12 16:14:51 +00:00
|
|
|
this.subJsonMux = "";
|
|
|
|
this.subJsonRules = "";
|
2023-12-05 17:13:36 +00:00
|
|
|
|
2025-01-11 14:13:49 +00:00
|
|
|
this.timeLocation = "Local";
|
2023-12-05 17:13:36 +00:00
|
|
|
|
|
|
|
if (data == null) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ObjectUtil.cloneProps(this, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
equals(other) {
|
|
|
|
return ObjectUtil.equals(this, other);
|
|
|
|
}
|
|
|
|
}
|