-
Notifications
You must be signed in to change notification settings - Fork 3.9k
/
_codebuild-factory.ts
513 lines (436 loc) · 18.4 KB
/
_codebuild-factory.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
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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
import * as crypto from 'crypto';
import * as fs from 'fs';
import * as path from 'path';
import * as codebuild from '@aws-cdk/aws-codebuild';
import * as codepipeline from '@aws-cdk/aws-codepipeline';
import * as codepipeline_actions from '@aws-cdk/aws-codepipeline-actions';
import * as ec2 from '@aws-cdk/aws-ec2';
import * as iam from '@aws-cdk/aws-iam';
import { IDependable, Stack } from '@aws-cdk/core';
import { Construct, Node } from 'constructs';
import { FileSetLocation, ShellStep, StackDeployment, StackOutputReference } from '../blueprint';
import { PipelineQueries } from '../helpers-internal/pipeline-queries';
import { cloudAssemblyBuildSpecDir, obtainScope } from '../private/construct-internals';
import { mapValues, mkdict, noEmptyObject, noUndefined, partition } from '../private/javascript';
import { ArtifactMap } from './artifact-map';
import { CodeBuildStep } from './codebuild-step';
import { CodeBuildOptions } from './codepipeline';
import { ICodePipelineActionFactory, ProduceActionOptions, CodePipelineActionFactoryResult } from './codepipeline-action-factory';
export interface CodeBuildFactoryProps {
/**
* Name for the generated CodeBuild project
*
* @default - Automatically generated
*/
readonly projectName?: string;
/**
* Customization options for the project
*
* Will at CodeBuild production time be combined with the option
* defaults configured on the pipeline.
*
* @default - No special values
*/
readonly projectOptions?: CodeBuildOptions;
/**
* Custom execution role to be used for the CodeBuild project
*
* @default - A role is automatically created
*/
readonly role?: iam.IRole;
/**
* If true, the build spec will be passed via the Cloud Assembly instead of rendered onto the Project
*
* Doing this has two advantages:
*
* - Bypass size restrictions: the buildspec on the project is restricted
* in size, while buildspecs coming from an input artifact are not restricted
* in such a way.
* - Bypass pipeline update: if the SelfUpdate step has to change the buildspec,
* that just takes time. On the other hand, if the buildspec comes from the
* pipeline artifact, no such update has to take place.
*
* @default false
*/
readonly passBuildSpecViaCloudAssembly?: boolean;
/**
* Override the construct tree where the CodeBuild project is created.
*
* Normally, the construct tree will look like this:
*
* ── Pipeline
* └── 'MyStage' <- options.scope
* └── 'MyAction' <- this is the CodeBuild project
*
* If this flag is set, the construct tree will look like this:
*
* ── Pipeline
* └── 'MyStage' <- options.scope
* └── 'MyAction' <- just a scope
* └── 'BackwardsCompatName' <- CodeBuild project
*
* This is to maintain logicalID compatibility with the previous iteration
* of pipelines (where the Action was a construct that would create the Project).
*
* @default true
*/
readonly additionalConstructLevel?: boolean;
/**
* Additional dependency that the CodeBuild project should take
*
* @default -
*/
readonly additionalDependable?: IDependable;
readonly inputs?: FileSetLocation[];
readonly outputs?: FileSetLocation[];
readonly stepId?: string;
readonly commands: string[];
readonly installCommands?: string[];
readonly env?: Record<string, string>;
readonly envFromCfnOutputs?: Record<string, StackOutputReference>;
/**
* If given, override the scope from the produce call with this scope.
*/
readonly scope?: Construct;
/**
* Whether or not the given CodeBuild project is going to be the synth step
*
* @default false
*/
readonly isSynth?: boolean;
}
/**
* Produce a CodeBuild project from a ShellStep and some CodeBuild-specific customizations
*
* The functionality here is shared between the `CodePipeline` translating a `ShellStep` into
* a CodeBuild project, as well as the `CodeBuildStep` straight up.
*/
export class CodeBuildFactory implements ICodePipelineActionFactory {
// eslint-disable-next-line max-len
public static fromShellStep(constructId: string, shellStep: ShellStep, additional?: Partial<CodeBuildFactoryProps>): ICodePipelineActionFactory {
return new CodeBuildFactory(constructId, {
commands: shellStep.commands,
env: shellStep.env,
envFromCfnOutputs: shellStep.envFromCfnOutputs,
inputs: shellStep.inputs,
outputs: shellStep.outputs,
stepId: shellStep.id,
installCommands: shellStep.installCommands,
...additional,
});
}
public static fromCodeBuildStep(constructId: string, step: CodeBuildStep, additional?: Partial<CodeBuildFactoryProps>): ICodePipelineActionFactory {
const factory = CodeBuildFactory.fromShellStep(constructId, step, {
projectName: step.projectName,
role: step.role,
projectOptions: {
buildEnvironment: step.buildEnvironment,
rolePolicy: step.rolePolicyStatements,
securityGroups: step.securityGroups,
partialBuildSpec: step.partialBuildSpec,
vpc: step.vpc,
subnetSelection: step.subnetSelection,
...additional?.projectOptions,
},
...additional,
});
return {
produceAction: (stage, options) => {
const result = factory.produceAction(stage, options);
if (result.project) {
step._setProject(result.project);
}
return result;
},
};
}
private _project?: codebuild.IProject;
private stepId: string;
private constructor(
private readonly constructId: string,
private readonly props: CodeBuildFactoryProps) {
this.stepId = props.stepId ?? constructId;
}
public get project(): codebuild.IProject {
if (!this._project) {
throw new Error('Project becomes available after produce() has been called');
}
return this._project;
}
public produceAction(stage: codepipeline.IStage, options: ProduceActionOptions): CodePipelineActionFactoryResult {
const projectOptions = mergeCodeBuildOptions(options.codeBuildDefaults, this.props.projectOptions);
const inputs = this.props.inputs ?? [];
const outputs = this.props.outputs ?? [];
const mainInput = inputs.find(x => x.directory === '.');
const extraInputs = inputs.filter(x => x.directory !== '.');
const inputArtifact = mainInput
? options.artifacts.toCodePipeline(mainInput.fileSet)
: options.fallbackArtifact;
const extraInputArtifacts = extraInputs.map(x => options.artifacts.toCodePipeline(x.fileSet));
const outputArtifacts = outputs.map(x => options.artifacts.toCodePipeline(x.fileSet));
if (!inputArtifact) {
// This should actually never happen because CodeBuild projects shouldn't be added before the
// Source, which always produces at least an artifact.
throw new Error(`CodeBuild action '${this.stepId}' requires an input (and the pipeline doesn't have a Source to fall back to). Add an input or a pipeline source.`);
}
const installCommands = [
...generateInputArtifactLinkCommands(options.artifacts, extraInputs),
...this.props.installCommands ?? [],
];
const buildSpecHere = codebuild.BuildSpec.fromObject({
version: '0.2',
phases: {
install: (installCommands.length ?? 0) > 0 ? { commands: installCommands } : undefined,
build: this.props.commands.length > 0 ? { commands: this.props.commands } : undefined,
},
artifacts: noEmptyObject<any>(renderArtifactsBuildSpec(options.artifacts, this.props.outputs ?? [])),
});
// Partition environment variables into environment variables that can go on the project
// and environment variables that MUST go in the pipeline (those that reference CodePipeline variables)
const env = noUndefined(this.props.env ?? {});
const [actionEnvs, projectEnvs] = partition(Object.entries(env ?? {}), ([, v]) => containsPipelineVariable(v));
const environment = mergeBuildEnvironments(
projectOptions?.buildEnvironment ?? {},
{
environmentVariables: noEmptyObject(mapValues(mkdict(projectEnvs), value => ({ value }))),
});
const fullBuildSpec = projectOptions?.partialBuildSpec
? codebuild.mergeBuildSpecs(projectOptions.partialBuildSpec, buildSpecHere)
: buildSpecHere;
const osFromEnvironment = environment.buildImage && environment.buildImage instanceof codebuild.WindowsBuildImage
? ec2.OperatingSystemType.WINDOWS
: ec2.OperatingSystemType.LINUX;
const actualBuildSpec = filterBuildSpecCommands(fullBuildSpec, osFromEnvironment);
const scope = this.props.scope ?? options.scope;
let projectBuildSpec;
if (this.props.passBuildSpecViaCloudAssembly) {
// Write to disk and replace with a reference
const relativeSpecFile = `buildspec-${Node.of(scope).addr}-${this.constructId}.yaml`;
const absSpecFile = path.join(cloudAssemblyBuildSpecDir(scope), relativeSpecFile);
// This should resolve to a pure JSON string. If it resolves to an object, it's a CFN
// expression, and we can't support that yet. Maybe someday if we think really hard about it.
const fileContents = Stack.of(scope).resolve(actualBuildSpec.toBuildSpec());
if (typeof fileContents !== 'string') {
throw new Error(`This BuildSpec contains CloudFormation references and is supported by publishInParallel=false: ${JSON.stringify(fileContents, undefined, 2)}`);
}
fs.writeFileSync(absSpecFile, fileContents, { encoding: 'utf-8' });
projectBuildSpec = codebuild.BuildSpec.fromSourceFilename(relativeSpecFile);
} else {
projectBuildSpec = actualBuildSpec;
}
// A hash over the values that make the CodeBuild Project unique (and necessary
// to restart the pipeline if one of them changes). projectName is not necessary to include
// here because the pipeline will definitely restart if projectName changes.
// (Resolve tokens)
const projectConfigHash = hash(Stack.of(scope).resolve({
environment: serializeBuildEnvironment(environment),
buildSpecString: actualBuildSpec.toBuildSpec(),
}));
const actionName = options.actionName ?? this.stepId;
let projectScope = scope;
if (this.props.additionalConstructLevel ?? true) {
projectScope = obtainScope(scope, actionName);
}
const project = new codebuild.PipelineProject(projectScope, this.constructId, {
projectName: this.props.projectName,
environment,
vpc: projectOptions.vpc,
subnetSelection: projectOptions.subnetSelection,
securityGroups: projectOptions.securityGroups,
buildSpec: projectBuildSpec,
role: this.props.role,
});
if (this.props.additionalDependable) {
project.node.addDependency(this.props.additionalDependable);
}
if (projectOptions.rolePolicy !== undefined) {
projectOptions.rolePolicy.forEach(policyStatement => {
project.addToRolePolicy(policyStatement);
});
}
const queries = new PipelineQueries(options.pipeline);
const stackOutputEnv = mapValues(this.props.envFromCfnOutputs ?? {}, outputRef =>
`#{${stackVariableNamespace(queries.producingStack(outputRef))}.${outputRef.outputName}}`,
);
const configHashEnv = options.beforeSelfMutation
? { _PROJECT_CONFIG_HASH: projectConfigHash }
: {};
stage.addAction(new codepipeline_actions.CodeBuildAction({
actionName: actionName,
input: inputArtifact,
extraInputs: extraInputArtifacts,
outputs: outputArtifacts,
project,
runOrder: options.runOrder,
// Inclusion of the hash here will lead to the pipeline structure for any changes
// made the config of the underlying CodeBuild Project.
// Hence, the pipeline will be restarted. This is necessary if the users
// adds (for example) build or test commands to the buildspec.
environmentVariables: noEmptyObject(cbEnv({
...mkdict(actionEnvs),
...configHashEnv,
...stackOutputEnv,
})),
}));
this._project = project;
return { runOrdersConsumed: 1, project };
}
}
/**
* Generate commands to move additional input artifacts into the right place
*/
function generateInputArtifactLinkCommands(artifacts: ArtifactMap, inputs: FileSetLocation[]): string[] {
return inputs.map(input => {
const fragments = [];
fragments.push(`[[ ! -d "${input.directory}" ]] || { echo 'additionalInputs: "${input.directory}" must not exist yet. If you want to merge multiple artifacts, use a "cp" command.'; exit 1; }`);
const parentDirectory = path.dirname(input.directory);
if (!['.', '..'].includes(parentDirectory)) {
fragments.push(`mkdir -p -- "${parentDirectory}"`);
}
const artifact = artifacts.toCodePipeline(input.fileSet);
fragments.push(`ln -s -- "$CODEBUILD_SRC_DIR_${artifact.artifactName}" "${input.directory}"`);
return fragments.join(' && ');
});
}
function renderArtifactsBuildSpec(artifactMap: ArtifactMap, outputs: FileSetLocation[]) {
// save the generated files in the output artifact
// This part of the buildspec has to look completely different depending on whether we're
// using secondary artifacts or not.
if (outputs.length === 0) { return {}; }
if (outputs.length === 1) {
return {
'base-directory': outputs[0].directory,
'files': '**/*',
};
}
const secondary: Record<string, any> = {};
for (const output of outputs) {
const art = artifactMap.toCodePipeline(output.fileSet);
if (!art.artifactName) {
throw new Error('You must give the output artifact a name');
}
secondary[art.artifactName] = {
'base-directory': output.directory,
'files': '**/*',
};
}
return { 'secondary-artifacts': secondary };
}
export function mergeCodeBuildOptions(...opts: Array<CodeBuildOptions | undefined>) {
const xs = [{}, ...opts.filter(isDefined)];
while (xs.length > 1) {
const [a, b] = xs.splice(xs.length - 2, 2);
xs.push(merge2(a, b));
}
return xs[0];
function merge2(a: CodeBuildOptions, b: CodeBuildOptions): CodeBuildOptions {
return {
buildEnvironment: mergeBuildEnvironments(a.buildEnvironment, b.buildEnvironment),
rolePolicy: definedArray([...a.rolePolicy ?? [], ...b.rolePolicy ?? []]),
securityGroups: definedArray([...a.securityGroups ?? [], ...b.securityGroups ?? []]),
partialBuildSpec: mergeBuildSpecs(a.partialBuildSpec, b.partialBuildSpec),
vpc: b.vpc ?? a.vpc,
subnetSelection: b.subnetSelection ?? a.subnetSelection,
};
}
}
function mergeBuildEnvironments(a: codebuild.BuildEnvironment, b?: codebuild.BuildEnvironment): codebuild.BuildEnvironment;
function mergeBuildEnvironments(a: codebuild.BuildEnvironment | undefined, b: codebuild.BuildEnvironment): codebuild.BuildEnvironment;
function mergeBuildEnvironments(a?: codebuild.BuildEnvironment, b?: codebuild.BuildEnvironment): codebuild.BuildEnvironment | undefined;
function mergeBuildEnvironments(a?: codebuild.BuildEnvironment, b?: codebuild.BuildEnvironment) {
if (!a || !b) { return a ?? b; }
return {
buildImage: b.buildImage ?? a.buildImage,
computeType: b.computeType ?? a.computeType,
environmentVariables: {
...a.environmentVariables,
...b.environmentVariables,
},
privileged: b.privileged ?? a.privileged,
};
}
export function mergeBuildSpecs(a: codebuild.BuildSpec, b?: codebuild.BuildSpec): codebuild.BuildSpec;
export function mergeBuildSpecs(a: codebuild.BuildSpec | undefined, b: codebuild.BuildSpec): codebuild.BuildSpec;
export function mergeBuildSpecs(a?: codebuild.BuildSpec, b?: codebuild.BuildSpec): codebuild.BuildSpec | undefined;
export function mergeBuildSpecs(a?: codebuild.BuildSpec, b?: codebuild.BuildSpec) {
if (!a || !b) { return a ?? b; }
return codebuild.mergeBuildSpecs(a, b);
}
function isDefined<A>(x: A | undefined): x is NonNullable<A> {
return x !== undefined;
}
function hash<A>(obj: A) {
const d = crypto.createHash('sha256');
d.update(JSON.stringify(obj));
return d.digest('hex');
}
/**
* Serialize a build environment to data (get rid of constructs & objects), so we can JSON.stringify it
*/
function serializeBuildEnvironment(env: codebuild.BuildEnvironment) {
return {
privileged: env.privileged,
environmentVariables: env.environmentVariables,
type: env.buildImage?.type,
imageId: env.buildImage?.imageId,
computeType: env.computeType,
imagePullPrincipalType: env.buildImage?.imagePullPrincipalType,
secretsManagerArn: env.buildImage?.secretsManagerCredentials?.secretArn,
};
}
export function stackVariableNamespace(stack: StackDeployment) {
return stack.stackArtifactId;
}
/**
* Whether the given string contains a reference to a CodePipeline variable
*/
function containsPipelineVariable(s: string) {
return !!s.match(/#\{[^}]+\}/);
}
/**
* Turn a collection into a collection of CodePipeline environment variables
*/
function cbEnv(xs: Record<string, string | undefined>): Record<string, codebuild.BuildEnvironmentVariable> {
return mkdict(Object.entries(xs)
.filter(([, v]) => v !== undefined)
.map(([k, v]) => [k, { value: v }] as const));
}
function definedArray<A>(xs: A[]): A[] | undefined {
return xs.length > 0 ? xs : undefined;
}
/**
* If lines in the buildspec start with '!WINDOWS!' or '!LINUX!', only render them on that platform.
*
* Very private protocol for now, but may come in handy in other libraries as well.
*/
function filterBuildSpecCommands(buildSpec: codebuild.BuildSpec, osType: ec2.OperatingSystemType) {
if (!buildSpec.isImmediate) { return buildSpec; }
const spec = (buildSpec as any).spec;
const winTag = '!WINDOWS!';
const linuxTag = '!LINUX!';
const expectedTag = osType === ec2.OperatingSystemType.WINDOWS ? winTag : linuxTag;
return codebuild.BuildSpec.fromObject(recurse(spec));
function recurse(x: any): any {
if (Array.isArray(x)) {
const ret: any[] = [];
for (const el of x) {
const [tag, payload] = extractTag(el);
if (tag === undefined || tag === expectedTag) {
ret.push(payload);
}
}
return ret;
}
if (x && typeof x === 'object') {
return mapValues(x, recurse);
}
return x;
}
function extractTag(x: any): [string | undefined, any] {
if (typeof x !== 'string') { return [undefined, x]; }
for (const tag of [winTag, linuxTag]) {
if (x.startsWith(tag)) { return [tag, x.substr(tag.length)]; }
}
return [undefined, x];
}
}