-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.ts
More file actions
446 lines (373 loc) · 11.3 KB
/
cli.ts
File metadata and controls
446 lines (373 loc) · 11.3 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
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
#!/usr/bin/env -S deno run -A
import { parseArgs as parse } from "@std/cli/parse-args";
import { basename, join } from "@std/path";
import e, { type inferInput, type inferOutput } from "@oridune/validator";
import { Confirm, Input, Secret, Select } from "@cliffy/prompt";
import { renderTemplate, sh } from "./helpers/utils.ts";
export enum DeployEnv {
Staging = "staging",
Development = "development",
Production = "production",
}
export enum DeployType {
Patch = "patch",
Minor = "minor",
Major = "major",
}
export const deploymentVersionSchema = e.object({
major: e.number(),
minor: e.number(),
patch: e.number(),
});
export const deploymentLogEnvSchema = e.object({
buildArgs: e.optional(e.array(e.string())),
pushArgs: e.optional(e.array(e.string())),
dockerOrganization: e.string().max(50),
dockerImage: e.string().max(100),
dockerCompose: e.string(),
swarmMode: e.optional(e.boolean()),
envPaths: e.array(e.string()).min(1),
version: deploymentVersionSchema,
versionTag: e.optional(e.string()),
agentUrls: e.array(e.url()).min(1),
preShell: e.optional(e.string()),
postShell: e.optional(e.string()),
});
export const deploymentLogSchema = e.object({
name: e.string().max(50),
staging: e.optional(deploymentLogEnvSchema),
development: e.optional(deploymentLogEnvSchema),
production: e.optional(deploymentLogEnvSchema),
});
type TDeploymentLogOutput = inferOutput<
typeof deploymentLogSchema
>;
export const resolveDeployment = async (
name: string,
logPath: string,
): Promise<TDeploymentLogOutput> => {
try {
return JSON.parse(await Deno.readTextFile(logPath)) as TDeploymentLogOutput;
} catch {
const newDeployment = {
name,
} as TDeploymentLogOutput;
await saveDeployment(logPath, newDeployment);
return newDeployment;
}
};
export const saveDeployment = async (
logPath: string,
log: TDeploymentLogOutput,
): Promise<void> => {
await Deno.writeTextFile(
logPath,
JSON.stringify(
log,
null,
2,
),
);
};
export const readEnvFiles = async (paths: string[]) =>
(await Promise.all(
paths.map((path) => Deno.readTextFile(path).catch(() => "")),
)).join("\n").trim();
export const readLocalEnv = async (
key: string,
): Promise<string | undefined> => {
return Deno.env.get(key) ??
(await readEnvFiles(["./.env", "./env/.env"])).split("\n").find(
(line) => line.startsWith(key + "="),
)?.split("=")[1].trim();
};
export const optsSchema = e.object({
prompt: e.optional(e.boolean()).default(false),
name: e.optional(e.string().max(50)),
deployEnv: e.optional(e.in(Object.values(DeployEnv))),
deployType: e.optional(e.in(Object.values(DeployType))),
logPath: e.optional(e.string()).default(
join(Deno.cwd(), "deployment-logs.json"),
),
deployDirty: e.optional(e.boolean()),
skipBuild: e.optional(e.boolean()),
skipPublish: e.optional(e.boolean()),
skipApply: e.optional(e.boolean()),
skipCommit: e.optional(e.boolean()),
secretKey: e.optional(e.string()),
}, { allowUnexpectedProps: true });
export const deploy = async (
opts?: inferInput<typeof optsSchema>,
init?: Partial<inferInput<typeof deploymentLogEnvSchema>>,
) => {
const options = await optsSchema.validate(opts);
if (!options.deployDirty) {
const output = await sh(
["git", "status", "--porcelain"],
);
if (output.length) {
throw new Error(
`Git staged files detected! Please commit any changes before the deployment!`,
);
}
}
if (options.prompt) {
options.deployEnv = await Select.prompt({
message: "Select deployment environment",
options: Object.values(DeployEnv),
}) as DeployEnv;
options.deployType = await Select.prompt({
message: "Select deployment type",
options: Object.values(DeployType),
}) as DeployType;
if (
options.deployEnv === DeployEnv.Production &&
(await Input.prompt(
"Are you sure you want to deploy to production? Type (sure)",
)).toLowerCase() !== "sure"
) throw new Error("Deployment has been aborted!");
}
const resolvedName = options.name ?? basename(Deno.cwd());
const log = await resolveDeployment(resolvedName, options.logPath);
if (!options.deployEnv) {
throw new Error("A deployment environment is required!");
}
const deployEnvDetails = log[options.deployEnv];
const org = init?.dockerOrganization ??
deployEnvDetails?.dockerOrganization ??
(options.prompt
? await Input.prompt({
message: "Provide your docker hub organization/id",
validate: (value) => value.length > 2 || "Invalid organization",
})
: undefined);
const image = init?.dockerImage ?? deployEnvDetails?.dockerImage ??
(options.prompt
? await Input.prompt({
message: "Provide your docker image id",
validate: (value) => value.length > 2 || "Invalid image name",
})
: undefined);
const compose = init?.dockerCompose ?? deployEnvDetails?.dockerCompose ??
(options.prompt
? await Input.prompt({
message: "Provide your docker compose path",
default: "./docker-compose.yml",
})
: undefined);
const swarmMode = init?.swarmMode ?? deployEnvDetails?.swarmMode ??
(options.prompt
? await Confirm.prompt({
message: "Do you want to enable swarm mode?",
default: false,
})
: undefined);
const envPaths = init?.envPaths ?? deployEnvDetails?.envPaths ??
(options.prompt
? (await Input.prompt({
message: "Provide the env variable paths",
default: "./.env",
})).split(/\s*,\s*/)
: undefined);
const agentUrls = init?.agentUrls ?? deployEnvDetails?.agentUrls ??
(options.prompt
? (await Input.prompt({
message: "Provide the agent url(s). E.g: http://you-host.com:3740,...",
validate: async (value) => {
if (
!(await e.array(e.url()).min(1).test(value.split(/\s*,\s*/)))
) return "Invalid agent url(s)";
return true;
},
})).split(/\s*,\s*/)
: undefined);
const preDeployCommand = init?.preShell ?? deployEnvDetails?.preShell ??
(options.prompt && !deployEnvDetails
? await Input.prompt({
message: "Provide your pre-deploy shell command/script",
})
: undefined);
const postDeployCommand = init?.postShell ??
deployEnvDetails?.postShell ??
(options.prompt && !deployEnvDetails
? await Input.prompt({
message: "Provide your post-deploy shell command/script",
})
: undefined);
const secretKey = options.secretKey ??
await readLocalEnv("DOCKER_DEPLOY_SECRET_KEY") ??
(!options.skipApply && options.prompt
? await Secret.prompt({
message: "Enter agent secret",
})
: undefined);
const resolvedDeployEnvDetails = {
...deployEnvDetails,
version: deployEnvDetails?.version ?? {
major: 0,
minor: 0,
patch: 0,
},
versionTag: deployEnvDetails?.versionTag,
dockerOrganization: org,
dockerImage: image,
dockerCompose: compose,
swarmMode,
envPaths,
agentUrls,
};
// Increment version
const version = resolvedDeployEnvDetails!.version;
const backupVersion = { ...version };
switch (options.deployType) {
case DeployType.Major:
version.major++;
version.minor = 0;
version.patch = 0;
break;
case DeployType.Minor:
version.minor++;
version.patch = 0;
break;
case DeployType.Patch:
version.patch++;
break;
}
const deployEnv = log[options.deployEnv] = await deploymentLogEnvSchema
.validate(
resolvedDeployEnvDetails,
);
const ImageName = `${deployEnv.dockerImage}-${options.deployEnv}`;
const ImageVersion = [
[
deployEnv.version.major,
deployEnv.version.minor,
deployEnv.version.patch,
].join("."),
deployEnv.versionTag,
].filter(Boolean).join("-");
const ImageTag =
`${deployEnv.dockerOrganization}/${ImageName}:v${ImageVersion}`;
await saveDeployment(options.logPath, log);
try {
if (!options.skipBuild) {
console.info("Building docker image...");
await sh(
[
"docker",
"build",
"-t",
ImageTag,
".",
...(deployEnv.buildArgs ?? []),
],
);
}
if (!options.skipPublish) {
console.info("Pushing docker image:", ImageTag);
// Push docker image to docker hub
await sh(
[
"docker",
"push",
ImageTag,
...(deployEnv.pushArgs ?? []),
],
);
}
if (!options.skipApply) {
console.info("Starting deployment...");
const templateData = {
name: resolvedName,
environment: options.deployEnv,
image: ImageTag,
imageName: ImageName,
ImageVersion: ImageVersion,
};
const compose = renderTemplate(
await Deno.readTextFile(
renderTemplate(deployEnv.dockerCompose, templateData),
),
templateData,
);
const env = await readEnvFiles(deployEnv.envPaths.map((path) =>
renderTemplate(path, templateData)
)) || undefined;
const deployedUrls: string[] = [];
const preShell = renderTemplate(
preDeployCommand ?? "",
templateData,
).trim();
const postShell = renderTemplate(
postDeployCommand ?? "",
templateData,
).trim();
const basePayload: RequestInit = {
method: "POST",
headers: {
"Content-Type": "application/json",
"Accept": "application/json",
"Authorization": "Bearer " + secretKey,
},
};
const deployPayload: RequestInit = {
...basePayload,
body: JSON.stringify({
swarmMode,
app: resolvedName,
tag: options.deployEnv,
compose,
env,
preShell,
postShell,
}),
};
const rollbackPayload: RequestInit = {
...basePayload,
body: JSON.stringify({
swarmMode,
app: resolvedName,
tag: options.deployEnv,
}),
};
try {
for (const url of deployEnv.agentUrls) {
console.info("Deploying:", ImageTag, "on:", url);
const res = await fetch(new URL("/deploy", url), deployPayload);
const data = await res.json();
if (!data.success) {
throw new Error("Deployment to one of the nodes failed!", {
cause: data,
});
}
deployedUrls.push(url);
}
} catch (error) {
// Rollback previous deployments
for (const url of deployedUrls) {
await fetch(new URL("/rollback", url), rollbackPayload);
}
throw error;
}
}
} catch (error) {
// Rollback version
log[options.deployEnv]!.version = backupVersion;
await saveDeployment(options.logPath, log);
throw error;
}
// git commit
if (!options.skipCommit) {
await sh(["git", "add", "."]);
await sh(["git", "commit", "-m", `"Automated deployment: ${ImageTag}"`]);
}
console.info("Process completed");
};
if (import.meta.main) {
const { default: denoConfig } = await import("./deno.json", {
with: { type: "json" },
});
console.info("Docker Deploy Version:", denoConfig.version);
await deploy({ ...parse(Deno.args), prompt: true });
Deno.exit();
}