forked from microsoft/azure-pipelines-tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate-third-party-notice.js
237 lines (203 loc) · 7.68 KB
/
generate-third-party-notice.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
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
/**
* Run from the root of the vsts-tasks repo.
* Usage: `node generate-third-party-notice.js <task name>`
*
* NOTE: delete node_modules and build the task before running this script!
* Otherwise, you may pick up old dependencies that are no longer needed.
*
* TODO: Make this part of the script
*/
'use strict';
const fs = require('fs');
const os = require('os');
const path = require('path');
let verboseLogging = false;
function isThisRepo(url) {
return url === 'git+https://github.com/Microsoft/azure-pipelines-tasks.git'
|| url ==='git+ssh://[email protected]/Microsoft/azure-pipelines-tasks.git';
}
const log = {
info(message) {
if (verboseLogging) {
console.log(`[INFO] ${message}`);
}
},
warning(message) {
console.log(`[WARNING] ${message}`);
},
error(message) {
console.error(`[ERROR] ${message}`)
}
};
/** Log `label: ${value}` and pass the value through. */
function trace(label, value) {
log.info(`${label}: ${value}`);
return value;
}
/**
* Read `packagePath`'s package.json and deserialize it.
* @param packagePath Absolute path to the NPM package
* @returns Package manifest information parsed from the package's package.json
*/
function readPackageJson(packagePath) {
log.info(`Reading the package.json for ${packagePath} ...`);
const contents = fs.readFileSync(path.join(packagePath, 'package.json'), { encoding: 'utf-8' });
return JSON.parse(contents);
}
/**
* Get the name of the file containing the license for `packagePath`.
* @param packagePath Absolute path to the NPM package
* @returns Absolute path to the license file, or `null` if the license file can't be found
*/
function findLicense(packagePath) {
log.info(`Finding the license for ${packagePath}`);
const children = fs.readdirSync(packagePath);
const licenseNames = [
'LICENSE',
'LICENSE.md',
'LICENSE.txt'
].map(x => x.toLowerCase());
const candidates = children.filter(x => licenseNames.includes(x.toLowerCase()));
if (candidates.length === 0) {
return null;
} else {
if (candidates.length > 1) {
log.warning(`Found multiple license files for ${packagePath}: ${candidates.join(', ')}`);
}
return trace('Found license', path.join(packagePath, candidates[0]));
}
}
/**
* Scan the contents of the 'node_modules' directory for license information.
* @param modulesRoot NPM package installation directory to scan
* @returns Iterable of objects: `name` x `url` x `licenseText`
*/
function* collectLicenseInfo(modulesRoot) {
const packagePaths = fs.readdirSync(modulesRoot).map(x => path.join(modulesRoot, x));
for (const absolutePath of packagePaths) {
log.info(`Collecting license information from ${absolutePath} ...`);
const basename = path.basename(absolutePath);
if (basename.startsWith('@')) {
// This is a scoped package: recurse into children
yield* collectLicenseInfo(absolutePath);
continue;
}
const parentDir = path.basename(path.dirname(absolutePath));
const isScopedPackage = parentDir.startsWith('@');
const name = (() => {
if (isScopedPackage) {
// "scoped package" -- parent directory is part of name (e.g. @types/node, @sinonjs/formatio)
return `${parentDir}/${basename}`;
} else {
return basename;
}
})();
if (name === '.bin') {
continue;
}
const manifest = readPackageJson(absolutePath);
const url = manifest.repository ? manifest.repository.url : null;
if (!url) {
log.warning(`Could not find a repository URL for ${absolutePath}`);
}
// Don't add license info for packages in this repo (such as those in Common)
if (isThisRepo(url)) {
continue;
}
const license = findLicense(absolutePath);
const licenseText = license ? fs.readFileSync(license, { encoding: 'utf-8' }) : null;
if (!licenseText) {
log.warning(`Could not find a license for ${absolutePath}`);
}
yield {
name: name,
url: url || 'NO URL FOUND',
licenseText: licenseText || 'NO LICENSE FOUND'
};
// See if this package has its own `node_modules` directory
const child_packages = path.join(absolutePath, 'node_modules');
if (fs.existsSync(child_packages)) {
yield* collectLicenseInfo(child_packages);
}
}
}
/** Generate the third party notice line-by-line. */
function* thirdPartyNotice(taskName, licenseInfo) {
// Preamble
yield '';
yield 'THIRD-PARTY SOFTWARE NOTICES AND INFORMATION';
yield 'Do Not Translate or Localize';
yield '';
yield `This Azure DevOps extension (${taskName}) is based on or incorporates material from the projects listed below (Third Party IP). The original copyright notice and the license under which Microsoft received such Third Party IP, are set forth below. Such licenses and notices are provided for informational purposes only. Microsoft licenses the Third Party IP to you under the licensing terms for the Azure DevOps extension. Microsoft reserves all other rights not expressly granted under this agreement, whether by implication, estoppel or otherwise.`;
yield '';
// Enumerated modules
let num = 1;
for (const item of licenseInfo) {
if (item.url) {
yield `${num}.\t${item.name} (${item.url})`;
} else {
yield `${num}.\t${item.name}`;
}
num += 1;
}
yield '';
yield '';
// Module licenses
for (const item of licenseInfo) {
yield `%% ${item.name} NOTICES, INFORMATION, AND LICENSE BEGIN HERE`;
yield '=========================================';
yield item.licenseText.trim();
yield '=========================================';
yield `END OF ${item.name} NOTICES, INFORMATION, AND LICENSE`;
yield '';
}
}
function writeLines(writeStream, lines) {
const writeLine = (line) => {
writeStream.write(line);
writeStream.write(os.EOL);
};
for (const line of lines) {
writeLine(line);
}
}
/** Join zero or more iterables into a single iterable. */
function* chain(...iterables) {
for (const it of iterables) {
yield* it;
}
}
function main(args) {
try {
if (!args || args.length < 2) {
throw new Error(`Usage: node generate-third-party-notice.js <task name> [--verbose]`);
}
if (args.includes('--verbose')) {
verboseLogging = true;
}
const taskName = args[2];
const taskPath = path.join(__dirname, 'Tasks', taskName);
trace('task path', taskPath);
const nodeModuleDir = path.join(taskPath, 'node_modules');
const testsNodeModuleDir = path.join(taskPath, 'Tests', 'node_modules');
const licenseInfo = chain(
collectLicenseInfo(nodeModuleDir),
fs.existsSync(testsNodeModuleDir) ? collectLicenseInfo(testsNodeModuleDir) : []);
function compareStrings(a, b) {
if (a < b) {
return -1;
} else if (a > b) {
return 1;
} else {
return 0;
}
}
const sortedLicenseInfo = Array.from(licenseInfo).sort((x, y) => compareStrings(x.name, y.name));
const writeStream = fs.createWriteStream(path.join(taskPath, 'ThirdPartyNotice.txt'));
writeLines(writeStream, thirdPartyNotice(taskName, sortedLicenseInfo));
writeStream.end();
} catch (e) {
log.error(e.message);
}
}
main(process.argv);