-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathregistry.ts
529 lines (482 loc) Β· 14.8 KB
/
registry.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
import { mapLimit } from 'async';
import { Octokit } from '@octokit/rest';
import simpleGit, { SimpleGit } from 'simple-git';
import { GitHubGlobalConfig, TargetConfig } from '../schemas/project_config';
import { ConfigurationError, reportError } from '../utils/errors';
import { withTempDir } from '../utils/files';
import {
getAuthUsername,
getGitHubApiToken,
getGitHubClient,
GitHubRemote,
} from '../utils/githubApi';
import { renderTemplateSafe } from '../utils/strings';
import { isPreviewRelease } from '../utils/version';
import { stringToRegexp } from '../utils/filters';
import { BaseTarget } from './base';
import {
RemoteArtifact,
BaseArtifactProvider,
MAX_DOWNLOAD_CONCURRENCY,
} from '../artifact_providers/base';
import {
castChecksums,
ChecksumEntry,
getArtifactChecksums,
} from '../utils/checksum';
import {
DEFAULT_REGISTRY_REMOTE,
getPackageManifest,
updateManifestSymlinks,
RegistryPackageType,
} from '../utils/registry';
import { isDryRun } from '../utils/helpers';
import { filterAsync, withRetry } from '../utils/async';
/** "registry" target options */
export interface RegistryConfig {
/** Type of the registry package */
type: RegistryPackageType;
/** Unique package cannonical name, including type and/or registry name */
canonicalName: string;
/** Should we create registry entries for pre-releases? */
linkPrereleases?: boolean;
/** URL template for file assets */
urlTemplate?: string;
/** Types of checksums to compute for artifacts */
checksums?: ChecksumEntry[];
/** Pattern that allows to skip the target if there's no matching file */
onlyIfPresent?: RegExp;
}
interface LocalRegistry {
dir: string;
git: SimpleGit;
}
interface ArtifactData {
url?: string;
checksums?: {
[key: string]: string;
};
}
const BATCH_KEYS = {
sdks: RegistryPackageType.SDK,
apps: RegistryPackageType.APP,
};
/**
* Target responsible for publishing to Sentry's release registry: https://github.com/getsentry/sentry-release-registry/
*/
export class RegistryTarget extends BaseTarget {
/** Target name */
public readonly name = 'registry';
/** Git remote of the release registry */
public readonly remote: GitHubRemote;
/** Target options */
public readonly registryConfig: RegistryConfig[];
/** GitHub client */
public readonly github: Octokit;
/** GitHub repo configuration */
public readonly githubRepo: GitHubGlobalConfig;
public constructor(
config: TargetConfig,
artifactProvider: BaseArtifactProvider,
githubRepo: GitHubGlobalConfig
) {
super(config, artifactProvider, githubRepo);
const remote = this.config.remote;
if (remote) {
const [owner, repo] = remote.split('/', 2);
this.remote = new GitHubRemote(owner, repo);
} else {
this.remote = DEFAULT_REGISTRY_REMOTE;
}
this.github = getGitHubClient();
this.githubRepo = githubRepo;
this.registryConfig = this.getRegistryConfig();
}
/**
* Extracts Registry target options from the raw configuration.
*/
public getRegistryConfig(): RegistryConfig[] {
const items = Object.entries(BATCH_KEYS).flatMap(([key, type]) =>
Object.entries(this.config[key] || {}).map(([canonicalName, conf]) => {
const config = conf as RegistryConfig | null;
const result = Object.assign(Object.create(null), config, {
type,
canonicalName,
});
if (typeof config?.onlyIfPresent === 'string') {
result.onlyIfPresent = stringToRegexp(config.onlyIfPresent);
}
return result;
})
);
if (items.length === 0 && this.config.type) {
this.logger.warn(
'You are using a deprecated registry target config, please update.'
);
return [this.getLegacyRegistryConfig()];
} else {
return items;
}
}
private getLegacyRegistryConfig(): RegistryConfig {
const registryType = this.config.type;
if (
[RegistryPackageType.APP, RegistryPackageType.SDK].indexOf(
registryType
) === -1
) {
throw new ConfigurationError(
`Invalid registry type specified: "${registryType}"`
);
}
let urlTemplate;
if (registryType === RegistryPackageType.APP) {
urlTemplate = this.config.urlTemplate;
if (urlTemplate && typeof urlTemplate !== 'string') {
throw new ConfigurationError(
`Invalid "urlTemplate" specified: ${urlTemplate}`
);
}
}
const releaseConfig = this.config.config;
if (!releaseConfig) {
throw new ConfigurationError(
'Cannot find configuration dictionary for release registry'
);
}
const canonicalName = releaseConfig.canonical;
if (!canonicalName) {
throw new ConfigurationError(
'Canonical name not found in the configuration'
);
}
const linkPrereleases = this.config.linkPrereleases || false;
if (typeof linkPrereleases !== 'boolean') {
throw new ConfigurationError('Invlaid type of "linkPrereleases"');
}
const checksums = castChecksums(this.config.checksums);
const onlyIfPresentStr = this.config.onlyIfPresent || undefined;
let onlyIfPresent;
if (onlyIfPresentStr) {
if (typeof onlyIfPresentStr !== 'string') {
throw new ConfigurationError('Invalid type of "onlyIfPresent"');
}
onlyIfPresent = stringToRegexp(onlyIfPresentStr);
}
return {
canonicalName,
checksums,
linkPrereleases,
onlyIfPresent,
type: registryType,
urlTemplate,
};
}
/**
* Adds file URLs to the manifest
*
* URL template is taken from "urlTemplate" configuration argument
*
* FIXME(tonyo): LEGACY function, left for compatibility, replaced by addFilesData
*
* @param manifest Package manifest
* @param version The new version
* @param revision Git commit SHA to be published
*/
public async addFileLinks(
registryConfig: RegistryConfig,
manifest: { [key: string]: any },
version: string,
revision: string
): Promise<void> {
if (!registryConfig.urlTemplate) {
return;
}
const artifacts = await this.getArtifactsForRevision(revision);
if (artifacts.length === 0) {
this.logger.warn(
'No artifacts found, not adding any links to the manifest'
);
return;
}
const fileUrls: { [_: string]: string } = {};
for (const artifact of artifacts) {
fileUrls[artifact.filename] = renderTemplateSafe(
registryConfig.urlTemplate,
{
file: artifact.filename,
revision,
version,
}
);
}
this.logger.debug(
`Writing file urls to the manifest, files found: ${artifacts.length}`
);
manifest.file_urls = fileUrls;
}
/**
* Extends the artifact entry with additional URL and checksum information.
*
* The URL information is a string with the artifact filename, revision and
* version, according to the template of the registry config. If no template
* has been provided, no URL data is extended.
*
* Checksum information maps from the algorithm and format (following the
* pattern `<algorithm>-<format>`) to the checksum of the provided artifact.
* There must be at least one checksum to extend this information.
*
* @param artifact Artifact
* @param version The new version
* @param revision Git commit SHA to be published
*/
public async getArtifactData(
registryConfig: RegistryConfig,
artifact: RemoteArtifact,
version: string,
revision: string
): Promise<ArtifactData> {
const artifactData: ArtifactData = {};
if (registryConfig.urlTemplate) {
artifactData.url = renderTemplateSafe(registryConfig.urlTemplate, {
file: artifact.filename,
revision,
version,
});
}
if (registryConfig.checksums && registryConfig.checksums.length > 0) {
artifactData.checksums = await getArtifactChecksums(
registryConfig.checksums,
artifact,
this.artifactProvider
);
}
return artifactData;
}
/**
* Extends the artifact entries with additional information.
*
* Replaces the current file data on the package manifest with a new mapping
* from artifact filenames to the artifact data. Note that this information
* will be empty if no artifacts are found for the given revision.
*
* The artifact data contains URL and checksum information about the
* artifact, provided by `getArtifactData`.
*
* @param packageManifest Package manifest
* @param version The new version
* @param revision Git commit SHA to be published
*/
public async addFilesData(
registryConfig: RegistryConfig,
packageManifest: { [key: string]: any },
version: string,
revision: string
): Promise<void> {
// Clear existing data
delete packageManifest.files;
if (
!registryConfig.urlTemplate &&
!(registryConfig.checksums && registryConfig.checksums.length > 0)
) {
this.logger.warn(
'No URL template or checksums, not adding any file data'
);
return;
}
const artifacts = await this.getArtifactsForRevision(revision);
if (artifacts.length === 0) {
this.logger.warn('No artifacts found, not adding any file data');
return;
}
this.logger.info(
'Adding extra data (checksums, download links) for available artifacts...'
);
const files: { [key: string]: any } = {};
await mapLimit(artifacts, MAX_DOWNLOAD_CONCURRENCY, async artifact => {
const fileData = await this.getArtifactData(
registryConfig,
artifact,
version,
revision
);
files[artifact.filename] = fileData;
});
packageManifest.files = files;
}
/**
* Updates the local copy of the release registry by adding file data
* (see `addFilesData`).
*
* Also, if it's a generic app, adds file links (note: legacy).
*
* @param packageManifest The package's manifest object
* @param canonical The package's canonical name
* @param version The new version
* @param revision Git commit SHA to be published
*/
public async getUpdatedManifest(
registryConfig: RegistryConfig,
packageManifest: { [key: string]: any },
canonical: string,
version: string,
revision: string
): Promise<any> {
// Additional check
if (canonical !== packageManifest.canonical) {
reportError(
`Canonical name in "craft" config ("${canonical}") is inconsistent with ` +
`the one in package manifest ("${packageManifest.canonical}")`
);
}
// Update the manifest
const updatedManifest: {
version: string;
created_at: string;
[key: string]: any;
} = {
...packageManifest,
version,
created_at: new Date().toISOString(),
};
// Add file links if it's a generic app (legacy)
if (registryConfig.type === RegistryPackageType.APP) {
await this.addFileLinks(
registryConfig,
updatedManifest,
version,
revision
);
}
// Add various file-related data
await this.addFilesData(registryConfig, updatedManifest, version, revision);
return updatedManifest;
}
/**
* Commits the new version of the package to the release registry.
*
* @param localRepo The local checkout of the registry
* @param version The new version
* @param revision Git commit SHA to be published
*/
private async updateVersionInRegistry(
registryConfig: RegistryConfig,
localRepo: LocalRegistry,
version: string,
revision: string
): Promise<void> {
const canonicalName = registryConfig.canonicalName;
const { versionFilePath, packageManifest } = await getPackageManifest(
localRepo.dir,
registryConfig.type,
canonicalName,
version
);
const newManifest = await this.getUpdatedManifest(
registryConfig,
packageManifest,
canonicalName,
version,
revision
);
await updateManifestSymlinks(
newManifest,
version,
versionFilePath,
packageManifest.version || undefined
);
}
private async cloneRegistry(directory: string): Promise<SimpleGit> {
const remote = this.remote;
const username = await getAuthUsername(this.github);
remote.setAuth(username, getGitHubApiToken());
const git = simpleGit(directory);
this.logger.info(
`Cloning "${remote.getRemoteString()}" to "${directory}"...`
);
await git.clone(remote.getRemoteStringWithAuth(), directory, [
'--filter=tree:0',
'--single-branch',
]);
return git;
}
public async getValidItems(
version: string,
revision: string
): Promise<RegistryConfig[]> {
return filterAsync(this.registryConfig, async registryConfig => {
if (!registryConfig.linkPrereleases && isPreviewRelease(version)) {
this.logger.info(
`Preview release detected, skipping ${registryConfig.canonicalName}`
);
return false;
}
// If we have onlyIfPresent specified, check that we have any of matched files
const onlyIfPresentPattern = registryConfig.onlyIfPresent;
if (onlyIfPresentPattern) {
const artifacts = await this.artifactProvider.filterArtifactsForRevision(
revision,
{
includeNames: onlyIfPresentPattern,
}
);
if (artifacts.length === 0) {
this.logger.warn(
`No files found that match "${onlyIfPresentPattern.toString()}", skipping the target.`
);
return false;
}
}
return true;
});
}
/**
* Modifies/adds meta information regarding the package we are publishing
*/
public async publish(version: string, revision: string): Promise<any> {
const items = await this.getValidItems(version, revision);
if (items.length === 0) {
this.logger.warn('No suitable items found, bailing');
return;
}
await withTempDir(
async dir => {
const localRepo = {
dir,
git: await this.cloneRegistry(dir),
};
await Promise.all(
items.map(registryConfig =>
this.updateVersionInRegistry(
registryConfig,
localRepo,
version,
revision
)
)
);
// Commit
await localRepo.git
.add(['.'])
.commit(
`craft: release "${this.githubRepo.repo}", version "${version}"`
);
// Push!
if (!isDryRun()) {
this.logger.info(`Pushing the changes...`);
// Ensure we are still up to date with upstream
await withRetry(() =>
localRepo.git
.pull('origin', 'master', ['--rebase'])
.push('origin', 'master')
);
} else {
this.logger.info('[dry-run] Not pushing the changes.');
}
},
true,
'craft-release-registry-'
);
this.logger.info('Release registry updated.');
}
}