-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcleanDeployments.js
More file actions
291 lines (256 loc) · 8.83 KB
/
cleanDeployments.js
File metadata and controls
291 lines (256 loc) · 8.83 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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
const AWS = require('aws-sdk')
const Promise = require('promise')
const moment = require('moment')
const MongoClient = require('mongodb')
const crypto = require('crypto')
AWS.config.update({region: 'us-east-1'})
class CleanDeployments {
constructor () {
this.cloudFormation = new AWS.CloudFormation()
this.s3 = new AWS.S3()
this.baseMongoUrl = process.env.BASE_STAGING_MONGOURL
this.buildVersionLabel = process.env.BUILD_VERSION_LABEL
this.db = undefined
this.protectedBranches = ['master', 'develop']
this.updateProtectedBranches()
}
async clean () {
const stacks = await this.getStacks()
for (let i = 0; i < stacks.length; i++) {
const stack = stacks[i]
const {StackName} = stack
const branchVersionLabel = this.getBranchVersionLabel(StackName)
let isStackDeleted = false
if (!this.isProtectedBranch(branchVersionLabel) && this.isStackOlderThan(7, stack)) {
console.log(`[Current stack] ${StackName}'\n`)
// Server deploy
process.stdout.write('[Server deploy] Checking for S3 bucket resources...\t\t\t\t')
let stackS3Resource
try {
stackS3Resource = await this.getStackS3BucketResource(StackName)
}
catch (e) {
console.log('[ERROR] ', e.message)
if (e.statusCode === 400) {
console.log('[Server deploy] Probably Stack was deleted by different process few seconds ago')
}
}
if (stackS3Resource) {
console.log('[OK] Found')
const bucket = stackS3Resource.PhysicalResourceId
process.stdout.write('[Server deploy] Checking for S3 bucket content...\t\t\t\t')
let contentKeys
try {
contentKeys = await this.getS3BucketContentsKeys(bucket)
}
catch (e) {
console.log('[ERROR] There is no S3 bucket')
}
if (contentKeys) {
if (this.s3BucketHasContent(contentKeys)) {
console.log('[OK] Found')
process.stdout.write('[Server deploy] Deleting S3 bucket content...\t\t\t\t\t')
try {
await this.deleteS3BucketContents(bucket, contentKeys)
console.log('[OK] Done')
}
catch (e) {
console.log('[ERROR] There is a problem deleting content')
}
}
else console.log('[OK] S3 bucket is empty')
}
}
else console.log('[Server deploy] There is no S3 bucket resources')
process.stdout.write(`[Server deploy] Deleting stack deploy...\t\t\t\t\t`)
try {
await this.deleteStack(StackName)
console.log('[OK] Done\n')
isStackDeleted = true
}
catch (e) {
console.log('[ERROR] There is problem deleting stack')
}
if (isStackDeleted) {
// Server DB
process.stdout.write('[Server DB] Trying to connect to Mongo db...\t\t\t\t\t')
if (this.isMongoUrlExist()) {
try {
await this.connectToDatabase(branchVersionLabel)
console.log('[OK] Connected')
}
catch (e) {
console.log('[ERROR] Can\'t connect to db')
}
if (this.isConnectedToDb()) {
process.stdout.write('[Server DB] Dropping database...\t\t\t\t\t\t')
try {
await this.dropDatabase(`CI_${branchVersionLabel}`)
console.log('[OK] Done')
}
catch (e) {
console.log('[ERROR] There is problem deleting db')
}
this.closeDbConnection()
}
}
else console.log('[ERROR] There is no Mongo url present in system environment')
}
// Web deploy
process.stdout.write('\n[Web deploy] Checking for Web deployment...\t\t\t\t\t')
let webDeploymentContentKeys
const webDeploymentBucket = `thebrain-web-${branchVersionLabel}`
try {
webDeploymentContentKeys = await this.getS3BucketContentsKeys(webDeploymentBucket)
}
catch (e) {
console.log('[ERROR] There is no Web deployment')
}
if (webDeploymentContentKeys) {
if (this.s3BucketHasContent(webDeploymentContentKeys)) {
console.log('[OK] Found')
process.stdout.write('[Web deploy] Deleting S3 bucket content...\t\t\t\t\t')
try {
await this.deleteS3BucketContents(webDeploymentBucket, webDeploymentContentKeys)
console.log('[OK] Done')
}
catch (e) {
console.log('[ERROR] There is a problem deleting content')
}
}
else console.log('[OK] S3 bucket is empty')
}
process.stdout.write(`[Web deploy] Deleting web deploy...\t\t\t\t\t\t`)
try {
await this.deleteS3Bucket(webDeploymentBucket)
console.log('[OK] Done')
}
catch (e) {
console.log('[ERROR] ', e.message)
}
console.log('\n---\n')
}
}
}
getStacks () {
const params = {
StackStatusFilter: [
'CREATE_COMPLETE',
'ROLLBACK_COMPLETE',
'UPDATE_COMPLETE',
'UPDATE_ROLLBACK_COMPLETE'
]
}
return new Promise((resolve, reject) => {
this.cloudFormation.listStacks(params, (err, data) => {
if (err) reject(err)
else resolve(data.StackSummaries)
})
})
}
getStackS3BucketResource (StackName) {
return new Promise((resolve, reject) => {
this.cloudFormation.listStackResources({StackName}, (err, data) => {
if (err) reject(err)
else {
resolve(data.StackResourceSummaries.filter(resource => this.isS3Bucket(resource.ResourceType) && this.isResourceExists(resource.ResourceStatus))[0])
}
})
})
}
isS3Bucket (resourceType) {
return resourceType === 'AWS::S3::Bucket'
}
isResourceExists (resourceStatus) {
const resourceStatuses = ['CREATE_COMPLETE', 'UPDATE_COMPLETE']
return resourceStatuses.indexOf(resourceStatus) !== -1
}
deleteStack (StackName) {
return new Promise((resolve, reject) => {
this.cloudFormation.deleteStack({StackName}, (err, data) => {
if (err) reject(err)
else resolve(data)
})
})
}
getS3BucketContentsKeys (Bucket) {
return new Promise((resolve, reject) => {
this.s3.listObjects({Bucket}, (err, data) => {
if (err) reject(err)
else {
const keys = []
data.Contents.forEach(content => keys.push({Key: content.Key}))
resolve(keys)
}
})
})
}
deleteS3BucketContents (Bucket, contentsKeys) {
const params = {
Bucket,
Delete: {
Objects: contentsKeys
}
}
return new Promise((resolve, reject) => {
this.s3.deleteObjects(params, (err, data) => {
if (err) reject(err)
else resolve(data)
})
})
}
s3BucketHasContent (content) {
return content.length > 0
}
isStackOlderThan (days, stack) {
const stackTime = stack.StackStatus === 'CREATE_COMPLETE' ? stack.CreationTime : stack.LastUpdatedTime
const currentTimeObject = moment()
const stackTimeObject = moment(stackTime)
const diffDays = currentTimeObject.diff(stackTimeObject, 'days')
return diffDays > days
}
getBranchVersionLabel (stackName) {
return stackName.replace(/^thebrain-server-/, '').replace(/-dev$/, '')
}
deleteS3Bucket (Bucket) {
return new Promise((resolve, reject) => {
this.s3.deleteBucket({Bucket}, (err, data) => {
if (err) reject(err)
else resolve(data)
})
})
}
isMongoUrlExist () {
return this.baseMongoUrl !== undefined && this.baseMongoUrl !== ''
}
async connectToDatabase (branchVersionLabel) {
const mongoUrl = this.baseMongoUrl.replace('${MY_DB_NAME}', branchVersionLabel)
this.db = await MongoClient.connect(mongoUrl)
}
async dropDatabase (branchVersionLabel) {
const database = await this.db.db(branchVersionLabel)
await database.dropDatabase()
}
async closeDbConnection () {
await this.db.close()
this.db = undefined
}
isConnectedToDb () {
return this.db !== undefined
}
updateProtectedBranches () {
this.protectedBranches = this.protectedBranches.map(protectedBranch => {
const truncatedBranchName = protectedBranch.substr(0, 14)
const md5Hash = this.generateMd5Hash(protectedBranch)
return `${truncatedBranchName}-${md5Hash}`
})
}
generateMd5Hash (string) {
return crypto.createHash('md5').update(`${string}\n`).digest('hex').substr(0, 7)
}
isProtectedBranch (branchVersionLabel) {
return this.protectedBranches.indexOf(branchVersionLabel) > -1 || branchVersionLabel === this.buildVersionLabel
}
}
const cleanDeployments = new CleanDeployments()
cleanDeployments.clean()