Software: Apache. PHP/7.3.33 uname -a: Linux web25.us.cloudlogin.co 5.10.237-xeon-hst #1 SMP Mon May 5 15:10:04 UTC 2025 x86_64 uid=233359(alpastrology) gid=888(tty) groups=888(tty),33(tape) Safe-mode: OFF (not secure) /usr/lib/node_modules/npm/node_modules/libnpmhook/ drwxr-xr-x |
Viewing file: Select action/file-type: 'use strict' const fetch = require('npm-registry-fetch') const figgyPudding = require('figgy-pudding') const getStream = require('get-stream') const validate = require('aproba') const HooksConfig = figgyPudding({ package: {}, limit: {}, offset: {}, Promise: {default: () => Promise} }) const eu = encodeURIComponent const cmd = module.exports = {} cmd.add = (name, endpoint, secret, opts) => { opts = HooksConfig(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.concat({ method: 'POST', body: { type, name, endpoint, secret } })) } cmd.rm = (id, opts) => { opts = HooksConfig(opts) validate('SO', [id, opts]) return fetch.json(`/-/npm/v1/hooks/hook/${eu(id)}`, opts.concat({ method: 'DELETE' }, opts)).catch(err => { if (err.code === 'E404') { return null } else { throw err } }) } cmd.update = (id, endpoint, secret, opts) => { opts = HooksConfig(opts) validate('SSSO', [id, endpoint, secret, opts]) return fetch.json(`/-/npm/v1/hooks/hook/${eu(id)}`, opts.concat({ method: 'PUT', body: {endpoint, secret} }, opts)) } cmd.find = (id, opts) => { opts = HooksConfig(opts) validate('SO', [id, opts]) return fetch.json(`/-/npm/v1/hooks/hook/${eu(id)}`, opts) } cmd.ls = (opts) => { return getStream.array(cmd.ls.stream(opts)) } cmd.ls.stream = (opts) => { opts = HooksConfig(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.concat({ query: { package: pkg, limit, offset } })) } |
:: Command execute :: | |
--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.012 ]-- |