@shipfox/api-workflows 9.2.0 → 9.3.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/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +21 -0
- package/dist/core/errors.d.ts +12 -0
- package/dist/core/errors.d.ts.map +1 -1
- package/dist/core/errors.js +18 -0
- package/dist/core/errors.js.map +1 -1
- package/dist/core/workspace-admission.d.ts +3 -0
- package/dist/core/workspace-admission.d.ts.map +1 -0
- package/dist/core/workspace-admission.js +32 -0
- package/dist/core/workspace-admission.js.map +1 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/presentation/inter-module.d.ts +2 -0
- package/dist/presentation/inter-module.d.ts.map +1 -1
- package/dist/presentation/inter-module.js +40 -5
- package/dist/presentation/inter-module.js.map +1 -1
- package/dist/presentation/routes/index.d.ts +4 -1
- package/dist/presentation/routes/index.d.ts.map +1 -1
- package/dist/presentation/routes/index.js +1 -1
- package/dist/presentation/routes/index.js.map +1 -1
- package/dist/presentation/routes/rerun-run.d.ts +2 -1
- package/dist/presentation/routes/rerun-run.d.ts.map +1 -1
- package/dist/presentation/routes/rerun-run.js +22 -2
- package/dist/presentation/routes/rerun-run.js.map +1 -1
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +9 -8
- package/src/core/errors.ts +21 -0
- package/src/core/workspace-admission.test.ts +64 -0
- package/src/core/workspace-admission.ts +43 -0
- package/src/index.ts +5 -0
- package/src/presentation/inter-module.test.ts +198 -1
- package/src/presentation/inter-module.ts +55 -3
- package/src/presentation/routes/index.test.ts +1 -0
- package/src/presentation/routes/index.ts +6 -2
- package/src/presentation/routes/rerun-run.test.ts +58 -1
- package/src/presentation/routes/rerun-run.ts +34 -2
- package/tsconfig.build.tsbuildinfo +1 -1
|
@@ -2,11 +2,12 @@ import { requireUserContext } from '@shipfox/api-auth-context';
|
|
|
2
2
|
import { rerunWorkflowRunBodySchema, workflowRunResponseSchema } from '@shipfox/api-workflows-dto';
|
|
3
3
|
import { ClientError, defineRoute } from '@shipfox/node-fastify';
|
|
4
4
|
import { z } from 'zod';
|
|
5
|
-
import { NoFailedJobsError, RunNotTerminalError, SourceRunNotFoundError } from '#core/errors.js';
|
|
5
|
+
import { NoFailedJobsError, RunNotTerminalError, SourceRunNotFoundError, WorkspaceDeletedError, WorkspaceNotFoundError, WorkspaceSuspendedError } from '#core/errors.js';
|
|
6
|
+
import { assertWorkspaceAdmitsNewJobs } from '#core/workspace-admission.js';
|
|
6
7
|
import { createRerunWorkflowRun } from '#db/index.js';
|
|
7
8
|
import { toRunDto } from '#presentation/dto/index.js';
|
|
8
9
|
import { requireAccessibleRun } from './require-accessible-run.js';
|
|
9
|
-
export function rerunRunRoute(projects) {
|
|
10
|
+
export function rerunRunRoute(projects, workspaces) {
|
|
10
11
|
return defineRoute({
|
|
11
12
|
method: 'POST',
|
|
12
13
|
path: '/:id/rerun',
|
|
@@ -36,6 +37,24 @@ export function rerunRunRoute(projects) {
|
|
|
36
37
|
status: 409
|
|
37
38
|
});
|
|
38
39
|
}
|
|
40
|
+
if (error instanceof WorkspaceSuspendedError) {
|
|
41
|
+
throw new ClientError('Workspace is suspended', 'workspace-suspended', {
|
|
42
|
+
status: 409,
|
|
43
|
+
cause: error
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
if (error instanceof WorkspaceDeletedError) {
|
|
47
|
+
throw new ClientError('Workspace is deleted', 'workspace-deleted', {
|
|
48
|
+
status: 404,
|
|
49
|
+
cause: error
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
if (error instanceof WorkspaceNotFoundError) {
|
|
53
|
+
throw new ClientError('Workspace not found', 'workspace-not-found', {
|
|
54
|
+
status: 404,
|
|
55
|
+
cause: error
|
|
56
|
+
});
|
|
57
|
+
}
|
|
39
58
|
throw error;
|
|
40
59
|
},
|
|
41
60
|
handler: async (request)=>{
|
|
@@ -45,6 +64,7 @@ export function rerunRunRoute(projects) {
|
|
|
45
64
|
id,
|
|
46
65
|
projects
|
|
47
66
|
});
|
|
67
|
+
await assertWorkspaceAdmitsNewJobs(workspaces, sourceRun.workspaceId);
|
|
48
68
|
const actor = requireUserContext(request);
|
|
49
69
|
const run = await createRerunWorkflowRun({
|
|
50
70
|
workflowRunId: sourceRun.id,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/presentation/routes/rerun-run.ts"],"sourcesContent":["import {requireUserContext} from '@shipfox/api-auth-context';\nimport type {ProjectsModuleClient} from '@shipfox/api-projects-dto/inter-module';\nimport {rerunWorkflowRunBodySchema, workflowRunResponseSchema} from '@shipfox/api-workflows-dto';\nimport {ClientError, defineRoute} from '@shipfox/node-fastify';\nimport {z} from 'zod';\nimport {NoFailedJobsError
|
|
1
|
+
{"version":3,"sources":["../../../src/presentation/routes/rerun-run.ts"],"sourcesContent":["import {requireUserContext} from '@shipfox/api-auth-context';\nimport type {ProjectsModuleClient} from '@shipfox/api-projects-dto/inter-module';\nimport {rerunWorkflowRunBodySchema, workflowRunResponseSchema} from '@shipfox/api-workflows-dto';\nimport type {WorkspacesInterModuleClient} from '@shipfox/api-workspaces-dto/inter-module';\nimport {ClientError, defineRoute} from '@shipfox/node-fastify';\nimport {z} from 'zod';\nimport {\n NoFailedJobsError,\n RunNotTerminalError,\n SourceRunNotFoundError,\n WorkspaceDeletedError,\n WorkspaceNotFoundError,\n WorkspaceSuspendedError,\n} from '#core/errors.js';\nimport {assertWorkspaceAdmitsNewJobs} from '#core/workspace-admission.js';\nimport {createRerunWorkflowRun} from '#db/index.js';\nimport {toRunDto} from '#presentation/dto/index.js';\nimport {requireAccessibleRun} from './require-accessible-run.js';\n\nexport function rerunRunRoute(\n projects: ProjectsModuleClient,\n workspaces: WorkspacesInterModuleClient,\n) {\n return defineRoute({\n method: 'POST',\n path: '/:id/rerun',\n description: 'Re-run a terminal workflow run',\n schema: {\n params: z.object({\n id: z.string().uuid(),\n }),\n body: rerunWorkflowRunBodySchema,\n response: {\n 200: workflowRunResponseSchema,\n },\n },\n errorHandler: (error) => {\n if (error instanceof SourceRunNotFoundError) {\n throw new ClientError('Run not found', 'not-found', {status: 404});\n }\n if (error instanceof RunNotTerminalError) {\n throw new ClientError('Run is not terminal', 'run-not-terminal', {status: 409});\n }\n if (error instanceof NoFailedJobsError) {\n throw new ClientError('Run has no failed jobs', 'no-failed-jobs', {status: 409});\n }\n if (error instanceof WorkspaceSuspendedError) {\n throw new ClientError('Workspace is suspended', 'workspace-suspended', {\n status: 409,\n cause: error,\n });\n }\n if (error instanceof WorkspaceDeletedError) {\n throw new ClientError('Workspace is deleted', 'workspace-deleted', {\n status: 404,\n cause: error,\n });\n }\n if (error instanceof WorkspaceNotFoundError) {\n throw new ClientError('Workspace not found', 'workspace-not-found', {\n status: 404,\n cause: error,\n });\n }\n throw error;\n },\n handler: async (request) => {\n const {id} = request.params;\n const sourceRun = await requireAccessibleRun({request, id, projects});\n\n await assertWorkspaceAdmitsNewJobs(workspaces, sourceRun.workspaceId);\n\n const actor = requireUserContext(request);\n const run = await createRerunWorkflowRun({\n workflowRunId: sourceRun.id,\n mode: request.body.mode,\n actorUserId: actor.userId,\n });\n\n return toRunDto(run, run.currentAttempt);\n },\n });\n}\n"],"names":["requireUserContext","rerunWorkflowRunBodySchema","workflowRunResponseSchema","ClientError","defineRoute","z","NoFailedJobsError","RunNotTerminalError","SourceRunNotFoundError","WorkspaceDeletedError","WorkspaceNotFoundError","WorkspaceSuspendedError","assertWorkspaceAdmitsNewJobs","createRerunWorkflowRun","toRunDto","requireAccessibleRun","rerunRunRoute","projects","workspaces","method","path","description","schema","params","object","id","string","uuid","body","response","errorHandler","error","status","cause","handler","request","sourceRun","workspaceId","actor","run","workflowRunId","mode","actorUserId","userId","currentAttempt"],"mappings":"AAAA,SAAQA,kBAAkB,QAAO,4BAA4B;AAE7D,SAAQC,0BAA0B,EAAEC,yBAAyB,QAAO,6BAA6B;AAEjG,SAAQC,WAAW,EAAEC,WAAW,QAAO,wBAAwB;AAC/D,SAAQC,CAAC,QAAO,MAAM;AACtB,SACEC,iBAAiB,EACjBC,mBAAmB,EACnBC,sBAAsB,EACtBC,qBAAqB,EACrBC,sBAAsB,EACtBC,uBAAuB,QAClB,kBAAkB;AACzB,SAAQC,4BAA4B,QAAO,+BAA+B;AAC1E,SAAQC,sBAAsB,QAAO,eAAe;AACpD,SAAQC,QAAQ,QAAO,6BAA6B;AACpD,SAAQC,oBAAoB,QAAO,8BAA8B;AAEjE,OAAO,SAASC,cACdC,QAA8B,EAC9BC,UAAuC;IAEvC,OAAOd,YAAY;QACjBe,QAAQ;QACRC,MAAM;QACNC,aAAa;QACbC,QAAQ;YACNC,QAAQlB,EAAEmB,MAAM,CAAC;gBACfC,IAAIpB,EAAEqB,MAAM,GAAGC,IAAI;YACrB;YACAC,MAAM3B;YACN4B,UAAU;gBACR,KAAK3B;YACP;QACF;QACA4B,cAAc,CAACC;YACb,IAAIA,iBAAiBvB,wBAAwB;gBAC3C,MAAM,IAAIL,YAAY,iBAAiB,aAAa;oBAAC6B,QAAQ;gBAAG;YAClE;YACA,IAAID,iBAAiBxB,qBAAqB;gBACxC,MAAM,IAAIJ,YAAY,uBAAuB,oBAAoB;oBAAC6B,QAAQ;gBAAG;YAC/E;YACA,IAAID,iBAAiBzB,mBAAmB;gBACtC,MAAM,IAAIH,YAAY,0BAA0B,kBAAkB;oBAAC6B,QAAQ;gBAAG;YAChF;YACA,IAAID,iBAAiBpB,yBAAyB;gBAC5C,MAAM,IAAIR,YAAY,0BAA0B,uBAAuB;oBACrE6B,QAAQ;oBACRC,OAAOF;gBACT;YACF;YACA,IAAIA,iBAAiBtB,uBAAuB;gBAC1C,MAAM,IAAIN,YAAY,wBAAwB,qBAAqB;oBACjE6B,QAAQ;oBACRC,OAAOF;gBACT;YACF;YACA,IAAIA,iBAAiBrB,wBAAwB;gBAC3C,MAAM,IAAIP,YAAY,uBAAuB,uBAAuB;oBAClE6B,QAAQ;oBACRC,OAAOF;gBACT;YACF;YACA,MAAMA;QACR;QACAG,SAAS,OAAOC;YACd,MAAM,EAACV,EAAE,EAAC,GAAGU,QAAQZ,MAAM;YAC3B,MAAMa,YAAY,MAAMrB,qBAAqB;gBAACoB;gBAASV;gBAAIR;YAAQ;YAEnE,MAAML,6BAA6BM,YAAYkB,UAAUC,WAAW;YAEpE,MAAMC,QAAQtC,mBAAmBmC;YACjC,MAAMI,MAAM,MAAM1B,uBAAuB;gBACvC2B,eAAeJ,UAAUX,EAAE;gBAC3BgB,MAAMN,QAAQP,IAAI,CAACa,IAAI;gBACvBC,aAAaJ,MAAMK,MAAM;YAC3B;YAEA,OAAO7B,SAASyB,KAAKA,IAAIK,cAAc;QACzC;IACF;AACF"}
|