api.js
6.54 KB
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
'use strict';
const Router = require('koa-router');
const _ = require('lodash');
const Operation = require('../../logger/operation');
const Build = require('../../ci/build');
const Deploy = require('../../ci/deploy');
const DeployPool = require('../../ci/deploy_pool');
const {
Building,
Project,
Server,
DeployInfo,
RestartInfo,
DeleteRestartInfo
} = require('../../models');
let r = new Router();
r.get('/params', async(ctx) => {
ctx.body = {
env: {
production: '线上环境',
preview: '灰度环境'
},
cloud: {
aws: '亚马逊',
qcloud: '腾讯云'
}
};
});
r.get('/projects', async(ctx) => {
let q = ctx.request.query;
let cloud = _.trim(q.cloud);
let query = {};
if (cloud) {
query.cloud = cloud;
}
let projects = await Project.find(query);
ctx.body = _.map(projects, p => {
return {
id: p._id,
name: p.name,
subname: p.subname
};
});
});
r.get('/publish', async (ctx) => {
let q = ctx.request.query;
let id = q.id;
let env = q.env;
let branch = q.branch;
let p = await Project.findById(id);
let build = new Build(p);
let {
buildTime,
distFile
} = build.build(branch);
let buildingDoc = await Building.insert({
buildTime: buildTime,
project: p.name,
projectId: id,
branch: branch,
env: env,
distFile: distFile,
state: 'waiting',
md5: '',
createdAt: new Date(),
updatedAt: new Date()
});
let building = buildingDoc[0];
let bid = building._id;
build.run(bid, async () => {
let targets = p.deploy[env].target;
if (typeof targets === 'string') {
targets = [targets];
}
targets.forEach(async(host) => {
let deploy = new Deploy(p, building, host);
DeployPool.deploy(deploy);
});
await Operation.action('app', 'PROJECT_DEPLOY', '项目分发部署', {
_id: bid,
project: p.name,
branch: building.branch,
env: building.env
});
});
await Operation.action('app', 'NEW_PROJECT_BUILDING', '新增项目构建', {
_id: id,
project: p.name,
branch: branch,
env: env
});
ctx.body = {
code: 200,
bid: bid
};
});
r.get('/builds', async (ctx) => {
let q = ctx.request.query;
let buildings = await Building.cfind({
env: q.env,
projectId: q.id,
state: 'success'
}).sort({
buildTime: -1
}).limit(30).exec();
ctx.body = _.map(buildings, b => {
return {id: b._id, createdAt: b.createdAt, buildNo: b.buildTime};
});
});
r.get('/rollback', async (ctx) => {
let q = ctx.request.query;
let buildingId = q.id;
let building = await Building.findById(q.id);
if (!building) {
ctx.body = {
code: 201,
msg: '该版本不存在'
};
} else if (building.state == 'success') {
let project = await Project.findById(building.projectId);
let targets = project.deploy[building.env].target;
if (typeof targets === 'string') {
targets = [targets];
}
targets.forEach(async(host) => {
let doc = await DeployInfo.findOne({
projectId: project._id,
host: host,
env: building.env
});
if (!doc || doc.state !== 'running' || doc.building !== building.buildTime) {
let deploy = new Deploy(project, building, host);
// if (project.type === 'php') {
// deploy = new DeployPhp(project, building, host);
// } else {
// deploy = new Deploy(project, building, host);
// }
DeployPool.deploy(deploy);
}
});
await Operation.action(ctx.session.user, 'PROJECT_DEPLOY', '项目分发部署', {
_id: buildingId,
project: project.name,
branch: building.branch,
env: building.env
});
ctx.body = {
code: 200,
targets: targets
};
} else {
ctx.body = {
code: 201,
msg: '该版本未构建成功,暂不能分发'
};
}
});
r.get('/deploy', async (ctx) => {
let q = ctx.request.query;
let buildingId = q.bid;
let building = await Building.findById(buildingId);
if (!building) {
ctx.body = {
code: 201,
msg: '该版本不存在'
};
} else if (building.state == 'success') {
let project = await Project.findById(building.projectId);
let targets = project.deploy[building.env].target;
if (typeof targets === 'string') {
targets = [targets];
}
targets.forEach(async(host) => {
let doc = await DeployInfo.findOne({
projectId: project._id,
host: host,
env: building.env
});
if (!doc || doc.state !== 'running' || doc.building !== building.buildTime) {
let deploy = new Deploy(project, building, host);
DeployPool.deploy(deploy);
}
});
await Operation.action(ctx.session.user, 'PROJECT_DEPLOY', '项目分发部署', {
_id: buildingId,
project: project.name,
branch: building.branch,
env: building.env
});
ctx.body = {
code: 200,
building: building
};
} else {
ctx.body = {
code: 201,
msg: '该版本未构建成功,暂不能分发'
};
}
});
r.get('/state', async (ctx) => {
let q = ctx.request.query;
let building = await Building.findById(q.bid);
let doc = await DeployInfo.find({
projectId: building.projectId,
env: building.env,
building: building.buildTime
});
let finish = true;
let redeploy = false;
let deploys = _.map(doc, d => {
if (d.state !== 'running' && d.state !== 'fail') {
finish = false;
}
if (d.state === 'fail') {
redeploy = true;
}
return {
host: d.host,
state: d.state
};
});
ctx.body = {
build: building.state,
deploy: deploys,
finish: finish,
redeploy: redeploy && finish
};
});
module.exports = r;