doomain 0.1.11 → 0.1.12

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.
@@ -3,7 +3,7 @@ import * as p from '@clack/prompts';
3
3
  import { getConfigPath, loadConfig, maskSecret, updateConfig } from '../../lib/config.js';
4
4
  import { accountFlag, jsonFlag } from '../../lib/flags.js';
5
5
  import { createOutput, outputError } from '../../lib/output.js';
6
- import { isDefaultProviderAccount, listConfiguredProviderAccounts, normalizeProviderAccount } from '../../lib/providers/core/config.js';
6
+ import { DEFAULT_PROVIDER_ACCOUNT, isDefaultProviderAccount, listConfiguredProviderAccounts, normalizeProviderAccount, providerAccountHasCredentials, withProviderAccountCredentials, } from '../../lib/providers/core/config.js';
7
7
  import { getProviderDefinition, listProviderDefinitions } from '../../lib/providers/registry.js';
8
8
  function requireString(value, message) {
9
9
  if (typeof value === 'string' && value.trim())
@@ -58,6 +58,34 @@ async function promptCredential(credential, detectedPublicIp) {
58
58
  }
59
59
  return typeof value === 'string' && value.trim() ? value.trim() : null;
60
60
  }
61
+ function validateProviderAccount(value) {
62
+ try {
63
+ normalizeProviderAccount(value);
64
+ return undefined;
65
+ }
66
+ catch (error) {
67
+ return error instanceof Error ? error.message : String(error);
68
+ }
69
+ }
70
+ async function promptProviderAccount() {
71
+ const value = await p.text({ message: 'Profile name', placeholder: DEFAULT_PROVIDER_ACCOUNT, validate: validateProviderAccount });
72
+ if (p.isCancel(value)) {
73
+ p.cancel('Cancelled');
74
+ return null;
75
+ }
76
+ return normalizeProviderAccount(value);
77
+ }
78
+ async function confirmProviderAccountOverwrite(definition, account) {
79
+ const value = await p.confirm({
80
+ initialValue: false,
81
+ message: `Profile "${account}" already exists for ${definition.displayName}. Overwrite it?`,
82
+ });
83
+ if (p.isCancel(value)) {
84
+ p.cancel('Cancelled');
85
+ return false;
86
+ }
87
+ return value;
88
+ }
61
89
  async function promptProvider() {
62
90
  const config = await loadConfig();
63
91
  const selected = await p.select({
@@ -108,8 +136,16 @@ export default class ProvidersConnect extends Command {
108
136
  const definition = args.provider ? getProviderDefinition(args.provider) : await promptProvider();
109
137
  if (!definition)
110
138
  return;
111
- const account = normalizeProviderAccount(flags.account);
139
+ const account = flags.account ? normalizeProviderAccount(flags.account) : out.json ? DEFAULT_PROVIDER_ACCOUNT : await promptProviderAccount();
140
+ if (!account)
141
+ return;
112
142
  const isDefaultAccount = isDefaultProviderAccount(account);
143
+ const currentConfig = await loadConfig();
144
+ if (!out.json && providerAccountHasCredentials(currentConfig, definition.id, account)) {
145
+ const overwrite = await confirmProviderAccountOverwrite(definition, account);
146
+ if (!overwrite)
147
+ return;
148
+ }
113
149
  const passedCredentials = parseCredentialFlags(flags.credential);
114
150
  const credentials = {};
115
151
  const detectedPublicIp = !out.json && usesClientIp(definition) ? await fetchPublicIp() : undefined;
@@ -148,7 +184,6 @@ export default class ProvidersConnect extends Command {
148
184
  spinner = undefined;
149
185
  }
150
186
  let setDefault = true;
151
- const currentConfig = await loadConfig();
152
187
  if (!out.json && currentConfig.defaults?.provider && currentConfig.defaults.provider !== definition.id) {
153
188
  const value = await p.confirm({
154
189
  initialValue: true,
@@ -165,15 +200,7 @@ export default class ProvidersConnect extends Command {
165
200
  defaults: setDefault ? { ...config.defaults, provider: definition.id } : config.defaults,
166
201
  providers: {
167
202
  ...config.providers,
168
- [definition.id]: isDefaultAccount
169
- ? { ...config.providers?.[definition.id], credentials }
170
- : {
171
- ...config.providers?.[definition.id],
172
- accounts: {
173
- ...config.providers?.[definition.id]?.accounts,
174
- [account]: { credentials },
175
- },
176
- },
203
+ [definition.id]: withProviderAccountCredentials(config.providers?.[definition.id], account, credentials),
177
204
  },
178
205
  }));
179
206
  out.result({
@@ -6,7 +6,7 @@ import { jsonFlag } from '../lib/flags.js';
6
6
  import { createLinkPlan, linkDomain } from '../lib/link-domain.js';
7
7
  import { detectLocalVercelProject } from '../lib/local-vercel.js';
8
8
  import { createOutput, outputError } from '../lib/output.js';
9
- import { DEFAULT_PROVIDER_ACCOUNT, listConfiguredProviderAccounts } from '../lib/providers/core/config.js';
9
+ import { DEFAULT_PROVIDER_ACCOUNT, isDefaultProviderAccount, listConfiguredProviderAccounts, normalizeProviderAccount, providerAccountHasCredentials, withProviderAccountCredentials, } from '../lib/providers/core/config.js';
10
10
  import { createProvider, getProviderDefinition, listProviderDefinitions } from '../lib/providers/registry.js';
11
11
  import { listGlobalVercelTokens } from '../lib/vercel-auth.js';
12
12
  import { createVercelClient } from '../lib/vercel.js';
@@ -26,6 +26,28 @@ async function promptRequired(message, opts = {}) {
26
26
  const resolved = cancelIfNeeded(value);
27
27
  return typeof resolved === 'string' ? resolved.trim() : null;
28
28
  }
29
+ function validateProviderAccount(value) {
30
+ try {
31
+ normalizeProviderAccount(value);
32
+ return undefined;
33
+ }
34
+ catch (error) {
35
+ return error instanceof Error ? error.message : String(error);
36
+ }
37
+ }
38
+ async function promptProviderAccount() {
39
+ const value = await p.text({ message: 'Profile name', placeholder: DEFAULT_PROVIDER_ACCOUNT, validate: validateProviderAccount });
40
+ const resolved = cancelIfNeeded(value);
41
+ return typeof resolved === 'string' ? normalizeProviderAccount(resolved) : null;
42
+ }
43
+ async function confirmProviderAccountOverwrite(definition, account) {
44
+ const value = await p.confirm({
45
+ initialValue: false,
46
+ message: `Profile "${account}" already exists for ${definition.displayName}. Overwrite it?`,
47
+ });
48
+ const resolved = cancelIfNeeded(value);
49
+ return resolved === true;
50
+ }
29
51
  async function fetchPublicIp() {
30
52
  const controller = new AbortController();
31
53
  const timeout = setTimeout(() => controller.abort(), 2000);
@@ -251,6 +273,15 @@ export default class Wizard extends Command {
251
273
  if (!selectedDefinition)
252
274
  return;
253
275
  showProviderSetup(selectedDefinition);
276
+ const account = await promptProviderAccount();
277
+ if (!account)
278
+ return;
279
+ if (providerAccountHasCredentials(config, selectedDefinition.id, account)) {
280
+ const overwrite = await confirmProviderAccountOverwrite(selectedDefinition, account);
281
+ if (!overwrite)
282
+ return;
283
+ }
284
+ const providerAccount = { account, isDefaultAccount: isDefaultProviderAccount(account), providerId: selectedDefinition.id };
254
285
  const credentials = await promptProviderCredentials(selectedDefinition);
255
286
  if (!credentials)
256
287
  return;
@@ -261,11 +292,14 @@ export default class Wizard extends Command {
261
292
  const zones = await provider.listZones();
262
293
  domainSpinner.stop(`Connected ${selectedDefinition.displayName} and loaded ${zones.length} domain${zones.length === 1 ? '' : 's'}`);
263
294
  activeSpinner = undefined;
264
- domainOptions.push(...zones.map((zone) => toProviderDomainOption(selectedDefinition, { account: DEFAULT_PROVIDER_ACCOUNT, isDefaultAccount: true, providerId: selectedDefinition.id }, zone)));
295
+ domainOptions.push(...zones.map((zone) => toProviderDomainOption(selectedDefinition, providerAccount, zone)));
265
296
  await updateConfig((current) => ({
266
297
  ...current,
267
298
  defaults: { ...current.defaults, provider: selectedDefinition.id },
268
- providers: { ...current.providers, [selectedDefinition.id]: { credentials } },
299
+ providers: {
300
+ ...current.providers,
301
+ [selectedDefinition.id]: withProviderAccountCredentials(current.providers?.[selectedDefinition.id], account, credentials),
302
+ },
269
303
  vercel: { token: vercelToken, teamId: vercelTeamId },
270
304
  }));
271
305
  }
@@ -26,7 +26,7 @@ export const commandSchemas = [
26
26
  flags: [
27
27
  { name: 'json', type: 'boolean', description: 'Output a single JSON object and never prompt.' },
28
28
  { name: 'provider', type: 'string', description: 'DNS provider id. Inferred from the target domain when omitted.' },
29
- { name: 'account', type: 'string', description: 'DNS provider account alias. Defaults to the provider default account.' },
29
+ { name: 'account', type: 'string', description: 'DNS provider profile/account alias. Defaults to the provider default account.' },
30
30
  { name: 'domain', type: 'string', description: 'Target domain or base zone, for example app.example.com or example.com.' },
31
31
  { name: 'subdomain', type: 'string', description: 'Subdomain to add.' },
32
32
  { name: 'apex', type: 'boolean', description: 'Use the root/apex domain.' },
@@ -50,7 +50,7 @@ export const commandSchemas = [
50
50
  ],
51
51
  flags: [
52
52
  { name: 'json', type: 'boolean', description: 'Output a single JSON object and never prompt.' },
53
- { name: 'account', type: 'string', description: 'DNS provider account alias. Defaults to the provider default account.' },
53
+ { name: 'account', type: 'string', description: 'DNS provider profile/account alias. Defaults to the provider default account.' },
54
54
  { name: 'credential', type: 'string', description: 'Provider credential as key=value. Can be repeated.' },
55
55
  { name: 'api-key', type: 'string', description: 'Spaceship API key.' },
56
56
  { name: 'api-secret', type: 'string', description: 'Spaceship API secret.' },
@@ -63,7 +63,7 @@ export const commandSchemas = [
63
63
  examples: ['doomain providers add', 'doomain providers add namecheap', 'doomain providers add spaceship --account work'],
64
64
  flags: [
65
65
  { name: 'json', type: 'boolean', description: 'Output a single JSON object and never prompt.' },
66
- { name: 'account', type: 'string', description: 'DNS provider account alias. Defaults to the provider default account.' },
66
+ { name: 'account', type: 'string', description: 'DNS provider profile/account alias. Defaults to the provider default account.' },
67
67
  { name: 'credential', type: 'string', description: 'Provider credential as key=value. Can be repeated.' },
68
68
  { name: 'no-verify', type: 'boolean', description: 'Save credentials without verifying them first.' },
69
69
  ],
@@ -88,7 +88,7 @@ export const commandSchemas = [
88
88
  ],
89
89
  flags: [
90
90
  { name: 'json', type: 'boolean', description: 'Output a single JSON object and never prompt.' },
91
- { name: 'account', type: 'string', description: 'DNS provider account alias. Omit to remove all accounts for the provider.' },
91
+ { name: 'account', type: 'string', description: 'DNS provider profile/account alias. Omit to remove all accounts for the provider.' },
92
92
  ],
93
93
  },
94
94
  {
@@ -102,7 +102,7 @@ export const commandSchemas = [
102
102
  ],
103
103
  flags: [
104
104
  { name: 'json', type: 'boolean', description: 'Output a single JSON object and never prompt.' },
105
- { name: 'account', type: 'string', description: 'DNS provider account alias. Defaults to the provider default account.' },
105
+ { name: 'account', type: 'string', description: 'DNS provider profile/account alias. Defaults to the provider default account.' },
106
106
  ],
107
107
  },
108
108
  {
package/dist/lib/flags.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { Flags } from '@oclif/core';
2
2
  export const jsonFlag = Flags.boolean({ description: 'Output a single JSON object and never prompt.' });
3
3
  export const providerFlag = Flags.string({ description: 'DNS provider id. Inferred from the target domain when omitted.' });
4
- export const accountFlag = Flags.string({ description: 'DNS provider account alias. Defaults to the provider default account.' });
4
+ export const accountFlag = Flags.string({ description: 'DNS provider profile/account alias. Defaults to the provider default account.' });
5
5
  export const domainFlag = Flags.string({ description: 'Target domain or base zone, for example app.example.com or example.com.' });
6
6
  export const subdomainFlag = Flags.string({ description: 'Subdomain to add, for example app for app.example.com.' });
7
7
  export const apexFlag = Flags.boolean({ description: 'Use the root/apex domain instead of a subdomain.' });
@@ -1,4 +1,4 @@
1
- import { type DoomainConfig } from '../../config.js';
1
+ import { type DoomainConfig, type ProviderConfig } from '../../config.js';
2
2
  import type { CredentialDefinition, DnsProviderDefinition, ProviderContext } from './types.js';
3
3
  export declare const DEFAULT_PROVIDER_ACCOUNT = "default";
4
4
  export interface ProviderAccountRef {
@@ -13,6 +13,8 @@ export declare function normalizeProviderAccount(account?: string): string;
13
13
  export declare function isDefaultProviderAccount(account?: string): boolean;
14
14
  export declare function getProviderCredentials(config: DoomainConfig, providerId: string, opts?: ProviderAccountOptions): Record<string, string>;
15
15
  export declare function getProviderCredential(config: DoomainConfig, providerId: string, credential: CredentialDefinition, opts?: ProviderAccountOptions): string | undefined;
16
+ export declare function providerAccountHasCredentials(config: DoomainConfig, providerId: string, accountInput?: string): boolean;
17
+ export declare function withProviderAccountCredentials(current: ProviderConfig | undefined, accountInput: string, credentials: Record<string, string>): ProviderConfig;
16
18
  export declare function isProviderAccountConfigured(definition: DnsProviderDefinition, config: DoomainConfig, opts?: ProviderAccountOptions): boolean;
17
19
  export declare function listConfiguredProviderAccounts(config: DoomainConfig, definition: DnsProviderDefinition): ProviderAccountRef[];
18
20
  export declare function createProviderContext(definition: DnsProviderDefinition, opts?: ProviderAccountOptions): Promise<ProviderContext>;
@@ -30,6 +30,9 @@ function credentialFromSavedConfig(config, providerId, account, key) {
30
30
  return legacyCredential(config, providerId, key);
31
31
  return undefined;
32
32
  }
33
+ function hasCredentials(credentials) {
34
+ return credentials !== undefined && Object.keys(credentials).length > 0;
35
+ }
33
36
  export function getProviderCredentials(config, providerId, opts = {}) {
34
37
  const account = normalizeProviderAccount(opts.account);
35
38
  const current = providerConfig(config, providerId);
@@ -40,6 +43,27 @@ export function getProviderCredential(config, providerId, credential, opts = {})
40
43
  const account = normalizeProviderAccount(opts.account);
41
44
  return process.env[credential.env] || credentialFromSavedConfig(config, providerId, account, credential.key);
42
45
  }
46
+ export function providerAccountHasCredentials(config, providerId, accountInput) {
47
+ const account = normalizeProviderAccount(accountInput);
48
+ const current = providerConfig(config, providerId);
49
+ if (!current)
50
+ return false;
51
+ if (account !== DEFAULT_PROVIDER_ACCOUNT)
52
+ return hasCredentials(current.accounts?.[account]?.credentials);
53
+ return hasCredentials(current.credentials) || Boolean(legacyCredential(config, providerId, 'apiKey') || legacyCredential(config, providerId, 'apiSecret'));
54
+ }
55
+ export function withProviderAccountCredentials(current, accountInput, credentials) {
56
+ const account = normalizeProviderAccount(accountInput);
57
+ if (account === DEFAULT_PROVIDER_ACCOUNT)
58
+ return { ...current, credentials };
59
+ return {
60
+ ...current,
61
+ accounts: {
62
+ ...current?.accounts,
63
+ [account]: { credentials },
64
+ },
65
+ };
66
+ }
43
67
  export function isProviderAccountConfigured(definition, config, opts = {}) {
44
68
  return definition.credentials.every((credential) => credential.required === false || Boolean(getProviderCredential(config, definition.id, credential, opts)));
45
69
  }
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "flags": {
22
22
  "account": {
23
- "description": "DNS provider account alias. Defaults to the provider default account.",
23
+ "description": "DNS provider profile/account alias. Defaults to the provider default account.",
24
24
  "name": "account",
25
25
  "hasDynamicHelp": false,
26
26
  "multiple": false,
@@ -273,7 +273,7 @@
273
273
  "description": "List DNS zones and records for a provider.",
274
274
  "flags": {
275
275
  "account": {
276
- "description": "DNS provider account alias. Defaults to the provider default account.",
276
+ "description": "DNS provider profile/account alias. Defaults to the provider default account.",
277
277
  "name": "account",
278
278
  "hasDynamicHelp": false,
279
279
  "multiple": false,
@@ -363,7 +363,7 @@
363
363
  "description": "Save DNS provider credentials locally.",
364
364
  "flags": {
365
365
  "account": {
366
- "description": "DNS provider account alias. Defaults to the provider default account.",
366
+ "description": "DNS provider profile/account alias. Defaults to the provider default account.",
367
367
  "name": "account",
368
368
  "hasDynamicHelp": false,
369
369
  "multiple": false,
@@ -432,7 +432,7 @@
432
432
  "description": "Save DNS provider credentials locally.",
433
433
  "flags": {
434
434
  "account": {
435
- "description": "DNS provider account alias. Defaults to the provider default account.",
435
+ "description": "DNS provider profile/account alias. Defaults to the provider default account.",
436
436
  "name": "account",
437
437
  "hasDynamicHelp": false,
438
438
  "multiple": false,
@@ -507,7 +507,7 @@
507
507
  ],
508
508
  "flags": {
509
509
  "account": {
510
- "description": "DNS provider account alias. Defaults to the provider default account.",
510
+ "description": "DNS provider profile/account alias. Defaults to the provider default account.",
511
511
  "name": "account",
512
512
  "hasDynamicHelp": false,
513
513
  "multiple": false,
@@ -610,7 +610,7 @@
610
610
  "description": "Verify saved DNS provider credentials.",
611
611
  "flags": {
612
612
  "account": {
613
- "description": "DNS provider account alias. Defaults to the provider default account.",
613
+ "description": "DNS provider profile/account alias. Defaults to the provider default account.",
614
614
  "name": "account",
615
615
  "hasDynamicHelp": false,
616
616
  "multiple": false,
@@ -673,5 +673,5 @@
673
673
  ]
674
674
  }
675
675
  },
676
- "version": "0.1.11"
676
+ "version": "0.1.12"
677
677
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "doomain",
3
3
  "description": "Link your vercel project and domain in seconds",
4
- "version": "0.1.11",
4
+ "version": "0.1.12",
5
5
  "author": "Crafter Station",
6
6
  "packageManager": "bun@1.3.13",
7
7
  "bin": {