forked from nodejs/node-core-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata_gen.js
65 lines (58 loc) · 1.73 KB
/
metadata_gen.js
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
'use strict';
const LinkParser = require('./links');
/**
* @typedef {{reviewer: Collaborator}} Reviewer
*/
class MetadataGenerator {
/**
* @param {PRData} data
*/
constructor(data) {
const { owner, repo, pr, reviewers, argv, skipRefs } = data;
this.owner = owner;
this.skipRefs = skipRefs;
this.repo = repo;
this.pr = pr;
this.reviewers = reviewers;
this.argv = argv;
}
/**
* @returns {string}
*/
getMetadata() {
const {
reviewers: { approved: reviewedBy },
pr: { url: prUrl, bodyHTML: op },
owner,
repo
} = this;
const parser = new LinkParser(owner, repo, op);
const fixes = parser.getFixes();
const refs = parser.getRefs().filter(f => f !== prUrl);
const altPrUrl = parser.getAltPrUrl();
const meta = [];
// If there are multiple commits in a PR, we may not want to add
// Fixes/Refs metadata to all of them.
if (!this.skipRefs) {
// Map all issues fixed by the commit(s) in this PR.
meta.push(...fixes.map((fix) => `Fixes: ${fix}`));
// Map all issues referenced by the commit(s) in this PR.
meta.push(...refs.map((ref) => `Refs: ${ref}`));
}
const backport = this.argv ? this.argv.backport : undefined;
if (backport) {
meta.unshift(`Backport-PR-URL: ${prUrl}`);
meta.unshift(`PR-URL: ${altPrUrl}`);
} else {
// Reviews are only added here as backports should not contain reviews
// for the backport itself in the metadata
meta.unshift(`PR-URL: ${prUrl}`);
meta.push(
...reviewedBy.map((r) => `Reviewed-By: ${r.reviewer.getContact()}`)
);
}
meta.push(''); // creates final EOL
return meta.join('\n');
}
}
module.exports = MetadataGenerator;