Spaces:
Running
Running
File size: 5,043 Bytes
91d9d20 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
process.on("unhandledRejection", console.log);
process.on("uncaughtException", console.log);
var log = require("./lib/log");
var utils = require("./lib/utils");
var config = require("../config.json");
var fs = require("fs");
var path = require("path");
var axios = require("axios");
var dirConfig = path.resolve(__dirname, "..", "config.json");
var dirConfigCommands = path.resolve(__dirname, "..", "configCommands.json");
function mergeObjects(target, source) {
for (var key in source) {
if (source.hasOwnProperty(key)) {
if (source[key] === null || source[key] === undefined)
delete target[key];
else if (typeof source[key] === "object" && !Array.isArray(source[key]) && source[key] !== null) {
if (!target[key] || typeof target[key] !== "object" || Array.isArray(target[key]))
target[key] = {}
mergeObjects(target[key], source[key]);
} else
target[key] = source[key];
}
}
return target;
}
function mergeObjectsPrimitives(target, source) {
for (var key in source) {
if (source.hasOwnProperty(key)) {
if (typeof source[key] !== "object" || Array.isArray(source[key]) || source[key] === null) {
if (target.hasOwnProperty(key))
target[key] = source[key];
} else if (typeof target[key] === "object" && target[key] !== null && !Array.isArray(target[key]))
mergeObjectsPrimitives(target[key], source[key]);
}
}
return target;
}
global.mira = {
dir: path.resolve(__dirname, ".."),
dirConfig,
dirConfigCommands,
get configCommands() {
return require(this.dirConfigCommands);
},
set configCommands(value) {
if (utils.getType(value) === "Object") {
var lastConfig = require(this.dirConfigCommands);
lastConfig = mergeObjects(lastConfig, value);
fs.writeFileSync(this.dirConfigCommands, JSON.stringify(lastConfig, null, 4));
}
},
get config() {
return require(this.dirConfig);
},
set config(value) {
if (utils.getType(value) === "Object") {
var lastConfig = require(this.dirConfig);
lastConfig = mergeObjectsPrimitives(lastConfig, value);
fs.writeFileSync(this.dirConfig, JSON.stringify(lastConfig, null, 4));
}
},
apis: null,
Client: null
}
global.modules = {
cmds: [],
Reply: {},
Reaction: {},
Schedule: {}
}
global.database = {
model: {},
cache: []
}
function watchAndDeleteCache(dir) {
fs.watch(dir, type => type === "change" ? (function () {
delete require.cache[dir];
})() : null);
}
watchAndDeleteCache(dirConfig);
watchAndDeleteCache(dirConfigCommands);
function compare(str_1, str_2) {
var bool;
var comparseString = string => {
var [type, version] = string.split("-");
version = Number(version.split(".").join(""));
return { type, version }
}
var test_1 = comparseString(str_1);
var test_2 = comparseString(str_2);
if (test_1.version > test_2.version)
bool = true;
else if (test_1.version < test_2.version)
bool = false;
else if (test_1.type === "release" && test_2.type === "beta")
bool = true;
else if (test_1.type === "beta" && test_2.type === "release")
bool = false;
else
bool = false;
return bool;
}
if (config.systemOptions.autoRestart.enable && parseInt(config.systemOptions.autoRestart.timeMS) > 0) {
log.info("process.restart", config.systemOptions.autoRestart.timeMS);
setTimeout(process.exit, config.systemOptions.autoRestart.timeMS, 2);
}
(async () => {
log.wall();
var currentVersion = require("../package.json").version;
var lastVersion = (await axios.get("https://raw.githubusercontent.com/GiaKhang1810/mira-bot-v1/main/package.json")).data.version;
if (compare(lastVersion, currentVersion)) {
log.warn("updater.newVersion", lastVersion, "https://github.com/GiaKhang1810/mira-bot-v1/");
if (config.systemOptions.autoUpdate.enable) {
var type = lastVersion.split("-")[0];
if (!config.systemOptions.autoUpdate.releaseOnly || config.systemOptions.autoUpdate.releaseOnly && type === "release") {
return require("./updater");
}
}
}
await require("./apis")();
if (config.facebookAPIsOptions.autoRefreshState) {
fs.writeFileSync(global.mira.dir + "/" + config.facebookAccountOptions.facebookState, JSON.stringify(global.mira.apis.getAppState(), null, 2));
log.info("facebook.refreshCookie", config.facebookAccountOptions.facebookState);
}
log.wall();
await require("./database")();
await require("./control")();
return require("./dashboard");
})();
|