midway-fatcms 0.0.1-beta.26 → 0.0.1-beta.29

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.
Files changed (188) hide show
  1. package/dist/config/config.default.js +6 -4
  2. package/dist/controller/home.controller.js +2 -1
  3. package/dist/controller/manage/CrudStandardDesignApi.js +8 -8
  4. package/dist/controller/render/AppRenderController.js +2 -1
  5. package/dist/middleware/global.middleware.js +22 -9
  6. package/dist/models/AsyncTaskModel.d.ts +2 -0
  7. package/dist/models/AsyncTaskModel.js +3 -1
  8. package/dist/models/RedisKeys.d.ts +2 -0
  9. package/dist/models/RedisKeys.js +2 -0
  10. package/dist/models/bizmodels.d.ts +1 -0
  11. package/dist/service/UserSessionService.d.ts +21 -0
  12. package/dist/service/UserSessionService.js +71 -1
  13. package/dist/service/WorkbenchService.d.ts +32 -0
  14. package/dist/service/WorkbenchService.js +54 -11
  15. package/dist/service/anyapi/AnyApiSandboxService.js +12 -12
  16. package/dist/service/asyncTask/AsyncTaskRunnerService.d.ts +14 -1
  17. package/dist/service/asyncTask/AsyncTaskRunnerService.js +70 -25
  18. package/dist/service/asyncTask/handler/ExportExcelAsyncTaskHandler.js +1 -1
  19. package/dist/service/asyncTask/handler/ExportExcelByInnerHttpHandler.js +11 -2
  20. package/dist/service/base/RedisCacheService.d.ts +7 -0
  21. package/dist/service/base/RedisCacheService.js +7 -0
  22. package/dist/service/crudstd/CrudStdService.d.ts +0 -6
  23. package/dist/service/crudstd/CrudStdService.js +13 -33
  24. package/package.json +1 -5
  25. package/src/config/config.default.ts +0 -207
  26. package/src/config/seed/aeskey.txt +0 -1
  27. package/src/config/utils.ts +0 -22
  28. package/src/configuration.ts +0 -109
  29. package/src/controller/base/BaseApiController.ts +0 -170
  30. package/src/controller/gateway/AnyApiGatewayController.ts +0 -33
  31. package/src/controller/gateway/AsyncTaskController.ts +0 -157
  32. package/src/controller/gateway/CrudMtdGatewayController.ts +0 -111
  33. package/src/controller/gateway/CrudStdGatewayController.ts +0 -101
  34. package/src/controller/gateway/DocGatewayController.ts +0 -173
  35. package/src/controller/gateway/FileController.ts +0 -109
  36. package/src/controller/gateway/ProxyApiGatewayController.ts +0 -47
  37. package/src/controller/gateway/PublicApiController.ts +0 -142
  38. package/src/controller/gateway/StaticController.ts +0 -298
  39. package/src/controller/helpers.controller.ts +0 -161
  40. package/src/controller/home.controller.ts +0 -64
  41. package/src/controller/manage/AnyApiMangeApi.ts +0 -66
  42. package/src/controller/manage/AppLogMangeApi.ts +0 -53
  43. package/src/controller/manage/AppMangeApi.ts +0 -53
  44. package/src/controller/manage/AppPageMangeApi.ts +0 -52
  45. package/src/controller/manage/AppSchemaHistoryApi.ts +0 -49
  46. package/src/controller/manage/CrudMethodsMangeApi.ts +0 -49
  47. package/src/controller/manage/CrudStandardDesignApi.ts +0 -346
  48. package/src/controller/manage/DataDictManageApi.ts +0 -78
  49. package/src/controller/manage/DeployManageApi.ts +0 -175
  50. package/src/controller/manage/DocLibManageApi.ts +0 -69
  51. package/src/controller/manage/DocManageApi.ts +0 -99
  52. package/src/controller/manage/FileManageApi.ts +0 -45
  53. package/src/controller/manage/LowCodeTplManageApi.ts +0 -52
  54. package/src/controller/manage/MenuManageApi.ts +0 -58
  55. package/src/controller/manage/ProxyApiMangeApi.ts +0 -52
  56. package/src/controller/manage/SuperAdminManageApi.ts +0 -139
  57. package/src/controller/manage/SysConfigMangeApi.ts +0 -95
  58. package/src/controller/manage/SystemInfoManageApi.ts +0 -53
  59. package/src/controller/manage/UserAccountManageApi.ts +0 -94
  60. package/src/controller/manage/WorkbenchMangeApi.ts +0 -72
  61. package/src/controller/myinfo/AuthController.ts +0 -108
  62. package/src/controller/myinfo/MyInfoController.ts +0 -32
  63. package/src/controller/render/AppRenderController.ts +0 -79
  64. package/src/controller/test.controller.ts +0 -37
  65. package/src/filter/default.filter.ts +0 -13
  66. package/src/filter/notfound.filter.ts +0 -10
  67. package/src/index.ts +0 -106
  68. package/src/interface.ts +0 -31
  69. package/src/libs/crud-pro/CrudPro.ts +0 -165
  70. package/src/libs/crud-pro/defaultConfigs.ts +0 -15
  71. package/src/libs/crud-pro/exceptions.ts +0 -124
  72. package/src/libs/crud-pro/interfaces.ts +0 -190
  73. package/src/libs/crud-pro/models/ExecuteContext.ts +0 -120
  74. package/src/libs/crud-pro/models/ExecuteContextFunc.ts +0 -96
  75. package/src/libs/crud-pro/models/FuncContext.ts +0 -21
  76. package/src/libs/crud-pro/models/RequestCfgModel.ts +0 -141
  77. package/src/libs/crud-pro/models/RequestModel.ts +0 -141
  78. package/src/libs/crud-pro/models/ResModel.ts +0 -19
  79. package/src/libs/crud-pro/models/ServiceHub.ts +0 -32
  80. package/src/libs/crud-pro/models/SqlCfgModel.ts +0 -52
  81. package/src/libs/crud-pro/models/SqlSegArg.ts +0 -13
  82. package/src/libs/crud-pro/models/Transaction.ts +0 -73
  83. package/src/libs/crud-pro/models/TransactionMySQL.ts +0 -79
  84. package/src/libs/crud-pro/models/TransactionPostgres.ts +0 -91
  85. package/src/libs/crud-pro/models/TransactionSqlServer.ts +0 -102
  86. package/src/libs/crud-pro/models/keys.ts +0 -159
  87. package/src/libs/crud-pro/services/CrudProCachedCfgService.ts +0 -83
  88. package/src/libs/crud-pro/services/CrudProExecuteFuncService.ts +0 -128
  89. package/src/libs/crud-pro/services/CrudProExecuteSqlService.ts +0 -262
  90. package/src/libs/crud-pro/services/CrudProFieldUpdateService.ts +0 -60
  91. package/src/libs/crud-pro/services/CrudProFieldValidateService.ts +0 -180
  92. package/src/libs/crud-pro/services/CrudProGenSqlCondition.ts +0 -354
  93. package/src/libs/crud-pro/services/CrudProGenSqlService.ts +0 -185
  94. package/src/libs/crud-pro/services/CrudProOriginToExecuteSql.ts +0 -393
  95. package/src/libs/crud-pro/services/CrudProServiceBase.ts +0 -94
  96. package/src/libs/crud-pro/services/CrudProTableMetaService.ts +0 -86
  97. package/src/libs/crud-pro/services/CurdProServiceHub.ts +0 -92
  98. package/src/libs/crud-pro/sql.txt +0 -120
  99. package/src/libs/crud-pro/utils/CompareUtils.ts +0 -23
  100. package/src/libs/crud-pro/utils/DatabaseName.ts +0 -60
  101. package/src/libs/crud-pro/utils/DateTimeUtils.ts +0 -20
  102. package/src/libs/crud-pro/utils/MemoryRefreshCache.ts +0 -64
  103. package/src/libs/crud-pro/utils/MessageParseUtils.ts +0 -33
  104. package/src/libs/crud-pro/utils/MixinUtils.ts +0 -285
  105. package/src/libs/crud-pro/utils/ModelUtils.ts +0 -55
  106. package/src/libs/crud-pro/utils/MultiKeyMap.ts +0 -72
  107. package/src/libs/crud-pro/utils/SqlFuncUtils.ts +0 -29
  108. package/src/libs/crud-pro/utils/TypeUtils.ts +0 -188
  109. package/src/libs/crud-pro/utils/ValidateUtils.ts +0 -165
  110. package/src/libs/crud-pro/utils/pool/MySQLUtils.ts +0 -20
  111. package/src/libs/crud-pro/utils/pool/PostgresUtils.ts +0 -22
  112. package/src/libs/crud-pro/utils/pool/SqlServerUtils.ts +0 -22
  113. package/src/libs/crud-pro/utils/sqlConvert/convertColumnName.ts +0 -26
  114. package/src/libs/crud-pro/utils/sqlConvert/convertMix.ts +0 -26
  115. package/src/libs/crud-pro/utils/sqlConvert/convertMsSql.ts +0 -11
  116. package/src/libs/crud-pro/utils/sqlConvert/convertPgSql.ts +0 -11
  117. package/src/libs/crud-pro/utils/sqlConvert/convertPgType.ts +0 -129
  118. package/src/libs/global-config/global-config.ts +0 -78
  119. package/src/libs/utils/common-dto.ts +0 -52
  120. package/src/libs/utils/crypto-utils.ts +0 -50
  121. package/src/libs/utils/errorToString.ts +0 -61
  122. package/src/libs/utils/fatcms-request.ts +0 -103
  123. package/src/libs/utils/functions.ts +0 -73
  124. package/src/libs/utils/ordernum-utils.ts +0 -14
  125. package/src/libs/utils/parseConfig.ts +0 -54
  126. package/src/libs/utils/parseCreateSql.ts +0 -91
  127. package/src/libs/utils/render-utils.ts +0 -184
  128. package/src/middleware/forbidden.middleware.ts +0 -52
  129. package/src/middleware/global.middleware.ts +0 -280
  130. package/src/middleware/permission.middleware.ts +0 -80
  131. package/src/middleware/tx.middleware.ts +0 -30
  132. package/src/models/AsyncTaskModel.ts +0 -82
  133. package/src/models/RedisKeys.ts +0 -13
  134. package/src/models/SystemEntities.ts +0 -115
  135. package/src/models/SystemPerm.ts +0 -105
  136. package/src/models/SystemTables.ts +0 -27
  137. package/src/models/bizmodels.ts +0 -120
  138. package/src/models/contextLogger.ts +0 -132
  139. package/src/models/devops.ts +0 -17
  140. package/src/models/userSession.ts +0 -216
  141. package/src/schedule/anonymousContext.ts +0 -73
  142. package/src/schedule/index.ts +0 -12
  143. package/src/schedule/runSchedule.ts +0 -82
  144. package/src/schedule/scheduleNames.ts +0 -21
  145. package/src/service/AuthService.ts +0 -272
  146. package/src/service/EnumInfoService.ts +0 -130
  147. package/src/service/FileCenterService.ts +0 -395
  148. package/src/service/SysConfigService.ts +0 -37
  149. package/src/service/UserAccountService.ts +0 -107
  150. package/src/service/UserSessionService.ts +0 -78
  151. package/src/service/VisitStatService.ts +0 -166
  152. package/src/service/WorkbenchService.ts +0 -165
  153. package/src/service/anyapi/AnyApiSandboxService.ts +0 -121
  154. package/src/service/anyapi/AnyApiService.ts +0 -186
  155. package/src/service/asyncTask/AsyncTaskRunnerService.ts +0 -266
  156. package/src/service/asyncTask/AsyncTaskService.ts +0 -21
  157. package/src/service/asyncTask/handler/ExcelInfoModel.ts +0 -11
  158. package/src/service/asyncTask/handler/ExportExcelAsyncTaskHandler.ts +0 -245
  159. package/src/service/asyncTask/handler/ExportExcelByInnerHttpHandler.ts +0 -147
  160. package/src/service/asyncTask/handler/ExportExcelByStdCrudHandler.ts +0 -138
  161. package/src/service/base/ApiBaseService.ts +0 -42
  162. package/src/service/base/ApiRateLimiter.ts +0 -59
  163. package/src/service/base/BaseService.ts +0 -100
  164. package/src/service/base/RedisCacheService.ts +0 -38
  165. package/src/service/crudstd/CrudStdActionService.ts +0 -27
  166. package/src/service/crudstd/CrudStdConstant.ts +0 -62
  167. package/src/service/crudstd/CrudStdRelationService.ts +0 -78
  168. package/src/service/crudstd/CrudStdService.ts +0 -283
  169. package/src/service/curd/CrudProQuick.ts +0 -131
  170. package/src/service/curd/CurdMixByAccountService.ts +0 -90
  171. package/src/service/curd/CurdMixByDictService.ts +0 -114
  172. package/src/service/curd/CurdMixByLinkToCustomService.ts +0 -219
  173. package/src/service/curd/CurdMixBySysConfigService.ts +0 -78
  174. package/src/service/curd/CurdMixByWorkbenchService.ts +0 -71
  175. package/src/service/curd/CurdMixService.ts +0 -97
  176. package/src/service/curd/CurdMixUtils.ts +0 -311
  177. package/src/service/curd/CurdProService.ts +0 -229
  178. package/src/service/curd/fixCfgModel.ts +0 -139
  179. package/src/service/proxyapi/ProxyApiLoadService.ts +0 -174
  180. package/src/service/proxyapi/ProxyApiService.ts +0 -262
  181. package/src/service/proxyapi/ProxyApiUtils.ts +0 -32
  182. package/src/service/proxyapi/RouteHandler.ts +0 -8
  183. package/src/service/proxyapi/RouteTrie.ts +0 -74
  184. package/src/service/proxyapi/WeightedRandom.ts +0 -37
  185. package/src/service/proxyapi/WeightedRoundRobin.ts +0 -44
  186. package/src/views/404_app.html +0 -31
  187. package/src/views/404_workbench.html +0 -34
  188. package/src/views/static/favicon.ico +0 -0
@@ -1,175 +0,0 @@
1
- import { Controller, Fields, Files, Inject, Post, Query } from '@midwayjs/core';
2
- import { Context } from '@midwayjs/koa';
3
- import { BaseApiController } from '../base/BaseApiController';
4
- import { checkPermission } from '../../middleware/permission.middleware';
5
- import { SystemFuncCode } from '../../models/SystemPerm';
6
- import { CommonResult } from '../../libs/utils/common-dto';
7
- import { AccessType, UploadCategoryType } from '../../models/bizmodels';
8
- import { BizException } from '../../models/devops';
9
- import { FileCenterService, toDownloadPaths } from '../../service/FileCenterService';
10
- import { SystemTables } from '../../models/SystemTables';
11
- import { KeysOfSimpleSQL } from '../../libs/crud-pro/models/keys';
12
- import { WorkbenchService } from '../../service/WorkbenchService';
13
- import { GLOBAL_STATIC_CONFIG } from '@/libs/global-config/global-config';
14
-
15
- interface IReleaseAssetsParams {
16
- cdnResources: any[];
17
- packageName: string;
18
- packageVersion: string;
19
- }
20
-
21
- function toAssetsSchema(fileList: any) {
22
- for (let i = 0; i < fileList.length; i++) {
23
- const fileListElement = fileList[i];
24
- fileListElement.settingKey = 'assets' + i;
25
- }
26
- return {
27
- schema: [
28
- {
29
- title: '资源配置',
30
- name: 'fileList',
31
- type: 'array',
32
- properties: {
33
- fileUrl: { label: '文件URL', component: 'Input', xProps: { hasClear: true }, width: 500 },
34
- fileType: {
35
- label: '文件类型',
36
- component: 'Select',
37
- enums: [
38
- { label: 'js', value: 'js' },
39
- { label: 'css', value: 'css' },
40
- ],
41
- xProps: {
42
- hasClear: true,
43
- },
44
- width: 500,
45
- },
46
- isModule: {
47
- label: 'isModule',
48
- component: 'Select',
49
- enums: [
50
- { label: 'true', value: true },
51
- { label: 'false', value: false },
52
- ],
53
- xProps: {
54
- hasClear: true,
55
- },
56
- width: 500,
57
- },
58
- },
59
- },
60
- ],
61
- data: {
62
- fileList: fileList,
63
- },
64
- };
65
- }
66
-
67
- @Controller('/ns/api/manage/deploy', { middleware: [checkPermission([SystemFuncCode.AppMangeRead, SystemFuncCode.WorkbenchMangeRead])] })
68
- export class DeployManageApi extends BaseApiController {
69
- @Inject()
70
- protected ctx: Context;
71
-
72
- @Inject()
73
- private fileCenterService: FileCenterService;
74
-
75
- @Inject()
76
- private workbenchService: WorkbenchService;
77
-
78
- /**
79
- * 资源文件上传
80
- * @param files
81
- * @param fields
82
- * @param queryData
83
- */
84
- @Post('/uploadAssets', { middleware: [checkPermission(SystemFuncCode.AppMangeWrite)] })
85
- async uploadAssets(@Files() files, @Fields() fields, @Query() queryData): Promise<CommonResult> {
86
- const accessType = AccessType.open;
87
- const referer = this.ctx.req.headers.referer;
88
-
89
- if (!fields.uploadPath) {
90
- throw new BizException('uploadPath不能为空');
91
- }
92
-
93
- const { fileKey, filename, storageUrl } = await this.fileCenterService.uploadFileToOSS(files, accessType, referer, {
94
- uploadCategoryType: UploadCategoryType.assets,
95
- uploadPath: fields.uploadPath,
96
- });
97
-
98
- const origin = this.ctx.request.origin;
99
-
100
- const downloadUrls = toDownloadPaths(origin, fileKey);
101
- const data = {
102
- fileKey,
103
- filename,
104
- storageUrl,
105
- ...downloadUrls,
106
- };
107
- return CommonResult.successRes(data);
108
- }
109
-
110
- /**
111
- * 资源文件让其生效
112
- */
113
- @Post('/releaseAssets', { middleware: [checkPermission(SystemFuncCode.AppMangeWrite)] })
114
- async releaseAssets(): Promise<CommonResult> {
115
- const params = this.ctx.request.body as IReleaseAssetsParams;
116
- if (!params.packageName) {
117
- throw new BizException('packageName参数不存在');
118
- }
119
-
120
- if (params.packageName.length < 5) {
121
- throw new BizException('packageName参数小于5');
122
- }
123
-
124
- const cdnResources = params.cdnResources;
125
- if (!Array.isArray(cdnResources) || cdnResources.length === 0) {
126
- throw new BizException('cdnResources参数不存在');
127
- }
128
-
129
- const { SystemDbName, SystemDbType } = GLOBAL_STATIC_CONFIG.getConfig();
130
-
131
- const workbench = await this.curdMixService.executeCrudByCfg(
132
- {
133
- data: {
134
- package_assets: JSON.stringify(toAssetsSchema(cdnResources)),
135
- },
136
- condition: {
137
- package_name: params.packageName,
138
- },
139
- },
140
- {
141
- sqlTable: SystemTables.sys_workbench,
142
- sqlDatabase: SystemDbName,
143
- sqlDbType: SystemDbType,
144
- sqlSimpleName: KeysOfSimpleSQL.SIMPLE_UPDATE,
145
- }
146
- );
147
-
148
- const app = await this.curdMixService.executeCrudByCfg(
149
- {
150
- data: {
151
- package_assets: JSON.stringify(toAssetsSchema(cdnResources)),
152
- },
153
- condition: {
154
- package_name: params.packageName,
155
- },
156
- },
157
- {
158
- sqlTable: SystemTables.sys_app,
159
- sqlDatabase: SystemDbName,
160
- sqlDbType: SystemDbType,
161
- sqlSimpleName: KeysOfSimpleSQL.SIMPLE_UPDATE,
162
- }
163
- );
164
-
165
- this.workbenchService.clearCache();
166
-
167
- const workbenchAffected = workbench.getResModelItem('affected') || {};
168
- const appAffected = app.getResModelItem('affected') || {};
169
-
170
- const result = CommonResult.successRes({ workbenchAffected, appAffected });
171
-
172
- result.message = `${cdnResources.length}个文件,更新到${workbenchAffected.affectedRows}个站点模版;更新到${appAffected.affectedRows}个应用模版,`;
173
- return result;
174
- }
175
- }
@@ -1,69 +0,0 @@
1
- import { Controller, Inject, Post } from '@midwayjs/core';
2
- import { Context } from '@midwayjs/koa';
3
- import { KeysOfSimpleSQL, KeysOfValidators } from '../../libs/crud-pro/models/keys';
4
- import { BaseApiController } from '../base/BaseApiController';
5
- import { checkPermission } from '../../middleware/permission.middleware';
6
- import { SystemFuncCode } from '../../models/SystemPerm';
7
- import { SystemTables } from '../../models/SystemTables';
8
- import { CTX_WORKBENCH_CODE } from '../../models/bizmodels';
9
-
10
- @Controller('/ns/api/manage/docLib', { middleware: [checkPermission(SystemFuncCode.DocMangeRead)] })
11
- export class DocLibManageApi extends BaseApiController {
12
- @Inject()
13
- ctx: Context;
14
-
15
- @Post('/getDocLibList')
16
- async getDocLibList() {
17
- return this.executeSysSimpleSQL(SystemTables.sys_doc_lib, KeysOfSimpleSQL.SIMPLE_QUERY_PAGE, {
18
- updateCfg: {
19
- 'condition.workbench_code': { contextAsString: CTX_WORKBENCH_CODE },
20
- },
21
- });
22
- }
23
-
24
- @Post('/getDocLibOne')
25
- async getDocLibOne() {
26
- return this.executeSysSimpleSQL(SystemTables.sys_doc_lib, KeysOfSimpleSQL.SIMPLE_QUERY_ONE, {
27
- updateCfg: {
28
- 'condition.workbench_code': { contextAsString: CTX_WORKBENCH_CODE },
29
- },
30
- });
31
- }
32
-
33
- @Post('/createDocLib', { middleware: [checkPermission(SystemFuncCode.DocMangeWrite)] })
34
- async createDocLib() {
35
- return this.executeSysSimpleSQL(SystemTables.sys_doc_lib, KeysOfSimpleSQL.SIMPLE_INSERT, {
36
- validateCfg: {
37
- 'data.title': [KeysOfValidators.REQUIRED, KeysOfValidators.STRING],
38
- },
39
- updateCfg: {
40
- 'data.workbench_code': { contextAsString: CTX_WORKBENCH_CODE },
41
- },
42
- });
43
- }
44
-
45
- @Post('/updateDocLib', { middleware: [checkPermission(SystemFuncCode.DocMangeWrite)] })
46
- async updateDocLib() {
47
- return this.executeSysSimpleSQL(SystemTables.sys_doc_lib, KeysOfSimpleSQL.SIMPLE_UPDATE, {
48
- validateCfg: {
49
- 'condition.id': [KeysOfValidators.REQUIRED, KeysOfValidators.NUMERIC],
50
- 'data.title': [KeysOfValidators.REQUIRED, KeysOfValidators.STRING],
51
- },
52
- updateCfg: {
53
- 'condition.workbench_code': { contextAsString: CTX_WORKBENCH_CODE },
54
- },
55
- });
56
- }
57
-
58
- @Post('/deleteDocLib', { middleware: [checkPermission(SystemFuncCode.DocMangeWrite)] })
59
- async deleteDocLib() {
60
- return this.executeSysSimpleSQL(SystemTables.sys_doc_lib, KeysOfSimpleSQL.SIMPLE_DELETE, {
61
- validateCfg: {
62
- 'condition.id': [KeysOfValidators.REQUIRED, KeysOfValidators.NUMERIC],
63
- },
64
- updateCfg: {
65
- 'condition.workbench_code': { contextAsString: CTX_WORKBENCH_CODE },
66
- },
67
- });
68
- }
69
- }
@@ -1,99 +0,0 @@
1
- import { Controller, Inject, Post } from '@midwayjs/core';
2
- import { Context } from '@midwayjs/koa';
3
- import { KeysOfSimpleSQL, KeysOfValidators } from '@/libs/crud-pro/models/keys';
4
- import { BaseApiController } from '../base/BaseApiController';
5
- import { checkPermission } from '@/middleware/permission.middleware';
6
- import { SystemFuncCode } from '@/models/SystemPerm';
7
- import { SystemTables } from '@/models/SystemTables';
8
- import { CTX_VISITOR_ID, CTX_WORKBENCH_CODE } from '@/models/bizmodels';
9
-
10
- const publishUpdateCfg = {
11
- 'data.last_publish_by': { contextAsString: CTX_VISITOR_ID },
12
- 'data.last_publish_at': { const: { $sqlFunc: 'NOW' } },
13
- };
14
-
15
- @Controller('/ns/api/manage/doc', { middleware: [checkPermission(SystemFuncCode.DocMangeRead)] })
16
- export class DocManageApi extends BaseApiController {
17
- @Inject()
18
- ctx: Context;
19
-
20
- @Post('/getDocList')
21
- async getDocList() {
22
- return this.executeSysSimpleSQL(SystemTables.sys_doc, KeysOfSimpleSQL.SIMPLE_QUERY_PAGE, {
23
- validateCfg: {
24
- // 'condition.doc_lib_id': [KeysOfValidators.REQUIRED, KeysOfValidators.INTEGER],
25
- },
26
- updateCfg: {
27
- 'condition.workbench_code': { contextAsString: CTX_WORKBENCH_CODE },
28
- },
29
- });
30
- }
31
-
32
- @Post('/getDocOne')
33
- async getDocOne() {
34
- return this.executeSysSimpleSQL('sys_doc', KeysOfSimpleSQL.SIMPLE_QUERY_ONE, {
35
- updateCfg: {
36
- 'condition.workbench_code': { contextAsString: CTX_WORKBENCH_CODE },
37
- },
38
- });
39
- }
40
-
41
- setReleaseData(): boolean {
42
- const body = this.ctx.request.body as any;
43
- const dataObj: any = body.data || {};
44
-
45
- dataObj.workbench_code = this.ctx.workbenchInfo.workbench_code;
46
-
47
- // 发布动作,需要前端给一个 is_publish_action 这个字段
48
- if (dataObj.is_publish_action === true) {
49
- dataObj.title_release = dataObj.title;
50
- dataObj.content_release = dataObj.content;
51
- dataObj.content_release_lake = dataObj.content_lake;
52
- dataObj.is_publish = 'Y';
53
- delete dataObj.is_publish_action;
54
- return true;
55
- }
56
- delete dataObj.is_publish_action;
57
- return false;
58
- }
59
-
60
- @Post('/createDoc', { middleware: [checkPermission(SystemFuncCode.DocMangeWrite)] })
61
- async createDoc() {
62
- const isPublish = this.setReleaseData();
63
- return this.executeSysSimpleSQL('sys_doc', KeysOfSimpleSQL.SIMPLE_INSERT, {
64
- validateCfg: {
65
- 'data.doc_lib_id': [KeysOfValidators.REQUIRED, KeysOfValidators.INTEGER],
66
- 'data.title': [KeysOfValidators.REQUIRED, KeysOfValidators.STRING],
67
- 'data.content': [KeysOfValidators.REQUIRED, KeysOfValidators.STRING],
68
- },
69
- updateCfg: isPublish ? publishUpdateCfg : {},
70
- });
71
- }
72
-
73
- @Post('/updateDoc', { middleware: [checkPermission(SystemFuncCode.DocMangeWrite)] })
74
- async updateDoc() {
75
- const isPublish = this.setReleaseData();
76
- const updateCfg = isPublish ? publishUpdateCfg : {};
77
- return this.executeSysSimpleSQL('sys_doc', KeysOfSimpleSQL.SIMPLE_UPDATE, {
78
- validateCfg: {
79
- 'condition.id': [KeysOfValidators.REQUIRED, KeysOfValidators.NUMERIC],
80
- },
81
- updateCfg: {
82
- ...updateCfg,
83
- 'condition.workbench_code': { contextAsString: CTX_WORKBENCH_CODE },
84
- },
85
- });
86
- }
87
-
88
- @Post('/deleteDoc', { middleware: [checkPermission(SystemFuncCode.DocMangeWrite)] })
89
- async deleteDoc() {
90
- return this.executeSysSimpleSQL('sys_doc', KeysOfSimpleSQL.SIMPLE_DELETE, {
91
- validateCfg: {
92
- 'condition.id': [KeysOfValidators.REQUIRED, KeysOfValidators.NUMERIC],
93
- },
94
- updateCfg: {
95
- 'condition.workbench_code': { contextAsString: CTX_WORKBENCH_CODE },
96
- },
97
- });
98
- }
99
- }
@@ -1,45 +0,0 @@
1
- import { Controller, Inject, Post } from '@midwayjs/core';
2
- import { Context } from '@midwayjs/koa';
3
- import { KeysOfSimpleSQL, KeysOfValidators } from '../../libs/crud-pro/models/keys';
4
- import { BaseApiController } from '../base/BaseApiController';
5
- import { FileCenterService } from '../../service/FileCenterService';
6
- import { checkPermission } from '../../middleware/permission.middleware';
7
- import { SystemFuncCode } from '../../models/SystemPerm';
8
- import { SystemTables } from '../../models/SystemTables';
9
-
10
- @Controller('/ns/api/manage/file', { middleware: [checkPermission(SystemFuncCode.FileMangeRead)] })
11
- export class FileMangeApi extends BaseApiController {
12
- @Inject()
13
- ctx: Context;
14
-
15
- @Inject()
16
- private fileCenterService: FileCenterService;
17
-
18
- @Post('/getFileList')
19
- async getFileList() {
20
- return this.executeSysSimpleSQL(SystemTables.sys_file, KeysOfSimpleSQL.SIMPLE_QUERY_PAGE);
21
- }
22
-
23
- @Post('/getFileOne')
24
- async getFileOne() {
25
- return this.executeSysSimpleSQL(SystemTables.sys_file, KeysOfSimpleSQL.SIMPLE_QUERY_ONE);
26
- }
27
-
28
- /**
29
- * 更新文件属性
30
- */
31
- @Post('/updateFile', { middleware: [checkPermission(SystemFuncCode.FileMangeWrite)] })
32
- async updateFile() {
33
- return this.executeSysSimpleSQL(SystemTables.sys_file, KeysOfSimpleSQL.SIMPLE_UPDATE, {
34
- validateCfg: {
35
- 'condition.id': [KeysOfValidators.REQUIRED, KeysOfValidators.NUMERIC],
36
- },
37
- });
38
- }
39
-
40
- @Post('/deleteFile', { middleware: [checkPermission(SystemFuncCode.FileMangeWrite)] })
41
- async deleteFile() {
42
- const { fileKey } = this.ctx.request.body as any;
43
- return this.fileCenterService.deleteFile(fileKey);
44
- }
45
- }
@@ -1,52 +0,0 @@
1
- import { Controller, Inject, Post } from '@midwayjs/core';
2
- import { Context } from '@midwayjs/koa';
3
- import { KeysOfSimpleSQL, KeysOfValidators } from '../../libs/crud-pro/models/keys';
4
- import { BaseApiController } from '../base/BaseApiController';
5
-
6
- const tableName = 'sys_lowcode_tpl';
7
-
8
- /**
9
- * 低代码模版管理
10
- */
11
- @Controller('/ns/api/manage/LowCodeTplManageApi')
12
- export class LowCodeTplManageApi extends BaseApiController {
13
- @Inject()
14
- ctx: Context;
15
-
16
- @Post('/getLowCodeTplList')
17
- async getLowCodeTplList() {
18
- return this.executeSysSimpleSQL(tableName, KeysOfSimpleSQL.SIMPLE_QUERY_PAGE);
19
- }
20
-
21
- @Post('/getLowCodeTplOne')
22
- async getLowCodeTplOne() {
23
- return this.executeSysSimpleSQL(tableName, KeysOfSimpleSQL.SIMPLE_QUERY_ONE);
24
- }
25
-
26
- @Post('/createLowCodeTpl')
27
- async createLowCodeTpl() {
28
- return this.executeSysSimpleSQL(tableName, KeysOfSimpleSQL.SIMPLE_INSERT, {
29
- validateCfg: {
30
- 'data.tpl_title': [KeysOfValidators.REQUIRED, KeysOfValidators.STRING],
31
- },
32
- });
33
- }
34
-
35
- @Post('/updateLowCodeTpl')
36
- async updateLowCodeTpl() {
37
- return this.executeSysSimpleSQL(tableName, KeysOfSimpleSQL.SIMPLE_UPDATE, {
38
- validateCfg: {
39
- 'condition.id': [KeysOfValidators.REQUIRED, KeysOfValidators.NUMERIC],
40
- },
41
- });
42
- }
43
-
44
- @Post('/deleteLowCodeTpl')
45
- async deleteLowCodeTpl() {
46
- return this.executeSysSimpleSQL(tableName, KeysOfSimpleSQL.SIMPLE_DELETE, {
47
- validateCfg: {
48
- 'condition.id': [KeysOfValidators.REQUIRED, KeysOfValidators.NUMERIC],
49
- },
50
- });
51
- }
52
- }
@@ -1,58 +0,0 @@
1
- import { Controller, Inject, Post } from '@midwayjs/core';
2
- import { Context } from '@midwayjs/koa';
3
- import { KeysOfSimpleSQL, KeysOfValidators } from '../../libs/crud-pro/models/keys';
4
- import { BaseApiController } from '../base/BaseApiController';
5
- import { checkPermission } from '../../middleware/permission.middleware';
6
- import { SystemFuncCode } from '../../models/SystemPerm';
7
- import { SystemTables } from '../../models/SystemTables';
8
-
9
- @Controller('/ns/api/manage/menu', { middleware: [checkPermission(SystemFuncCode.MenuMangeRead)] })
10
- export class MenuManageApi extends BaseApiController {
11
- @Inject()
12
- ctx: Context;
13
-
14
- @Post('/getMenuList')
15
- async getMenuList() {
16
- return this.executeSysSimpleSQL(SystemTables.sys_menus, KeysOfSimpleSQL.SIMPLE_QUERY_PAGE, {
17
- updateCfg: {},
18
- });
19
- }
20
-
21
- @Post('/getMenuOne')
22
- async getMenuOne() {
23
- return this.executeSysSimpleSQL(SystemTables.sys_menus, KeysOfSimpleSQL.SIMPLE_QUERY_ONE, {
24
- updateCfg: {},
25
- });
26
- }
27
-
28
- @Post('/createMenu', { middleware: [checkPermission(SystemFuncCode.MenuMangeWrite)] })
29
- async createMenu() {
30
- return this.executeSysSimpleSQL(SystemTables.sys_menus, KeysOfSimpleSQL.SIMPLE_INSERT, {
31
- validateCfg: {
32
- 'data.menu_code': [KeysOfValidators.REQUIRED, KeysOfValidators.STRING],
33
- 'data.menu_title': [KeysOfValidators.REQUIRED, KeysOfValidators.STRING],
34
- },
35
- updateCfg: {},
36
- });
37
- }
38
-
39
- @Post('/updateMenu', { middleware: [checkPermission(SystemFuncCode.MenuMangeWrite)] })
40
- async updateMenu() {
41
- return this.executeSysSimpleSQL(SystemTables.sys_menus, KeysOfSimpleSQL.SIMPLE_UPDATE, {
42
- validateCfg: {
43
- 'condition.id': [KeysOfValidators.REQUIRED, KeysOfValidators.NUMERIC],
44
- },
45
- updateCfg: {},
46
- });
47
- }
48
-
49
- @Post('/deleteMenu', { middleware: [checkPermission(SystemFuncCode.MenuMangeWrite)] })
50
- async deleteMenu() {
51
- return this.executeSysSimpleSQL(SystemTables.sys_menus, KeysOfSimpleSQL.SIMPLE_DELETE, {
52
- validateCfg: {
53
- 'condition.id': [KeysOfValidators.REQUIRED, KeysOfValidators.NUMERIC],
54
- },
55
- updateCfg: {},
56
- });
57
- }
58
- }
@@ -1,52 +0,0 @@
1
- import { Controller, Inject, Post } from '@midwayjs/core';
2
- import { Context } from '@midwayjs/koa';
3
- import { KeysOfSimpleSQL, KeysOfValidators } from '../../libs/crud-pro/models/keys';
4
- import { BaseApiController } from '../base/BaseApiController';
5
- import { checkPermission } from '../../middleware/permission.middleware';
6
- import { SystemFuncCode } from '../../models/SystemPerm';
7
- import { SystemTables } from '../../models/SystemTables';
8
-
9
- @Controller('/ns/api/manage/proxyapi', { middleware: [checkPermission(SystemFuncCode.ProxyApiManageRead)] })
10
- export class ProxyApiMangeApi extends BaseApiController {
11
- @Inject()
12
- protected ctx: Context;
13
-
14
- @Post('/getProxyApiList')
15
- async getProxyApiList() {
16
- return this.executeSysSimpleSQL(SystemTables.sys_proxyapi, KeysOfSimpleSQL.SIMPLE_QUERY_PAGE);
17
- }
18
-
19
- @Post('/getProxyApiOne')
20
- async getProxyApiOne() {
21
- return this.executeSysSimpleSQL(SystemTables.sys_proxyapi, KeysOfSimpleSQL.SIMPLE_QUERY_ONE);
22
- }
23
-
24
- @Post('/createProxyApi', { middleware: [checkPermission(SystemFuncCode.ProxyApiManageWrite)] })
25
- async createProxyApi() {
26
- return this.executeSysSimpleSQL(SystemTables.sys_proxyapi, KeysOfSimpleSQL.SIMPLE_INSERT, {
27
- validateCfg: {
28
- 'data.proxy_name': [KeysOfValidators.REQUIRED, KeysOfValidators.STRING],
29
- 'data.path_prefix': [KeysOfValidators.REQUIRED, KeysOfValidators.STRING],
30
- 'data.upstream_code': [KeysOfValidators.REQUIRED, KeysOfValidators.STRING],
31
- },
32
- });
33
- }
34
-
35
- @Post('/updateProxyApi', { middleware: [checkPermission(SystemFuncCode.ProxyApiManageWrite)] })
36
- async updateProxyApi() {
37
- return this.executeSysSimpleSQL(SystemTables.sys_proxyapi, KeysOfSimpleSQL.SIMPLE_UPDATE, {
38
- validateCfg: {
39
- 'condition.id': [KeysOfValidators.REQUIRED, KeysOfValidators.NUMERIC],
40
- },
41
- });
42
- }
43
-
44
- @Post('/deleteProxyApi', { middleware: [checkPermission(SystemFuncCode.ProxyApiManageWrite)] })
45
- async deleteProxyApi() {
46
- return this.executeSysSimpleSQL(SystemTables.sys_proxyapi, KeysOfSimpleSQL.SIMPLE_DELETE, {
47
- validateCfg: {
48
- 'condition.id': [KeysOfValidators.REQUIRED, KeysOfValidators.NUMERIC],
49
- },
50
- });
51
- }
52
- }
@@ -1,139 +0,0 @@
1
- import { Controller, Inject, Post, Get } from '@midwayjs/core';
2
- import { Context } from '@midwayjs/koa';
3
- import { VisitStatService } from '../../service/VisitStatService';
4
- import { KeysOfSimpleSQL } from '../../libs/crud-pro/models/keys';
5
- import { BaseApiController } from '../base/BaseApiController';
6
- import { checkRole } from '../../middleware/permission.middleware';
7
- import { SystemFuncCodeNameMap, SystemRoleCode, SystemRoleCodeNameMap } from '../../models/SystemPerm';
8
- import { SystemTables } from '../../models/SystemTables';
9
- import { CommonResult } from '../../libs/utils/common-dto';
10
- import { GLOBAL_STATIC_CONFIG } from '@/libs/global-config/global-config';
11
-
12
- @Controller('/ns/api/manage/superAdmin', { middleware: [checkRole(SystemRoleCode.SuperAdmin)] })
13
- export class SuperAdminManageApi extends BaseApiController {
14
- @Inject()
15
- protected ctx: Context;
16
-
17
- @Inject()
18
- protected visitStatService: VisitStatService;
19
-
20
- /**
21
- * 预设系统内置功能点数据
22
- */
23
- @Post('/presetsFuncCode')
24
- async presetsFuncCode() {
25
- const { SystemDbName, SystemDbType } = GLOBAL_STATIC_CONFIG.getConfig();
26
-
27
- const funcCodeList = Object.keys(SystemFuncCodeNameMap);
28
- for (let i = 0; i < funcCodeList.length; i++) {
29
- const funcCode = funcCodeList[i];
30
- const funcName = SystemFuncCodeNameMap[funcCode];
31
- await this.curdMixService.executeCrudByCfg(
32
- {
33
- data: {
34
- func_code: funcCode,
35
- func_name: funcName,
36
- is_presets: 1,
37
- },
38
- },
39
- {
40
- sqlTable: SystemTables.sys_perm_func,
41
- sqlSimpleName: KeysOfSimpleSQL.SIMPLE_INSERT,
42
- sqlDatabase: SystemDbName,
43
- sqlDbType: SystemDbType,
44
- }
45
- );
46
- }
47
-
48
- return CommonResult.successRes();
49
- }
50
-
51
- /**
52
- * 预设系统内置角色数据
53
- */
54
- @Post('/presetsRoleCode')
55
- async presetsRoleCode() {
56
- const { SystemDbName, SystemDbType } = GLOBAL_STATIC_CONFIG.getConfig();
57
-
58
- const roleCodeList = [SystemRoleCode.DevOpsViewer, SystemRoleCode.DevOpsWriter];
59
-
60
- for (let i = 0; i < roleCodeList.length; i++) {
61
- const roleCode = roleCodeList[i];
62
- const roleName = SystemRoleCodeNameMap[roleCode];
63
- await this.curdMixService.executeCrudByCfg(
64
- {
65
- data: {
66
- role_code: roleCode,
67
- role_name: roleName,
68
- is_presets: 1,
69
- },
70
- },
71
- {
72
- sqlTable: SystemTables.sys_perm_role,
73
- sqlSimpleName: KeysOfSimpleSQL.SIMPLE_INSERT,
74
- sqlDatabase: SystemDbName,
75
- sqlDbType: SystemDbType,
76
- }
77
- );
78
- }
79
-
80
- return CommonResult.successRes();
81
- }
82
-
83
- /**
84
- * 预设系统内置:角色和功能点的关系
85
- */
86
- @Post('/presetsRoleFuncList')
87
- async presetsRoleFuncList() {
88
- const { SystemDbName, SystemDbType } = GLOBAL_STATIC_CONFIG.getConfig();
89
-
90
- const funcCodeList = Object.keys(SystemFuncCodeNameMap);
91
- for (let i = 0; i < funcCodeList.length; i++) {
92
- const funcCode = funcCodeList[i];
93
- await this.curdMixService.executeCrudByCfg(
94
- {
95
- data: {
96
- func_code: funcCode,
97
- role_code: SystemRoleCode.DevOpsWriter,
98
- is_presets: 1,
99
- },
100
- },
101
- {
102
- sqlTable: SystemTables.sys_perm_role_func,
103
- sqlSimpleName: KeysOfSimpleSQL.SIMPLE_INSERT,
104
- sqlDatabase: SystemDbName,
105
- sqlDbType: SystemDbType,
106
- }
107
- );
108
- }
109
- for (let i = 0; i < funcCodeList.length; i++) {
110
- const funcCode = funcCodeList[i];
111
- if (!funcCode.endsWith('Write')) {
112
- await this.curdMixService.executeCrudByCfg(
113
- {
114
- data: {
115
- func_code: funcCode,
116
- role_code: SystemRoleCode.DevOpsViewer,
117
- is_presets: 1,
118
- },
119
- },
120
- {
121
- sqlTable: SystemTables.sys_perm_role_func,
122
- sqlSimpleName: KeysOfSimpleSQL.SIMPLE_INSERT,
123
- sqlDatabase: SystemDbName,
124
- sqlDbType: SystemDbType,
125
- }
126
- );
127
- }
128
- }
129
- return CommonResult.successRes();
130
- }
131
-
132
- /**
133
- * 将每天的访问数据,更新到数据库中
134
- */
135
- @Get('/flushVisitStatToDB')
136
- async flushVisitStatToDB() {
137
- return this.visitStatService.flushVisitStatToDB();
138
- }
139
- }