-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
226 lines (179 loc) · 5.5 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
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
const fs = require('node:fs');
const path = require('node:path');
const { execSync } = require('node:child_process');
const semver = require('semver');
const Logger = require('./logger');
let log;
let accessErrorsOccurred;
let packagesFound;
let packagesOmitted;
module.exports = (options = {}) => {
log = new Logger({ isVerbose: options.verbose, isColorEnabled: options.color });
accessErrorsOccurred = false;
packagesFound = 0;
packagesOmitted = 0;
options.directory = options.directory || [];
const rawDirs = [...options.directory];
if (options.globalCheck) {
rawDirs.push(getGlobalPackagesDir());
}
const dirs = parseDirs(rawDirs);
assertDirs(dirs);
options.package = options.package || [];
const packages = parsePackages(options.package);
assertPackages(packages);
const packagesNames = Object.keys(packages);
log.verboseInfo('Directories to scan:');
dirs.forEach(dir => log.verboseInfo(' ', dir.path));
log.verboseNewline();
dirs.forEach(dir => {
findPackages(packages, packagesNames, dir);
});
if (packagesFound || packagesOmitted) {
log.newline();
}
log.info(`${packagesFound || 'No'} ${packagesFound === 1 ? 'package' : 'packages'} found.`);
log.verboseInfo(`${packagesOmitted || 'No'} ${packagesOmitted === 1 ? 'package' : 'packages'} omitted.`);
if (accessErrorsOccurred) {
log.noVerboseInfo('\n(Access errors occurred during the search. Rerun with `--verbose` to see them)');
}
};
function parseDirs(rawDirs) {
return rawDirs
.map(rd => {
const dirPath = path.normalize(rd);
const dirName = dirPath.split(path.sep).pop();
return {
path: dirPath,
name: dirName,
};
});
}
function assertDirs(dirs) {
// reading dirs to check the access & existence
let isFailed = false;
if (dirs.length === 0) {
isFailed = true;
log.error('No directories to search through were passed.');
}
dirs.forEach(dir => {
try {
const result = tryReadDirPath(dir.path, { logKnownErrors: true });
isFailed = isFailed || !result;
} catch (err) {
isFailed = true;
}
});
if (isFailed) {
process.exit(1);
}
}
function parsePackages(rawPackages) {
return rawPackages.reduce((acc, rp) => {
const [name, version = '*'] = rp.split('@').map(p => p.trim());
if (acc[name]) {
acc[name] += ` || ${version}`;
} else {
acc[name] = version;
}
return acc;
}, {});
}
function assertPackages(packages) {
let isFailed = false;
if (Object.keys(packages).length === 0) {
isFailed = true;
log.error('No packages to search for were passed.');
}
Object.entries(packages).forEach(([k, v]) => {
if (!semver.validRange(v)) {
log.error(`${v} does not look like a valid version (passed for \`${k}\`)`);
isFailed = true;
}
});
if (isFailed) {
process.exit(1);
}
}
function findPackages(packages, packagesNames, dir) {
packagesNames.forEach(pn => {
if (dir.name === pn) {
const version = getPackageVersion(dir.path);
if (version === null) {
// null as version means that some error is happend & handled
// so just return
return;
}
if (semver.satisfies(version, packages[pn])) {
log.success(`→ ${dir.path}@${version}`);
packagesFound += 1;
} else {
log.verboseInfo(`× ${dir.path}@${version}`);
packagesOmitted += 1;
}
}
});
const dirStat = tryReadDirPath(dir.path);
if (!dirStat) {
// if null is returned it means that an error is occurred and handled
// so just leave
return;
}
const subdirs = dirStat
.filter(ds => ds.isDirectory())
.map(ds => ({
path: path.join(dir.path, ds.name),
name: ds.name,
}));
subdirs.forEach(sd => findPackages(packages, packagesNames, sd));
}
function getPackageVersion(dirPath) {
try {
// well, we do it because we have to
// eslint-disable-next-line import/no-dynamic-require
const { version } = require(path.join(dirPath, 'package.json'));
return version;
} catch (err) {
if (err.code === 'MODULE_NOT_FOUND') {
// well, it is not a module
return null;
}
log.verboseError('Unexpected error occurred during reading package.json:');
log.verboseError(err);
log.noVerboseError('Unexpected error occurred. Run with `--verbose` to get more info.');
throw err;
}
}
function getGlobalPackagesDir() {
try {
return execSync('npm list -g --depth=-1 2>/dev/null | head -1').toString().trim();
} catch (err) {
log.verboseError('Unexpected error occurred during getting global packages dir:');
log.verboseError(err);
log.noVerboseError('Unexpected error occurred. Run with `--verbose` to get more info.');
throw err;
}
}
function tryReadDirPath(dirPath, { logKnownErrors = false } = {}) {
const logKnownError = logKnownErrors
? log.error.bind(log)
: log.verboseError.bind(log);
try {
return fs.readdirSync(dirPath, { withFileTypes: true });
} catch (err) {
if (err.code === 'ENOENT') {
logKnownError(`\`${dirPath}\` directory does not exist.`);
accessErrorsOccurred = true;
return null;
}
if (err.code === 'EACCES' || err.code === 'EPERM') {
logKnownError(`Does not have rights to read \`${dirPath}\`.`);
accessErrorsOccurred = true;
return null;
}
log.verboseError('Unexpected error occurred during dir check:');
log.verboseError(err);
log.noVerboseError('Unexpected error occurred. Run with `--verbose` to get more info.');
throw err;
}
}