mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 14:12:28 +00:00

PR-URL: https://github.com/nodejs/node/pull/35474 Reviewed-By: Ruy Adorno <ruyadorno@github.com> Reviewed-By: Ujjwal Sharma <ryzokuken@disroot.org> Reviewed-By: Ben Coe <bencoe@gmail.com> Reviewed-By: Geoffrey Booth <webmaster@geoffreybooth.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com> Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
71 lines
1.5 KiB
JavaScript
71 lines
1.5 KiB
JavaScript
'use strict'
|
|
|
|
const fetch = require('npm-registry-fetch')
|
|
const validate = require('aproba')
|
|
|
|
const eu = encodeURIComponent
|
|
const cmd = module.exports = {}
|
|
cmd.add = (name, endpoint, secret, opts = {}) => {
|
|
validate('SSSO', [name, endpoint, secret, opts])
|
|
let type = 'package'
|
|
if (name.match(/^@[^/]+$/)) {
|
|
type = 'scope'
|
|
}
|
|
if (name[0] === '~') {
|
|
type = 'owner'
|
|
name = name.substr(1)
|
|
}
|
|
return fetch.json('/-/npm/v1/hooks/hook', {
|
|
...opts,
|
|
method: 'POST',
|
|
body: { type, name, endpoint, secret }
|
|
})
|
|
}
|
|
|
|
cmd.rm = (id, opts = {}) => {
|
|
validate('SO', [id, opts])
|
|
return fetch.json(`/-/npm/v1/hooks/hook/${eu(id)}`, {
|
|
...opts,
|
|
method: 'DELETE'
|
|
}).catch(err => {
|
|
if (err.code === 'E404') {
|
|
return null
|
|
} else {
|
|
throw err
|
|
}
|
|
})
|
|
}
|
|
|
|
cmd.update = (id, endpoint, secret, opts = {}) => {
|
|
validate('SSSO', [id, endpoint, secret, opts])
|
|
return fetch.json(`/-/npm/v1/hooks/hook/${eu(id)}`, {
|
|
...opts,
|
|
method: 'PUT',
|
|
body: {endpoint, secret}
|
|
})
|
|
}
|
|
|
|
cmd.find = (id, opts = {}) => {
|
|
validate('SO', [id, opts])
|
|
return fetch.json(`/-/npm/v1/hooks/hook/${eu(id)}`, opts)
|
|
}
|
|
|
|
cmd.ls = (opts = {}) => {
|
|
return cmd.ls.stream(opts).collect()
|
|
}
|
|
|
|
cmd.ls.stream = (opts = {}) => {
|
|
const { package: pkg, limit, offset } = opts
|
|
validate('S|Z', [pkg])
|
|
validate('N|Z', [limit])
|
|
validate('N|Z', [offset])
|
|
return fetch.json.stream('/-/npm/v1/hooks', 'objects.*', {
|
|
...opts,
|
|
query: {
|
|
package: pkg,
|
|
limit,
|
|
offset
|
|
}
|
|
})
|
|
}
|