-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathmodclean.js
More file actions
414 lines (351 loc) · 11.8 KB
/
modclean.js
File metadata and controls
414 lines (351 loc) · 11.8 KB
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
/*!
* modclean
* Remove unwanted files and directories from your node_modules folder
* @author Kyle Ross
*/
"use strict";
const pkg = require('../package.json');
const fs = require('fs');
const path = require('path');
const util = require('util');
const on = require('await-handler');
const subdirs = require('subdirs');
const glob = util.promisify(require('glob'));
const rm = util.promisify(require('rimraf'));
const emptyDir = util.promisify(require('empty-dir'));
const stat = util.promisify(fs.stat);
const readdir = util.promisify(fs.readdir);
const ModClean_Utils = require('./utils.js');
let defaults = {
/**
* The directory to search in, default is `process.cwd()`
* @type {String}
*/
cwd: process.cwd(),
/**
* Array of patterns plugins to use. Default is `['default:safe']`.
* @type {Array}
*/
patterns: ['default:safe'],
/**
* Array of additional patterns to use.
* @type {?Array}
*/
additionalPatterns: null,
/**
* Ignore the provided glob patterns
* @type {?Array}
*/
ignorePatterns: null,
/**
* Exclude directories from being removed
* @type {Boolean}
*/
noDirs: false,
/**
* Ignore the case of the file names when searching by patterns (default `true`)
* @type {Boolean}
*/
ignoreCase: true,
/**
* Include dot files in the search (default `true`)
* @type {Boolean}
*/
dotFiles: true,
/**
* The folder name used for storing modules. Used to append to `options.cwd` if running in parent directory (default `"node_modules"`)
* @type {String}
*/
modulesDir: 'node_modules',
/**
* Filter function to run for each file/directory found. File object is passed in as a single argument. Return `true` to mark file for removal,
* `false` to keep it. Optionally may return `Promise` for async support.
* @type {?Function}
*/
filter: null,
/**
* If the directory being deleted is a module, skip it's deletion.
* @type {Boolean}
*/
skipModules: true,
/**
* Remove empty directories as part of the cleanup process (default `true`)
* @type {Boolean}
*/
removeEmptyDirs: true,
/**
* Filter function used when checking if a directory is empty
* @param {String} file File name in directory to filter against
* @return {Boolean} `true` if is a valid file, `false` if invalid file
*/
emptyDirFilter: function(file) {
return /(Thumbs\.db|\.DS_Store)$/i.test(file);
},
/**
* Custom options to pass into `glob` to further customize file searching. Will override existing options.
* @type {?Object}
*/
globOptions: {},
/**
* Whether file deletion errors should halt the module from running and return the error to the callback (default `false`)
* @type {Boolean}
*/
errorHalt: false,
/**
* Use test mode which will get the list of files and run the process without actually deleting the files (default `false`)
* @type {Boolean}
*/
test: false,
/**
* Force deletion to be done also in symlinked packages (when using npm link) (default `false`)
* @type {Boolean}
*/
followSymlink: false
};
/**
* @class ModClean
* @extends {ModClean_Utils}
*/
class ModClean extends ModClean_Utils {
/**
* Initalizes ModClean class with provided options.
* @constructor
* @param {?Object} [options={}] Options to configure ModClean
*/
constructor(options={}) {
super();
this.version = pkg.version;
this.options = Object.assign({}, modclean.defaults, options || {});
this._patterns = this.initPatterns();
if(this.options.modulesDir !== false && path.basename(this.options.cwd) !== this.options.modulesDir)
this.options.cwd = path.join(this.options.cwd, this.options.modulesDir);
}
/**
* Automated clean process that finds and deletes items based on the ModClean options.
* @async
* @public
* @return {Promise} Promise that resolves an `results` object or rejects with an `Error`.
*/
async clean() {
let files, dirs, results;
this.emit('clean:start', this);
try {
files = await this._find();
results = await this._process(files);
dirs = await this.cleanEmptyDirs();
if(dirs) {
results.deleted = results.deleted.concat(dirs.deleted);
results.empty = dirs.empty;
}
} catch(err) {
throw err;
}
this.emit('clean:complete', results);
return results;
}
/**
* Finds files/folders based on the ModClean options.
* @async
* @private
* @return {Promise} Resolves with array of file objects found.
*/
async _find() {
let defaultGlobOpts = {
cwd: this.options.cwd,
dot: this.options.dotFiles,
nocase: this.options.ignoreCase,
ignore: this._patterns.ignore,
nodir: this.options.noDirs,
follow: this.options.followSymlink
};
let globOpts = Object.assign({}, defaultGlobOpts, this.options.globOptions);
this.emit('file:find', this._patterns.allow, globOpts);
let [err, results] = await on(glob(`**/@(${this._patterns.allow.join('|')})`, globOpts));
if(err) throw this.error(err, '_find');
let [e, files] = await on(
Promise.all(
results.map(async file => await this._buildFileObject(file))
)
);
if(e) throw e;
files = files.filter(obj => !!obj);
this.emit('file:list', files);
return files;
}
/**
* Creates file object for the specified `file` path
* @async
* @private
* @param {String} file File path to create object for
* @return {Object} Object with all file properties
*/
async _buildFileObject(file) {
let obj = {
path: file,
fullPath: path.join(this.options.cwd, file),
dir: path.join(this.options.cwd, path.parse(file).dir),
name: path.basename(file),
isModule: false,
isDirectory: null
};
try {
let stats = await stat(obj.fullPath),
isDir = stats.isDirectory();
obj.isDirectory = isDir;
if(isDir) {
let list = await readdir(obj.fullPath),
parent = path.basename(path.join(obj.fullPath, '../'));
if(list.indexOf('package.json') !== -1 && parent === (this.options.modulesDir || 'node_modules')) obj.isModule = true;
}
obj.stat = stats;
} catch(error) {
this.error(error, '_buildFileObject');
return null;
}
return obj;
}
/**
* Processes the found files and deletes them in parallel.
* @async
* @private
* @param {Array} files List of file paths to process and delete.
* @return {Promise} Resolves with `results` object.
*/
async _process(files) {
let results = {
files,
deleted: []
};
if(!files.length) return results;
this.emit('process:start', files);
let [err] = await on(
Promise.all(files.map(async file => {
let [e, res] = await on(this._deleteFile(file));
if(e) throw e;
if(res) results.deleted.push(file.fullPath);
return res;
}))
);
if(err) throw err;
this.emit('process:done', results.deleted);
return results;
}
/**
* Deletes a single provided file/folder from the filesystem.
* @async
* @private
* @param {Object} file File object to delete.
* @return {Promise} Resolves with boolean if file was deleted.
*/
async _deleteFile(file) {
let shouldDelete = true;
if(typeof this.options.filter === 'function') {
let res = this.options.filter(file);
if(res instanceof Promise) shouldDelete = await res;
else shouldDelete = !!res;
}
if(this.options.skipModules && file.isModule) shouldDelete = false;
if(!shouldDelete) {
this.emit('file:skipped', file);
return false;
}
if(this.options.test) {
this.emit('file:deleted', file);
return true;
}
let [err] = await on(rm(file.fullPath));
if(err && err.code !== 'ENOENT') {
err = this.error(err, '_deleteFile', { file });
if(this.options.errorHalt) throw err;
} else {
this.emit('file:deleted', file);
}
return !err;
}
/**
* Finds and removes all empty directories automatically.
* @async
* @public
* @return {Promise} Resolves with `results` object.
*/
async cleanEmptyDirs() {
if(!this.options.removeEmptyDirs) return false;
this.emit('emptydir:start');
let [error, dirs] = await on(this._findEmptyDirs());
if(error) throw error;
let results = await this._removeEmptyDirs(dirs);
this.emit('emptydir:done', results);
return {
empty: dirs,
deleted: results
};
}
/**
* Finds all empty directories within `options.cwd`.
* @async
* @private
* @return {Promise} Resolves with array of empty directory paths found.
*/
async _findEmptyDirs() {
let results = [];
let [err, dirs] = await on(subdirs(this.options.cwd));
if(err) throw this.error(err, '_findEmptyDirs');
if(!Array.isArray(dirs)) return [];
for(let dir of dirs) {
let [e, isEmpty] = await on(emptyDir(dir, this.options.emptyDirFilter));
if(e) this.error(err, '_findEmptyDirs', { dir });
else if(isEmpty) results.push(dir);
}
this.emit('emptydir:list', results);
return results;
}
/**
* Removes all empty directories provided in `dirs`.
* @async
* @private
* @param {Array} dirs List of empty directories to remove.
* @return {Promise} Resolves with array of empty directories in which were successfully removed.
*/
async _removeEmptyDirs(dirs) {
let results = [];
// Return all empty directories if in test mode
if(this.options.test) return dirs;
for(let dir in dirs) {
let [err] = await on(rm(dir));
if(err) this.error(err, '_removeEmptyDirs', { dir });
else {
results.push(dir);
this.emit('emptydir:deleted', dir);
}
}
return results;
}
}
/**
* Exports a wrapper for the ModClean @class .
* @type {Function}
*/
module.exports = modclean;
/**
* Shortcut for calling `new ModClean(options, cb)`
* @param {?Object} options Options to set for ModClean
* @return {ModClean} New ModClean instance
*/
function modclean(options) {
return new ModClean(options);
}
/**
* The default options for ModClean that can be overridden.
* @property {Object} options Default options for ModClean.
*/
modclean.defaults = defaults;
/**
* Static property with access to the ModClean class.
* @type {Class}
*/
modclean.ModClean = ModClean;
/**
* The ModClean version number.
* @type {String}
*/
modclean.version = pkg.version;