-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
search.js
88 lines (71 loc) · 2.25 KB
/
search.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
const Minipass = require('minipass')
const Pipeline = require('minipass-pipeline')
const libSearch = require('libnpmsearch')
const log = require('npmlog')
const formatPackageStream = require('./search/format-package-stream.js')
const packageFilter = require('./search/package-filter.js')
const npm = require('./npm.js')
const output = require('./utils/output.js')
const usageUtil = require('./utils/usage.js')
const usage = usageUtil(
'search',
'npm search [-l|--long] [--json] [--parseable] [--no-description] [search terms ...]'
)
const cmd = (args, cb) => search(args).then(() => cb()).catch(cb)
const search = async (args) => {
const opts = {
...npm.flatOptions,
...npm.flatOptions.search,
include: prepareIncludes(args, npm.flatOptions.search.opts),
exclude: prepareExcludes(npm.flatOptions.search.exclude),
}
if (opts.include.length === 0)
throw new Error('search must be called with arguments')
// Used later to figure out whether we had any packages go out
let anyOutput = false
class FilterStream extends Minipass {
write (pkg) {
if (packageFilter(pkg, opts.include, opts.exclude))
super.write(pkg)
}
}
const filterStream = new FilterStream()
// Grab a configured output stream that will spit out packages in the
// desired format.
const outputStream = formatPackageStream({
args, // --searchinclude options are not highlighted
...opts,
})
log.silly('search', 'searching packages')
const p = new Pipeline(
libSearch.stream(opts.include, opts),
filterStream,
outputStream
)
p.on('data', chunk => {
if (!anyOutput)
anyOutput = true
output(chunk.toString('utf8'))
})
await p.promise()
if (!anyOutput && !opts.json && !opts.parseable)
output('No matches found for ' + (args.map(JSON.stringify).join(' ')))
log.silly('search', 'search completed')
log.clearProgress()
}
function prepareIncludes (args, searchopts) {
return args
.map(s => s.toLowerCase())
.filter(s => s)
}
function prepareExcludes (searchexclude) {
var exclude
if (typeof searchexclude === 'string')
exclude = searchexclude.split(/\s+/)
else
exclude = []
return exclude
.map(s => s.toLowerCase())
.filter(s => s)
}
module.exports = Object.assign(cmd, { usage })