/
snap
/
node
/
11691
/
lib
/
node_modules
/
npm
/
lib
/
commands
/
/snap/node/11691/lib/node_modules/npm/lib/commands
mkdir
upload
Name
Size
Mode
Actions
access.js
6189
0644
edit
dl
rm
adduser.js
1321
0644
edit
dl
rm
audit.js
3221
0644
edit
dl
rm
bugs.js
847
0644
edit
dl
rm
cache.js
7292
0644
edit
dl
rm
ci.js
4325
0644
edit
dl
rm
completion.js
9116
0644
edit
dl
rm
config.js
11444
0644
edit
dl
rm
dedupe.js
1443
0644
edit
dl
rm
deprecate.js
2182
0644
edit
dl
rm
diff.js
8191
0644
edit
dl
rm
dist-tag.js
5654
0644
edit
dl
rm
docs.js
449
0644
edit
dl
rm
doctor.js
10347
0644
edit
dl
rm
edit.js
1804
0644
edit
dl
rm
exec.js
3500
0644
edit
dl
rm
explain.js
3661
0644
edit
dl
rm
explore.js
2211
0644
edit
dl
rm
find-dupes.js
634
0644
edit
dl
rm
fund.js
6610
0644
edit
dl
rm
get.js
577
0644
edit
dl
rm
help-search.js
5650
0644
edit
dl
rm
help.js
3752
0644
edit
dl
rm
hook.js
3453
0644
edit
dl
rm
init.js
7018
0644
edit
dl
rm
install-ci-test.js
373
0644
edit
dl
rm
install-test.js
370
0644
edit
dl
rm
install.js
5277
0644
edit
dl
rm
link.js
5381
0644
edit
dl
rm
ll.js
234
0644
edit
dl
rm
login.js
1318
0644
edit
dl
rm
logout.js
1453
0644
edit
dl
rm
ls.js
18629
0644
edit
dl
rm
org.js
4121
0644
edit
dl
rm
outdated.js
7880
0644
edit
dl
rm
owner.js
5988
0644
edit
dl
rm
pack.js
2665
0644
edit
dl
rm
ping.js
873
0644
edit
dl
rm
pkg.js
3641
0644
edit
dl
rm
prefix.js
335
0644
edit
dl
rm
profile.js
10819
0644
edit
dl
rm
prune.js
799
0644
edit
dl
rm
publish.js
7552
0644
edit
dl
rm
query.js
3595
0644
edit
dl
rm
rebuild.js
2241
0644
edit
dl
rm
repo.js
1278
0644
edit
dl
rm
restart.js
310
0644
edit
dl
rm
root.js
295
0644
edit
dl
rm
run-script.js
6221
0644
edit
dl
rm
sbom.js
4616
0644
edit
dl
rm
search.js
1877
0644
edit
dl
rm
set.js
671
0644
edit
dl
rm
shrinkwrap.js
2712
0644
edit
dl
rm
star.js
1911
0644
edit
dl
rm
stars.js
1052
0644
edit
dl
rm
start.js
300
0644
edit
dl
rm
stop.js
295
0644
edit
dl
rm
team.js
4461
0644
edit
dl
rm
test.js
295
0644
edit
dl
rm
token.js
6160
0644
edit
dl
rm
uninstall.js
1561
0644
edit
dl
rm
unpublish.js
5394
0644
edit
dl
rm
unstar.js
183
0644
edit
dl
rm
update.js
1765
0644
edit
dl
rm
version.js
3628
0644
edit
dl
rm
view.js
13106
0644
edit
dl
rm
whoami.js
527
0644
edit
dl
rm
Edit:
/snap/node/11691/lib/node_modules/npm/lib/commands/access.js
(6189B)
const libnpmaccess = require('libnpmaccess') const npa = require('npm-package-arg') const { output } = require('proc-log') const pkgJson = require('@npmcli/package-json') const localeCompare = require('@isaacs/string-locale-compare')('en') const { otplease } = require('../utils/auth.js') const getIdentity = require('../utils/get-identity.js') const BaseCommand = require('../base-cmd.js') const commands = [ 'get', 'grant', 'list', 'revoke', 'set', ] const setCommands = [ 'status=public', 'status=private', 'mfa=none', 'mfa=publish', 'mfa=automation', '2fa=none', '2fa=publish', '2fa=automation', ] class Access extends BaseCommand { static description = 'Set access level on published packages' static name = 'access' static params = [ 'json', 'otp', 'registry', ] static usage = [ 'list packages [<user>|<scope>|<scope:team>] [<package>]', 'list collaborators [<package> [<user>]]', 'get status [<package>]', 'set status=public|private [<package>]', 'set mfa=none|publish|automation [<package>]', 'grant <read-only|read-write> <scope:team> [<package>]', 'revoke <scope:team> [<package>]', ] static async completion (opts) { const argv = opts.conf.argv.remain if (argv.length === 2) { return commands } if (argv.length === 3) { switch (argv[2]) { case 'grant': return ['read-only', 'read-write'] case 'revoke': return [] case 'list': case 'ls': return ['packages', 'collaborators'] case 'get': return ['status'] case 'set': return setCommands default: throw new Error(argv[2] + ' not recognized') } } } async exec ([cmd, subcmd, ...args]) { if (!cmd) { throw this.usageError() } if (!commands.includes(cmd)) { throw this.usageError(`${cmd} is not a valid access command`) } // All commands take at least one more parameter so we can do this check up front if (!subcmd) { throw this.usageError() } switch (cmd) { case 'grant': if (!['read-only', 'read-write'].includes(subcmd)) { throw this.usageError('grant must be either `read-only` or `read-write`') } if (!args[0]) { throw this.usageError('`<scope:team>` argument is required') } return this.#grant(subcmd, args[0], args[1]) case 'revoke': return this.#revoke(subcmd, args[0]) case 'list': case 'ls': if (subcmd === 'packages') { return this.#listPackages(args[0], args[1]) } if (subcmd === 'collaborators') { return this.#listCollaborators(args[0], args[1]) } throw this.usageError(`list ${subcmd} is not a valid access command`) case 'get': if (subcmd !== 'status') { throw this.usageError(`get ${subcmd} is not a valid access command`) } return this.#getStatus(args[0]) case 'set': if (!setCommands.includes(subcmd)) { throw this.usageError(`set ${subcmd} is not a valid access command`) } return this.#set(subcmd, args[0]) } } async #grant (permissions, scope, pkg) { await libnpmaccess.setPermissions(scope, pkg, permissions, this.npm.flatOptions) } async #revoke (scope, pkg) { await libnpmaccess.removePermissions(scope, pkg, this.npm.flatOptions) } async #listPackages (owner, pkg) { if (!owner) { owner = await getIdentity(this.npm, this.npm.flatOptions) } const pkgs = await libnpmaccess.getPackages(owner, this.npm.flatOptions) this.#output(pkgs, pkg) } async #listCollaborators (pkg, user) { const pkgName = await this.#getPackage(pkg, false) const collabs = await libnpmaccess.getCollaborators(pkgName, this.npm.flatOptions) this.#output(collabs, user) } async #getStatus (pkg) { const pkgName = await this.#getPackage(pkg, false) const visibility = await libnpmaccess.getVisibility(pkgName, this.npm.flatOptions) this.#output({ [pkgName]: visibility.public ? 'public' : 'private' }) } async #set (subcmd, pkg) { const [subkey, subval] = subcmd.split('=') switch (subkey) { case 'mfa': case '2fa': return this.#setMfa(pkg, subval) case 'status': return this.#setStatus(pkg, subval) } } async #setMfa (pkg, level) { const pkgName = await this.#getPackage(pkg, false) await otplease(this.npm, this.npm.flatOptions, (opts) => { return libnpmaccess.setMfa(pkgName, level, opts) }) } async #setStatus (pkg, status) { // only scoped packages can have their access changed const pkgName = await this.#getPackage(pkg, true) if (status === 'private') { status = 'restricted' } await otplease(this.npm, this.npm.flatOptions, (opts) => { return libnpmaccess.setAccess(pkgName, status, opts) }) return this.#getStatus(pkgName) } async #getPackage (name, requireScope) { if (!name) { try { const { content } = await pkgJson.normalize(this.npm.prefix) name = content.name } catch (err) { if (err.code === 'ENOENT') { throw Object.assign(new Error('no package name given and no package.json found'), { code: 'ENOENT', }) } else { throw err } } } const spec = npa(name) if (requireScope && !spec.scope) { throw this.usageError('This command is only available for scoped packages.') } return name } #output (items, limiter) { const outputs = {} const lookup = { __proto__: null, read: 'read-only', write: 'read-write', } for (const item in items) { const val = items[item] outputs[item] = lookup[val] || val } if (this.npm.config.get('json')) { output.buffer(outputs) } else { for (const item of Object.keys(outputs).sort(localeCompare)) { if (!limiter || limiter === item) { output.standard(`${item}: ${outputs[item]}`) } } } } } module.exports = Access
Save
cmd:
run