forked from uber-archive/npm-shrinkwrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trim-and-sort-shrinkwrap.js
256 lines (205 loc) · 7.06 KB
/
trim-and-sort-shrinkwrap.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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
var fs = require('graceful-fs');
var path = require('path');
var url = require('url');
var safeJsonParse = require('safe-json-parse');
var parallel = require('run-parallel');
var sortedObject = require('sorted-object');
var readJSON = require('./read-json');
var errors = require('./errors.js');
module.exports = trimFrom;
// set keys in an order
function sortedKeys(obj, orderedKeys) {
var keys = Object.keys(obj).sort();
var fresh = {};
orderedKeys.forEach(function (key) {
if (keys.indexOf(key) === -1) {
return;
}
fresh[key] = obj[key];
});
keys.forEach(function (key) {
if (orderedKeys.indexOf(key) !== -1) {
return;
}
fresh[key] = obj[key];
});
return fresh;
}
function recursiveSorted(json) {
if (!json) {
return json;
}
var deps = json.dependencies;
if (typeof deps === 'object' && deps !== null) {
json.dependencies = Object.keys(deps)
.reduce(function (acc, key) {
acc[key] = recursiveSorted(deps[key]);
return acc;
}, {});
json.dependencies = sortedObject(json.dependencies);
}
return sortedKeys(json, [
'name',
'version',
'from',
'resolved',
'npm-shrinkwrap-version',
'node-version',
'dependencies'
]);
}
function trimFrom(opts, callback) {
if (typeof opts === 'string') {
opts = { dirname: opts };
}
var shrinkwrapFile = path.join(opts.dirname, 'npm-shrinkwrap.json');
var registries = opts.registries || ['registry.npmjs.org'];
parallel([
fixShrinkwrap,
fixPackage.bind(null, opts.dirname)
], callback);
function fixShrinkwrap(callback) {
fs.readFile(shrinkwrapFile, 'utf8', function (err, file) {
if (err) {
return callback(err);
}
if (file === '') {
return callback(errors.EmptyFile());
}
safeJsonParse(file, function (err, json) {
if (err) {
return callback(err);
}
json = recursiveSorted(json);
json = replaceFields(json, replacer);
fs.writeFile(shrinkwrapFile,
JSON.stringify(json, null, 2) + '\n', callback);
});
});
}
function replaceFields(json, replacer, name) {
name = name || 'root';
if (json.from) {
json.from = replacer.call(json,
'from', json.from, name);
}
if (json.dependencies) {
Object.keys(json.dependencies)
.forEach(recurse);
}
return json;
function recurse(name) {
json.dependencies[name] = replaceFields(
json.dependencies[name],
replacer,
name);
}
}
function fixFromField(opts) {
var shaIsm = opts.fromUri.hash &&
opts.fromUri.hash.slice(1);
// from does not have shaIsm. bail early
if (!shaIsm) {
return opts.name + '@' + opts.fromValue;
}
var resolvedUri = url.parse(opts.resolvedValue);
var resolveShaism = resolvedUri.hash &&
resolvedUri.hash.slice(1);
// resolved does not have shaIsm. bail early
if (!resolveShaism) {
return opts.name + '@' + opts.fromValue;
}
// replace the from shaIsm with the resolved shaIsm
if (shaIsm !== resolveShaism) {
var pathname = opts.fromUri.pathname;
// normalize git+ssh links with a ':' after the host instead of a '/'
if (pathname[1] === ':') {
pathname = pathname[0] + pathname.slice(2);
}
var newValue = url.format({
protocol: opts.fromUri.protocol,
slashes: opts.fromUri.slashes,
auth: opts.fromUri.auth,
host: opts.fromUri.host,
pathname: pathname,
hash: resolveShaism
});
return opts.name + '@' + newValue;
}
return opts.name + '@' + opts.fromValue;
}
/* trims the `from` field from `npm-shrinkwrap.json` files.
The `from` field is likely to change because different npm
clients do different things and general non determinism.
The `from` field is not really important since the `resolved`
and `version` fields are mostly used.
The only situations in which `from` is used is non npm links
(i.e. git, git+ssh and https tarbal links) and situations
where there is no `resolved` field.
*/
function replacer(key, value, name) {
if (key !== 'from') {
return value;
}
var resolved = this.resolved;
// if this dependency has no `resolved` field then it's not
// safe to remove the `from` field since `npm install` will
// use it.
if (!resolved) {
return value;
}
var uri = url.parse(value);
// if it's a `http:` link to registry its safe
// to remove as `from` is not really used
if ((uri.protocol === 'http:' || uri.protocol === 'https:') &&
registries.indexOf(uri.host) !== -1
) {
return undefined;
// if it's any other link, like `git`, `git+ssh` or a http
// link to an arbitrary tarball then we cant remove it
} else if (uri.protocol) {
// for resolve branches & shaisms to commit shas
// we should always have `from` contain a git sha
// because that's consistent
return fixFromField({
fromUri: uri,
name: name,
fromValue: value,
resolvedValue: resolved
});
}
// otherwise the `value` is in the format `name@semverish`
var parts = value.split('@');
var rest = parts.slice(1).join('@');
// parse the `semverish` part of the `from` field value.
var secondUri = url.parse(rest);
// if it's an uri instead of a `semverish` then it's not
// safe to remove the `from` field
// However if it is NOT an uri then its safe to remove
if (!secondUri.protocol) {
return undefined;
}
return fixFromField({
fromUri: secondUri,
fromValue: rest,
name: name,
resolvedValue: resolved
});
}
}
function fixPackage(dirname, callback) {
var packageJsonFile = path.join(dirname, 'package.json');
readJSON(packageJsonFile, function (err, json) {
if (err) {
return callback(err);
}
if (json.dependencies) {
json.dependencies = sortedObject(json.dependencies);
}
if (json.devDependencies) {
json.devDependencies = sortedObject(json.devDependencies);
}
var data = JSON.stringify(json, null, 2) + '\n';
fs.writeFile(packageJsonFile, data, callback);
});
}