@ruiapp/rapid-core 0.1.83 → 0.2.1
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/bootstrapApplicationConfig.d.ts +6 -0
- package/dist/helpers/metaHelper.d.ts +3 -3
- package/dist/index.js +64 -25
- package/dist/plugins/webhooks/pluginConfig.d.ts +1 -0
- package/dist/types.d.ts +19 -1
- package/package.json +1 -1
- package/rollup.config.js +16 -16
- package/src/bootstrapApplicationConfig.ts +615 -602
- package/src/core/actionHandler.ts +22 -22
- package/src/core/eventManager.ts +20 -20
- package/src/core/facility.ts +7 -7
- package/src/core/http/formDataParser.ts +89 -89
- package/src/core/pluginManager.ts +175 -175
- package/src/core/providers/runtimeProvider.ts +5 -5
- package/src/core/request.ts +86 -86
- package/src/core/response.ts +76 -76
- package/src/core/routeContext.ts +43 -43
- package/src/core/routesBuilder.ts +88 -88
- package/src/core/server.ts +142 -142
- package/src/dataAccess/columnTypeMapper.ts +22 -22
- package/src/dataAccess/dataAccessTypes.ts +151 -151
- package/src/dataAccess/dataAccessor.ts +137 -137
- package/src/dataAccess/entityManager.ts +1507 -1505
- package/src/dataAccess/entityMapper.ts +100 -100
- package/src/dataAccess/propertyMapper.ts +28 -28
- package/src/deno-std/datetime/to_imf.ts +32 -32
- package/src/deno-std/encoding/base64.ts +141 -141
- package/src/deno-std/http/cookie.ts +372 -372
- package/src/facilities/log/LogFacility.ts +35 -35
- package/src/helpers/entityHelpers.ts +76 -76
- package/src/helpers/filterHelper.ts +47 -47
- package/src/helpers/metaHelper.ts +80 -76
- package/src/helpers/runCollectionEntityActionHandler.ts +27 -27
- package/src/index.ts +46 -46
- package/src/plugins/auth/AuthPlugin.ts +85 -85
- package/src/plugins/auth/actionHandlers/changePassword.ts +54 -54
- package/src/plugins/auth/actionHandlers/createSession.ts +63 -63
- package/src/plugins/auth/actionHandlers/deleteSession.ts +18 -18
- package/src/plugins/auth/actionHandlers/getMyProfile.ts +35 -35
- package/src/plugins/auth/actionHandlers/index.ts +8 -8
- package/src/plugins/auth/actionHandlers/resetPassword.ts +38 -38
- package/src/plugins/auth/models/AccessToken.ts +56 -56
- package/src/plugins/auth/models/index.ts +3 -3
- package/src/plugins/auth/routes/changePassword.ts +15 -15
- package/src/plugins/auth/routes/getMyProfile.ts +15 -15
- package/src/plugins/auth/routes/index.ts +7 -7
- package/src/plugins/auth/routes/resetPassword.ts +15 -15
- package/src/plugins/auth/routes/signin.ts +15 -15
- package/src/plugins/auth/routes/signout.ts +15 -15
- package/src/plugins/cronJob/CronJobPlugin.ts +112 -112
- package/src/plugins/cronJob/CronJobPluginTypes.ts +49 -49
- package/src/plugins/cronJob/actionHandlers/index.ts +4 -4
- package/src/plugins/cronJob/actionHandlers/runCronJob.ts +29 -29
- package/src/plugins/cronJob/routes/index.ts +3 -3
- package/src/plugins/cronJob/routes/runCronJob.ts +15 -15
- package/src/plugins/dataManage/DataManagePlugin.ts +163 -163
- package/src/plugins/dataManage/actionHandlers/addEntityRelations.ts +20 -20
- package/src/plugins/dataManage/actionHandlers/countCollectionEntities.ts +15 -15
- package/src/plugins/dataManage/actionHandlers/createCollectionEntitiesBatch.ts +42 -42
- package/src/plugins/dataManage/actionHandlers/createCollectionEntity.ts +24 -24
- package/src/plugins/dataManage/actionHandlers/deleteCollectionEntities.ts +38 -38
- package/src/plugins/dataManage/actionHandlers/deleteCollectionEntityById.ts +22 -22
- package/src/plugins/dataManage/actionHandlers/findCollectionEntities.ts +26 -26
- package/src/plugins/dataManage/actionHandlers/findCollectionEntityById.ts +21 -21
- package/src/plugins/dataManage/actionHandlers/queryDatabase.ts +22 -22
- package/src/plugins/dataManage/actionHandlers/removeEntityRelations.ts +20 -20
- package/src/plugins/dataManage/actionHandlers/updateCollectionEntityById.ts +35 -35
- package/src/plugins/entityAccessControl/EntityAccessControlPlugin.ts +146 -146
- package/src/plugins/fileManage/FileManagePlugin.ts +52 -52
- package/src/plugins/fileManage/actionHandlers/downloadDocument.ts +36 -36
- package/src/plugins/fileManage/actionHandlers/downloadFile.ts +44 -44
- package/src/plugins/fileManage/actionHandlers/uploadFile.ts +33 -33
- package/src/plugins/fileManage/routes/downloadDocument.ts +15 -15
- package/src/plugins/fileManage/routes/downloadFile.ts +15 -15
- package/src/plugins/fileManage/routes/index.ts +5 -5
- package/src/plugins/fileManage/routes/uploadFile.ts +15 -15
- package/src/plugins/metaManage/MetaManagePlugin.ts +500 -488
- package/src/plugins/metaManage/actionHandlers/getMetaModelDetail.ts +10 -10
- package/src/plugins/metaManage/actionHandlers/listMetaModels.ts +9 -9
- package/src/plugins/metaManage/actionHandlers/listMetaRoutes.ts +9 -9
- package/src/plugins/routeManage/RouteManagePlugin.ts +62 -62
- package/src/plugins/routeManage/actionHandlers/httpProxy.ts +13 -13
- package/src/plugins/sequence/SequencePlugin.ts +136 -136
- package/src/plugins/sequence/SequencePluginTypes.ts +69 -69
- package/src/plugins/sequence/SequenceService.ts +81 -81
- package/src/plugins/sequence/actionHandlers/generateSn.ts +32 -32
- package/src/plugins/sequence/actionHandlers/index.ts +4 -4
- package/src/plugins/sequence/models/SequenceAutoIncrementRecord.ts +49 -49
- package/src/plugins/sequence/models/SequenceRule.ts +42 -42
- package/src/plugins/sequence/models/index.ts +4 -4
- package/src/plugins/sequence/routes/generateSn.ts +15 -15
- package/src/plugins/sequence/routes/index.ts +3 -3
- package/src/plugins/sequence/segment-utility.ts +11 -11
- package/src/plugins/sequence/segments/autoIncrement.ts +78 -78
- package/src/plugins/sequence/segments/dayOfMonth.ts +17 -17
- package/src/plugins/sequence/segments/index.ts +9 -9
- package/src/plugins/sequence/segments/literal.ts +14 -14
- package/src/plugins/sequence/segments/month.ts +17 -17
- package/src/plugins/sequence/segments/parameter.ts +18 -18
- package/src/plugins/sequence/segments/year.ts +17 -17
- package/src/plugins/serverOperation/ServerOperationPlugin.ts +91 -91
- package/src/plugins/serverOperation/ServerOperationPluginTypes.ts +15 -15
- package/src/plugins/serverOperation/actionHandlers/index.ts +4 -4
- package/src/plugins/setting/SettingPlugin.ts +68 -68
- package/src/plugins/setting/SettingPluginTypes.ts +37 -37
- package/src/plugins/setting/SettingService.ts +213 -213
- package/src/plugins/setting/actionHandlers/getSystemSettingValues.ts +30 -30
- package/src/plugins/setting/actionHandlers/getUserSettingValues.ts +38 -38
- package/src/plugins/setting/actionHandlers/index.ts +6 -6
- package/src/plugins/setting/actionHandlers/setSystemSettingValues.ts +30 -30
- package/src/plugins/setting/models/SystemSettingGroupSetting.ts +57 -57
- package/src/plugins/setting/models/SystemSettingItem.ts +42 -42
- package/src/plugins/setting/models/SystemSettingItemSetting.ts +73 -73
- package/src/plugins/setting/models/UserSettingGroupSetting.ts +57 -57
- package/src/plugins/setting/models/UserSettingItem.ts +49 -49
- package/src/plugins/setting/models/UserSettingItemSetting.ts +73 -73
- package/src/plugins/setting/models/index.ts +8 -8
- package/src/plugins/setting/routes/getSystemSettingValues.ts +15 -15
- package/src/plugins/setting/routes/getUserSettingValues.ts +15 -15
- package/src/plugins/setting/routes/index.ts +5 -5
- package/src/plugins/setting/routes/setSystemSettingValues.ts +15 -15
- package/src/plugins/stateMachine/StateMachinePlugin.ts +186 -186
- package/src/plugins/stateMachine/StateMachinePluginTypes.ts +48 -48
- package/src/plugins/stateMachine/actionHandlers/index.ts +4 -4
- package/src/plugins/stateMachine/actionHandlers/sendStateMachineEvent.ts +51 -51
- package/src/plugins/stateMachine/models/StateMachine.ts +42 -42
- package/src/plugins/stateMachine/models/index.ts +3 -3
- package/src/plugins/stateMachine/routes/index.ts +3 -3
- package/src/plugins/stateMachine/routes/sendStateMachineEvent.ts +15 -15
- package/src/plugins/webhooks/WebhooksPlugin.ts +148 -148
- package/src/plugins/webhooks/pluginConfig.ts +1 -0
- package/src/polyfill.ts +5 -5
- package/src/proxy/mod.ts +38 -38
- package/src/queryBuilder/queryBuilder.ts +637 -637
- package/src/server.ts +463 -451
- package/src/types.ts +659 -637
- package/src/utilities/accessControlUtility.ts +33 -33
- package/src/utilities/errorUtility.ts +15 -15
- package/src/utilities/fsUtility.ts +61 -61
- package/src/utilities/httpUtility.ts +19 -19
- package/src/utilities/jwtUtility.ts +26 -26
- package/src/utilities/timeUtility.ts +9 -9
- package/tsconfig.json +19 -19
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
import { AnyActorRef, AnyEventObject, EventObject, MachineConfig, MachineContext, MachineSnapshot, MetaObject, StateValue } from "xstate";
|
|
2
|
-
|
|
3
|
-
export type PropertyStateMachineConfig = {
|
|
4
|
-
enabled: boolean;
|
|
5
|
-
config: MachineConfig<any, any>;
|
|
6
|
-
transferControl?: boolean;
|
|
7
|
-
};
|
|
8
|
-
|
|
9
|
-
export type SendStateMachineEventOptions = {
|
|
10
|
-
code: string;
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
export type StateMachineEvent = AnyEventObject;
|
|
14
|
-
|
|
15
|
-
export type SendStateMachineEventInput = {
|
|
16
|
-
code?: string;
|
|
17
|
-
context: any;
|
|
18
|
-
currentState: string;
|
|
19
|
-
event: StateMachineEvent;
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
export type GetStateMachineNextSnapshotOptions = {
|
|
23
|
-
machineConfig: MachineConfig<any, any>;
|
|
24
|
-
context: any;
|
|
25
|
-
currentState: string;
|
|
26
|
-
event: StateMachineEvent;
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export type DefaultStateMachineSnapshot = MachineSnapshot<
|
|
30
|
-
MachineContext,
|
|
31
|
-
EventObject,
|
|
32
|
-
Record<string, AnyActorRef | undefined>,
|
|
33
|
-
StateValue,
|
|
34
|
-
string,
|
|
35
|
-
unknown,
|
|
36
|
-
MetaObject
|
|
37
|
-
>;
|
|
38
|
-
|
|
39
|
-
export type TryGetStateMachineNextSnapshotResult = TryGetStateMachineNextSnapshotPositiveResult | TryGetStateMachineNextSnapshotNegativeResult;
|
|
40
|
-
|
|
41
|
-
export type TryGetStateMachineNextSnapshotPositiveResult = {
|
|
42
|
-
canTransfer: true;
|
|
43
|
-
nextSnapshot: DefaultStateMachineSnapshot;
|
|
44
|
-
};
|
|
45
|
-
|
|
46
|
-
export type TryGetStateMachineNextSnapshotNegativeResult = {
|
|
47
|
-
canTransfer: false;
|
|
48
|
-
};
|
|
1
|
+
import { AnyActorRef, AnyEventObject, EventObject, MachineConfig, MachineContext, MachineSnapshot, MetaObject, StateValue } from "xstate";
|
|
2
|
+
|
|
3
|
+
export type PropertyStateMachineConfig = {
|
|
4
|
+
enabled: boolean;
|
|
5
|
+
config: MachineConfig<any, any>;
|
|
6
|
+
transferControl?: boolean;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export type SendStateMachineEventOptions = {
|
|
10
|
+
code: string;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export type StateMachineEvent = AnyEventObject;
|
|
14
|
+
|
|
15
|
+
export type SendStateMachineEventInput = {
|
|
16
|
+
code?: string;
|
|
17
|
+
context: any;
|
|
18
|
+
currentState: string;
|
|
19
|
+
event: StateMachineEvent;
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
export type GetStateMachineNextSnapshotOptions = {
|
|
23
|
+
machineConfig: MachineConfig<any, any>;
|
|
24
|
+
context: any;
|
|
25
|
+
currentState: string;
|
|
26
|
+
event: StateMachineEvent;
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export type DefaultStateMachineSnapshot = MachineSnapshot<
|
|
30
|
+
MachineContext,
|
|
31
|
+
EventObject,
|
|
32
|
+
Record<string, AnyActorRef | undefined>,
|
|
33
|
+
StateValue,
|
|
34
|
+
string,
|
|
35
|
+
unknown,
|
|
36
|
+
MetaObject
|
|
37
|
+
>;
|
|
38
|
+
|
|
39
|
+
export type TryGetStateMachineNextSnapshotResult = TryGetStateMachineNextSnapshotPositiveResult | TryGetStateMachineNextSnapshotNegativeResult;
|
|
40
|
+
|
|
41
|
+
export type TryGetStateMachineNextSnapshotPositiveResult = {
|
|
42
|
+
canTransfer: true;
|
|
43
|
+
nextSnapshot: DefaultStateMachineSnapshot;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
export type TryGetStateMachineNextSnapshotNegativeResult = {
|
|
47
|
+
canTransfer: false;
|
|
48
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IPluginActionHandler } from "~/core/actionHandler";
|
|
2
|
-
import * as sendStateMachineEvent from "./sendStateMachineEvent";
|
|
3
|
-
|
|
4
|
-
export default [sendStateMachineEvent] satisfies IPluginActionHandler[];
|
|
1
|
+
import { IPluginActionHandler } from "~/core/actionHandler";
|
|
2
|
+
import * as sendStateMachineEvent from "./sendStateMachineEvent";
|
|
3
|
+
|
|
4
|
+
export default [sendStateMachineEvent] satisfies IPluginActionHandler[];
|
|
@@ -1,51 +1,51 @@
|
|
|
1
|
-
import { ActionHandlerContext } from "~/core/actionHandler";
|
|
2
|
-
import { RapidPlugin } from "~/core/server";
|
|
3
|
-
import { SendStateMachineEventInput, SendStateMachineEventOptions } from "../StateMachinePluginTypes";
|
|
4
|
-
import { getStateMachineNextSnapshot } from "../stateMachineHelper";
|
|
5
|
-
|
|
6
|
-
export const code = "sendStateMachineEvent";
|
|
7
|
-
|
|
8
|
-
export async function handler(plugin: RapidPlugin, ctx: ActionHandlerContext, options: SendStateMachineEventOptions) {
|
|
9
|
-
const { server, routerContext } = ctx;
|
|
10
|
-
const { response } = routerContext;
|
|
11
|
-
|
|
12
|
-
const input: SendStateMachineEventInput = ctx.input;
|
|
13
|
-
if (options?.code) {
|
|
14
|
-
input.code = options.code;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
if (!input.code) {
|
|
18
|
-
throw new Error(`State machine code is required when sending event.`);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
const stateMachineDataAccessor = server.getDataAccessor({
|
|
22
|
-
singularCode: "state_machine",
|
|
23
|
-
});
|
|
24
|
-
|
|
25
|
-
const stateMachine = await stateMachineDataAccessor.findOne({
|
|
26
|
-
filters: [
|
|
27
|
-
{
|
|
28
|
-
operator: "eq",
|
|
29
|
-
field: "code",
|
|
30
|
-
value: input.code,
|
|
31
|
-
},
|
|
32
|
-
],
|
|
33
|
-
});
|
|
34
|
-
|
|
35
|
-
if (!stateMachine) {
|
|
36
|
-
throw new Error(`State machine with code '${input.code}' was not found.`);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
stateMachine.config.id = input.code;
|
|
40
|
-
|
|
41
|
-
const snapshot = await getStateMachineNextSnapshot({
|
|
42
|
-
machineConfig: stateMachine.config,
|
|
43
|
-
context: input.context,
|
|
44
|
-
currentState: input.currentState,
|
|
45
|
-
event: input.event,
|
|
46
|
-
});
|
|
47
|
-
|
|
48
|
-
response.json({
|
|
49
|
-
state: snapshot.value,
|
|
50
|
-
});
|
|
51
|
-
}
|
|
1
|
+
import { ActionHandlerContext } from "~/core/actionHandler";
|
|
2
|
+
import { RapidPlugin } from "~/core/server";
|
|
3
|
+
import { SendStateMachineEventInput, SendStateMachineEventOptions } from "../StateMachinePluginTypes";
|
|
4
|
+
import { getStateMachineNextSnapshot } from "../stateMachineHelper";
|
|
5
|
+
|
|
6
|
+
export const code = "sendStateMachineEvent";
|
|
7
|
+
|
|
8
|
+
export async function handler(plugin: RapidPlugin, ctx: ActionHandlerContext, options: SendStateMachineEventOptions) {
|
|
9
|
+
const { server, routerContext } = ctx;
|
|
10
|
+
const { response } = routerContext;
|
|
11
|
+
|
|
12
|
+
const input: SendStateMachineEventInput = ctx.input;
|
|
13
|
+
if (options?.code) {
|
|
14
|
+
input.code = options.code;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
if (!input.code) {
|
|
18
|
+
throw new Error(`State machine code is required when sending event.`);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
const stateMachineDataAccessor = server.getDataAccessor({
|
|
22
|
+
singularCode: "state_machine",
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
const stateMachine = await stateMachineDataAccessor.findOne({
|
|
26
|
+
filters: [
|
|
27
|
+
{
|
|
28
|
+
operator: "eq",
|
|
29
|
+
field: "code",
|
|
30
|
+
value: input.code,
|
|
31
|
+
},
|
|
32
|
+
],
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
if (!stateMachine) {
|
|
36
|
+
throw new Error(`State machine with code '${input.code}' was not found.`);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
stateMachine.config.id = input.code;
|
|
40
|
+
|
|
41
|
+
const snapshot = await getStateMachineNextSnapshot({
|
|
42
|
+
machineConfig: stateMachine.config,
|
|
43
|
+
context: input.context,
|
|
44
|
+
currentState: input.currentState,
|
|
45
|
+
event: input.event,
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
response.json({
|
|
49
|
+
state: snapshot.value,
|
|
50
|
+
});
|
|
51
|
+
}
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
import { RpdDataModel } from "~/types";
|
|
2
|
-
|
|
3
|
-
export default {
|
|
4
|
-
maintainedBy: "stateMachinePlugin",
|
|
5
|
-
namespace: "svc",
|
|
6
|
-
name: "state_machine",
|
|
7
|
-
singularCode: "state_machine",
|
|
8
|
-
pluralCode: "state_machines",
|
|
9
|
-
schema: "public",
|
|
10
|
-
tableName: "state_machines",
|
|
11
|
-
properties: [
|
|
12
|
-
{
|
|
13
|
-
name: "id",
|
|
14
|
-
code: "id",
|
|
15
|
-
columnName: "id",
|
|
16
|
-
type: "integer",
|
|
17
|
-
required: true,
|
|
18
|
-
autoIncrement: true,
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
name: "code",
|
|
22
|
-
code: "code",
|
|
23
|
-
columnName: "code",
|
|
24
|
-
type: "text",
|
|
25
|
-
required: true,
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
name: "description",
|
|
29
|
-
code: "description",
|
|
30
|
-
columnName: "description",
|
|
31
|
-
type: "text",
|
|
32
|
-
required: false,
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
name: "config",
|
|
36
|
-
code: "config",
|
|
37
|
-
columnName: "config",
|
|
38
|
-
type: "json",
|
|
39
|
-
required: false,
|
|
40
|
-
},
|
|
41
|
-
],
|
|
42
|
-
} as RpdDataModel;
|
|
1
|
+
import { RpdDataModel } from "~/types";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
maintainedBy: "stateMachinePlugin",
|
|
5
|
+
namespace: "svc",
|
|
6
|
+
name: "state_machine",
|
|
7
|
+
singularCode: "state_machine",
|
|
8
|
+
pluralCode: "state_machines",
|
|
9
|
+
schema: "public",
|
|
10
|
+
tableName: "state_machines",
|
|
11
|
+
properties: [
|
|
12
|
+
{
|
|
13
|
+
name: "id",
|
|
14
|
+
code: "id",
|
|
15
|
+
columnName: "id",
|
|
16
|
+
type: "integer",
|
|
17
|
+
required: true,
|
|
18
|
+
autoIncrement: true,
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
name: "code",
|
|
22
|
+
code: "code",
|
|
23
|
+
columnName: "code",
|
|
24
|
+
type: "text",
|
|
25
|
+
required: true,
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
name: "description",
|
|
29
|
+
code: "description",
|
|
30
|
+
columnName: "description",
|
|
31
|
+
type: "text",
|
|
32
|
+
required: false,
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: "config",
|
|
36
|
+
code: "config",
|
|
37
|
+
columnName: "config",
|
|
38
|
+
type: "json",
|
|
39
|
+
required: false,
|
|
40
|
+
},
|
|
41
|
+
],
|
|
42
|
+
} as RpdDataModel;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import StateMachine from "./StateMachine";
|
|
2
|
-
|
|
3
|
-
export default [StateMachine];
|
|
1
|
+
import StateMachine from "./StateMachine";
|
|
2
|
+
|
|
3
|
+
export default [StateMachine];
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import sendStateMachineEvent from "./sendStateMachineEvent";
|
|
2
|
-
|
|
3
|
-
export default [sendStateMachineEvent];
|
|
1
|
+
import sendStateMachineEvent from "./sendStateMachineEvent";
|
|
2
|
+
|
|
3
|
+
export default [sendStateMachineEvent];
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { RpdRoute } from "~/types";
|
|
2
|
-
|
|
3
|
-
export default {
|
|
4
|
-
namespace: "svc",
|
|
5
|
-
name: "svc.sendStateMachineEvent",
|
|
6
|
-
code: "svc.sendStateMachineEvent",
|
|
7
|
-
type: "RESTful",
|
|
8
|
-
method: "POST",
|
|
9
|
-
endpoint: "/svc/sendStateMachineEvent",
|
|
10
|
-
actions: [
|
|
11
|
-
{
|
|
12
|
-
code: "sendStateMachineEvent",
|
|
13
|
-
},
|
|
14
|
-
],
|
|
15
|
-
} satisfies RpdRoute;
|
|
1
|
+
import { RpdRoute } from "~/types";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
namespace: "svc",
|
|
5
|
+
name: "svc.sendStateMachineEvent",
|
|
6
|
+
code: "svc.sendStateMachineEvent",
|
|
7
|
+
type: "RESTful",
|
|
8
|
+
method: "POST",
|
|
9
|
+
endpoint: "/svc/sendStateMachineEvent",
|
|
10
|
+
actions: [
|
|
11
|
+
{
|
|
12
|
+
code: "sendStateMachineEvent",
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
} satisfies RpdRoute;
|
|
@@ -1,148 +1,148 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Webhooks plugin
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
import { RpdApplicationConfig, RpdEntityCreateEventPayload, RpdEntityDeleteEventPayload, RpdEntityUpdateEventPayload, RpdServerEventTypes } from "~/types";
|
|
6
|
-
import {
|
|
7
|
-
RpdServerPluginExtendingAbilities,
|
|
8
|
-
RpdServerPluginConfigurableTargetOptions,
|
|
9
|
-
RpdConfigurationItemOptions,
|
|
10
|
-
IRpdServer,
|
|
11
|
-
RapidPlugin,
|
|
12
|
-
} from "~/core/server";
|
|
13
|
-
import { fetchWithTimeout } from "~/utilities/httpUtility";
|
|
14
|
-
import pluginConfig from "./pluginConfig";
|
|
15
|
-
import { indexOf } from "lodash";
|
|
16
|
-
|
|
17
|
-
export interface Webhook {
|
|
18
|
-
name: string;
|
|
19
|
-
url: string;
|
|
20
|
-
secret: string;
|
|
21
|
-
namespace: string;
|
|
22
|
-
modelSingularCode: string;
|
|
23
|
-
events: string[];
|
|
24
|
-
properties: string[];
|
|
25
|
-
enabled: boolean;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
function listWebhooks(server: IRpdServer) {
|
|
29
|
-
const logger = server.getLogger();
|
|
30
|
-
logger.info("Loading meta of webhooks...");
|
|
31
|
-
|
|
32
|
-
try {
|
|
33
|
-
const entityManager = server.getEntityManager("webhook");
|
|
34
|
-
return entityManager.findEntities({
|
|
35
|
-
filters: [
|
|
36
|
-
{
|
|
37
|
-
field: "enabled",
|
|
38
|
-
operator: "eq",
|
|
39
|
-
value: true,
|
|
40
|
-
},
|
|
41
|
-
],
|
|
42
|
-
});
|
|
43
|
-
} catch (error) {
|
|
44
|
-
logger.crit("Failed to load meta of webhooks.", { error });
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
class WebhooksPlugin implements RapidPlugin {
|
|
49
|
-
#webhooks: Webhook[];
|
|
50
|
-
|
|
51
|
-
constructor() {
|
|
52
|
-
this.#webhooks = [];
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
get code(): string {
|
|
56
|
-
return "webhooks";
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
get description(): string {
|
|
60
|
-
return null;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
get extendingAbilities(): RpdServerPluginExtendingAbilities[] {
|
|
64
|
-
return [];
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
get configurableTargets(): RpdServerPluginConfigurableTargetOptions[] {
|
|
68
|
-
return [];
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
get configurations(): RpdConfigurationItemOptions[] {
|
|
72
|
-
return [];
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
async registerEventHandlers(server: IRpdServer): Promise<any> {
|
|
76
|
-
const events: (keyof RpdServerEventTypes)[] = ["entity.create", "entity.update", "entity.delete"];
|
|
77
|
-
for (const event of events) {
|
|
78
|
-
server.registerEventHandler(event, this.handleEntityEvent.bind(this, server, event));
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
async configureModels(server: IRpdServer, applicationConfig: RpdApplicationConfig): Promise<any> {
|
|
83
|
-
server.appendApplicationConfig({
|
|
84
|
-
models: pluginConfig.models,
|
|
85
|
-
});
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
async configureModelProperties(server: IRpdServer, applicationConfig: RpdApplicationConfig): Promise<any> {}
|
|
89
|
-
|
|
90
|
-
async configureRoutes(server: IRpdServer, applicationConfig: RpdApplicationConfig): Promise<any> {}
|
|
91
|
-
|
|
92
|
-
async onApplicationLoaded(server: IRpdServer, applicationConfig: RpdApplicationConfig): Promise<any> {
|
|
93
|
-
this.#webhooks = await listWebhooks(server);
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
async onApplicationReady(server: IRpdServer, applicationConfig: RpdApplicationConfig): Promise<any> {}
|
|
97
|
-
|
|
98
|
-
async handleEntityEvent(
|
|
99
|
-
server: IRpdServer,
|
|
100
|
-
event: keyof RpdServerEventTypes,
|
|
101
|
-
sender: RapidPlugin,
|
|
102
|
-
payload: RpdEntityCreateEventPayload | RpdEntityUpdateEventPayload | RpdEntityDeleteEventPayload,
|
|
103
|
-
) {
|
|
104
|
-
if (sender === this) {
|
|
105
|
-
return;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
if (payload.namespace === "sys" && payload.modelSingularCode === "webhook") {
|
|
109
|
-
this.#webhooks = await listWebhooks(server);
|
|
110
|
-
return;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
// We will not trigger webhooks if entity changed is in "meta" or "sys" namespaces.
|
|
114
|
-
if (payload.namespace === "meta" || payload.namespace === "sys") {
|
|
115
|
-
return;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
const logger = server.getLogger();
|
|
119
|
-
|
|
120
|
-
for (const webhook of this.#webhooks) {
|
|
121
|
-
if (indexOf(webhook.events, event) === -1) {
|
|
122
|
-
continue;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
if (webhook.namespace != payload.namespace || webhook.modelSingularCode !== payload.modelSingularCode) {
|
|
126
|
-
continue;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
logger.debug(`Triggering webhook. ${webhook.url}`);
|
|
130
|
-
// TODO: It's better to trigger webhook through message queue.
|
|
131
|
-
const requestBody = { event, payload };
|
|
132
|
-
try {
|
|
133
|
-
await fetchWithTimeout(webhook.url, {
|
|
134
|
-
method: "post",
|
|
135
|
-
headers: {
|
|
136
|
-
"Content-Type": "application/json",
|
|
137
|
-
"x-webhook-secret": webhook.secret || "",
|
|
138
|
-
},
|
|
139
|
-
body: JSON.stringify(requestBody),
|
|
140
|
-
});
|
|
141
|
-
} catch (error) {
|
|
142
|
-
logger.error("Failed to call webhook.", { error, webhookUrl: webhook.url, requestBody });
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
export default WebhooksPlugin;
|
|
1
|
+
/**
|
|
2
|
+
* Webhooks plugin
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import { RpdApplicationConfig, RpdEntityCreateEventPayload, RpdEntityDeleteEventPayload, RpdEntityUpdateEventPayload, RpdServerEventTypes } from "~/types";
|
|
6
|
+
import {
|
|
7
|
+
RpdServerPluginExtendingAbilities,
|
|
8
|
+
RpdServerPluginConfigurableTargetOptions,
|
|
9
|
+
RpdConfigurationItemOptions,
|
|
10
|
+
IRpdServer,
|
|
11
|
+
RapidPlugin,
|
|
12
|
+
} from "~/core/server";
|
|
13
|
+
import { fetchWithTimeout } from "~/utilities/httpUtility";
|
|
14
|
+
import pluginConfig from "./pluginConfig";
|
|
15
|
+
import { indexOf } from "lodash";
|
|
16
|
+
|
|
17
|
+
export interface Webhook {
|
|
18
|
+
name: string;
|
|
19
|
+
url: string;
|
|
20
|
+
secret: string;
|
|
21
|
+
namespace: string;
|
|
22
|
+
modelSingularCode: string;
|
|
23
|
+
events: string[];
|
|
24
|
+
properties: string[];
|
|
25
|
+
enabled: boolean;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
function listWebhooks(server: IRpdServer) {
|
|
29
|
+
const logger = server.getLogger();
|
|
30
|
+
logger.info("Loading meta of webhooks...");
|
|
31
|
+
|
|
32
|
+
try {
|
|
33
|
+
const entityManager = server.getEntityManager("webhook");
|
|
34
|
+
return entityManager.findEntities({
|
|
35
|
+
filters: [
|
|
36
|
+
{
|
|
37
|
+
field: "enabled",
|
|
38
|
+
operator: "eq",
|
|
39
|
+
value: true,
|
|
40
|
+
},
|
|
41
|
+
],
|
|
42
|
+
});
|
|
43
|
+
} catch (error) {
|
|
44
|
+
logger.crit("Failed to load meta of webhooks.", { error });
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
class WebhooksPlugin implements RapidPlugin {
|
|
49
|
+
#webhooks: Webhook[];
|
|
50
|
+
|
|
51
|
+
constructor() {
|
|
52
|
+
this.#webhooks = [];
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
get code(): string {
|
|
56
|
+
return "webhooks";
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
get description(): string {
|
|
60
|
+
return null;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
get extendingAbilities(): RpdServerPluginExtendingAbilities[] {
|
|
64
|
+
return [];
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
get configurableTargets(): RpdServerPluginConfigurableTargetOptions[] {
|
|
68
|
+
return [];
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
get configurations(): RpdConfigurationItemOptions[] {
|
|
72
|
+
return [];
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
async registerEventHandlers(server: IRpdServer): Promise<any> {
|
|
76
|
+
const events: (keyof RpdServerEventTypes)[] = ["entity.create", "entity.update", "entity.delete"];
|
|
77
|
+
for (const event of events) {
|
|
78
|
+
server.registerEventHandler(event, this.handleEntityEvent.bind(this, server, event));
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
async configureModels(server: IRpdServer, applicationConfig: RpdApplicationConfig): Promise<any> {
|
|
83
|
+
server.appendApplicationConfig({
|
|
84
|
+
models: pluginConfig.models,
|
|
85
|
+
});
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
async configureModelProperties(server: IRpdServer, applicationConfig: RpdApplicationConfig): Promise<any> {}
|
|
89
|
+
|
|
90
|
+
async configureRoutes(server: IRpdServer, applicationConfig: RpdApplicationConfig): Promise<any> {}
|
|
91
|
+
|
|
92
|
+
async onApplicationLoaded(server: IRpdServer, applicationConfig: RpdApplicationConfig): Promise<any> {
|
|
93
|
+
this.#webhooks = await listWebhooks(server);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
async onApplicationReady(server: IRpdServer, applicationConfig: RpdApplicationConfig): Promise<any> {}
|
|
97
|
+
|
|
98
|
+
async handleEntityEvent(
|
|
99
|
+
server: IRpdServer,
|
|
100
|
+
event: keyof RpdServerEventTypes,
|
|
101
|
+
sender: RapidPlugin,
|
|
102
|
+
payload: RpdEntityCreateEventPayload | RpdEntityUpdateEventPayload | RpdEntityDeleteEventPayload,
|
|
103
|
+
) {
|
|
104
|
+
if (sender === this) {
|
|
105
|
+
return;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
if (payload.namespace === "sys" && payload.modelSingularCode === "webhook") {
|
|
109
|
+
this.#webhooks = await listWebhooks(server);
|
|
110
|
+
return;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
// We will not trigger webhooks if entity changed is in "meta" or "sys" namespaces.
|
|
114
|
+
if (payload.namespace === "meta" || payload.namespace === "sys") {
|
|
115
|
+
return;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
const logger = server.getLogger();
|
|
119
|
+
|
|
120
|
+
for (const webhook of this.#webhooks) {
|
|
121
|
+
if (indexOf(webhook.events, event) === -1) {
|
|
122
|
+
continue;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
if (webhook.namespace != payload.namespace || webhook.modelSingularCode !== payload.modelSingularCode) {
|
|
126
|
+
continue;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
logger.debug(`Triggering webhook. ${webhook.url}`);
|
|
130
|
+
// TODO: It's better to trigger webhook through message queue.
|
|
131
|
+
const requestBody = { event, payload };
|
|
132
|
+
try {
|
|
133
|
+
await fetchWithTimeout(webhook.url, {
|
|
134
|
+
method: "post",
|
|
135
|
+
headers: {
|
|
136
|
+
"Content-Type": "application/json",
|
|
137
|
+
"x-webhook-secret": webhook.secret || "",
|
|
138
|
+
},
|
|
139
|
+
body: JSON.stringify(requestBody),
|
|
140
|
+
});
|
|
141
|
+
} catch (error) {
|
|
142
|
+
logger.error("Failed to call webhook.", { error, webhookUrl: webhook.url, requestBody });
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
export default WebhooksPlugin;
|
package/src/polyfill.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export function fixBigIntJSONSerialize() {
|
|
2
|
-
(BigInt.prototype as any).toJSON = function () {
|
|
3
|
-
return this.toString();
|
|
4
|
-
};
|
|
5
|
-
}
|
|
1
|
+
export function fixBigIntJSONSerialize() {
|
|
2
|
+
(BigInt.prototype as any).toJSON = function () {
|
|
3
|
+
return this.toString();
|
|
4
|
+
};
|
|
5
|
+
}
|