-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmaven.ts
771 lines (692 loc) Β· 24.3 KB
/
maven.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
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
import { TargetConfig } from '../schemas/project_config';
import {
BaseArtifactProvider,
RemoteArtifact,
} from '../artifact_providers/base';
import { BaseTarget } from './base';
import { basename, extname, join, parse } from 'path';
import { promises as fsPromises } from 'fs';
import fetch from 'node-fetch';
import { checkExecutableIsPresent, extractZipArchive } from '../utils/system';
import { retrySpawnProcess, sleep } from '../utils/async';
import { withTempDir } from '../utils/files';
import { ConfigurationError } from '../utils/errors';
import { stringToRegexp } from '../utils/filters';
import { checkEnvForPrerequisite } from '../utils/env';
import { importGPGKey } from '../utils/gpg';
export const POM_DEFAULT_FILENAME = 'pom-default.xml';
const POM_FILE_EXT = '.xml'; // Must include the leading `.`
const BOM_FILE_KEY_REGEXP = new RegExp('<packaging>pom</packaging>');
// TODO: Make it configurable to allow for sentry-clj releases?
export const NEXUS_API_BASE_URL =
'https://oss.sonatype.org/service/local/staging';
const NEXUS_RETRY_DELAY = 10 * 1000; // 10s
const NEXUS_RETRY_DEADLINE = 60 * 60 * 1000; // 60min
export type NexusRepository = {
repositoryId: string;
type: 'open' | 'closed';
transitioning: boolean;
};
export const targetSecrets = [
'GPG_PASSPHRASE',
'OSSRH_USERNAME',
'OSSRH_PASSWORD',
] as const;
type SecretsType = typeof targetSecrets[number];
export const targetOptions = [
'mavenCliPath',
'mavenSettingsPath',
'mavenRepoId',
'mavenRepoUrl',
] as const;
type OptionsType = typeof targetOptions[number];
type AndroidFields = {
android:
| false
| {
distDirRegex: RegExp;
fileReplaceeRegex: RegExp;
fileReplacerStr: string;
};
};
type KotlinMultiplatformFields = {
kmp:
| false
| {
appleDistDirRegex: RegExp;
rootDistDirRegex: RegExp;
};
};
type TargetSettingType = SecretsType | OptionsType;
/**
* Config options for the "maven" target.
*/
export type MavenTargetConfig = Record<TargetSettingType, string> &
AndroidFields &
KotlinMultiplatformFields;
type PartialTargetConfig = Array<{ name: string; value: string | undefined }>;
/**
* Target responsible for uploading files to Maven Central.
*/
export class MavenTarget extends BaseTarget {
/** Target name */
public readonly name: string = 'maven';
/** Target options */
public readonly mavenConfig: MavenTargetConfig;
public constructor(
config: TargetConfig,
artifactProvider: BaseArtifactProvider
) {
super(config, artifactProvider);
this.mavenConfig = this.getMavenConfig();
}
/**
* Returns the maven config with the required data (e.g. environment
* variables) for this target. If there's a configuration requirement missing,
* raises an error.
*
* @returns the maven config for this target.
*/
private getMavenConfig(): MavenTargetConfig {
const config = {
...this.getTargetSecrets(),
...this.getOuterTargetSettings(),
...this.getAndroidSettings(),
...this.getKotlinMultiplatformSettings(),
};
this.checkRequiredSoftware(config);
return config;
}
private getTargetSecrets(): Record<TargetSettingType, string> {
const secrets = targetSecrets.map(name => {
checkEnvForPrerequisite({ name });
return {
name,
value: process.env[name],
};
});
return this.reduceConfig(secrets);
}
private reduceConfig(config: PartialTargetConfig): Record<string, string> {
return config.reduce((prev, current) => {
return {
...prev,
[current.name]: current.value,
};
}, {});
}
private getOuterTargetSettings(): Record<TargetSettingType, string> {
const settings = targetOptions.map(setting => {
if (!this.config[setting]) {
throw new ConfigurationError(
`Required configuration ${setting} not found in configuration file. ` +
`See the documentation for more details.`
);
}
return {
name: setting,
value: this.config[setting],
};
});
return this.reduceConfig(settings);
}
private getKotlinMultiplatformSettings(): KotlinMultiplatformFields {
if (this.config.kmp === false || !this.config.kmp) {
return {
kmp: false,
};
}
if (!this.config.kmp.rootDistDirRegex) {
throw new ConfigurationError(
'Required root configuration for Kotlin Multiplatform is incorrect. See the documentation for more details.'
);
}
if (!this.config.kmp.appleDistDirRegex) {
throw new ConfigurationError(
'Required apple configuration for Kotlin Multiplatform is incorrect. See the documentation for more details.'
);
}
return {
kmp: {
appleDistDirRegex: stringToRegexp(this.config.kmp.appleDistDirRegex),
rootDistDirRegex: stringToRegexp(this.config.kmp.rootDistDirRegex),
},
};
}
private getAndroidSettings(): AndroidFields {
if (this.config.android === false) {
return {
android: false,
};
}
if (!this.config.android) {
throw new ConfigurationError(
'Required Android configuration was not found in the configuration file. ' +
'See the documentation for more details'
);
}
if (
!this.config.android.distDirRegex ||
!this.config.android.fileReplaceeRegex ||
!this.config.android.fileReplacerStr
) {
throw new ConfigurationError(
'Required Android configuration is incorrect. See the documentation for more details.'
);
}
return {
android: {
distDirRegex: stringToRegexp(this.config.android.distDirRegex),
fileReplaceeRegex: stringToRegexp(
this.config.android.fileReplaceeRegex
),
fileReplacerStr: this.config.android.fileReplacerStr,
},
};
}
/**
* Checks whether the required software to run this target is available
* in the system. It assumes the config for this target to be available.
* If there's required software missing, raises an error.
*/
private checkRequiredSoftware(config: MavenTargetConfig): void {
this.logger.debug(
'Checking if Maven CLI is available: ',
config.mavenCliPath
);
checkExecutableIsPresent(config.mavenCliPath);
this.logger.debug('Checking if GPG is available');
checkExecutableIsPresent('gpg');
}
/**
* Publishes current Java and Android distributions.
* @param version New version to be released.
* @param revision Git commit SHA to be published.
*/
public async publish(_version: string, revison: string): Promise<void> {
if (process.env.GPG_PRIVATE_KEY) {
await importGPGKey(process.env.GPG_PRIVATE_KEY);
}
await this.upload(revison);
await this.closeAndReleaseRepository();
}
/**
* Uploads the artifacts with the required files. This is a required step
* to make a release, but this doesn't perform any releases; after upload,
* the flow must finish with `closeAndReleaseRepository`.
*/
public async upload(revision: string): Promise<void> {
const artifacts = await this.getArtifactsForRevision(revision, {
includeNames: this.config.includeNames,
});
// We don't want to do this in parallel but in serial, because the gpg-agent
// runs out of memory. See
// https://github.com/sbt/sbt-pgp/issues/168
// https://github.com/gradle/gradle/issues/12167
for (const artifact of artifacts) {
await this.uploadArtifact(artifact);
}
}
/**
* Extracts and uploads all required files in the artifact.
*
* @param artifact the remote artifact to be uploaded.
* @param dir directory where the artifact can be extracted.
*/
private async uploadArtifact(artifact: RemoteArtifact): Promise<void> {
this.logger.debug('Downloading:', artifact.filename);
const downloadedPkgPath = await this.artifactProvider.downloadArtifact(
artifact
);
this.logger.debug(`Extracting ${artifact.filename}: `, downloadedPkgPath);
await withTempDir(async dir => {
await extractZipArchive(downloadedPkgPath, dir);
// All artifacts downloaded from GitHub are ZIP files.
const pkgName = basename(artifact.filename, '.zip');
const distDir = join(dir, pkgName);
await this.uploadDistribution(distDir);
});
}
/**
* Uploads the given distribution, including all files that are required.
*
* @param distDir directory of the distribution.
*/
private async uploadDistribution(distDir: string): Promise<void> {
const bomFile = await this.getBomFileInDist(distDir);
const pomFile = await this.getPomFileInDist(distDir);
if (bomFile) {
this.logger.debug('Found BOM: ', bomFile);
await this.uploadBomDistribution(bomFile);
} else if (pomFile) {
this.logger.debug('Found POM: ', pomFile);
await this.uploadPomDistribution(distDir);
} else {
this.logger.warn(`No BOM/POM file found in: ${distDir}, skipping directory`);
}
}
/**
* Returns the path to the BOM file in the given distribution directory, and
* `undefined` if there isn't any.
*/
private async getBomFileInDist(distDir: string): Promise<string | undefined> {
const pomFilepath = join(distDir, POM_DEFAULT_FILENAME);
if (await this.isBomFile(pomFilepath)) {
return pomFilepath;
}
// There may be several files in the ZIP-ed artifact with the same name,
// where the BOM may be one of them (there may not be a BOM). Files may be
// renamed when extracting the ZIP, so the default name (`pom-default.xml`)
// may not match. It's assumed that any renaming keeps the same extension,
// so all files with the same extension are checked to identify the BOM.
// TODO: make sure all scenarios are considered and tested.
// Each file system may handle this case differently, and attended vs
// unattended mode also have different behaviours. It's not desired to get
// the BOM renamed in such a way that isn't handled by the target.
const filesInDir = await fsPromises.readdir(distDir);
const potentialPoms = filesInDir
.filter(f => f !== POM_DEFAULT_FILENAME && extname(f) === POM_FILE_EXT)
.map(f => join(distDir, f));
return potentialPoms.find(f => this.isBomFile(f));
}
/**
* Returns whether the given POM is a BOM.
*
* A BOM file is a POM file with the following key:
* `<packaging>pom</packaging>`, usually named as `pom-default.xml`.
*
* @param pomFilepath path to the POM.
* @returns true if the POM is a BOM.
*/
public async isBomFile(pomFilepath: string): Promise<boolean> {
try {
const fileContents = await fsPromises.readFile(pomFilepath, {
encoding: 'utf8',
});
return BOM_FILE_KEY_REGEXP.test(fileContents);
} catch (error) {
this.logger.warn(
`Could not determine if path corresponds to a BOM file: ${pomFilepath}\n` +
'Error:\n',
error
);
return false;
}
}
private async uploadBomDistribution(bomFile: string): Promise<void> {
await retrySpawnProcess(this.mavenConfig.mavenCliPath, [
'gpg:sign-and-deploy-file',
`-Dfile=${bomFile}`,
`-DpomFile=${bomFile}`,
`-DrepositoryId=${this.mavenConfig.mavenRepoId}`,
`-Durl=${this.mavenConfig.mavenRepoUrl}`,
`-Dgpg.passphrase=${this.mavenConfig.GPG_PASSPHRASE}`,
'--settings',
this.mavenConfig.mavenSettingsPath,
]);
}
private async uploadKmpPomDistribution(distDir: string): Promise<void> {
if (this.mavenConfig.kmp !== false) {
const moduleName = parse(distDir).base;
const isRootDistDir = this.mavenConfig.kmp.rootDistDirRegex.test(
moduleName
);
const isAppleDistDir = this.mavenConfig.kmp.appleDistDirRegex.test(
moduleName
);
const files = await this.getFilesForKmpMavenPomDist(distDir);
const { targetFile, pomFile } = files;
const {
sideArtifacts,
classifiers,
types,
} = this.transformKmpSideArtifacts(isRootDistDir, isAppleDistDir, files);
await retrySpawnProcess(this.mavenConfig.mavenCliPath, [
'gpg:sign-and-deploy-file',
`-Dfile=${targetFile}`,
`-Dfiles=${sideArtifacts}`,
`-Dclassifiers=${classifiers}`,
`-Dtypes=${types}`,
`-DpomFile=${pomFile}`,
`-DrepositoryId=${this.mavenConfig.mavenRepoId}`,
`-Durl=${this.mavenConfig.mavenRepoUrl}`,
`-Dgpg.passphrase=${this.mavenConfig.GPG_PASSPHRASE}`,
`--settings`,
`${this.mavenConfig.mavenSettingsPath}`,
]);
}
}
/**
* Transforms the Kotlin Multiplatform side artifacts into the format required by the publish plugin.
*
* The "files" Record should contain the following fields:
* - javadocFile
- sourcesFile
- klibFiles
- allFile
- metadataFile
- moduleFile
- kotlinToolingMetadataFile
*
* Depending on the values of the `isRootDistDir` and `isAppleDistDir` parameters, this function generates
* a set of "side artifacts" (javadoc, sources, klib files, metadata, and .module files), as well as a set
* of "classifiers" and "types" that are required by the publish plugin.
*
* @param isRootDistDir boolean indicating whether the distDir is the root distDir
* @param isAppleDistDir boolean indicating whether the distDir is the Apple distDir
* @param files an object containing the input files, as described above
* @returns a Record with three fields:
* - sideArtifacts: a comma-separated string listing the paths to all generated "side artifacts"
* - classifiers: a comma-separated string listing the classifiers for each generated artifact
* - types: a comma-separated string listing the types for each generated artifact
*/
public transformKmpSideArtifacts(
isRootDistDir: boolean,
isAppleDistDir: boolean,
files: Record<string, string | string[]>
): Record<string, string | string[]> {
const {
javadocFile,
sourcesFile,
klibFiles,
allFile,
metadataFile,
moduleFile,
kotlinToolingMetadataFile,
} = files;
let sideArtifacts = `${javadocFile},${sourcesFile}`;
let classifiers = 'javadoc,sources';
let types = 'jar,jar';
if (isRootDistDir) {
sideArtifacts += `,${allFile},${kotlinToolingMetadataFile}`;
types += ',jar,json';
classifiers += ',all,kotlin-tooling-metadata';
} else if (isAppleDistDir) {
if (klibFiles) {
sideArtifacts += `,${klibFiles}`;
// In order to upload cinterop klib files we need to extract the classifier from the file name.
// e.g: "sentry-kotlin-multiplatform-iosarm64-0.0.1-cinterop-Sentry.klib",
// the classifier is "cinterop-Sentry".
for (let i = 0; i < klibFiles.length; i++) {
const input = klibFiles[i];
const start = input.indexOf('cinterop');
const end = input.indexOf('.klib', start);
const classifier = input.substring(start, end);
types += ',klib';
classifiers += `,${classifier}`;
}
}
sideArtifacts += `,${metadataFile}`;
types += ',jar';
classifiers += ',metadata';
}
// .module files should be available in every KMP artifact
sideArtifacts += `,${moduleFile}`;
types += ',module';
// .module files in this case shouldn't have a classifier
classifiers += ',';
return {
sideArtifacts,
classifiers,
types,
};
}
/**
* Returns a file path to pom-default.xml if the file exists
* within the distribution directory.
*/
public async getPomFileInDist(distDir: string): Promise<string | undefined> {
const pomFilepath = join(distDir, 'pom-default.xml');
try {
const stat = await fsPromises.stat(pomFilepath);
if (stat.isFile()) {
return pomFilepath;
}
} catch (e) {
// ignored
}
return undefined;
}
/**
* Returns true if the provided path exists and is a file.
*/
public async fileExists(filePath: string): Promise<boolean> {
try {
const stat = await fsPromises.stat(filePath);
if (stat.isFile()) {
return true;
}
} catch (e) {
// ignored
}
return false;
}
/**
* Some maven publications contain a dist/module.json file instead of a
* mvn friendly dist/dist.module file.
*
* In case module.json exists but dist.module doesn't,
* this function renames module.json to dist.module,
* making it fit for mvn publishing.
*/
public async fixModuleFileName(distDir: string, moduleFile: string): Promise<void> {
const fallbackFile = join(distDir, 'module.json');
if (!await this.fileExists(moduleFile) && await this.fileExists(fallbackFile)) {
await fsPromises.rename(fallbackFile, moduleFile);
}
}
private async uploadPomDistribution(distDir: string): Promise<void> {
if (this.mavenConfig.kmp !== false) {
await this.uploadKmpPomDistribution(distDir);
} else {
const {
targetFile,
javadocFile,
sourcesFile,
pomFile,
moduleFile,
} = this.getFilesForMavenPomDist(distDir);
await this.fixModuleFileName(distDir, moduleFile);
const hasModule = await this.fileExists(moduleFile);
// Maven central is very flaky, so retrying with an exponential delay in
// in case it fails.
await retrySpawnProcess(this.mavenConfig.mavenCliPath, [
'gpg:sign-and-deploy-file',
`-Dfile=${targetFile}`,
`-Dfiles=${javadocFile},${sourcesFile}${hasModule ? ',' + moduleFile : ''}`,
`-Dclassifiers=javadoc,sources${hasModule ? ',' : ''}`,
`-Dtypes=jar,jar${hasModule ? ',module' : ''}`,
`-DpomFile=${pomFile}`,
`-DrepositoryId=${this.mavenConfig.mavenRepoId}`,
`-Durl=${this.mavenConfig.mavenRepoUrl}`,
`-Dgpg.passphrase=${this.mavenConfig.GPG_PASSPHRASE}`,
`--settings`,
`${this.mavenConfig.mavenSettingsPath}`,
]);
}
}
/**
* Retrieves a record of all the required files by Maven CLI to upload
* anything.
*
* @param distDir directory of the distribution.
* @returns record of required files.
*/
private getFilesForMavenPomDist(distDir: string): Record<string, string> {
const moduleName = parse(distDir).base;
return {
targetFile: join(distDir, this.getTargetFilename(distDir)),
javadocFile: join(distDir, `${moduleName}-javadoc.jar`),
sourcesFile: join(distDir, `${moduleName}-sources.jar`),
pomFile: join(distDir, 'pom-default.xml'),
moduleFile: join(distDir, `${moduleName}.module`)
};
}
/**
* Retrieves a record of all the required files by Maven CLI to upload
* Kotlin Multiplatform (KMP) artifacts.
*
* @param distDir directory of the distribution.
* @returns record of required files.
*/
private async getFilesForKmpMavenPomDist(
distDir: string
): Promise<Record<string, string | string[]>> {
const files = this.getFilesForMavenPomDist(distDir) as Record<
string,
string | string[]
>;
await this.fixModuleFileName(distDir, files.moduleFile as string);
const moduleName = parse(distDir).base;
if (this.mavenConfig.kmp !== false) {
const isRootDistDir = this.mavenConfig.kmp.rootDistDirRegex.test(
moduleName
);
const isAppleDistDir = this.mavenConfig.kmp.appleDistDirRegex.test(
moduleName
);
if (isRootDistDir) {
files['allFile'] = join(distDir, `${moduleName}-all.jar`);
files['kotlinToolingMetadataFile'] = join(
distDir,
`${moduleName}-kotlin-tooling-metadata.json`
);
} else if (isAppleDistDir) {
files['metadataFile'] = join(distDir, `${moduleName}-metadata.jar`);
const cinteropFiles = (await fsPromises.readdir(distDir))
.filter(file => file.includes('cinterop'))
.map(file => join(distDir, file));
files['klibFiles'] = cinteropFiles;
}
}
return files;
}
/**
* Retrieves the target file name for the current distribution.
*
* If the distibution is an Android distribution, the target file is the
* file containing "release" in the name and the ".aar" extension.
* Typically, the module (directory) name without the version and appending
* "-release.aar" at the end.
*
* If the distribution isn't an Android distribution, the target filename is
* the module name appending ".jar" to the end.
*
* @param distDir directory where distributions are.
* @returns the target file name.
*/
private getTargetFilename(distDir: string): string {
const moduleName = parse(distDir).base;
if (this.mavenConfig.android !== false) {
const isAndroidDistDir = this.mavenConfig.android.distDirRegex.test(
moduleName
);
if (isAndroidDistDir) {
return moduleName.replace(
this.mavenConfig.android.fileReplaceeRegex,
this.mavenConfig.android.fileReplacerStr
);
}
}
if (this.mavenConfig.kmp !== false) {
const isAppleDistDir = this.mavenConfig.kmp.appleDistDirRegex.test(
moduleName
);
if (isAppleDistDir) {
return `${moduleName}.klib`;
}
}
return `${moduleName}.jar`;
}
// Maven central does not indicate when it completes the action, so we need to
// retry every so often and query it for the new state of repository.
// Based on: https://github.com/vanniktech/gradle-maven-publish-plugin/ implementation.
public async closeAndReleaseRepository(): Promise<void> {
const { repositoryId, type } = await this.getRepository();
if (type !== 'open') {
throw new Error(
'No open repositories available. Go to Nexus Repository Manager to see what happened.'
);
}
await this.closeRepository(repositoryId);
await this.releaseRepository(repositoryId);
}
public async getRepository(): Promise<NexusRepository> {
const response = await fetch(`${NEXUS_API_BASE_URL}/profile_repositories`, {
headers: this.getNexusRequestHeaders(),
});
if (!response.ok) {
throw new Error(
`Unable to fetch repositories: ${response.status}, ${response.statusText}`
);
}
const body = await response.json();
const repositories = body.data;
if (repositories.length === 0) {
throw new Error(`No available repositories. Nothing to publish.`);
}
if (repositories.length > 1) {
throw new Error(
`There are more than 1 active repositories. Please close unwanted deployments.`
);
}
return repositories[0];
}
public async closeRepository(repositoryId: string): Promise<boolean> {
const response = await fetch(`${NEXUS_API_BASE_URL}/bulk/close`, {
headers: this.getNexusRequestHeaders(),
method: 'POST',
body: JSON.stringify({
data: { stagedRepositoryIds: [repositoryId] },
}),
});
if (!response.ok) {
throw new Error(
`Unable to close repository ${repositoryId}: ${response.status}, ${response.statusText}`
);
}
const poolingStartTime = Date.now();
while (true) {
if (Date.now() - poolingStartTime > NEXUS_RETRY_DEADLINE) {
throw new Error('Deadline for Nexus repository status change reached.');
}
await sleep(NEXUS_RETRY_DELAY);
const { type, transitioning } = await this.getRepository();
if (type === 'closed' && !transitioning) {
this.logger.info(`Nexus repository close correctly.`);
return true;
}
this.logger.info(
`Nexus repository still not closed. Waiting for ${
NEXUS_RETRY_DELAY / 1000
}s to try again.`
);
}
}
public async releaseRepository(repositoryId: string): Promise<boolean> {
const response = await fetch(`${NEXUS_API_BASE_URL}/bulk/promote`, {
headers: this.getNexusRequestHeaders(),
method: 'POST',
body: JSON.stringify({
data: { stagedRepositoryIds: [repositoryId] },
}),
});
if (!response.ok) {
throw new Error(
`Unable to release repository ${repositoryId}: ${response.status}, ${response.statusText}`
);
}
this.logger.info(`Nexus repository closed correctly.`);
return true;
}
private getNexusRequestHeaders(): Record<string, string> {
// Nexus API is using `Accept` is for `GET` requests and `Content-Type` for `POST` requests, so it needs both.
return {
'Content-Type': 'application/json',
Accept: 'application/json',
Authorization: `Basic ${Buffer.from(
`${this.mavenConfig.OSSRH_USERNAME}:${this.mavenConfig.OSSRH_PASSWORD}`
).toString(`base64`)}`,
};
}
}