@kora-platform/cli 0.8.0-rc2 → 0.8.0-rc6
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/dist/api-client.d.ts +25 -21
- package/dist/api-client.js +19 -27
- package/dist/api-types.d.ts +22 -2
- package/dist/artifact-commands.js +5 -3
- package/dist/auth-commands.js +84 -8
- package/dist/cli-errors.d.ts +7 -1
- package/dist/cli-errors.js +12 -1
- package/dist/command-registry.js +40 -44
- package/dist/commands.js +65 -47
- package/dist/error-code.d.ts +2 -0
- package/dist/error-code.js +9 -0
- package/dist/extension-commands.js +2 -2
- package/dist/files.d.ts +12 -5
- package/dist/files.js +114 -26
- package/dist/format.d.ts +1 -0
- package/dist/format.js +11 -6
- package/dist/runner.js +1 -0
- package/dist/schema-registry-data.d.ts +71 -27
- package/dist/schema-registry-data.js +87 -36
- package/dist/transport.d.ts +20 -0
- package/dist/transport.js +54 -2
- package/package.json +1 -1
- package/dist/dotenv.d.ts +0 -1
- package/dist/dotenv.js +0 -26
package/dist/api-client.d.ts
CHANGED
|
@@ -1,11 +1,22 @@
|
|
|
1
1
|
import type { AbortRuntimeRunResult, AgentUsageReport, ApiKeyRecord, AuditEventListResult, AuditEventRecord, AuditOutcome, AuthoringOrganizationManagementContext, CapabilityEditorRecord, ChatHealth, ChatSessionRecord, ChatSessionSummary, CreateReleaseResult, CompleteRuntimeTaskResult, DeletedOrganizationDetail, DeletedOrganizationSummary, EnvironmentDeploymentRecord, EnvironmentDetailRecord, EnvironmentRecord, BuiltInExtensionRecord, ExtensionInstallDetailRecord, ExtensionInstallRecord, ExtensionInstallUpdatePlan, ExtensionPackageExportEnvelope, ExtensionPackageFileInput, ExtensionPackageRecord, ExtensionPackageRevisionRecord, ExtensionPackageValidationResult, ExtensionPermissions, InviteRecord, MembershipRecord, OperationsEditorRecord, WorkflowNodeTestResult, OrganizationRecord, OrganizationWithRoleRecord, OrgSecretRecord, OrgSettingsRecord, ProcessDefinitionDetail, ProcessDefinitionRecord, ProcessDefinitionSummary, ReleaseSourceSnapshotRecord, ReleaseValidationResult, ReleaseSummaryRecord, RuntimeControlActivityFocusType, RuntimeControlActivityReadResult, RuntimeControlOverviewRecord, RuntimeControlRunDetailRecord, RuntimeControlRunRecord, RuntimeControlRunStateRecord, RuntimeControlRunStepRecord, RuntimeControlStartProcessResult, RuntimeControlTaskRecord, RuntimeVariableRecord, WorkflowDependencySummary, WorkflowInspectionContext } from "./api-types.js";
|
|
2
2
|
import type { CliSessionState } from "./transport.js";
|
|
3
3
|
import { createPlatformTransport } from "./transport.js";
|
|
4
|
+
export type ReleaseSnapshotSelectorInput = {
|
|
5
|
+
environment: string;
|
|
6
|
+
releaseId?: never;
|
|
7
|
+
} | {
|
|
8
|
+
environment?: never;
|
|
9
|
+
releaseId: string;
|
|
10
|
+
};
|
|
4
11
|
export interface PlatformApiClientInput {
|
|
5
12
|
now?: () => number;
|
|
6
13
|
sessionStore: Parameters<typeof createPlatformTransport>[0]["sessionStore"];
|
|
7
14
|
}
|
|
8
15
|
export declare function createPlatformApiClient(input: PlatformApiClientInput): {
|
|
16
|
+
claimDeviceLogin: (claim: {
|
|
17
|
+
baseUrl: string;
|
|
18
|
+
deviceCode: string;
|
|
19
|
+
}) => Promise<import("./transport.js").CliDeviceLoginClaim>;
|
|
9
20
|
getAuthSettings: (baseUrl: string) => Promise<import("./transport.js").CliAuthSettings>;
|
|
10
21
|
login: (credentials: {
|
|
11
22
|
baseUrl: string;
|
|
@@ -19,6 +30,7 @@ export declare function createPlatformApiClient(input: PlatformApiClientInput):
|
|
|
19
30
|
name: string;
|
|
20
31
|
password: string;
|
|
21
32
|
}) => Promise<CliSessionState>;
|
|
33
|
+
startDeviceLogin: (baseUrl: string) => Promise<import("./transport.js").CliDeviceLoginStart>;
|
|
22
34
|
getMe(session: CliSessionState): Promise<{
|
|
23
35
|
user: {
|
|
24
36
|
email: string;
|
|
@@ -84,14 +96,6 @@ export declare function createPlatformApiClient(input: PlatformApiClientInput):
|
|
|
84
96
|
}): Promise<{
|
|
85
97
|
variables: RuntimeVariableRecord[];
|
|
86
98
|
}>;
|
|
87
|
-
importRuntimeVariables(session: CliSessionState, orgId: string, inputData: {
|
|
88
|
-
content: string;
|
|
89
|
-
environment: string;
|
|
90
|
-
fileName?: string | null;
|
|
91
|
-
}): Promise<{
|
|
92
|
-
importedCount: number;
|
|
93
|
-
variables: RuntimeVariableRecord[];
|
|
94
|
-
}>;
|
|
95
99
|
listOrgSecrets(session: CliSessionState, orgId: string, inputData?: {
|
|
96
100
|
environment?: string;
|
|
97
101
|
}): Promise<{
|
|
@@ -224,19 +228,23 @@ export declare function createPlatformApiClient(input: PlatformApiClientInput):
|
|
|
224
228
|
deleteExtensionInstall(session: CliSessionState, orgId: string, installRef: string, inputData: {
|
|
225
229
|
environment: string;
|
|
226
230
|
}): Promise<void>;
|
|
227
|
-
listWorkflows(session: CliSessionState, orgId: string,
|
|
231
|
+
listWorkflows(session: CliSessionState, orgId: string, inputData: {
|
|
232
|
+
environment?: never;
|
|
233
|
+
live: true;
|
|
234
|
+
releaseId?: never;
|
|
235
|
+
} | ReleaseSnapshotSelectorInput): Promise<{
|
|
228
236
|
processes: ProcessDefinitionSummary[];
|
|
229
237
|
}>;
|
|
230
|
-
getWorkflow(session: CliSessionState, orgId: string, name: string,
|
|
238
|
+
getWorkflow(session: CliSessionState, orgId: string, name: string, selector: ReleaseSnapshotSelectorInput): Promise<{
|
|
231
239
|
process: ProcessDefinitionDetail;
|
|
232
240
|
}>;
|
|
233
|
-
getWorkflowVersion(session: CliSessionState, orgId: string, name: string, version: number,
|
|
241
|
+
getWorkflowVersion(session: CliSessionState, orgId: string, name: string, version: number, selector: ReleaseSnapshotSelectorInput): Promise<{
|
|
234
242
|
process: ProcessDefinitionRecord;
|
|
235
243
|
}>;
|
|
236
|
-
getWorkflowDependencies(session: CliSessionState, orgId: string, name: string, version: number,
|
|
244
|
+
getWorkflowDependencies(session: CliSessionState, orgId: string, name: string, version: number, selector: ReleaseSnapshotSelectorInput): Promise<{
|
|
237
245
|
dependencies: WorkflowDependencySummary;
|
|
238
246
|
}>;
|
|
239
|
-
getWorkflowContext(session: CliSessionState, orgId: string,
|
|
247
|
+
getWorkflowContext(session: CliSessionState, orgId: string, selector: ReleaseSnapshotSelectorInput): Promise<{
|
|
240
248
|
context: WorkflowInspectionContext;
|
|
241
249
|
}>;
|
|
242
250
|
startWorkflow(session: CliSessionState, orgId: string, name: string, inputData?: {
|
|
@@ -250,13 +258,13 @@ export declare function createPlatformApiClient(input: PlatformApiClientInput):
|
|
|
250
258
|
}): Promise<{
|
|
251
259
|
started: RuntimeControlStartProcessResult;
|
|
252
260
|
}>;
|
|
253
|
-
getOrganizationManagementContext(session: CliSessionState, orgId: string): Promise<{
|
|
261
|
+
getOrganizationManagementContext(session: CliSessionState, orgId: string, selector: ReleaseSnapshotSelectorInput): Promise<{
|
|
254
262
|
context: AuthoringOrganizationManagementContext;
|
|
255
263
|
}>;
|
|
256
|
-
getCapabilityEditor(session: CliSessionState, orgId: string, name: string): Promise<{
|
|
264
|
+
getCapabilityEditor(session: CliSessionState, orgId: string, name: string, selector: ReleaseSnapshotSelectorInput): Promise<{
|
|
257
265
|
editor: CapabilityEditorRecord;
|
|
258
266
|
}>;
|
|
259
|
-
getOperationsEditor(session: CliSessionState, orgId: string): Promise<{
|
|
267
|
+
getOperationsEditor(session: CliSessionState, orgId: string, selector: ReleaseSnapshotSelectorInput): Promise<{
|
|
260
268
|
editor: OperationsEditorRecord;
|
|
261
269
|
}>;
|
|
262
270
|
getOverview(session: CliSessionState, orgId: string): Promise<{
|
|
@@ -349,9 +357,7 @@ export declare function createPlatformApiClient(input: PlatformApiClientInput):
|
|
|
349
357
|
listEnvironments(session: CliSessionState, orgId: string): Promise<{
|
|
350
358
|
environments: EnvironmentDetailRecord[];
|
|
351
359
|
}>;
|
|
352
|
-
getEnvironment(session: CliSessionState, orgId: string, environment: string): Promise<
|
|
353
|
-
environment: EnvironmentDetailRecord;
|
|
354
|
-
}>;
|
|
360
|
+
getEnvironment(session: CliSessionState, orgId: string, environment: string): Promise<EnvironmentDetailRecord>;
|
|
355
361
|
createEnvironment(session: CliSessionState, orgId: string, inputData: {
|
|
356
362
|
copyFromEnvironmentId?: string;
|
|
357
363
|
key: string;
|
|
@@ -394,12 +400,10 @@ export declare function createPlatformApiClient(input: PlatformApiClientInput):
|
|
|
394
400
|
content: string;
|
|
395
401
|
path: string;
|
|
396
402
|
}>;
|
|
397
|
-
label?: string;
|
|
398
403
|
}): Promise<{
|
|
399
404
|
created: CreateReleaseResult;
|
|
400
405
|
}>;
|
|
401
406
|
createReleaseArchive(session: CliSessionState, orgId: string, archive: Uint8Array, inputData?: {
|
|
402
|
-
label?: string;
|
|
403
407
|
subdir?: string;
|
|
404
408
|
}): Promise<{
|
|
405
409
|
created: CreateReleaseResult;
|
package/dist/api-client.js
CHANGED
|
@@ -5,10 +5,12 @@ export function createPlatformApiClient(input) {
|
|
|
5
5
|
const artifactApi = createArtifactApiClient(transport);
|
|
6
6
|
return {
|
|
7
7
|
...artifactApi,
|
|
8
|
+
claimDeviceLogin: transport.claimDeviceLogin,
|
|
8
9
|
getAuthSettings: transport.getAuthSettings,
|
|
9
10
|
login: transport.login,
|
|
10
11
|
refreshSession: transport.refreshSession,
|
|
11
12
|
signup: transport.signup,
|
|
13
|
+
startDeviceLogin: transport.startDeviceLogin,
|
|
12
14
|
async getMe(session) {
|
|
13
15
|
return transport.requestJson({
|
|
14
16
|
path: "/api/v1/auth/me",
|
|
@@ -96,15 +98,6 @@ export function createPlatformApiClient(input) {
|
|
|
96
98
|
session
|
|
97
99
|
});
|
|
98
100
|
},
|
|
99
|
-
async importRuntimeVariables(session, orgId, inputData) {
|
|
100
|
-
const { environment, ...body } = inputData;
|
|
101
|
-
return transport.requestJson({
|
|
102
|
-
body,
|
|
103
|
-
method: "POST",
|
|
104
|
-
path: withQuery(`/api/v1/orgs/${encodeURIComponent(orgId)}/runtime-variables/import`, { environment }),
|
|
105
|
-
session
|
|
106
|
-
});
|
|
107
|
-
},
|
|
108
101
|
async listOrgSecrets(session, orgId, inputData = {}) {
|
|
109
102
|
return transport.requestJson({
|
|
110
103
|
path: withQuery(`/api/v1/orgs/${encodeURIComponent(orgId)}/secrets`, inputData),
|
|
@@ -264,37 +257,36 @@ export function createPlatformApiClient(input) {
|
|
|
264
257
|
session
|
|
265
258
|
});
|
|
266
259
|
},
|
|
267
|
-
async listWorkflows(session, orgId,
|
|
260
|
+
async listWorkflows(session, orgId, inputData) {
|
|
268
261
|
return transport.requestJson({
|
|
269
262
|
path: withQuery(`/api/v1/orgs/${encodeURIComponent(orgId)}/processes`, {
|
|
270
|
-
|
|
263
|
+
environment: inputData.environment,
|
|
264
|
+
releaseId: inputData.releaseId
|
|
271
265
|
}),
|
|
272
266
|
session
|
|
273
267
|
});
|
|
274
268
|
},
|
|
275
|
-
async getWorkflow(session, orgId, name,
|
|
269
|
+
async getWorkflow(session, orgId, name, selector) {
|
|
276
270
|
return transport.requestJson({
|
|
277
|
-
path: withQuery(`/api/v1/orgs/${encodeURIComponent(orgId)}/processes/${encodeURIComponent(name)}`,
|
|
271
|
+
path: withQuery(`/api/v1/orgs/${encodeURIComponent(orgId)}/processes/${encodeURIComponent(name)}`, selector),
|
|
278
272
|
session
|
|
279
273
|
});
|
|
280
274
|
},
|
|
281
|
-
async getWorkflowVersion(session, orgId, name, version,
|
|
275
|
+
async getWorkflowVersion(session, orgId, name, version, selector) {
|
|
282
276
|
return transport.requestJson({
|
|
283
|
-
path: withQuery(`/api/v1/orgs/${encodeURIComponent(orgId)}/processes/${encodeURIComponent(name)}/versions/${String(version)}`,
|
|
277
|
+
path: withQuery(`/api/v1/orgs/${encodeURIComponent(orgId)}/processes/${encodeURIComponent(name)}/versions/${String(version)}`, selector),
|
|
284
278
|
session
|
|
285
279
|
});
|
|
286
280
|
},
|
|
287
|
-
async getWorkflowDependencies(session, orgId, name, version,
|
|
281
|
+
async getWorkflowDependencies(session, orgId, name, version, selector) {
|
|
288
282
|
return transport.requestJson({
|
|
289
|
-
path: withQuery(`/api/v1/orgs/${encodeURIComponent(orgId)}/processes/${encodeURIComponent(name)}/versions/${String(version)}/dependencies`,
|
|
283
|
+
path: withQuery(`/api/v1/orgs/${encodeURIComponent(orgId)}/processes/${encodeURIComponent(name)}/versions/${String(version)}/dependencies`, selector),
|
|
290
284
|
session
|
|
291
285
|
});
|
|
292
286
|
},
|
|
293
|
-
async getWorkflowContext(session, orgId,
|
|
287
|
+
async getWorkflowContext(session, orgId, selector) {
|
|
294
288
|
return transport.requestJson({
|
|
295
|
-
path: withQuery(`/api/v1/orgs/${encodeURIComponent(orgId)}/workflows/context`,
|
|
296
|
-
releaseId
|
|
297
|
-
}),
|
|
289
|
+
path: withQuery(`/api/v1/orgs/${encodeURIComponent(orgId)}/workflows/context`, selector),
|
|
298
290
|
session
|
|
299
291
|
});
|
|
300
292
|
},
|
|
@@ -306,21 +298,21 @@ export function createPlatformApiClient(input) {
|
|
|
306
298
|
session
|
|
307
299
|
});
|
|
308
300
|
},
|
|
309
|
-
async getOrganizationManagementContext(session, orgId) {
|
|
301
|
+
async getOrganizationManagementContext(session, orgId, selector) {
|
|
310
302
|
return transport.requestJson({
|
|
311
|
-
path: `/api/v1/orgs/${encodeURIComponent(orgId)}/organization/management`,
|
|
303
|
+
path: withQuery(`/api/v1/orgs/${encodeURIComponent(orgId)}/organization/management`, selector),
|
|
312
304
|
session
|
|
313
305
|
});
|
|
314
306
|
},
|
|
315
|
-
async getCapabilityEditor(session, orgId, name) {
|
|
307
|
+
async getCapabilityEditor(session, orgId, name, selector) {
|
|
316
308
|
return transport.requestJson({
|
|
317
|
-
path: `/api/v1/orgs/${encodeURIComponent(orgId)}/capabilities/editor/${encodeURIComponent(name)}`,
|
|
309
|
+
path: withQuery(`/api/v1/orgs/${encodeURIComponent(orgId)}/capabilities/editor/${encodeURIComponent(name)}`, selector),
|
|
318
310
|
session
|
|
319
311
|
});
|
|
320
312
|
},
|
|
321
|
-
async getOperationsEditor(session, orgId) {
|
|
313
|
+
async getOperationsEditor(session, orgId, selector) {
|
|
322
314
|
return transport.requestJson({
|
|
323
|
-
path: `/api/v1/orgs/${encodeURIComponent(orgId)}/operations/editor`,
|
|
315
|
+
path: withQuery(`/api/v1/orgs/${encodeURIComponent(orgId)}/operations/editor`, selector),
|
|
324
316
|
session
|
|
325
317
|
});
|
|
326
318
|
},
|
package/dist/api-types.d.ts
CHANGED
|
@@ -290,6 +290,13 @@ export interface AgentUsageReport extends CliRecord {
|
|
|
290
290
|
}
|
|
291
291
|
export interface RuntimeControlDeploymentRecord extends CliRecord {
|
|
292
292
|
}
|
|
293
|
+
export interface WorkflowFailureSummary extends CliRecord {
|
|
294
|
+
causeChain: string[];
|
|
295
|
+
rootCause: string;
|
|
296
|
+
rootCauseCode?: string;
|
|
297
|
+
summary: string;
|
|
298
|
+
summaryCode?: string;
|
|
299
|
+
}
|
|
293
300
|
export interface EnvironmentRecord extends CliRecord {
|
|
294
301
|
currentDeploymentId?: string | null;
|
|
295
302
|
id: string;
|
|
@@ -319,9 +326,22 @@ export interface EnvironmentDetailRecord extends CliRecord {
|
|
|
319
326
|
}
|
|
320
327
|
export interface RuntimeControlOverviewRecord extends CliRecord {
|
|
321
328
|
}
|
|
322
|
-
export interface RuntimeControlRunDetailRecord extends CliRecord {
|
|
323
|
-
}
|
|
324
329
|
export interface RuntimeControlRunRecord extends CliRecord {
|
|
330
|
+
closeTime?: string | null;
|
|
331
|
+
deploymentId?: string | null;
|
|
332
|
+
environmentKey?: string | null;
|
|
333
|
+
failure?: WorkflowFailureSummary;
|
|
334
|
+
releaseId?: string | null;
|
|
335
|
+
startTime?: string;
|
|
336
|
+
status: string;
|
|
337
|
+
workflowId: string;
|
|
338
|
+
}
|
|
339
|
+
export interface RuntimeControlRunDetailRecord extends RuntimeControlRunRecord {
|
|
340
|
+
failureLookupError?: string;
|
|
341
|
+
historyLength?: number;
|
|
342
|
+
historySizeBytes?: number;
|
|
343
|
+
state?: CliRecord;
|
|
344
|
+
stateQueryError?: string;
|
|
325
345
|
}
|
|
326
346
|
export interface RuntimeControlRunStateRecord extends CliRecord {
|
|
327
347
|
}
|
|
@@ -1,15 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { writeFile } from "node:fs/promises";
|
|
2
2
|
import { basename, resolve } from "node:path";
|
|
3
3
|
import { TextDecoder } from "node:util";
|
|
4
4
|
import { genericProblem, usageProblem } from "./cli-errors.js";
|
|
5
5
|
import { readOptionalNumberFlag, readOptionalStringFlag, readRequiredStringFlag } from "./command-flags.js";
|
|
6
6
|
import { renderKeyValue, renderSuccess, renderTable } from "./format.js";
|
|
7
|
+
import { readLocalFileBytes } from "./files.js";
|
|
7
8
|
import { confirmDestructive } from "./interaction.js";
|
|
8
9
|
export async function executeArtifactUpload(parsed, context, api, resolveOrgScope) {
|
|
9
10
|
const { org, session } = await resolveOrgScope(parsed, context, api);
|
|
10
11
|
const pathValue = readRequiredArg(parsed, "path");
|
|
11
|
-
const filePath =
|
|
12
|
-
|
|
12
|
+
const { absolutePath: filePath, bytes: fileBytes } = await readLocalFileBytes(pathValue, parsed.definition.id, {
|
|
13
|
+
regularFileMessage: "Artifact upload path must be a regular file, not a directory or symbolic link."
|
|
14
|
+
});
|
|
13
15
|
const data = await api.uploadArtifact(session, org.id, {
|
|
14
16
|
body: new Uint8Array(fileBytes),
|
|
15
17
|
...(readOptionalStringFlag(parsed, "sha256") ? { expectedSha256: readOptionalStringFlag(parsed, "sha256") } : {}),
|
package/dist/auth-commands.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { authProblem, toProblem } from "./cli-errors.js";
|
|
1
|
+
import { authProblem, toProblem, usageProblem } from "./cli-errors.js";
|
|
2
2
|
import { readOptionalStringFlag } from "./command-flags.js";
|
|
3
3
|
import { writeCliConfig, readCliConfig, findRepoConfigPath } from "./config.js";
|
|
4
4
|
import { renderKeyValue, renderSuccess } from "./format.js";
|
|
5
5
|
import { chooseOrganization, ensureInteractive } from "./interaction.js";
|
|
6
|
-
import { promptPassword, promptText } from "./prompts.js";
|
|
6
|
+
import { isInteractive, promptPassword, promptText } from "./prompts.js";
|
|
7
7
|
export async function executeAuthLogin(parsed, context, api) {
|
|
8
8
|
const prompts = parsed.json
|
|
9
9
|
? {
|
|
@@ -11,6 +11,9 @@ export async function executeAuthLogin(parsed, context, api) {
|
|
|
11
11
|
stdout: context.stderr
|
|
12
12
|
}
|
|
13
13
|
: context;
|
|
14
|
+
if (parsed.flags.device === true || !isInteractive(prompts)) {
|
|
15
|
+
return executeDeviceLogin(parsed, context, api, prompts);
|
|
16
|
+
}
|
|
14
17
|
ensureInteractive(prompts, "auth login");
|
|
15
18
|
const resolvedBaseUrl = await resolveAuthBaseUrl(parsed, context, prompts);
|
|
16
19
|
const { baseUrl } = resolvedBaseUrl;
|
|
@@ -25,8 +28,8 @@ export async function executeAuthLogin(parsed, context, api) {
|
|
|
25
28
|
},
|
|
26
29
|
human: [
|
|
27
30
|
"SSO is required for this deployment.",
|
|
28
|
-
`
|
|
29
|
-
|
|
31
|
+
"Run `kora auth login --device` to approve this login in the browser instead.",
|
|
32
|
+
`SSO sign-in URL: ${oidcLoginUrl}`
|
|
30
33
|
].join("\n"),
|
|
31
34
|
kind: "access_auth_login_sso_required",
|
|
32
35
|
meta: {
|
|
@@ -90,8 +93,8 @@ export async function executeAuthSignup(parsed, context, api) {
|
|
|
90
93
|
},
|
|
91
94
|
human: [
|
|
92
95
|
"Local account signup is disabled for this deployment.",
|
|
93
|
-
`
|
|
94
|
-
"
|
|
96
|
+
`Account creation is managed by SSO. Sign in once in a browser: ${oidcLoginUrl}`,
|
|
97
|
+
"Then run `kora auth login --device` to approve a CLI login in the browser."
|
|
95
98
|
].join("\n"),
|
|
96
99
|
kind: "access_auth_signup_sso_required",
|
|
97
100
|
meta: {
|
|
@@ -136,13 +139,86 @@ export async function executeAuthSignup(parsed, context, api) {
|
|
|
136
139
|
}
|
|
137
140
|
};
|
|
138
141
|
}
|
|
139
|
-
async function
|
|
142
|
+
async function executeDeviceLogin(parsed, context, api, prompts) {
|
|
143
|
+
const resolvedBaseUrl = await resolveAuthBaseUrl(parsed, context, prompts, {
|
|
144
|
+
allowPrompt: isInteractive(prompts)
|
|
145
|
+
});
|
|
146
|
+
const { baseUrl } = resolvedBaseUrl;
|
|
147
|
+
const started = await api.startDeviceLogin(baseUrl);
|
|
148
|
+
const verificationUrl = buildDeviceVerificationUrl(baseUrl, started.verificationPath, started.userCode);
|
|
149
|
+
prompts.stdout.write(`Open this URL in a browser to approve the login:\n\n ${verificationUrl}\n\n`);
|
|
150
|
+
prompts.stdout.write(`Confirmation code: ${started.userCode}\n`);
|
|
151
|
+
prompts.stdout.write("Waiting for browser approval...\n");
|
|
152
|
+
const expiresAtMs = Date.parse(started.expiresAt);
|
|
153
|
+
const pollIntervalMs = Math.max(0, started.pollIntervalSeconds * 1000);
|
|
154
|
+
let session = null;
|
|
155
|
+
while (Date.now() < expiresAtMs) {
|
|
156
|
+
const claim = await api.claimDeviceLogin({ baseUrl, deviceCode: started.deviceCode });
|
|
157
|
+
if (claim.status === "approved") {
|
|
158
|
+
session = claim.session;
|
|
159
|
+
break;
|
|
160
|
+
}
|
|
161
|
+
if (claim.status === "denied") {
|
|
162
|
+
throw authProblem("Device login was denied in the browser.", "auth login");
|
|
163
|
+
}
|
|
164
|
+
if (claim.status === "expired") {
|
|
165
|
+
break;
|
|
166
|
+
}
|
|
167
|
+
await sleep(pollIntervalMs);
|
|
168
|
+
}
|
|
169
|
+
if (!session) {
|
|
170
|
+
throw authProblem("Device login expired before it was approved. Run `kora auth login` again.", "auth login");
|
|
171
|
+
}
|
|
172
|
+
const nextSession = await writeSessionWithSelectedOrg({
|
|
173
|
+
allowInteractiveOrgChoice: isInteractive(prompts),
|
|
174
|
+
api,
|
|
175
|
+
context,
|
|
176
|
+
parsed,
|
|
177
|
+
prompts,
|
|
178
|
+
session
|
|
179
|
+
});
|
|
180
|
+
if (resolvedBaseUrl.shouldPersistGlobalBaseUrl) {
|
|
181
|
+
await writeCliConfig(context.configPath, {
|
|
182
|
+
...resolvedBaseUrl.persistedGlobalConfig,
|
|
183
|
+
baseUrl
|
|
184
|
+
});
|
|
185
|
+
}
|
|
186
|
+
return {
|
|
187
|
+
data: {
|
|
188
|
+
activeOrg: nextSession.activeOrg,
|
|
189
|
+
method: "device",
|
|
190
|
+
user: nextSession.user
|
|
191
|
+
},
|
|
192
|
+
human: renderSuccess(nextSession.activeOrg
|
|
193
|
+
? `Logged in as ${nextSession.user.email}. Active org: ${nextSession.activeOrg.slug}.`
|
|
194
|
+
: `Logged in as ${nextSession.user.email}. No active organization selected; use \`kora org select <org>\` or \`kora org create\`.`),
|
|
195
|
+
kind: "access_auth_login",
|
|
196
|
+
meta: {
|
|
197
|
+
command: "auth login",
|
|
198
|
+
orgId: nextSession.activeOrg?.id ?? null
|
|
199
|
+
}
|
|
200
|
+
};
|
|
201
|
+
}
|
|
202
|
+
function buildDeviceVerificationUrl(baseUrl, verificationPath, userCode) {
|
|
203
|
+
const normalizedBaseUrl = baseUrl.replace(/\/+$/u, "");
|
|
204
|
+
const normalizedPath = verificationPath.startsWith("/") ? verificationPath : `/${verificationPath}`;
|
|
205
|
+
return `${normalizedBaseUrl}${normalizedPath}?code=${encodeURIComponent(userCode)}`;
|
|
206
|
+
}
|
|
207
|
+
function sleep(ms) {
|
|
208
|
+
return new Promise((resolve) => {
|
|
209
|
+
setTimeout(resolve, ms);
|
|
210
|
+
});
|
|
211
|
+
}
|
|
212
|
+
async function resolveAuthBaseUrl(parsed, context, prompts, options = { allowPrompt: true }) {
|
|
140
213
|
const persistedGlobalConfig = await readCliConfig(context.configPath);
|
|
141
214
|
const repoConfigPath = await findRepoConfigPath(context.cwd);
|
|
142
215
|
const repoConfig = repoConfigPath ? await readCliConfig(repoConfigPath) : {};
|
|
143
216
|
const flagBaseUrl = readOptionalStringFlag(parsed, "base-url");
|
|
144
217
|
const envBaseUrl = context.env.KORA_BASE_URL;
|
|
145
218
|
const configuredBaseUrl = flagBaseUrl ?? envBaseUrl ?? repoConfig.baseUrl ?? persistedGlobalConfig.baseUrl;
|
|
219
|
+
if (!configuredBaseUrl && !options.allowPrompt) {
|
|
220
|
+
throw usageProblem("Pass --base-url <url> or set KORA_BASE_URL to log in from a non-interactive shell.", "auth login");
|
|
221
|
+
}
|
|
146
222
|
const baseUrl = configuredBaseUrl ?? await promptText("Platform base URL: ", prompts);
|
|
147
223
|
return {
|
|
148
224
|
baseUrl,
|
|
@@ -154,7 +230,7 @@ async function writeSessionWithSelectedOrg(input) {
|
|
|
154
230
|
const organizations = (await input.api.listOrganizations(input.session)).organizations;
|
|
155
231
|
const activeOrg = organizations.length === 1
|
|
156
232
|
? organizations[0] ?? null
|
|
157
|
-
: organizations.length > 1
|
|
233
|
+
: organizations.length > 1 && (input.allowInteractiveOrgChoice ?? true)
|
|
158
234
|
? await chooseOrganization(organizations, input.prompts, input.parsed)
|
|
159
235
|
: null;
|
|
160
236
|
const latestSession = await readLatestSessionForWrite(input.context.sessionStore, input.session);
|
package/dist/cli-errors.d.ts
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
import { ApiError } from "./transport.js";
|
|
2
|
+
type CliProblemDetails = Record<string, unknown>;
|
|
2
3
|
export declare class CliProblem extends Error {
|
|
4
|
+
readonly code: string;
|
|
3
5
|
readonly detail: string;
|
|
6
|
+
readonly details?: CliProblemDetails;
|
|
4
7
|
readonly exitCode: number;
|
|
5
8
|
readonly instance: string;
|
|
6
9
|
readonly status: number;
|
|
7
10
|
readonly title: string;
|
|
8
11
|
readonly type: string;
|
|
9
12
|
constructor(input: {
|
|
13
|
+
code: string;
|
|
10
14
|
detail: string;
|
|
15
|
+
details?: CliProblemDetails;
|
|
11
16
|
exitCode: number;
|
|
12
17
|
instance: string;
|
|
13
18
|
status: number;
|
|
@@ -15,9 +20,10 @@ export declare class CliProblem extends Error {
|
|
|
15
20
|
type: string;
|
|
16
21
|
});
|
|
17
22
|
}
|
|
18
|
-
export declare function usageProblem(detail: string, instance: string): CliProblem;
|
|
23
|
+
export declare function usageProblem(detail: string, instance: string, details?: CliProblemDetails): CliProblem;
|
|
19
24
|
export declare function authProblem(detail: string, instance: string): CliProblem;
|
|
20
25
|
export declare function notFoundProblem(detail: string, instance: string): CliProblem;
|
|
21
26
|
export declare function genericProblem(detail: string, instance: string): CliProblem;
|
|
22
27
|
export declare function toProblem(error: unknown, instance: string): CliProblem | ApiError;
|
|
23
28
|
export declare function exitCodeFromError(error: CliProblem | ApiError): number;
|
|
29
|
+
export {};
|
package/dist/cli-errors.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { ApiError } from "./transport.js";
|
|
2
2
|
export class CliProblem extends Error {
|
|
3
|
+
code;
|
|
3
4
|
detail;
|
|
5
|
+
details;
|
|
4
6
|
exitCode;
|
|
5
7
|
instance;
|
|
6
8
|
status;
|
|
@@ -9,7 +11,11 @@ export class CliProblem extends Error {
|
|
|
9
11
|
constructor(input) {
|
|
10
12
|
super(input.detail);
|
|
11
13
|
this.name = "CliProblem";
|
|
14
|
+
this.code = input.code;
|
|
12
15
|
this.detail = input.detail;
|
|
16
|
+
if (input.details) {
|
|
17
|
+
this.details = input.details;
|
|
18
|
+
}
|
|
13
19
|
this.exitCode = input.exitCode;
|
|
14
20
|
this.instance = input.instance;
|
|
15
21
|
this.status = input.status;
|
|
@@ -17,9 +23,11 @@ export class CliProblem extends Error {
|
|
|
17
23
|
this.type = input.type;
|
|
18
24
|
}
|
|
19
25
|
}
|
|
20
|
-
export function usageProblem(detail, instance) {
|
|
26
|
+
export function usageProblem(detail, instance, details) {
|
|
21
27
|
return new CliProblem({
|
|
28
|
+
code: "cli/usage",
|
|
22
29
|
detail,
|
|
30
|
+
...(details ? { details } : {}),
|
|
23
31
|
exitCode: 2,
|
|
24
32
|
instance,
|
|
25
33
|
status: 400,
|
|
@@ -29,6 +37,7 @@ export function usageProblem(detail, instance) {
|
|
|
29
37
|
}
|
|
30
38
|
export function authProblem(detail, instance) {
|
|
31
39
|
return new CliProblem({
|
|
40
|
+
code: "cli/auth",
|
|
32
41
|
detail,
|
|
33
42
|
exitCode: 3,
|
|
34
43
|
instance,
|
|
@@ -39,6 +48,7 @@ export function authProblem(detail, instance) {
|
|
|
39
48
|
}
|
|
40
49
|
export function notFoundProblem(detail, instance) {
|
|
41
50
|
return new CliProblem({
|
|
51
|
+
code: "cli/not_found",
|
|
42
52
|
detail,
|
|
43
53
|
exitCode: 4,
|
|
44
54
|
instance,
|
|
@@ -49,6 +59,7 @@ export function notFoundProblem(detail, instance) {
|
|
|
49
59
|
}
|
|
50
60
|
export function genericProblem(detail, instance) {
|
|
51
61
|
return new CliProblem({
|
|
62
|
+
code: "cli/error",
|
|
52
63
|
detail,
|
|
53
64
|
exitCode: 1,
|
|
54
65
|
instance,
|