-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcommit.ts
104 lines (83 loc) · 2.75 KB
/
commit.ts
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
import { Flags, ux } from '@oclif/core'
import prompts from 'prompts'
import logSymbols from 'log-symbols'
import * as api from '../../rest/api'
import { AuthCommand } from '../authCommand'
import commonMessages from '../../messages/common-messages'
import { splitConfigFilePath } from '../../services/util'
import { loadChecklyConfig } from '../../services/checkly-config-loader'
import { ImportPlan } from '../../rest/projects'
export default class ImportCommitCommand extends AuthCommand {
static hidden = false
static description = 'Permanently commit imported resources into your project.'
static flags = {
config: Flags.string({
char: 'c',
description: commonMessages.configFile,
}),
}
async run (): Promise<void> {
const { flags } = await this.parse(ImportCommitCommand)
const {
config: configFilename,
} = flags
const { configDirectory, configFilenames } = splitConfigFilePath(configFilename)
const {
config: checklyConfig,
} = await loadChecklyConfig(configDirectory, configFilenames)
const {
logicalId,
} = checklyConfig
const { data } = await api.projects.findImportPlans(logicalId, {
onlyUncommitted: true,
})
// Uncommitted plans also include unapplied plans, filter them out.
const uncommittedPlans = data.filter(plan => {
return plan.appliedAt
})
const plan = await this.#selectPlan(uncommittedPlans)
if (this.fancy) {
ux.action.start('Committing plan')
}
try {
await api.projects.commitImportPlan(plan.id)
if (this.fancy) {
ux.action.stop('✅ ')
}
} catch (err) {
if (this.fancy) {
ux.action.stop('❌')
}
throw err
}
this.log(`${logSymbols.success} All imported plan resources are now fully managed by the Checkly CLI.`)
}
async #selectPlan (plans: ImportPlan[]): Promise<ImportPlan> {
const choices: prompts.Choice[] = plans.map((plan, index) => ({
title: `Plan #${index + 1} from ${new Date(plan.createdAt)}`,
value: plan.id,
description: `ID: ${plan.id}`,
}))
choices.unshift({
title: 'Exit without committing',
value: 'exit',
description: 'No changes will be made.',
})
const plansById = plans.reduce((m, plan) => m.set(plan.id, plan), new Map<string, ImportPlan>())
const { planId } = await prompts({
name: 'planId',
type: 'select',
message: `Found ${plans.length} applied plan(s). Which one to commit?`,
choices,
})
if (planId === 'exit') {
this.log('Exiting without making any changes.')
this.exit(0)
}
const plan = plansById.get(planId)
if (plan === undefined) {
throw new Error('Bug: plan ID missing from plan map')
}
return plan
}
}