-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathautoDeploy.js
397 lines (363 loc) · 11 KB
/
autoDeploy.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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
// 开发环境
const dev = {
host: 'dev.cn', // 服务器ip地址或域名
password: '', // 密码
catalog: '/var/www/dev', // 前端文件压缩目录
port: 22, // 服务器ssh连接端口号
username: 'root', // ssh登录用户
privateKey: null, // 私钥,私钥与密码二选一
// ssh连接跳转至目标机配置,适用于跳板机-内网登录,如无需跳转请注释掉该配置
// agent: {
// host: '10.186.77.223',
// port: 22,
// username: "root",
// password: ""
// },
};
// 测试环境
const test = {
host: 'test.cn', // 服务器ip地址或域名
password: '', // 密码
catalog: '/var/www/test', // 前端文件压缩目录
port: 22, // 服务器ssh连接端口号
username: 'root', // ssh登录用户
privateKey: null, // 私钥,私钥与密码二选一
};
// 线上环境
const pro = {
host: 'pro.cn', // 服务器ip地址或域名
password: '', // 密码,请勿将此密码上传至git服务器
catalog: '/var/www/pro', // 前端文件压缩目录
port: 22, // 服务器ssh连接端口号
username: 'root', // ssh登录用户
privateKey: null, // 私钥,私钥与密码二选一
};
// 全局配置
const Config = {
// publishEnv: pro,
publishEnv: [ test ], // 发布环境,可填写多个,也可只填写一个
buildDist: 'dist', // 前端文件打包之后的目录,默认dist
buildCommand: 'npm run build', // 打包前端文件的命令
readyTimeout: 20000, // ssh连接超时时间
deleteFile: true // 是否删除线上上传的dist压缩包
};
const { exec } = require('child_process');
const path = require('path');
const archiver = require('archiver');
const fs = require('fs');
const Client = require("ssh2").Client;
// 前端打包文件的目录
const dir = path.resolve(__dirname, Config.buildDist);
/**
* ssh连接
*/
class SSH {
constructor ({ host, port, username, password, privateKey, agent }) {
this.server = {
host, port, username, password, privateKey
};
this.hasAgent = agent&&agent.host&&agent.port&&agent.username;
if (this.hasAgent) {
this.connAgent = new Client(); // 连接跳板机
this.conn = new Client(); // 连接目标机
this.agent = agent;
} else {
this.conn = new Client();
}
}
// 连接服务器
connectServer () {
return new Promise((resolve, reject) => {
let conn = this.conn;
if (this.hasAgent) {
conn = this.connAgent;
}
conn.on("ready", ()=>{
if (this.hasAgent) {
// Alternatively, you could use netcat or socat with exec() instead of
// forwardOut()
console.log('----连接跳板机成功----');
conn.forwardOut('127.0.0.1', 12345, this.agent.host, this.agent.port, (err, stream)=> {
if (err) {
conn.end();
reject({
success: false,
error: err
});
}
// 连接目标机
this.conn.on('ready', ()=> {
console.log('----连接目标机成功----');
resolve({
success: true
});
}).on('error', (err)=>{
reject({
success: false,
error: err
});
}).on('end', ()=> {
console.log("target ssh connect end!");
}).on('close', (had_error)=>{
console.log("target ssh connect close");
}).connect({
sock: stream,
username: this.agent.username,
password: this.agent.password,
});
});
} else {
resolve({
success: true
});
}
}).on('error', (err)=>{
reject({
success: false,
error: err
});
}).on('end', ()=> {
console.log('----SSH连接已结束----');
}).on('close', (had_error)=>{
console.log('----SSH连接已关闭----');
}).connect(this.server);
})
}
// 上传文件
uploadFile ({ localPath, remotePath }) {
return new Promise((resolve, reject) => {
return this.conn.sftp((err, sftp)=>{
if (err) {
reject({
success: false,
error: err
});
} else{
sftp.fastPut(localPath, remotePath, (err, result)=>{
if (err) {
reject({
success: false,
error: err
});
}
resolve({
success: true,
result
});
});
}
})
})
}
// 执行ssh命令
execSsh (command) {
return new Promise((resolve, reject) => {
return this.conn.exec(command, (err, stream)=>{
if (err || !stream) {
reject({
success: false, error: err
});
} else {
stream.on('close', (code, signal) => {
resolve({
success: true
});
}).on('data', function (data) {
console.log(data.toString());
}).stderr.on('data', function (data) {
resolve({
success: false,
error: data.toString()
});
});
}
});
})
}
// 结束连接
endConn () {
this.conn.end();
if (this.connAgent) {
this.connAgent.end();
}
}
}
/*
* 本地操作
* */
class File {
constructor(fileName) {
this.fileName = fileName;
}
// 删除本地文件
deleteLocalFile () {
return new Promise((resolve, reject) => {
fs.unlink(this.fileName, function(error){
if(error){
reject({
success: false,
error
});
} else {
resolve({
success: true
});
}
})
})
}
// 压缩文件夹下的所有文件
zipFile(filePath) {
return new Promise((resolve, reject) => {
// 创建文件输出流
let output = fs.createWriteStream(__dirname + '/' + this.fileName);
let archive = archiver('zip', {
zlib: { level: 9 } // 设置压缩级别
});
// 文件输出流结束
output.on('close', function() {
console.log(`----压缩文件总共 ${archive.pointer()} 字节----`);
console.log('----压缩文件夹完毕----');
resolve({
success: true
})
});
// 数据源是否耗尽
output.on('end', function() {
console.error('----压缩失败,数据源已耗尽----');
reject();
});
// 存档警告
archive.on('warning', function(err) {
if (err.code === 'ENOENT') {
console.error('----stat故障和其他非阻塞错误----')
} else {
console.error('----压缩失败----');
}
reject(err);
});
// 存档出错
archive.on('error', function(err) {
console.error('----存档错误,压缩失败----');
console.error(err);
reject(err);
});
// 通过管道方法将输出流存档到文件
archive.pipe(output);
// 打包dist里面的所有文件和目录
archive.directory(filePath, false);
// archive.directory(`../${Config.buildDist}/`, false);
// 完成归档
archive.finalize();
})
}
// 打包本地前端文件
buildProject () {
console.log('----开始编译打包文件,请耐心等待----');
return new Promise((resolve, reject) => {
exec(Config.buildCommand, async (error, stdout, stderr) => {
if (error) {
console.error(error);
reject({
error,
success: false
});
} else if (stdout) {
resolve({
stdout,
success: true
});
} else {
console.error(stderr);
reject({
error: stderr,
success: false
});
}
});
})
}
// 停止程序之前需删除本地压缩包文件
stopProgress() {
this.deleteLocalFile().catch((e)=>{
console.error('----删除本地文件失败,请手动删除----');
console.error(e);
}).then(()=>{
console.log('----已删除本地压缩包文件----');
})
}
}
// SSH连接,上传,解压,删除等相关操作
async function sshUpload (sshConfig, fileName) {
let sshCon = new SSH(sshConfig);
let sshRes = await sshCon.connectServer().catch(e=>{
console.error(e);
});
if (!sshRes || !sshRes.success) {
console.error('----连接服务器失败,请检查用户名密码是否正确以及服务器是否已开启远程连接----');
return false;
}
console.log('----连接服务器成功,开始上传文件----');
let uploadRes = await sshCon.uploadFile({
localPath: path.resolve(__dirname, fileName),
remotePath: sshConfig.catalog + '/' + fileName
}).catch(e=>{
console.error(e);
});
if (!uploadRes || !uploadRes.success) {
console.error('----上传文件失败,请重新上传----');
return false;
}
console.log('----上传文件成功,开始解压文件----');
let zipRes = await sshCon.execSsh(`unzip -o ${sshConfig.catalog + '/' + fileName} -d ${sshConfig.catalog}`)
.catch((e)=>{});
if (!zipRes || !zipRes.success) {
console.error('----解压文件失败,请手动解压zip文件----');
console.error(`----错误原因:${zipRes.error}----`);
}
if (Config.deleteFile) {
console.log('----解压文件成功,开始删除上传的压缩包----');
// 注意:rm -rf为危险操作,请勿对此段代码做其他非必须更改
let deleteZipRes = await sshCon.execSsh(`rm -rf ${sshConfig.catalog + '/' + fileName}`).catch((e)=>{});
if (!deleteZipRes || !deleteZipRes.success) {
console.error('----删除文件失败,请手动删除zip文件----');
console.error(`----错误原因:${deleteZipRes.error}----`);
}
}
// 结束ssh连接
sshCon.endConn();
}
// 执行前端部署
(async ()=> {
// 压缩包的名字
let date = new Date();
let year = date.getFullYear();
let month = date.getMonth() + 1;
let day = date.getDate();
let timeStr = `${year}_${month}_${day}`;
const fileName = `${Config.buildDist}-`+ timeStr + '-' + Math.random().toString(16).slice(2) + '.zip';
let file = new File(fileName);
// 打包文件
let buildRes = await file.buildProject().catch(e=>{
console.error(e);
});
if (!buildRes || !buildRes.success) {
console.error('----编译打包文件出错----');
return false;
}
console.log(buildRes.stdout);
console.log('----编译打包文件完成----');
// 压缩文件
let res = await file.zipFile(`${Config.buildDist}/`).catch(()=>{});
if (!res || !res.success) return false;
console.log('----开始进行SSH连接----');
if (Config.publishEnv instanceof Array && Config.publishEnv.length) {
for (let i = 0; i < Config.publishEnv.length; i++) {
await sshUpload(Config.publishEnv[i], fileName);
}
} else {
await sshUpload(Config.publishEnv, fileName);
}
console.log('----部署成功,正在为您删除本地压缩包----');
file.stopProgress();
})();