@ruiapp/rapid-core 0.3.0 → 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 +359 -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 -57
- 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,15 +1,15 @@
|
|
|
1
|
-
export function newError(type: string, message?: string, cause?: any) {
|
|
2
|
-
const error = new Error(message, {
|
|
3
|
-
cause,
|
|
4
|
-
});
|
|
5
|
-
error.name = type;
|
|
6
|
-
return error;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
export function newDatabaseError(message?: string, cause?: any) {
|
|
10
|
-
return newError("DatabaseError", message, cause);
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export function newEntityOperationError(message?: string, cause?: any) {
|
|
14
|
-
return newError("EntityOperationError", message, cause);
|
|
15
|
-
}
|
|
1
|
+
export function newError(type: string, message?: string, cause?: any) {
|
|
2
|
+
const error = new Error(message, {
|
|
3
|
+
cause,
|
|
4
|
+
});
|
|
5
|
+
error.name = type;
|
|
6
|
+
return error;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export function newDatabaseError(message?: string, cause?: any) {
|
|
10
|
+
return newError("DatabaseError", message, cause);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export function newEntityOperationError(message?: string, cause?: any) {
|
|
14
|
+
return newError("EntityOperationError", message, cause);
|
|
15
|
+
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import path from "path";
|
|
2
|
-
|
|
3
|
-
export function getFileExtensionName(pathname: string) {
|
|
4
|
-
return path.extname(pathname);
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
export function getFileName(pathname: string) {
|
|
8
|
-
return path.basename(pathname);
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export function getFileBaseName(pathname: string) {
|
|
12
|
-
const extName = path.extname(pathname);
|
|
13
|
-
return path.basename(pathname, extName);
|
|
14
|
-
}
|
|
1
|
+
import path from "path";
|
|
2
|
+
|
|
3
|
+
export function getFileExtensionName(pathname: string) {
|
|
4
|
+
return path.extname(pathname);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export function getFileName(pathname: string) {
|
|
8
|
+
return path.basename(pathname);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export function getFileBaseName(pathname: string) {
|
|
12
|
+
const extName = path.extname(pathname);
|
|
13
|
+
return path.basename(pathname, extName);
|
|
14
|
+
}
|
|
@@ -1,11 +1,15 @@
|
|
|
1
|
-
export function isUndefined(val: any) {
|
|
2
|
-
return typeof val === "undefined";
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
export function isNull(val: any) {
|
|
6
|
-
return val === null;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
export function isNullOrUndefined(val: any) {
|
|
10
|
-
return isNull(val) || isUndefined(val);
|
|
11
|
-
}
|
|
1
|
+
export function isUndefined(val: any) {
|
|
2
|
+
return typeof val === "undefined";
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
export function isNull(val: any) {
|
|
6
|
+
return val === null;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export function isNullOrUndefined(val: any) {
|
|
10
|
+
return isNull(val) || isUndefined(val);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export function isNullOrUndefinedOrEmpty(val: any) {
|
|
14
|
+
return isNull(val) || isUndefined(val) || val === "";
|
|
15
|
+
}
|