-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathproject.ts
190 lines (172 loc) · 6.91 KB
/
project.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
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
import * as api from '../rest/api'
import { CheckConfigDefaults } from '../services/checkly-config-loader'
import { Construct } from './construct'
import { ValidationError } from './validator-error'
import type { Runtime } from '../rest/runtimes'
import {
Check, AlertChannelSubscription, AlertChannel, CheckGroup, MaintenanceWindow, Dashboard,
PrivateLocation, HeartbeatCheck, PrivateLocationCheckAssignment, PrivateLocationGroupAssignment,
} from './'
import { ResourceSync } from '../rest/projects'
import { PrivateLocationApi } from '../rest/private-locations'
export interface ProjectProps {
/**
* Friendly name for your project.
*/
name: string
/**
* Git repository URL.
*/
repoUrl?: string
}
export interface ProjectData {
check: Record<string, Check>,
'check-group': Record<string, CheckGroup>,
'alert-channel': Record<string, AlertChannel>,
'alert-channel-subscription': Record<string, AlertChannelSubscription>,
'maintenance-window': Record<string, MaintenanceWindow>,
'private-location': Record<string, PrivateLocation>,
'private-location-check-assignment': Record<string, PrivateLocationCheckAssignment>,
'private-location-group-assignment': Record<string, PrivateLocationGroupAssignment>,
dashboard: Record<string, Dashboard>,
}
export class Project extends Construct {
name: string
repoUrl?: string
logicalId: string
data: ProjectData = {
check: {},
'check-group': {},
'alert-channel': {},
'alert-channel-subscription': {},
'maintenance-window': {},
'private-location': {},
'private-location-check-assignment': {},
'private-location-group-assignment': {},
dashboard: {},
}
static readonly __checklyType = 'project'
/**
* Constructs the Project instance
*
* @param logicalId unique project identifier
* @param props project configuration properties
*/
constructor (logicalId: string, props: ProjectProps) {
super(Project.__checklyType, logicalId)
if (!props.name) {
// TODO: Can we collect a list of validation errors and return them all at once? This might be better UX.
throw new ValidationError('Please give your project a name in the "name" property.')
}
this.name = props.name
this.repoUrl = props.repoUrl
this.logicalId = logicalId
}
addResource (type: string, logicalId: string, resource: Construct) {
if (this.data[type as keyof ProjectData][logicalId]) {
throw new Error(`Resource of type '${type}' with logical id '${logicalId}' already exists.`)
}
this.data[type as keyof ProjectData][logicalId] = resource
}
synthesize (addTestOnly = true): {
project: Pick<Project, 'logicalId' | 'name' | 'repoUrl'>,
resources: Array<ResourceSync>
} {
const project = {
logicalId: this.logicalId,
name: this.name,
repoUrl: this.repoUrl,
}
return {
project,
resources: [
...this.synthesizeRecord(this.data.check, addTestOnly),
...this.synthesizeRecord(this.data['check-group']),
...this.synthesizeRecord(this.data['alert-channel']),
...this.synthesizeRecord(this.data['alert-channel-subscription']),
...this.synthesizeRecord(this.data['maintenance-window']),
...this.synthesizeRecord(this.data['private-location']),
...this.synthesizeRecord(this.data['private-location-check-assignment']),
...this.synthesizeRecord(this.data['private-location-group-assignment']),
...this.synthesizeRecord(this.data.dashboard),
],
}
}
getTestOnlyConstructs (): Construct[] {
return Object
.values(this.data)
.flatMap((record: Record<string, Construct>) =>
Object
.values(record)
.filter((construct: Construct) => construct instanceof Check && construct.testOnly))
}
getHeartbeatLogicalIds (): string[] {
return Object
.values(this.data.check)
.filter((construct: Construct) => construct instanceof HeartbeatCheck)
.map((construct: Check) => construct.logicalId)
}
private synthesizeRecord (record: Record<string,
Check|CheckGroup|AlertChannel|AlertChannelSubscription|MaintenanceWindow|Dashboard|
PrivateLocation|PrivateLocationCheckAssignment|PrivateLocationGroupAssignment>, addTestOnly = true) {
return Object.entries(record)
.filter(([, construct]) => construct instanceof Check ? !construct.testOnly || addTestOnly : true)
.map(([key, construct]) => ({
logicalId: key,
type: construct.type,
physicalId: construct.physicalId,
member: construct.member,
payload: construct.synthesize(),
}))
}
}
export class Session {
static project?: Project
static basePath?: string
static checkDefaults?: CheckConfigDefaults
static browserCheckDefaults?: CheckConfigDefaults
static multiStepCheckDefaults?: CheckConfigDefaults
static checkFilePath?: string
static checkFileAbsolutePath?: string
static availableRuntimes: Record<string, Runtime>
static verifyRuntimeDependencies = true
static loadingChecklyConfigFile: boolean
static checklyConfigFileConstructs?: Construct[]
static privateLocations: PrivateLocationApi[]
static registerConstruct (construct: Construct) {
if (Session.project) {
Session.project.addResource(construct.type, construct.logicalId, construct)
} else if (Session.loadingChecklyConfigFile && construct.allowInChecklyConfig()) {
Session.checklyConfigFileConstructs!.push(construct)
} else {
throw new Error('Internal Error: Session is not properly configured for using a construct. Please contact Checkly support on [email protected]')
}
}
static validateCreateConstruct (construct: Construct) {
if (!/^[A-Za-z0-9_\-/#.]+$/.test(construct.logicalId)) {
throw new ValidationError(`The "logicalId" can only include the following characters: [A-Za-z0-9_-/#.]. (logicalId='${construct.logicalId}')`)
}
if (construct.type === Project.__checklyType) {
// Creating the construct is allowed - We're creating the project.
} else if (Session.project) {
// Creating the construct is allowed - We're in the process of parsing the project.
} else if (Session.loadingChecklyConfigFile && construct.allowInChecklyConfig()) {
// Creating the construct is allowed - We're in the process of parsing the Checkly config.
} else if (Session.loadingChecklyConfigFile) {
throw new Error(`Creating a ${construct.constructor.name} construct in the Checkly config file isn't supported.`)
} else {
throw new Error(`Unable to create a construct '${construct.constructor.name}' outside a Checkly CLI project.`)
}
}
static async getPrivateLocations () {
if (!Session.privateLocations) {
const { data: privateLocations } = await api.privateLocations.getAll()
Session.privateLocations = privateLocations
}
return Session.privateLocations
}
}
export type ProjectPayload = {
project: Pick<Project, 'logicalId' | 'name' | 'repoUrl'>
resources: ResourceSync[]
}