forked from khang2112/miraibot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
update.js
104 lines (92 loc) · 4.08 KB
/
update.js
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
try {
var { existsSync, writeFileSync, removeSync, mkdirSync, copySync, readdirSync, createWriteStream } = require("fs-extra"),
axios = require("axios"),
extract = require("extract-zip"),
exec = require('child_process').exec;
} catch { return console.error("[!] Hiện tại bạn chưa cài đặt các package hỗ trợ việc update, nhập vào cmd/terminal 'npm install --save fs-extra axios extract-zip child_process'"); }
try {
var configValue = require("./config.json");
console.log("Đã tìm thấy file config");
}
catch (error) {
if (error) return console.log("Không tìm thấy file config của bot!");
}
(async () => {
try {
console.log("====== VUI LÒNG KHÔNG TẮT CMD/TERMINAL NÀY CHO TỚI KHI UPDATE HOÀN TẤT ======");
await backup(configValue);
await clone();
await clean();
await unzip();
await install();
await modules();
await finish(configValue);
} catch (e) { console.log(e) }
})();
async function backup(configValue) {
console.log('-> Đang xóa bản sao lưu cũ');
removeSync(process.cwd() + '/kaneki');
console.log('-> Đang sao lưu dữ liệu');
mkdirSync(process.cwd() + '/kaneki');
mkdirSync(process.cwd() + "/kaneki/main")
if (existsSync('./modules')) copySync('./modules', './kaneki/modules');
if (existsSync(`./${configValue.APPSTATEPATH}`)) copySync(`./${configValue.APPSTATEPATH}`, `./kaneki/${configValue.APPSTATEPATH}`);
if (existsSync('./config.json')) copySync('./config.json', './kaneki/config.json');
if (existsSync(`./includes/${configValue.DATABASE.sqlite.storage}`)) copySync(`./includes/${configValue.DATABASE.sqlite.storage}`, `./kaneki/${configValue.DATABASE.sqlite.storage}`);
}
async function clean() {
console.log('-> Đang xóa bản cũ');
readdirSync('.').forEach(item => { if (item != 'kaneki') removeSync(item); });
}
async function clone() {
console.log('-> Đang tải bản cập nhật mới');
const response = await axios({
method: 'GET',
url: "https://github.com/quyenkaneki/miraibot/archive/refs/heads/main.zip",
responseType: "stream"
});
const writer = createWriteStream("./kaneki/main.zip");
response.data.pipe(writer);
return new Promise((resolve, reject) => {
writer.on('finish', resolve);
writer.on('error', (e) => reject('[!] Không thể tải xuống bản cập nhật [!] ' + e));
});
}
function unzip() {
console.log('-> Unzip bản cập nhật mới');
return extract("./kaneki/main.zip", { dir: process.cwd() + "/kaneki/main" }, (error) => {
console.log(error);
if (error) throw new Error(error);
else return;
});
}
function install () {
console.log('-> Đang cài đặt bản cập nhật mới');
copySync(process.cwd() + '/kaneki/main/miraibot-main/', './');
return;
}
function modules() {
return new Promise(function (resolve, reject) {
console.log('-> Đang cài đặt modules');
let child = exec('npm install');
child.stdout.on('end', resolve);
child.stderr.on('data', data => {
if (data.toLowerCase().includes('error')) {
console.error('[!] Đã có lỗi xảy ra. Vui lòng tạo bài đăng và gửi file updateError.log ở mục Issue trên Github [!]');
data = data.replace(/\r?\n|\r/g, '');
writeFileSync('updateError.log', data);
console.log("[!] Hủy quá trình cài đặt modules do đã có lỗi xảy ra buộc người dùng phải cài đặt modules bằng tay, tiến hành cài đặt những bước cuối cùng [!]");
resolve();
}
});
});
}
async function finish(configValue) {
console.log('-> Đang hoàn tất');
if (existsSync(`./kaneki/${configValue.APPSTATEPATH}`)) copySync(`./kaneki/${configValue.APPSTATEPATH}`, `./${configValue.APPSTATEPATH}`);
if (existsSync(`./kaneki/${configValue.DATABASE.sqlite.storage}`)) copySync(`./kaneki/${configValue.DATABASE.sqlite.storage}`, `./includes/${configValue.DATABASE.sqlite.storage}`);
if (existsSync("./kaneki/newVersion")) removeSync("./kaneki/newVersion");
console.log('>> Cập nhật hoàn tất <<');
console.log('>> TẤT CẢ NHỮNG DỮ LIỆU QUAN TRỌNG ĐÃ ĐƯỢC SAO LƯU VÀO THƯ MỤC "kaneki" <<');
return process.exit(0);
}