@nightlybuildgroup/vault 1.4.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -0
- package/package.json +1 -1
- package/src/bw.js +20 -5
- package/src/cli.js +4 -1
- package/src/commands/add.js +19 -5
- package/src/commands/config.js +60 -0
- package/src/commands/status.js +4 -0
- package/src/config.js +7 -0
package/README.md
CHANGED
|
@@ -38,6 +38,7 @@ nbg-pw attach "GitHub" --file ./key.pem # add an attachment; --list/--get/--de
|
|
|
38
38
|
nbg-pw delete "GitHub" # soft-delete to trash (alias: rm; --permanent skips it)
|
|
39
39
|
nbg-pw items --search git # list item names; also: folders, collections
|
|
40
40
|
nbg-pw generate --length 24 --symbols # generate a password (no vault needed)
|
|
41
|
+
nbg-pw config set collection "Shared" # new items share into this org collection
|
|
41
42
|
nbg-pw serve --port 8087 # local bw REST API for fast repeated reads
|
|
42
43
|
nbg-pw status # presence + auth state (no secrets)
|
|
43
44
|
nbg-pw doctor # diagnose bw / Keychain / connectivity
|
|
@@ -110,6 +111,33 @@ for path in $(keepassxc-cli ls -R -f "$DB"); do
|
|
|
110
111
|
done
|
|
111
112
|
```
|
|
112
113
|
|
|
114
|
+
### Sharing new items with an organization (`config`)
|
|
115
|
+
|
|
116
|
+
By default `add` creates items in the API account's **personal** vault, which
|
|
117
|
+
other org members (and your own interactive login) can't see. To make every new
|
|
118
|
+
item land in a shared **organization collection** instead, set a default — it's
|
|
119
|
+
stored in your Keychain, never in this repo, so nothing org-specific is baked
|
|
120
|
+
into the tool:
|
|
121
|
+
|
|
122
|
+
```sh
|
|
123
|
+
nbg-pw config set organization "Acme Inc" # by name or id
|
|
124
|
+
nbg-pw config set collection "Shared" # by name or id
|
|
125
|
+
nbg-pw config show # current defaults
|
|
126
|
+
nbg-pw config unset collection # back to personal-vault default
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
Once a default collection is set, every `add` shares the new item into it:
|
|
130
|
+
|
|
131
|
+
```sh
|
|
132
|
+
printf '%s' "$pw" | nbg-pw add "GitHub" --username octocat --password-stdin
|
|
133
|
+
# → Created "GitHub" (…) → shared to "Shared"
|
|
134
|
+
|
|
135
|
+
nbg-pw add "Personal Note" --personal # opt a single item out (personal vault)
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
An explicit `--collection`/`--organization` on `add` overrides the default for
|
|
139
|
+
that call. `status` shows the active default share.
|
|
140
|
+
|
|
113
141
|
### Editing items (`edit`)
|
|
114
142
|
|
|
115
143
|
Fetch-merge-write: only the flags you pass are changed; everything else stays.
|
package/package.json
CHANGED
package/src/bw.js
CHANGED
|
@@ -144,14 +144,29 @@ export async function listOrganizations({ session }, deps = {}) {
|
|
|
144
144
|
return JSON.parse(stdout);
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
export async function sync({ session }, deps = {}) {
|
|
148
|
+
const run = deps.run ?? realRun;
|
|
149
|
+
await run('bw', ['sync'], { env: { BW_SESSION: session } });
|
|
150
|
+
}
|
|
151
|
+
|
|
147
152
|
// Share an existing item into an organization's collection(s). This is bw's only
|
|
148
|
-
// path to put an item in a collection; the item must already exist.
|
|
153
|
+
// path to put an item in a collection; the item must already exist. bw's local
|
|
154
|
+
// cache can lag a just-created item ("client copy ... out of date"); a sync +
|
|
155
|
+
// single retry clears that.
|
|
149
156
|
export async function moveItemToCollection({ itemId, organizationId, collectionIds, session }, deps = {}) {
|
|
150
157
|
const run = deps.run ?? realRun;
|
|
151
|
-
|
|
152
|
-
env: { BW_SESSION: session },
|
|
153
|
-
|
|
154
|
-
|
|
158
|
+
const move = () =>
|
|
159
|
+
run('bw', ['move', itemId, organizationId], { env: { BW_SESSION: session }, input: encode(collectionIds) });
|
|
160
|
+
try {
|
|
161
|
+
await move();
|
|
162
|
+
} catch (e) {
|
|
163
|
+
if (/out of date/i.test(e.message || '')) {
|
|
164
|
+
await run('bw', ['sync'], { env: { BW_SESSION: session } });
|
|
165
|
+
await move();
|
|
166
|
+
} else {
|
|
167
|
+
throw e;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
155
170
|
}
|
|
156
171
|
|
|
157
172
|
export async function editItem({ id, item, session }, deps = {}) {
|
package/src/cli.js
CHANGED
|
@@ -14,6 +14,7 @@ Commands:
|
|
|
14
14
|
folders List folder names
|
|
15
15
|
collections List collection names
|
|
16
16
|
generate Generate a password or passphrase (bw generate)
|
|
17
|
+
config Show/set defaults, e.g. the org collection new items share into
|
|
17
18
|
serve Start a local bw API daemon (unlocked) for fast repeated reads
|
|
18
19
|
status Show config + auth state (no secret values)
|
|
19
20
|
doctor Diagnose bw / Keychain / server connectivity (--fix resets a wedged bw session)
|
|
@@ -54,7 +55,7 @@ export async function runCli(argv, deps = {}) {
|
|
|
54
55
|
}
|
|
55
56
|
|
|
56
57
|
async function loadCommands() {
|
|
57
|
-
const [setup, get, add, edit, del, attach, list, items, folders, collections, generate, status, doctor, serve, reset] =
|
|
58
|
+
const [setup, get, add, edit, del, attach, list, items, folders, collections, generate, config, status, doctor, serve, reset] =
|
|
58
59
|
await Promise.all([
|
|
59
60
|
import('./commands/setup.js'),
|
|
60
61
|
import('./commands/get.js'),
|
|
@@ -67,6 +68,7 @@ async function loadCommands() {
|
|
|
67
68
|
import('./commands/folders.js'),
|
|
68
69
|
import('./commands/collections.js'),
|
|
69
70
|
import('./commands/generate.js'),
|
|
71
|
+
import('./commands/config.js'),
|
|
70
72
|
import('./commands/status.js'),
|
|
71
73
|
import('./commands/doctor.js'),
|
|
72
74
|
import('./commands/serve.js'),
|
|
@@ -85,6 +87,7 @@ async function loadCommands() {
|
|
|
85
87
|
folders: folders.default,
|
|
86
88
|
collections: collections.default,
|
|
87
89
|
generate: generate.default,
|
|
90
|
+
config: config.default,
|
|
88
91
|
status: status.default,
|
|
89
92
|
doctor: doctor.default,
|
|
90
93
|
serve: serve.default,
|
package/src/commands/add.js
CHANGED
|
@@ -5,7 +5,7 @@ const USAGE =
|
|
|
5
5
|
'usage: nbg-pw add <name> [--username <u>] [--url <uri>]... [--notes <n>] ' +
|
|
6
6
|
'[--folder <name>] [--collection <name>] [--organization <name|id>] ' +
|
|
7
7
|
'[--field <name>=<value>]... [--field-hidden <name>=<value>]... [--totp <secret>] ' +
|
|
8
|
-
'[--password-stdin]\n or: nbg-pw add --json (reads one entry as a JSON object on stdin)';
|
|
8
|
+
'[--password-stdin] [--personal]\n or: nbg-pw add --json (reads one entry as a JSON object on stdin)';
|
|
9
9
|
|
|
10
10
|
// `--field name=value` → { name, value, type }. Splits on the FIRST `=` so the
|
|
11
11
|
// value may itself contain `=`.
|
|
@@ -16,7 +16,7 @@ function parseField(raw, type) {
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
export function parseAddArgs(args) {
|
|
19
|
-
const opts = { uris: [], fields: [], passwordStdin: false, json: false };
|
|
19
|
+
const opts = { uris: [], fields: [], passwordStdin: false, json: false, personal: false };
|
|
20
20
|
let name = null;
|
|
21
21
|
for (let i = 0; i < args.length; i++) {
|
|
22
22
|
const a = args[i];
|
|
@@ -27,6 +27,7 @@ export function parseAddArgs(args) {
|
|
|
27
27
|
};
|
|
28
28
|
switch (a) {
|
|
29
29
|
case '--json': opts.json = true; break;
|
|
30
|
+
case '--personal': opts.personal = true; break;
|
|
30
31
|
case '--password-stdin': opts.passwordStdin = true; break;
|
|
31
32
|
case '--username': opts.username = need(); break;
|
|
32
33
|
case '--url': opts.uris.push(need()); break;
|
|
@@ -122,23 +123,36 @@ export async function runAdd(args, deps) {
|
|
|
122
123
|
if (opts.passwordStdin) entry.password = (await readStdin()).replace(/\r?\n$/, '');
|
|
123
124
|
}
|
|
124
125
|
|
|
126
|
+
// Where the item lands: an explicit --collection wins; otherwise the
|
|
127
|
+
// configured default shares every new item into the org collection, unless
|
|
128
|
+
// --personal (or a json `personal:true`) opts out into the personal vault.
|
|
129
|
+
const personal = opts.personal || entry.personal;
|
|
130
|
+
let collectionName = entry.collection;
|
|
131
|
+
let organizationName = entry.organization;
|
|
132
|
+
if (!personal && !collectionName && config.defaultCollection) {
|
|
133
|
+
collectionName = config.defaultCollection;
|
|
134
|
+
organizationName = organizationName ?? config.defaultOrganization;
|
|
135
|
+
}
|
|
136
|
+
|
|
125
137
|
const session = await bw.ensureSession(config);
|
|
126
138
|
|
|
127
139
|
if (entry.folder) entry.folderId = await resolveFolderId(bw, session, entry.folder);
|
|
128
140
|
|
|
129
141
|
const created = await bw.createItem({ item: buildLoginItem(entry), session });
|
|
130
142
|
|
|
131
|
-
|
|
132
|
-
|
|
143
|
+
let shared = '';
|
|
144
|
+
if (collectionName) {
|
|
145
|
+
const col = await resolveCollection(bw, session, collectionName, organizationName);
|
|
133
146
|
await bw.moveItemToCollection({
|
|
134
147
|
itemId: created.id,
|
|
135
148
|
organizationId: col.organizationId,
|
|
136
149
|
collectionIds: [col.id],
|
|
137
150
|
session,
|
|
138
151
|
});
|
|
152
|
+
shared = ` → shared to "${col.name}"`;
|
|
139
153
|
}
|
|
140
154
|
|
|
141
|
-
out(`Created "${created.name}" (${created.id})\n`);
|
|
155
|
+
out(`Created "${created.name}" (${created.id})${shared}\n`);
|
|
142
156
|
return 0;
|
|
143
157
|
}
|
|
144
158
|
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import * as keychainModule from '../keychain.js';
|
|
2
|
+
|
|
3
|
+
// User-facing key → stored config field.
|
|
4
|
+
const KEYS = { organization: 'defaultOrganization', collection: 'defaultCollection' };
|
|
5
|
+
|
|
6
|
+
const USAGE = 'usage: nbg-pw config [show | set <organization|collection> <value> | unset <organization|collection>]';
|
|
7
|
+
|
|
8
|
+
export function parseConfigArgs(args) {
|
|
9
|
+
const [sub, ...rest] = args;
|
|
10
|
+
if (!sub || sub === 'show') return { action: 'show' };
|
|
11
|
+
if (sub === 'set') {
|
|
12
|
+
const [key, value] = rest;
|
|
13
|
+
if (!key || !(key in KEYS)) throw new Error(USAGE);
|
|
14
|
+
if (value === undefined) throw new Error('config set requires a value');
|
|
15
|
+
return { action: 'set', key, value };
|
|
16
|
+
}
|
|
17
|
+
if (sub === 'unset') {
|
|
18
|
+
const [key] = rest;
|
|
19
|
+
if (!key || !(key in KEYS)) throw new Error(USAGE);
|
|
20
|
+
return { action: 'unset', key };
|
|
21
|
+
}
|
|
22
|
+
throw new Error(`unknown config subcommand "${sub}"\n${USAGE}`);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export async function runConfig(args, deps) {
|
|
26
|
+
const { keychain, out, err } = deps;
|
|
27
|
+
const opts = parseConfigArgs(args);
|
|
28
|
+
|
|
29
|
+
const config = await keychain.readConfig();
|
|
30
|
+
if (!config) {
|
|
31
|
+
err('No stored credentials. Run "nbg-pw setup" first.\n');
|
|
32
|
+
return 1;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
if (opts.action === 'show') {
|
|
36
|
+
out(`default organization: ${config.defaultOrganization ?? '(not set)'}\n`);
|
|
37
|
+
out(`default collection: ${config.defaultCollection ?? '(not set)'}\n`);
|
|
38
|
+
return 0;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
const field = KEYS[opts.key];
|
|
42
|
+
if (opts.action === 'set') {
|
|
43
|
+
config[field] = opts.value;
|
|
44
|
+
await keychain.writeConfig(config);
|
|
45
|
+
out(`Set default ${opts.key} = ${opts.value}\n`);
|
|
46
|
+
} else {
|
|
47
|
+
delete config[field];
|
|
48
|
+
await keychain.writeConfig(config);
|
|
49
|
+
out(`Unset default ${opts.key}\n`);
|
|
50
|
+
}
|
|
51
|
+
return 0;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export default async function config(args) {
|
|
55
|
+
return runConfig(args, {
|
|
56
|
+
keychain: keychainModule,
|
|
57
|
+
out: (s) => process.stdout.write(s),
|
|
58
|
+
err: (s) => process.stderr.write(s),
|
|
59
|
+
});
|
|
60
|
+
}
|
package/src/commands/status.js
CHANGED
|
@@ -12,6 +12,10 @@ export async function runStatus(args, deps) {
|
|
|
12
12
|
out(` stored creds: yes\n`);
|
|
13
13
|
out(` server URL: ${config.serverUrl}\n`);
|
|
14
14
|
out(` email: ${config.email}\n`);
|
|
15
|
+
if (config.defaultCollection) {
|
|
16
|
+
const org = config.defaultOrganization ? `${config.defaultOrganization} / ` : '';
|
|
17
|
+
out(` default share: ${org}${config.defaultCollection}\n`);
|
|
18
|
+
}
|
|
15
19
|
} else {
|
|
16
20
|
out(' stored creds: No credentials stored (run "nbg-pw setup")\n');
|
|
17
21
|
}
|
package/src/config.js
CHANGED
|
@@ -2,6 +2,8 @@ export const SERVICE = 'com.nightlybuild.vault';
|
|
|
2
2
|
export const ACCOUNT = 'default';
|
|
3
3
|
export const FIELDS = ['serverUrl', 'email', 'clientId', 'clientSecret', 'masterPassword'];
|
|
4
4
|
export const READ_FIELDS = [...FIELDS, 'savedAt'];
|
|
5
|
+
// Optional: when set, `add` shares new items into this org collection by default.
|
|
6
|
+
export const OPTIONAL_FIELDS = ['defaultOrganization', 'defaultCollection'];
|
|
5
7
|
|
|
6
8
|
export function isValidUrl(s) {
|
|
7
9
|
if (typeof s !== 'string' || s.length === 0) return false;
|
|
@@ -26,6 +28,11 @@ export function validateConfig(obj) {
|
|
|
26
28
|
}
|
|
27
29
|
if (!isValidUrl(obj.serverUrl)) throw new Error('config serverUrl is not a valid URL');
|
|
28
30
|
if (!isValidEmail(obj.email)) throw new Error('config email is not a valid email');
|
|
31
|
+
for (const f of OPTIONAL_FIELDS) {
|
|
32
|
+
if (obj[f] !== undefined && (typeof obj[f] !== 'string' || obj[f].length === 0)) {
|
|
33
|
+
throw new Error(`config field ${f} must be a non-empty string when set`);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
29
36
|
return obj;
|
|
30
37
|
}
|
|
31
38
|
|