@ruiapp/rapid-core 0.3.1 → 0.3.2
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/CHANGELOG.md +7 -7
- package/dist/index.d.ts +2 -0
- package/dist/index.js +356 -134
- package/dist/plugins/license/LicensePlugin.d.ts +23 -0
- package/dist/plugins/license/LicensePluginTypes.d.ts +78 -0
- package/dist/plugins/license/LicenseService.d.ts +22 -0
- package/dist/plugins/license/actionHandlers/getLicense.d.ts +6 -0
- package/dist/plugins/license/actionHandlers/index.d.ts +3 -0
- package/dist/plugins/license/helpers/certHelper.d.ts +2 -0
- package/dist/plugins/license/helpers/cryptoHelper.d.ts +8 -0
- package/dist/plugins/license/models/index.d.ts +2 -0
- package/dist/plugins/license/routes/getLicense.d.ts +12 -0
- package/dist/plugins/license/routes/index.d.ts +12 -0
- package/dist/utilities/typeUtility.d.ts +1 -0
- package/package.json +1 -1
- package/src/bootstrapApplicationConfig.ts +631 -631
- package/src/core/response.ts +76 -76
- package/src/core/routeContext.ts +47 -47
- package/src/core/server.ts +142 -142
- package/src/dataAccess/columnTypeMapper.ts +22 -22
- package/src/dataAccess/dataAccessTypes.ts +163 -163
- package/src/dataAccess/dataAccessor.ts +135 -135
- package/src/dataAccess/entityManager.ts +1718 -1718
- package/src/dataAccess/entityMapper.ts +100 -100
- package/src/dataAccess/propertyMapper.ts +28 -28
- package/src/deno-std/http/cookie.ts +372 -372
- package/src/helpers/entityHelpers.ts +76 -76
- package/src/helpers/filterHelper.ts +148 -148
- package/src/helpers/metaHelper.ts +89 -89
- package/src/helpers/runCollectionEntityActionHandler.ts +27 -27
- package/src/index.ts +57 -54
- package/src/plugins/auth/AuthPlugin.ts +85 -85
- package/src/plugins/auth/actionHandlers/changePassword.ts +54 -54
- package/src/plugins/auth/actionHandlers/createSession.ts +75 -63
- package/src/plugins/auth/actionHandlers/resetPassword.ts +38 -38
- package/src/plugins/cronJob/CronJobPlugin.ts +112 -112
- package/src/plugins/dataManage/DataManagePlugin.ts +163 -163
- package/src/plugins/dataManage/actionHandlers/addEntityRelations.ts +20 -20
- package/src/plugins/dataManage/actionHandlers/countCollectionEntities.ts +16 -16
- 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/removeEntityRelations.ts +20 -20
- package/src/plugins/dataManage/actionHandlers/updateCollectionEntityById.ts +41 -41
- package/src/plugins/entityAccessControl/EntityAccessControlPlugin.ts +146 -146
- package/src/plugins/fileManage/FileManagePlugin.ts +52 -52
- package/src/plugins/fileManage/actionHandlers/downloadDocument.ts +65 -65
- package/src/plugins/fileManage/actionHandlers/downloadFile.ts +44 -44
- package/src/plugins/license/LicensePlugin.ts +79 -0
- package/src/plugins/license/LicensePluginTypes.ts +95 -0
- package/src/plugins/license/LicenseService.ts +112 -0
- package/src/plugins/license/actionHandlers/getLicense.ts +18 -0
- package/src/plugins/license/actionHandlers/index.ts +4 -0
- package/src/plugins/license/helpers/certHelper.ts +21 -0
- package/src/plugins/license/helpers/cryptoHelper.ts +47 -0
- package/src/plugins/license/models/index.ts +1 -0
- package/src/plugins/license/routes/getLicense.ts +15 -0
- package/src/plugins/license/routes/index.ts +3 -0
- package/src/plugins/mail/MailPlugin.ts +74 -74
- package/src/plugins/mail/MailPluginTypes.ts +27 -27
- package/src/plugins/mail/MailService.ts +38 -38
- package/src/plugins/mail/actionHandlers/index.ts +3 -3
- package/src/plugins/mail/models/index.ts +1 -1
- package/src/plugins/mail/routes/index.ts +1 -1
- package/src/plugins/metaManage/MetaManagePlugin.ts +504 -504
- package/src/plugins/notification/NotificationPlugin.ts +68 -68
- package/src/plugins/notification/NotificationPluginTypes.ts +13 -13
- package/src/plugins/notification/NotificationService.ts +25 -25
- package/src/plugins/notification/actionHandlers/index.ts +3 -3
- package/src/plugins/notification/models/Notification.ts +60 -60
- package/src/plugins/notification/models/index.ts +3 -3
- package/src/plugins/notification/routes/index.ts +1 -1
- package/src/plugins/routeManage/RouteManagePlugin.ts +62 -62
- 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/segments/autoIncrement.ts +78 -78
- package/src/plugins/sequence/segments/dayOfMonth.ts +17 -17
- 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/setting/SettingPlugin.ts +68 -68
- package/src/plugins/setting/SettingPluginTypes.ts +37 -37
- package/src/plugins/setting/models/SystemSettingItem.ts +48 -42
- package/src/plugins/setting/models/UserSettingItem.ts +55 -49
- package/src/plugins/stateMachine/StateMachinePlugin.ts +186 -186
- package/src/plugins/stateMachine/StateMachinePluginTypes.ts +48 -48
- package/src/plugins/stateMachine/actionHandlers/sendStateMachineEvent.ts +51 -51
- package/src/plugins/webhooks/WebhooksPlugin.ts +148 -148
- package/src/plugins/webhooks/pluginConfig.ts +75 -75
- package/src/queryBuilder/queryBuilder.ts +665 -665
- package/src/server.ts +463 -463
- package/src/types.ts +701 -701
- package/src/utilities/errorUtility.ts +15 -15
- package/src/utilities/pathUtility.ts +14 -14
- package/src/utilities/typeUtility.ts +15 -11
|
@@ -1,100 +1,100 @@
|
|
|
1
|
-
import type { IRpdServer } from "~/core/server";
|
|
2
|
-
import { RpdDataModel } from "~/types";
|
|
3
|
-
import { getEntityProperty, getEntityPropertyByCode, isRelationProperty } from "../helpers/metaHelper";
|
|
4
|
-
|
|
5
|
-
// TODO Generate mapper and cache it.
|
|
6
|
-
|
|
7
|
-
export function mapDbRowToEntity(server: IRpdServer, model: RpdDataModel, row: any, keepNonPropertyFields: boolean) {
|
|
8
|
-
if (!row) {
|
|
9
|
-
return null;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
if (!model.properties || !model.properties.length) {
|
|
13
|
-
return row;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
const result: Record<string, any> = {};
|
|
17
|
-
const columnNames = Object.keys(row);
|
|
18
|
-
// TODO: Improve performance.
|
|
19
|
-
columnNames.forEach((columnName) => {
|
|
20
|
-
let isRelationProp = false;
|
|
21
|
-
let propertyName = columnName;
|
|
22
|
-
let property = getEntityProperty(server, model, (item) => item.columnName === columnName);
|
|
23
|
-
if (property) {
|
|
24
|
-
propertyName = property.code;
|
|
25
|
-
} else {
|
|
26
|
-
property = getEntityProperty(server, model, (item) => item.relation === "one" && item.targetIdColumnName === columnName);
|
|
27
|
-
if (property) {
|
|
28
|
-
isRelationProp = true;
|
|
29
|
-
propertyName = property.code;
|
|
30
|
-
} else if (keepNonPropertyFields) {
|
|
31
|
-
propertyName = columnName;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
if (property?.config?.dataManage?.hidden) {
|
|
36
|
-
return;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
if (isRelationProp) {
|
|
40
|
-
if (row[propertyName]) {
|
|
41
|
-
if (!result[propertyName]) {
|
|
42
|
-
result[propertyName] = row[propertyName];
|
|
43
|
-
}
|
|
44
|
-
} else if (keepNonPropertyFields) {
|
|
45
|
-
result[columnName] = row[columnName];
|
|
46
|
-
}
|
|
47
|
-
} else {
|
|
48
|
-
if (!result[propertyName]) {
|
|
49
|
-
result[propertyName] = row[columnName];
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
});
|
|
53
|
-
|
|
54
|
-
return result;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
export type DbRowWithBaseRow = {
|
|
58
|
-
row?: Record<string, any>;
|
|
59
|
-
baseRow?: Record<string, any>;
|
|
60
|
-
};
|
|
61
|
-
|
|
62
|
-
export function mapEntityToDbRow(server: IRpdServer, model: RpdDataModel, entity: any): DbRowWithBaseRow {
|
|
63
|
-
let result: DbRowWithBaseRow = {};
|
|
64
|
-
if (!entity) {
|
|
65
|
-
return result;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
const row = (result.row = {});
|
|
69
|
-
const baseRow = (result.baseRow = {});
|
|
70
|
-
if (!model.properties || !model.properties.length) {
|
|
71
|
-
return result;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
const propertyNames = Object.keys(entity);
|
|
75
|
-
propertyNames.forEach((propertyName) => {
|
|
76
|
-
let columnName = propertyName;
|
|
77
|
-
const property = getEntityPropertyByCode(server, model, propertyName);
|
|
78
|
-
if (property) {
|
|
79
|
-
if (!isRelationProperty(property)) {
|
|
80
|
-
columnName = property.columnName || property.code;
|
|
81
|
-
if (property.isBaseProperty) {
|
|
82
|
-
baseRow[columnName] = entity[propertyName];
|
|
83
|
-
} else {
|
|
84
|
-
row[columnName] = entity[propertyName];
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
} else {
|
|
88
|
-
const oneRelationProperty = getEntityProperty(server, model, (item) => item.relation === "one" && item.targetIdColumnName === propertyName);
|
|
89
|
-
if (oneRelationProperty) {
|
|
90
|
-
if (oneRelationProperty.isBaseProperty) {
|
|
91
|
-
baseRow[columnName] = entity[propertyName];
|
|
92
|
-
} else {
|
|
93
|
-
row[columnName] = entity[propertyName];
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
});
|
|
98
|
-
|
|
99
|
-
return result;
|
|
100
|
-
}
|
|
1
|
+
import type { IRpdServer } from "~/core/server";
|
|
2
|
+
import { RpdDataModel } from "~/types";
|
|
3
|
+
import { getEntityProperty, getEntityPropertyByCode, isRelationProperty } from "../helpers/metaHelper";
|
|
4
|
+
|
|
5
|
+
// TODO Generate mapper and cache it.
|
|
6
|
+
|
|
7
|
+
export function mapDbRowToEntity(server: IRpdServer, model: RpdDataModel, row: any, keepNonPropertyFields: boolean) {
|
|
8
|
+
if (!row) {
|
|
9
|
+
return null;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
if (!model.properties || !model.properties.length) {
|
|
13
|
+
return row;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
const result: Record<string, any> = {};
|
|
17
|
+
const columnNames = Object.keys(row);
|
|
18
|
+
// TODO: Improve performance.
|
|
19
|
+
columnNames.forEach((columnName) => {
|
|
20
|
+
let isRelationProp = false;
|
|
21
|
+
let propertyName = columnName;
|
|
22
|
+
let property = getEntityProperty(server, model, (item) => item.columnName === columnName);
|
|
23
|
+
if (property) {
|
|
24
|
+
propertyName = property.code;
|
|
25
|
+
} else {
|
|
26
|
+
property = getEntityProperty(server, model, (item) => item.relation === "one" && item.targetIdColumnName === columnName);
|
|
27
|
+
if (property) {
|
|
28
|
+
isRelationProp = true;
|
|
29
|
+
propertyName = property.code;
|
|
30
|
+
} else if (keepNonPropertyFields) {
|
|
31
|
+
propertyName = columnName;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
if (property?.config?.dataManage?.hidden) {
|
|
36
|
+
return;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
if (isRelationProp) {
|
|
40
|
+
if (row[propertyName]) {
|
|
41
|
+
if (!result[propertyName]) {
|
|
42
|
+
result[propertyName] = row[propertyName];
|
|
43
|
+
}
|
|
44
|
+
} else if (keepNonPropertyFields) {
|
|
45
|
+
result[columnName] = row[columnName];
|
|
46
|
+
}
|
|
47
|
+
} else {
|
|
48
|
+
if (!result[propertyName]) {
|
|
49
|
+
result[propertyName] = row[columnName];
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
return result;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export type DbRowWithBaseRow = {
|
|
58
|
+
row?: Record<string, any>;
|
|
59
|
+
baseRow?: Record<string, any>;
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
export function mapEntityToDbRow(server: IRpdServer, model: RpdDataModel, entity: any): DbRowWithBaseRow {
|
|
63
|
+
let result: DbRowWithBaseRow = {};
|
|
64
|
+
if (!entity) {
|
|
65
|
+
return result;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
const row = (result.row = {});
|
|
69
|
+
const baseRow = (result.baseRow = {});
|
|
70
|
+
if (!model.properties || !model.properties.length) {
|
|
71
|
+
return result;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
const propertyNames = Object.keys(entity);
|
|
75
|
+
propertyNames.forEach((propertyName) => {
|
|
76
|
+
let columnName = propertyName;
|
|
77
|
+
const property = getEntityPropertyByCode(server, model, propertyName);
|
|
78
|
+
if (property) {
|
|
79
|
+
if (!isRelationProperty(property)) {
|
|
80
|
+
columnName = property.columnName || property.code;
|
|
81
|
+
if (property.isBaseProperty) {
|
|
82
|
+
baseRow[columnName] = entity[propertyName];
|
|
83
|
+
} else {
|
|
84
|
+
row[columnName] = entity[propertyName];
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
} else {
|
|
88
|
+
const oneRelationProperty = getEntityProperty(server, model, (item) => item.relation === "one" && item.targetIdColumnName === propertyName);
|
|
89
|
+
if (oneRelationProperty) {
|
|
90
|
+
if (oneRelationProperty.isBaseProperty) {
|
|
91
|
+
baseRow[columnName] = entity[propertyName];
|
|
92
|
+
} else {
|
|
93
|
+
row[columnName] = entity[propertyName];
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
});
|
|
98
|
+
|
|
99
|
+
return result;
|
|
100
|
+
}
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import { RpdDataModel } from "~/types";
|
|
2
|
-
import { getEntityPropertyByCode, isOneRelationProperty } from "../helpers/metaHelper";
|
|
3
|
-
import { IRpdServer } from "~/core/server";
|
|
4
|
-
|
|
5
|
-
export function mapPropertyNameToColumnName(server: IRpdServer, model: RpdDataModel, propertyName: string) {
|
|
6
|
-
if (!model.properties) {
|
|
7
|
-
return propertyName;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
const property = getEntityPropertyByCode(server, model, propertyName);
|
|
11
|
-
if (!property) {
|
|
12
|
-
return propertyName;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
if (isOneRelationProperty(property)) {
|
|
16
|
-
return property.targetIdColumnName!;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
return property.columnName || property.code;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
export function mapPropertyNamesToColumnNames(server: IRpdServer, model: RpdDataModel, propertyNames: string[]) {
|
|
23
|
-
if (!propertyNames || !propertyNames.length) {
|
|
24
|
-
return [];
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
return propertyNames.map((fieldName) => mapPropertyNameToColumnName(server, model, fieldName));
|
|
28
|
-
}
|
|
1
|
+
import { RpdDataModel } from "~/types";
|
|
2
|
+
import { getEntityPropertyByCode, isOneRelationProperty } from "../helpers/metaHelper";
|
|
3
|
+
import { IRpdServer } from "~/core/server";
|
|
4
|
+
|
|
5
|
+
export function mapPropertyNameToColumnName(server: IRpdServer, model: RpdDataModel, propertyName: string) {
|
|
6
|
+
if (!model.properties) {
|
|
7
|
+
return propertyName;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const property = getEntityPropertyByCode(server, model, propertyName);
|
|
11
|
+
if (!property) {
|
|
12
|
+
return propertyName;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
if (isOneRelationProperty(property)) {
|
|
16
|
+
return property.targetIdColumnName!;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
return property.columnName || property.code;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export function mapPropertyNamesToColumnNames(server: IRpdServer, model: RpdDataModel, propertyNames: string[]) {
|
|
23
|
+
if (!propertyNames || !propertyNames.length) {
|
|
24
|
+
return [];
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
return propertyNames.map((fieldName) => mapPropertyNameToColumnName(server, model, fieldName));
|
|
28
|
+
}
|