-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
95 lines (83 loc) · 2.67 KB
/
index.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
#!/usr/bin/env node
const fs = require('fs-extra');
const replace = require('replace');
const walkAsync = (path) => {
return new Promise((resolve, reject) => {
walk(path, (err, results) => {
if(err) {
reject(err);
} else {
resolve(results);
}
})
});
};
const walk = function(dir, done) {
let results = [];
fs.readdir(dir, function(err, list) {
if (err) return done(err);
let i = 0;
(function next() {
let file = list[i++];
if (!file) return done(null, results);
file = dir + '/' + file;
fs.stat(file, function(err, stat) {
if (stat && stat.isDirectory()) {
walk(file, function(err, res) {
results = results.concat(res);
next();
});
} else {
results.push(file);
next();
}
});
})();
});
};
const regexReplace = (searchString, replaceString, path, customOptions = {}) => {
return new Promise( async (resolve, reject) => {
const defaultOptions = {
filenamesOnly: false,
fileContentsOnly: false
};
const { filenamesOnly, fileContentsOnly } = Object.assign({}, defaultOptions, customOptions);
const pathExists = await fs.pathExists(path);
if(!pathExists) {
console.error(`ERROR: Path (${path}) does not exist.`);
reject(`ERROR: Path (${path}) does not exist.`);
} else {
let files;
try {
const stats = fs.lstatSync(path);
if (stats.isDirectory()) {
files = await walkAsync(path);
} else {
files = [path];
}
} catch (err) {
reject(err);
}
if(!fileContentsOnly) {
//renames files
files.forEach((file) => {
const renamedFile = file.replace(new RegExp(searchString, 'g'), replaceString);
fs.renameSync(file, renamedFile);
});
}
if(!filenamesOnly) {
//replaces file contents
replace({
regex: new RegExp(searchString, 'g'),
replacement: replaceString,
paths: [path],
recursive: true,
silent: true,
async: false
});
}
resolve();
}
});
};
module.exports = regexReplace;