midway-fatcms 0.0.1-beta.5 → 0.0.1-beta.50

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 (330) hide show
  1. package/.eslintrc.json +14 -0
  2. package/.prettierrc.js +4 -0
  3. package/README.md +7 -0
  4. package/dist/config/config.default.js +25 -13
  5. package/dist/config/seed/aeskey.txt +1 -1
  6. package/dist/configuration.d.ts +1 -0
  7. package/dist/configuration.js +35 -11
  8. package/dist/controller/base/BaseApiController.d.ts +7 -1
  9. package/dist/controller/base/BaseApiController.js +32 -6
  10. package/dist/controller/gateway/AsyncTaskController.d.ts +20 -0
  11. package/dist/controller/gateway/AsyncTaskController.js +181 -0
  12. package/dist/controller/gateway/CrudMtdGatewayController.d.ts +3 -3
  13. package/dist/controller/gateway/CrudMtdGatewayController.js +9 -6
  14. package/dist/controller/gateway/CrudStdGatewayController.js +8 -16
  15. package/dist/controller/gateway/DocGatewayController.js +14 -9
  16. package/dist/controller/gateway/FileController.d.ts +3 -2
  17. package/dist/controller/gateway/PublicApiController.js +4 -6
  18. package/dist/controller/gateway/StaticController.d.ts +0 -1
  19. package/dist/controller/gateway/StaticController.js +40 -39
  20. package/dist/controller/helpers.controller.d.ts +1 -1
  21. package/dist/controller/home.controller.js +4 -3
  22. package/dist/controller/manage/AnyApiMangeApi.js +2 -2
  23. package/dist/controller/manage/AppLogMangeApi.js +2 -2
  24. package/dist/controller/manage/AppMangeApi.js +2 -2
  25. package/dist/controller/manage/AppPageMangeApi.js +2 -2
  26. package/dist/controller/manage/AppSchemaHistoryApi.js +2 -2
  27. package/dist/controller/manage/CrudMethodsMangeApi.js +2 -2
  28. package/dist/controller/manage/CrudStandardDesignApi.d.ts +9 -1
  29. package/dist/controller/manage/CrudStandardDesignApi.js +135 -79
  30. package/dist/controller/manage/DataDictManageApi.d.ts +1 -1
  31. package/dist/controller/manage/DataDictManageApi.js +1 -1
  32. package/dist/controller/manage/DeployManageApi.d.ts +1 -1
  33. package/dist/controller/manage/DeployManageApi.js +38 -34
  34. package/dist/controller/manage/DocLibManageApi.js +2 -2
  35. package/dist/controller/manage/DocManageApi.js +2 -2
  36. package/dist/controller/manage/FileManageApi.js +1 -1
  37. package/dist/controller/manage/LowCodeTplManageApi.js +2 -2
  38. package/dist/controller/manage/MenuManageApi.js +2 -2
  39. package/dist/controller/manage/ProxyApiMangeApi.js +2 -2
  40. package/dist/controller/manage/SuperAdminManageApi.d.ts +2 -2
  41. package/dist/controller/manage/SuperAdminManageApi.js +12 -8
  42. package/dist/controller/manage/SysConfigMangeApi.d.ts +1 -1
  43. package/dist/controller/manage/SysConfigMangeApi.js +8 -6
  44. package/dist/controller/manage/SystemInfoManageApi.d.ts +1 -1
  45. package/dist/controller/manage/SystemInfoManageApi.js +7 -1
  46. package/dist/controller/manage/UserAccountManageApi.d.ts +1 -1
  47. package/dist/controller/manage/UserAccountManageApi.js +9 -4
  48. package/dist/controller/manage/WorkbenchMangeApi.js +3 -3
  49. package/dist/controller/myinfo/AuthController.d.ts +0 -4
  50. package/dist/controller/myinfo/AuthController.js +1 -54
  51. package/dist/controller/render/AppRenderController.js +12 -5
  52. package/dist/controller/test.controller.d.ts +1 -1
  53. package/dist/controller/test.controller.js +5 -5
  54. package/dist/index.d.ts +10 -0
  55. package/dist/index.js +10 -0
  56. package/dist/libs/crud-pro/CrudPro.d.ts +1 -0
  57. package/dist/libs/crud-pro/CrudPro.js +5 -0
  58. package/dist/libs/crud-pro/defaultConfigs.js +2 -0
  59. package/dist/libs/crud-pro/interfaces.d.ts +7 -1
  60. package/dist/libs/crud-pro/models/ExecuteContext.d.ts +12 -5
  61. package/dist/libs/crud-pro/models/ExecuteContextFunc.d.ts +8 -1
  62. package/dist/libs/crud-pro/models/ExecuteContextFunc.js +8 -0
  63. package/dist/libs/crud-pro/models/RequestCfgModel.d.ts +1 -1
  64. package/dist/libs/crud-pro/models/ResModel.d.ts +16 -0
  65. package/dist/libs/crud-pro/models/ResModel.js +2 -0
  66. package/dist/libs/crud-pro/models/SqlCfgModel.d.ts +1 -1
  67. package/dist/libs/crud-pro/models/Transaction.d.ts +1 -0
  68. package/dist/libs/crud-pro/models/Transaction.js +7 -0
  69. package/dist/libs/crud-pro/models/TransactionSqlServer.js +1 -1
  70. package/dist/libs/crud-pro/services/CrudProCachedCfgService.d.ts +1 -0
  71. package/dist/libs/crud-pro/services/CrudProCachedCfgService.js +27 -15
  72. package/dist/libs/crud-pro/services/CrudProExecuteSqlService.js +17 -19
  73. package/dist/libs/crud-pro/services/CrudProGenSqlCondition.d.ts +1 -1
  74. package/dist/libs/crud-pro/services/CrudProGenSqlCondition.js +10 -12
  75. package/dist/libs/crud-pro/services/CrudProGenSqlService.js +14 -23
  76. package/dist/libs/crud-pro/services/CrudProOriginToExecuteSql.js +7 -6
  77. package/dist/libs/crud-pro/services/CrudProServiceBase.d.ts +2 -6
  78. package/dist/libs/crud-pro/services/CrudProServiceBase.js +15 -3
  79. package/dist/libs/crud-pro/services/CrudProTableMetaService.d.ts +1 -0
  80. package/dist/libs/crud-pro/services/CrudProTableMetaService.js +32 -7
  81. package/dist/libs/crud-pro/sql.txt +120 -120
  82. package/dist/libs/crud-pro/utils/DatabaseName.js +24 -3
  83. package/dist/libs/crud-pro/utils/MixinUtils.js +1 -1
  84. package/dist/libs/crud-pro/utils/ValidateUtils.js +1 -1
  85. package/dist/libs/crud-pro/utils/sqlConvert/convertColumnName.js +2 -2
  86. package/dist/libs/crud-pro/utils/sqlConvert/convertMix.d.ts +3 -0
  87. package/dist/libs/crud-pro/utils/sqlConvert/convertMix.js +22 -0
  88. package/dist/libs/global-config/global-config.d.ts +60 -0
  89. package/dist/libs/global-config/global-config.js +35 -0
  90. package/dist/libs/utils/base64.d.ts +9 -0
  91. package/dist/libs/utils/base64.js +42 -0
  92. package/dist/libs/utils/errorToString.d.ts +2 -0
  93. package/dist/libs/utils/errorToString.js +57 -0
  94. package/dist/libs/utils/fatcms-request.js +2 -2
  95. package/dist/libs/utils/functions.d.ts +2 -1
  96. package/dist/libs/utils/functions.js +12 -3
  97. package/dist/libs/utils/parseCreateSql.d.ts +6 -1
  98. package/dist/libs/utils/parseCreateSql.js +2 -1
  99. package/dist/middleware/forbidden.middleware.js +6 -22
  100. package/dist/middleware/global.middleware.js +30 -10
  101. package/dist/middleware/permission.middleware.js +1 -1
  102. package/dist/middleware/rediscache.middleware.d.ts +3 -0
  103. package/dist/middleware/rediscache.middleware.js +77 -0
  104. package/dist/middleware/redislock.middleware.d.ts +7 -0
  105. package/dist/middleware/redislock.middleware.js +72 -0
  106. package/dist/models/AsyncTaskModel.d.ts +74 -0
  107. package/dist/models/AsyncTaskModel.js +31 -0
  108. package/dist/models/RedisKeys.d.ts +15 -0
  109. package/dist/models/RedisKeys.js +18 -0
  110. package/dist/models/SystemEntities.d.ts +8 -1
  111. package/dist/models/SystemEntities.js +7 -0
  112. package/dist/models/SystemTables.d.ts +1 -3
  113. package/dist/models/SystemTables.js +2 -4
  114. package/dist/models/bizmodels.d.ts +30 -0
  115. package/dist/models/bizmodels.js +6 -1
  116. package/dist/models/userSession.d.ts +1 -0
  117. package/dist/schedule/anonymousContext.d.ts +14 -0
  118. package/dist/schedule/anonymousContext.js +59 -0
  119. package/dist/schedule/index.d.ts +4 -3
  120. package/dist/schedule/index.js +8 -67
  121. package/dist/schedule/runSchedule.d.ts +12 -0
  122. package/dist/schedule/runSchedule.js +68 -0
  123. package/dist/schedule/scheduleNames.d.ts +13 -0
  124. package/dist/schedule/scheduleNames.js +17 -0
  125. package/dist/service/AuthService.js +8 -5
  126. package/dist/service/EnumInfoService.js +9 -5
  127. package/dist/service/FileCenterService.js +13 -9
  128. package/dist/service/SysConfigService.d.ts +1 -1
  129. package/dist/service/SysConfigService.js +4 -2
  130. package/dist/service/UserAccountService.js +10 -6
  131. package/dist/service/UserSessionService.d.ts +22 -0
  132. package/dist/service/UserSessionService.js +74 -2
  133. package/dist/service/VisitStatService.d.ts +1 -1
  134. package/dist/service/VisitStatService.js +20 -27
  135. package/dist/service/WorkbenchService.d.ts +33 -0
  136. package/dist/service/WorkbenchService.js +70 -12
  137. package/dist/service/anyapi/AnyApiSandboxService.js +12 -12
  138. package/dist/service/anyapi/AnyApiService.js +4 -2
  139. package/dist/service/asyncTask/AsyncTaskRunnerService.d.ts +50 -0
  140. package/dist/service/asyncTask/AsyncTaskRunnerService.js +287 -0
  141. package/dist/service/asyncTask/AsyncTaskService.d.ts +7 -0
  142. package/dist/service/asyncTask/AsyncTaskService.js +34 -0
  143. package/dist/service/asyncTask/handler/ExcelInfoModel.d.ts +10 -0
  144. package/dist/service/asyncTask/handler/ExcelInfoModel.js +2 -0
  145. package/dist/service/asyncTask/handler/ExportExcelAsyncTaskHandler.d.ts +7 -0
  146. package/dist/service/asyncTask/handler/ExportExcelAsyncTaskHandler.js +216 -0
  147. package/dist/service/asyncTask/handler/ExportExcelByInnerHttpHandler.d.ts +36 -0
  148. package/dist/service/asyncTask/handler/ExportExcelByInnerHttpHandler.js +141 -0
  149. package/dist/service/asyncTask/handler/ExportExcelByStdCrudHandler.d.ts +46 -0
  150. package/dist/service/asyncTask/handler/ExportExcelByStdCrudHandler.js +135 -0
  151. package/dist/service/base/BaseService.d.ts +12 -0
  152. package/dist/service/base/BaseService.js +22 -0
  153. package/dist/service/base/RedisCacheService.d.ts +7 -0
  154. package/dist/service/base/RedisCacheService.js +7 -0
  155. package/dist/service/crudstd/CrudStdRelationService.js +63 -36
  156. package/dist/service/crudstd/CrudStdService.d.ts +21 -5
  157. package/dist/service/crudstd/CrudStdService.js +135 -21
  158. package/dist/service/curd/CrudProQuick.d.ts +44 -0
  159. package/dist/service/curd/CrudProQuick.js +147 -0
  160. package/dist/service/curd/CurdMixByAccountService.d.ts +4 -4
  161. package/dist/service/curd/CurdMixByAccountService.js +11 -6
  162. package/dist/service/curd/CurdMixByDictService.d.ts +4 -4
  163. package/dist/service/curd/CurdMixByDictService.js +10 -7
  164. package/dist/service/curd/CurdMixByLinkToCustomService.d.ts +13 -4
  165. package/dist/service/curd/CurdMixByLinkToCustomService.js +73 -24
  166. package/dist/service/curd/CurdMixBySysConfigService.d.ts +3 -3
  167. package/dist/service/curd/CurdMixBySysConfigService.js +4 -2
  168. package/dist/service/curd/CurdMixByWorkbenchService.d.ts +3 -3
  169. package/dist/service/curd/CurdMixByWorkbenchService.js +4 -2
  170. package/dist/service/curd/CurdMixService.d.ts +16 -5
  171. package/dist/service/curd/CurdMixService.js +26 -2
  172. package/dist/service/curd/CurdMixUtils.d.ts +27 -4
  173. package/dist/service/curd/CurdMixUtils.js +117 -41
  174. package/dist/service/curd/CurdProService.d.ts +3 -10
  175. package/dist/service/curd/CurdProService.js +38 -148
  176. package/dist/service/curd/fixCfgModel.d.ts +3 -0
  177. package/dist/service/curd/fixCfgModel.js +103 -0
  178. package/dist/service/proxyapi/ProxyApiLoadService.js +7 -4
  179. package/dist/service/proxyapi/ProxyApiService.d.ts +1 -0
  180. package/dist/service/proxyapi/ProxyApiService.js +43 -9
  181. package/dist/views/404_app.html +31 -31
  182. package/dist/views/404_workbench.html +34 -34
  183. package/package.json +28 -24
  184. package/tsconfig.json +32 -0
  185. package/src/config/config.default.ts +0 -172
  186. package/src/config/seed/aeskey.txt +0 -1
  187. package/src/config/utils.ts +0 -23
  188. package/src/configuration.ts +0 -83
  189. package/src/controller/base/BaseApiController.ts +0 -145
  190. package/src/controller/gateway/AnyApiGatewayController.ts +0 -33
  191. package/src/controller/gateway/CrudMtdGatewayController.ts +0 -107
  192. package/src/controller/gateway/CrudStdGatewayController.ts +0 -101
  193. package/src/controller/gateway/DocGatewayController.ts +0 -165
  194. package/src/controller/gateway/FileController.ts +0 -110
  195. package/src/controller/gateway/ProxyApiGatewayController.ts +0 -47
  196. package/src/controller/gateway/PublicApiController.ts +0 -145
  197. package/src/controller/gateway/StaticController.ts +0 -328
  198. package/src/controller/helpers.controller.ts +0 -161
  199. package/src/controller/home.controller.ts +0 -71
  200. package/src/controller/manage/AnyApiMangeApi.ts +0 -66
  201. package/src/controller/manage/AppLogMangeApi.ts +0 -53
  202. package/src/controller/manage/AppMangeApi.ts +0 -53
  203. package/src/controller/manage/AppPageMangeApi.ts +0 -52
  204. package/src/controller/manage/AppSchemaHistoryApi.ts +0 -49
  205. package/src/controller/manage/CrudMethodsMangeApi.ts +0 -49
  206. package/src/controller/manage/CrudStandardDesignApi.ts +0 -353
  207. package/src/controller/manage/DataDictManageApi.ts +0 -78
  208. package/src/controller/manage/DeployManageApi.ts +0 -179
  209. package/src/controller/manage/DocLibManageApi.ts +0 -69
  210. package/src/controller/manage/DocManageApi.ts +0 -99
  211. package/src/controller/manage/FileManageApi.ts +0 -45
  212. package/src/controller/manage/LowCodeTplManageApi.ts +0 -52
  213. package/src/controller/manage/MenuManageApi.ts +0 -63
  214. package/src/controller/manage/ProxyApiMangeApi.ts +0 -52
  215. package/src/controller/manage/SuperAdminManageApi.ts +0 -138
  216. package/src/controller/manage/SysConfigMangeApi.ts +0 -95
  217. package/src/controller/manage/SystemInfoManageApi.ts +0 -48
  218. package/src/controller/manage/UserAccountManageApi.ts +0 -88
  219. package/src/controller/manage/WorkbenchMangeApi.ts +0 -72
  220. package/src/controller/myinfo/AuthController.ts +0 -174
  221. package/src/controller/myinfo/MyInfoController.ts +0 -32
  222. package/src/controller/render/AppRenderController.ts +0 -76
  223. package/src/controller/test.controller.ts +0 -37
  224. package/src/filter/default.filter.ts +0 -13
  225. package/src/filter/notfound.filter.ts +0 -10
  226. package/src/index.ts +0 -99
  227. package/src/interface.ts +0 -31
  228. package/src/libs/crud-pro/CrudPro.ts +0 -158
  229. package/src/libs/crud-pro/defaultConfigs.ts +0 -13
  230. package/src/libs/crud-pro/exceptions.ts +0 -124
  231. package/src/libs/crud-pro/interfaces.ts +0 -183
  232. package/src/libs/crud-pro/models/ExecuteContext.ts +0 -111
  233. package/src/libs/crud-pro/models/ExecuteContextFunc.ts +0 -86
  234. package/src/libs/crud-pro/models/FuncContext.ts +0 -21
  235. package/src/libs/crud-pro/models/RequestCfgModel.ts +0 -141
  236. package/src/libs/crud-pro/models/RequestModel.ts +0 -141
  237. package/src/libs/crud-pro/models/ServiceHub.ts +0 -32
  238. package/src/libs/crud-pro/models/SqlCfgModel.ts +0 -52
  239. package/src/libs/crud-pro/models/SqlSegArg.ts +0 -13
  240. package/src/libs/crud-pro/models/Transaction.ts +0 -74
  241. package/src/libs/crud-pro/models/TransactionMySQL.ts +0 -79
  242. package/src/libs/crud-pro/models/TransactionPostgres.ts +0 -91
  243. package/src/libs/crud-pro/models/TransactionSqlServer.ts +0 -107
  244. package/src/libs/crud-pro/models/keys.ts +0 -159
  245. package/src/libs/crud-pro/services/CrudProCachedCfgService.ts +0 -75
  246. package/src/libs/crud-pro/services/CrudProExecuteFuncService.ts +0 -128
  247. package/src/libs/crud-pro/services/CrudProExecuteSqlService.ts +0 -279
  248. package/src/libs/crud-pro/services/CrudProFieldUpdateService.ts +0 -60
  249. package/src/libs/crud-pro/services/CrudProFieldValidateService.ts +0 -180
  250. package/src/libs/crud-pro/services/CrudProGenSqlCondition.ts +0 -373
  251. package/src/libs/crud-pro/services/CrudProGenSqlService.ts +0 -202
  252. package/src/libs/crud-pro/services/CrudProOriginToExecuteSql.ts +0 -397
  253. package/src/libs/crud-pro/services/CrudProServiceBase.ts +0 -98
  254. package/src/libs/crud-pro/services/CrudProTableMetaService.ts +0 -59
  255. package/src/libs/crud-pro/services/CurdProServiceHub.ts +0 -92
  256. package/src/libs/crud-pro/sql.txt +0 -120
  257. package/src/libs/crud-pro/utils/CompareUtils.ts +0 -23
  258. package/src/libs/crud-pro/utils/DatabaseName.ts +0 -40
  259. package/src/libs/crud-pro/utils/DateTimeUtils.ts +0 -20
  260. package/src/libs/crud-pro/utils/MemoryRefreshCache.ts +0 -64
  261. package/src/libs/crud-pro/utils/MessageParseUtils.ts +0 -33
  262. package/src/libs/crud-pro/utils/MixinUtils.ts +0 -285
  263. package/src/libs/crud-pro/utils/ModelUtils.ts +0 -55
  264. package/src/libs/crud-pro/utils/MultiKeyMap.ts +0 -72
  265. package/src/libs/crud-pro/utils/SqlFuncUtils.ts +0 -29
  266. package/src/libs/crud-pro/utils/TypeUtils.ts +0 -188
  267. package/src/libs/crud-pro/utils/ValidateUtils.ts +0 -167
  268. package/src/libs/crud-pro/utils/pool/MySQLUtils.ts +0 -20
  269. package/src/libs/crud-pro/utils/pool/PostgresUtils.ts +0 -22
  270. package/src/libs/crud-pro/utils/pool/SqlServerUtils.ts +0 -22
  271. package/src/libs/crud-pro/utils/sqlConvert/convertColumnName.ts +0 -26
  272. package/src/libs/crud-pro/utils/sqlConvert/convertMsSql.ts +0 -11
  273. package/src/libs/crud-pro/utils/sqlConvert/convertPgSql.ts +0 -11
  274. package/src/libs/crud-pro/utils/sqlConvert/convertPgType.ts +0 -129
  275. package/src/libs/utils/common-dto.ts +0 -52
  276. package/src/libs/utils/crypto-utils.ts +0 -52
  277. package/src/libs/utils/fatcms-request.ts +0 -115
  278. package/src/libs/utils/functions.ts +0 -67
  279. package/src/libs/utils/ordernum-utils.ts +0 -18
  280. package/src/libs/utils/parseConfig.ts +0 -62
  281. package/src/libs/utils/parseCreateSql.ts +0 -91
  282. package/src/libs/utils/render-utils.ts +0 -184
  283. package/src/middleware/forbidden.middleware.ts +0 -71
  284. package/src/middleware/global.middleware.ts +0 -278
  285. package/src/middleware/permission.middleware.ts +0 -81
  286. package/src/middleware/tx.middleware.ts +0 -30
  287. package/src/models/SystemEntities.ts +0 -115
  288. package/src/models/SystemPerm.ts +0 -105
  289. package/src/models/SystemTables.ts +0 -30
  290. package/src/models/bizmodels.ts +0 -89
  291. package/src/models/contextLogger.ts +0 -132
  292. package/src/models/devops.ts +0 -17
  293. package/src/models/userSession.ts +0 -216
  294. package/src/schedule/index.ts +0 -73
  295. package/src/service/AuthService.ts +0 -270
  296. package/src/service/EnumInfoService.ts +0 -129
  297. package/src/service/FileCenterService.ts +0 -394
  298. package/src/service/SysConfigService.ts +0 -34
  299. package/src/service/UserAccountService.ts +0 -100
  300. package/src/service/UserSessionService.ts +0 -81
  301. package/src/service/VisitStatService.ts +0 -179
  302. package/src/service/WorkbenchService.ts +0 -160
  303. package/src/service/anyapi/AnyApiSandboxService.ts +0 -121
  304. package/src/service/anyapi/AnyApiService.ts +0 -184
  305. package/src/service/base/ApiBaseService.ts +0 -42
  306. package/src/service/base/ApiRateLimiter.ts +0 -59
  307. package/src/service/base/BaseService.ts +0 -74
  308. package/src/service/base/RedisCacheService.ts +0 -38
  309. package/src/service/crudstd/CrudStdActionService.ts +0 -27
  310. package/src/service/crudstd/CrudStdConstant.ts +0 -62
  311. package/src/service/crudstd/CrudStdRelationService.ts +0 -78
  312. package/src/service/crudstd/CrudStdService.ts +0 -188
  313. package/src/service/curd/CurdMixByAccountService.ts +0 -83
  314. package/src/service/curd/CurdMixByDictService.ts +0 -113
  315. package/src/service/curd/CurdMixByLinkToCustomService.ts +0 -167
  316. package/src/service/curd/CurdMixBySysConfigService.ts +0 -78
  317. package/src/service/curd/CurdMixByWorkbenchService.ts +0 -68
  318. package/src/service/curd/CurdMixService.ts +0 -65
  319. package/src/service/curd/CurdMixUtils.ts +0 -248
  320. package/src/service/curd/CurdProService.ts +0 -379
  321. package/src/service/proxyapi/ProxyApiLoadService.ts +0 -165
  322. package/src/service/proxyapi/ProxyApiService.ts +0 -262
  323. package/src/service/proxyapi/ProxyApiUtils.ts +0 -32
  324. package/src/service/proxyapi/RouteHandler.ts +0 -8
  325. package/src/service/proxyapi/RouteTrie.ts +0 -74
  326. package/src/service/proxyapi/WeightedRandom.ts +0 -37
  327. package/src/service/proxyapi/WeightedRoundRobin.ts +0 -44
  328. package/src/views/404_app.html +0 -31
  329. package/src/views/404_workbench.html +0 -34
  330. package/src/views/static/favicon.ico +0 -0
@@ -1,59 +0,0 @@
1
- import { LRUCache } from 'lru-cache';
2
-
3
- // 定义 TokenBucket 类
4
- class TokenBucket {
5
- private capacity: number;
6
- private fillRate: number;
7
- private tokens: number;
8
- private lastRefillTime: number;
9
-
10
- constructor(capacity: number, fillRate: number) {
11
- this.capacity = capacity;
12
- this.fillRate = fillRate;
13
- this.tokens = capacity;
14
- this.lastRefillTime = Date.now();
15
- }
16
-
17
- private refill(): void {
18
- const now = Date.now();
19
- const elapsedTime = (now - this.lastRefillTime) / 1000;
20
- const newTokens = elapsedTime * this.fillRate;
21
- this.tokens = Math.min(this.capacity, this.tokens + newTokens);
22
- this.lastRefillTime = now;
23
- }
24
-
25
- public tryAcquire(tokensNeeded = 1): boolean {
26
- this.refill();
27
- if (this.tokens >= tokensNeeded) {
28
- this.tokens -= tokensNeeded;
29
- return true;
30
- }
31
- return false;
32
- }
33
- }
34
-
35
- // 定义一个全局的 Map 来存储不同接口和用户组合的令牌桶
36
- const apiUserBuckets = new LRUCache<string, TokenBucket>({
37
- max: 500,
38
- ttl: 1000 * 60 * 5,
39
- ttlAutopurge: true,
40
- });
41
-
42
- /**
43
- * 对接口ID , 每个用户ID 进行限流。
44
- * @param apiId 接口ID
45
- * @param userId 用户ID
46
- * @param limit_max 限流令牌桶最大值,最大容量
47
- * @param limit_rate 每秒产生的令牌数量
48
- * @return {Boolean} 返回token是否可以用。不能被处理就返回false
49
- */
50
- function tryAcquireToken(apiId: string, userId: string, limit_max: number, limit_rate: number): boolean {
51
- const key = `${apiId}-${userId}`;
52
- if (!apiUserBuckets.has(key)) {
53
- apiUserBuckets.set(key, new TokenBucket(limit_max, limit_rate));
54
- }
55
- const bucket = apiUserBuckets.get(key)!;
56
- return bucket.tryAcquire();
57
- }
58
-
59
- export { tryAcquireToken };
@@ -1,74 +0,0 @@
1
- import { Inject, Provide, App } from '@midwayjs/core';
2
- import { Context } from '@midwayjs/koa';
3
- import { RedisService } from '@midwayjs/redis';
4
- import { OSSService, OSSServiceFactory } from '@midwayjs/oss';
5
- import * as koa from '@midwayjs/koa';
6
- import { consoleLogger, ContextLogger, ILoggerContext } from '../../models/contextLogger';
7
- import { isEnableDebug, isLocalEnv } from '../../libs/utils/fatcms-request';
8
-
9
-
10
- @Provide()
11
- export class BaseService {
12
- @Inject()
13
- protected ctx: Context;
14
-
15
- @App()
16
- protected app: koa.Application;
17
-
18
- @Inject()
19
- protected redisService: RedisService;
20
-
21
- @Inject()
22
- protected ossServiceFactory: OSSServiceFactory;
23
-
24
-
25
- /**
26
- * 用户自己上传的文件,使用私有的bucket。
27
- * @protected
28
- */
29
- protected getPrivateOSSService(): OSSService {
30
- return this.ossServiceFactory.get<OSSService>('privateBucket');
31
- }
32
-
33
- /**
34
- * 公共读的bucket,如js文件等使用它
35
- * @protected
36
- */
37
- protected getPublicOSSService(): OSSService {
38
- return this.ossServiceFactory.get<OSSService>('publicBucket');
39
- }
40
-
41
-
42
- protected getContextLogger(): ILoggerContext {
43
- return this.ctx.contextLogger || consoleLogger;
44
- }
45
-
46
- protected getPrefixContextLogger(prefix: string) {
47
- const s = this.ctx.contextLogger as ContextLogger;
48
- return s.getPrefixContextLogger(prefix);
49
- }
50
-
51
- protected logInfo(msg: string, ...args: any) {
52
- this.getContextLogger().info(msg, ...args);
53
- }
54
-
55
- protected logError(msg: string, ...args: any) {
56
- this.getContextLogger().error(msg, ...args);
57
- }
58
-
59
- protected logWarn(msg: string, ...args: any) {
60
- this.getContextLogger().warn(msg, ...args);
61
- }
62
-
63
- protected logDebug(msg: string, ...args: any) {
64
- this.getContextLogger().debug(msg, ...args);
65
- }
66
-
67
- protected isLocalEnv(): boolean {
68
- return isLocalEnv(this.ctx);
69
- }
70
-
71
- protected isEnableDebug(): boolean {
72
- return isEnableDebug(this.ctx);
73
- }
74
- }
@@ -1,38 +0,0 @@
1
- import { Inject, Provide, App } from '@midwayjs/core';
2
- import { Context } from '@midwayjs/koa';
3
- import { RedisService } from '@midwayjs/redis';
4
- import { OSSServiceFactory } from '@midwayjs/oss';
5
- import * as koa from '@midwayjs/koa';
6
- import {parseJsonObject} from "../../libs/utils/functions";
7
-
8
-
9
- @Provide()
10
- export class RedisCacheService {
11
- @Inject()
12
- protected ctx: Context;
13
-
14
- @App()
15
- protected app: koa.Application;
16
-
17
- @Inject()
18
- protected redisService: RedisService;
19
-
20
- @Inject()
21
- protected ossServiceFactory: OSSServiceFactory;
22
-
23
-
24
- async getJsonObject(key: string): Promise<any> {
25
- const str = await this.redisService.get(key);
26
- return parseJsonObject(str)
27
- }
28
-
29
- async setJsonObject(key: string, obj: any, expireSecond: number): Promise<any> {
30
- const str = JSON.stringify(obj);
31
- return this.redisService.set(key, str, 'EX', expireSecond);
32
- }
33
-
34
- async removeItem(key: string): Promise<any> {
35
- return await this.redisService.del(key);
36
- }
37
-
38
- }
@@ -1,27 +0,0 @@
1
- import { Inject, Provide } from '@midwayjs/core';
2
- import { Context } from '@midwayjs/koa';
3
- import * as _ from 'lodash';
4
- import { CurdMixService } from '../curd/CurdMixService';
5
- import { IRequestModel } from '../../libs/crud-pro/interfaces';
6
- import { ICrudStdAppInfo } from '../../models/bizmodels';
7
- import { BaseService } from '../base/BaseService';
8
-
9
- interface IHandleStdActionByReq {
10
- actionsMap: any;
11
- appInfo: ICrudStdAppInfo;
12
- params: IRequestModel;
13
- actionCfg: any;
14
- }
15
-
16
- @Provide()
17
- export class CrudStdActionService extends BaseService {
18
- @Inject()
19
- protected ctx: Context;
20
-
21
- @Inject()
22
- protected curdMixService: CurdMixService;
23
-
24
- public async handleStdActionByReq({ appInfo, params, actionCfg }: IHandleStdActionByReq) {
25
- return null;
26
- }
27
- }
@@ -1,62 +0,0 @@
1
- /**
2
- * 工具栏的动作。一般都是批量操作
3
- */
4
- const toolbarOptions = {
5
- ToolbarCreateFormPro: 'ToolbarCreateFormPro', // 新建
6
- ToolbarBatchEditFormPro: 'ToolbarBatchEditFormPro', // 批量编辑
7
- ToolbarBatchDelete: 'ToolbarBatchDelete', //批量删除
8
- ToolbarBatchCreate: 'ToolbarBatchCreate', // 批量新建
9
- ToolbarSpecializedScene: 'ToolbarSpecializedScene',
10
- ToolbarOpenURL: 'ToolbarOpenURL',
11
- };
12
-
13
- /**
14
- * 操作列的可选项
15
- * @type {{}}
16
- */
17
- const actionColumnOptions = {
18
- ActionDialogEditFormPro: 'ActionDialogEditFormPro',
19
- ActionDialogDelete: 'ActionDialogDelete',
20
- ActionLinkTo: 'ActionLinkTo', // 跳转链接(自动拼参数)
21
- ActionLinkToCustom: 'ActionLinkToCustom', // 跳转链接(完全自定义)
22
- ActionDialogEditJSON: 'ActionDialogEditJSON',
23
- ActionDialogEditHTML: 'ActionDialogEditHTML',
24
- ActionDialogEditText: 'ActionDialogEditText',
25
- ActionDialogEditRichText: 'ActionDialogEditRichText',
26
- ActionDialogEditExcel: 'ActionDialogEditExcel',
27
- ActionDrawerRelationCrud: 'ActionDrawerRelationCrud', // 关联对象CRUD
28
- ActionSpecializedScene: 'ActionSpecializedScene',
29
- };
30
-
31
- /**
32
- * 表格列展示字段
33
- * @type {{}}
34
- */
35
- const tableColumnRenders = {
36
- RenderString: 'RenderString',
37
- RenderDictEnumText: 'RenderDictEnumText',
38
- RenderDictEnumStatus: 'RenderDictEnumStatus',
39
- RenderEntityStatus: 'RenderEntityStatus',
40
- RenderDateTime: 'RenderDateTime',
41
- RenderDate: 'RenderDate',
42
- RenderImage: 'RenderImage',
43
- RenderLink: 'RenderLink',
44
- RenderHTML: 'RenderHTML',
45
- RenderJSON: 'RenderJSON',
46
- RenderDialogText: 'RenderDialogText',
47
- RenderDialogHTML: 'RenderDialogHTML',
48
- RenderDialogJSON: 'RenderDialogJSON',
49
- RenderUserInfo: 'RenderUserInfo',
50
- };
51
-
52
- /**
53
- * 字段关联数据类型
54
- * @type {{}}
55
- */
56
- const fieldLinkToTypes = {
57
- linkToDict: 'linkToDict',
58
- linkToSysCfgEnum: 'linkToSysCfgEnum',
59
- linkToCustom: 'linkToCustom',
60
- };
61
-
62
- export { toolbarOptions, actionColumnOptions, tableColumnRenders, fieldLinkToTypes };
@@ -1,78 +0,0 @@
1
- import { Inject, Provide } from '@midwayjs/core';
2
- import { Context } from '@midwayjs/koa';
3
- import * as _ from 'lodash';
4
- import { CurdMixService } from '../curd/CurdMixService';
5
- import { IRequestCfgModel } from '../../libs/crud-pro/interfaces';
6
- import { ICrudStdAppInfoForSettingKey } from '../../models/bizmodels';
7
- import { BaseService } from '../base/BaseService';
8
- import { tableColumnRenders, fieldLinkToTypes } from './CrudStdConstant';
9
- import { RelatedType } from '../curd/CurdMixUtils';
10
-
11
- @Provide()
12
- export class CrudStdRelationService extends BaseService {
13
- @Inject()
14
- protected ctx: Context;
15
-
16
- @Inject()
17
- protected curdMixService: CurdMixService;
18
-
19
- async addCfgModelColumnsRelation(cfgModel: IRequestCfgModel, appInfo: ICrudStdAppInfoForSettingKey) {
20
- const tableColumns = appInfo?.stdCrudCfgObj?.tableColumns;
21
- const tableFields = appInfo?.stdCrudCfgObj?.tableFields || [];
22
-
23
- if (!Array.isArray(tableColumns)) {
24
- return;
25
- }
26
-
27
- const columnsRelation = [];
28
- cfgModel.columnsRelation = columnsRelation;
29
- for (let i = 0; i < tableColumns.length; i++) {
30
- const tableColumn = tableColumns[i];
31
- const dataIndex = _.get(tableColumn, 'dataIndex');
32
- const componentName = _.get(tableColumn, 'component.componentName');
33
-
34
- // 关联用户信息
35
- if (componentName === tableColumnRenders.RenderUserInfo) {
36
- columnsRelation.push({
37
- relatedType: RelatedType.accountBasic,
38
- sourceColumn: dataIndex,
39
- targetColumns: [], // 使用默认
40
- });
41
- }
42
-
43
- // 关联枚举文案/状态标签颜色
44
- if (componentName === tableColumnRenders.RenderDictEnumText || componentName === tableColumnRenders.RenderDictEnumStatus) {
45
- const fieldCfg = tableFields.find(f => {
46
- return f.fieldIndex === dataIndex;
47
- });
48
-
49
- if (fieldCfg && fieldCfg.linkToType === fieldLinkToTypes.linkToCustom) {
50
- columnsRelation.push({
51
- relatedType: RelatedType.linkToCustom,
52
- relatedCode: fieldCfg.linkToCustom,
53
- sourceColumn: dataIndex,
54
- targetColumns: [], // 使用默认
55
- });
56
- }
57
-
58
- if (fieldCfg && fieldCfg.linkToType === fieldLinkToTypes.linkToSysCfgEnum) {
59
- columnsRelation.push({
60
- relatedType: RelatedType.sysCfgEnum,
61
- relatedCode: fieldCfg.linkToSysCfgEnumCode,
62
- sourceColumn: dataIndex,
63
- targetColumns: [], // 使用默认
64
- });
65
- }
66
-
67
- if (fieldCfg && fieldCfg.linkToType === fieldLinkToTypes.linkToDict) {
68
- columnsRelation.push({
69
- relatedType: RelatedType.dict,
70
- relatedCode: fieldCfg.linkToDictCode,
71
- sourceColumn: dataIndex,
72
- targetColumns: [], // 使用默认
73
- });
74
- }
75
- }
76
- }
77
- }
78
- }
@@ -1,188 +0,0 @@
1
- import { Inject, Provide } from '@midwayjs/core';
2
- import { Context } from '@midwayjs/koa';
3
- import { CurdMixService } from '../curd/CurdMixService';
4
- import { IRequestCfgModel, IRequestModel } from '../../libs/crud-pro/interfaces';
5
- import { KeysOfAuthType, KeysOfSimpleSQL } from '../../libs/crud-pro/models/keys';
6
- import { parseJsonObject } from '../../libs/utils/functions';
7
- import { ICrudStdAppInfo, ICrudStdAppInfoForSettingKey } from '../../models/bizmodels';
8
- import { BizException } from '../../models/devops';
9
- import { ExecuteContext } from '../../libs/crud-pro/models/ExecuteContext';
10
- import {SystemDbName, SystemDbType, SystemTables} from '../../models/SystemTables';
11
- import { CrudStdActionService } from './CrudStdActionService';
12
- import { CrudStdRelationService } from './CrudStdRelationService';
13
- import * as _ from 'lodash';
14
- import { ApiBaseService } from '../base/ApiBaseService';
15
- import {parseDatabaseName} from "../../libs/crud-pro/utils/DatabaseName";
16
-
17
- export const SPECIAL_SETTING_KEY = {
18
- QUERY_LIST: 'QUERY_LIST',
19
- QUERY_ONE: 'QUERY_ONE',
20
- };
21
-
22
- @Provide()
23
- export class CrudStdService extends ApiBaseService {
24
- @Inject()
25
- protected ctx: Context;
26
-
27
- @Inject()
28
- protected curdMixService: CurdMixService;
29
-
30
- @Inject()
31
- protected crudStdActionService: CrudStdActionService;
32
-
33
- @Inject()
34
- protected crudStdRelationService: CrudStdRelationService;
35
-
36
- /**
37
- * 执行普通CRUD
38
- */
39
- public async executeStdQuery(appCode: string, settingKey: string, params: IRequestModel, sqlSimpleName: KeysOfSimpleSQL) {
40
- const appInfo = await this.getParsedCrudStdAppForSettingKey(appCode, settingKey);
41
- const stdCrudCfgObj = appInfo.stdCrudCfgObj;
42
-
43
- if (!appInfo || appInfo.status !== 1) {
44
- throw new BizException('应用不存在或已下线:' + appCode);
45
- }
46
-
47
- const databaseName = stdCrudCfgObj.tableBaseInfo.databaseName;
48
-
49
- const { dbType, dbName } = parseDatabaseName(databaseName);
50
-
51
- const cfgModel: IRequestCfgModel = {
52
- sqlDatabase: dbName,
53
- sqlDdType: dbType,
54
- sqlTable: stdCrudCfgObj.tableBaseInfo.tableName,
55
- sqlSimpleName,
56
- };
57
-
58
- // 接口返回最大值
59
- const maxLimit = _.get(stdCrudCfgObj, 'othersSetting.values.maxLimit');
60
- if (typeof maxLimit === 'number' && maxLimit > 0) {
61
- cfgModel.maxLimit = maxLimit;
62
- }
63
-
64
- if (!appInfo.settingKeyActionCfg.hasOperationPerm) {
65
- throw new BizException('没有权限');
66
- }
67
-
68
- // 根据用户配置,设置关联查询的数据信息。
69
- await this.crudStdRelationService.addCfgModelColumnsRelation(cfgModel, appInfo);
70
- return await this.curdMixService.executeCrudByCfg(params, cfgModel);
71
- }
72
-
73
- /**
74
- * 获取appInfo 并且拿到当前settingKey相关的信息
75
- * @param appCode
76
- * @param settingKey
77
- * @private
78
- */
79
- private async getParsedCrudStdAppForSettingKey(appCode: string, settingKey: string): Promise<ICrudStdAppInfoForSettingKey> {
80
- if (!appCode) {
81
- throw new BizException('缺少参数:curdStdAppCode');
82
- }
83
- const appInfo: ICrudStdAppInfoForSettingKey = await this.getParsedCrudStdAppInfo(appCode);
84
- if (!appInfo) {
85
- return null;
86
- }
87
-
88
- const actionsMap = appInfo.actionsMap;
89
- const appSchema = appInfo.stdCrudCfgObj;
90
-
91
- if (settingKey === SPECIAL_SETTING_KEY.QUERY_LIST || settingKey === SPECIAL_SETTING_KEY.QUERY_ONE) {
92
- const authSettingValues = _.get(appSchema, 'authSetting.values');
93
- const { auth_type, auth_config_by_func_code, auth_config_by_role_code } = authSettingValues || {};
94
- const authConfig = auth_type === 'byFuncCode' ? auth_config_by_func_code : auth_config_by_role_code;
95
- const hasOperationPerm = this.ctx.userSession.isAuthPass(auth_type as any, authConfig);
96
- appInfo.settingKeyActionCfg = { settingKey, hasOperationPerm };
97
- } else {
98
- const actionCfg = actionsMap[settingKey];
99
- if (!actionCfg) {
100
- throw new BizException('没有找到相关配置:' + JSON.stringify({ appCode, settingKey }));
101
- }
102
- const componentNameCfg = _.get(actionCfg, 'component.componentName');
103
- if (!componentNameCfg) {
104
- throw new BizException('没有配置动作组件:' + JSON.stringify({ appCode, settingKey }));
105
- }
106
- appInfo.settingKeyActionCfg = actionCfg;
107
- }
108
-
109
- return appInfo;
110
- }
111
-
112
- /**
113
- * 执行动作
114
- * @param appCode
115
- * @param settingKey
116
- * @param params
117
- */
118
- public async executeStdActionByReq(appCode: string, settingKey: string, params: IRequestModel): Promise<ExecuteContext> {
119
- const appInfo = await this.getParsedCrudStdAppForSettingKey(appCode, settingKey);
120
- if (!appInfo || appInfo.status !== 1) {
121
- throw new BizException('应用不存在或已下线:' + appCode);
122
- }
123
-
124
- const actionsMap = appInfo.actionsMap;
125
- const actionCfg = appInfo.settingKeyActionCfg;
126
-
127
- return this.crudStdActionService.handleStdActionByReq({ appInfo, params, actionsMap, actionCfg });
128
- }
129
-
130
- /**
131
- * 查询APP信息
132
- * @param appCode
133
- * @private
134
- */
135
- private async getCrudStdAppInfo(appCode?: string) {
136
- this.logInfo('getCrudStdAppInfo', appCode);
137
-
138
- const ss = {
139
- sqlTable: SystemTables.sys_app,
140
- sqlSimpleName: KeysOfSimpleSQL.SIMPLE_QUERY_ONE,
141
- sqlDatabase: SystemDbName,
142
- sqlDdType: SystemDbType,
143
- };
144
- return await this.curdMixService.executeCrudByCfg({ condition: { app_code: appCode } }, ss);
145
- }
146
-
147
- /**
148
- * 查询APP信息
149
- * @param appCode
150
- * @private
151
- */
152
- public async getParsedCrudStdAppInfo(appCode: string): Promise<ICrudStdAppInfo> {
153
- const a = await this.getCrudStdAppInfo(appCode);
154
- const { row } = a.getResModel();
155
- if (!row) {
156
- return null;
157
- }
158
- const { app_schema, ...others } = row;
159
- const stdCrudCfgObj = parseJsonObject(app_schema);
160
-
161
- // 为了方便查找到action对象
162
- const actionsMap = {};
163
- const keys = Object.keys(stdCrudCfgObj);
164
- for (let i = 0; i < keys.length; i++) {
165
- const key = keys[i];
166
- const arrayCfg = stdCrudCfgObj[key];
167
- if (Array.isArray(arrayCfg)) {
168
- for (let j = 0; j < arrayCfg.length; j++) {
169
- const actionCfg = arrayCfg[j];
170
- actionCfg.hasOperationPerm = this.hasOperationPerm(actionCfg);
171
- if (actionCfg.settingKey) {
172
- actionsMap[actionCfg.settingKey] = actionCfg;
173
- }
174
- }
175
- }
176
- }
177
-
178
- return { ...others, stdCrudCfgObj, actionsMap };
179
- }
180
-
181
- private hasOperationPerm(actionCfg: any): boolean {
182
- const permissionCode = _.get(actionCfg, 'permissionCode');
183
- if (permissionCode) {
184
- return this.ctx.userSession.isAuthPass(KeysOfAuthType.byFuncCode, permissionCode);
185
- }
186
- return true; // 无需鉴权
187
- }
188
- }
@@ -1,83 +0,0 @@
1
- import { Inject, Provide } from '@midwayjs/core';
2
- import { Context } from '@midwayjs/koa';
3
- import * as _ from 'lodash';
4
- import { CurdProService } from './CurdProService';
5
- import { ExecuteContext, IExecuteContextHandler } from '../../libs/crud-pro/models/ExecuteContext';
6
- import { CrudMixUtils, RelatedType } from './CurdMixUtils';
7
- import {SystemDbName, SystemDbType, SystemTables} from '../../models/SystemTables';
8
- import { KeysOfSimpleSQL } from '../../libs/crud-pro/models/keys';
9
- import { ColumnRelation, IRequestCfgModel, IRequestModel } from '../../libs/crud-pro/interfaces';
10
- import { MixinUtils } from '../../libs/crud-pro/utils/MixinUtils';
11
-
12
- const dictMixUtils = new CrudMixUtils(RelatedType.accountBasic);
13
-
14
- const TMP_CTX_KEY = _.uniqueId('CurdMixByAccountService');
15
-
16
- @Provide()
17
- export class CurdMixByAccountService implements IExecuteContextHandler {
18
- @Inject()
19
- ctx: Context;
20
-
21
- @Inject()
22
- protected curdProService: CurdProService;
23
-
24
- async handleExecuteContextPrepare(executeContext: ExecuteContext) {
25
- const relations = dictMixUtils.pickColumnRelations(executeContext);
26
- if (!relations || relations.length === 0) {
27
- return;
28
- }
29
-
30
- const accountIds = new Set<string>();
31
- dictMixUtils.forEachRowAndColumnsRelation(executeContext, (row: any, columnRelation: ColumnRelation) => {
32
- const { sourceColumn } = columnRelation;
33
- const accountId = _.get(row, sourceColumn);
34
- if (accountId) {
35
- accountIds.add(accountId);
36
- }
37
- });
38
-
39
- if (accountIds.size === 0) {
40
- return;
41
- }
42
-
43
- const cfgModel: IRequestCfgModel = {
44
- method: 'UserAccountService.queryAccountBasicInfoByIds',
45
- sqlTable: SystemTables.sys_user_account,
46
- sqlSimpleName: KeysOfSimpleSQL.SIMPLE_QUERY,
47
- sqlDatabase: SystemDbName,
48
- sqlDdType: SystemDbType,
49
- };
50
-
51
- const reqJson: IRequestModel = {
52
- columns: ['nick_name', 'avatar', 'account_id'],
53
- condition: {
54
- account_id: {
55
- $in: [...accountIds],
56
- },
57
- },
58
- };
59
-
60
- const res = await this.curdProService.executeCrudByCfg(reqJson, cfgModel);
61
- const userInfos = res.getResRows();
62
- executeContext[TMP_CTX_KEY] = MixinUtils.toNewMap(userInfos, (obj: any) => obj.account_id);
63
- }
64
-
65
- async handleExecuteContext(executeContext: ExecuteContext): Promise<void> {
66
- const userInfoMap = executeContext[TMP_CTX_KEY] as Map<string, any>;
67
- if (!userInfoMap || userInfoMap.size === 0) {
68
- return;
69
- }
70
-
71
- dictMixUtils.forEachRowAndColumnsRelation(executeContext, (row: any, columnRelation: ColumnRelation) => {
72
- const sourceColumn = columnRelation.sourceColumn;
73
- const targetColumns = columnRelation.targetColumns;
74
- if (!Array.isArray(targetColumns) || targetColumns.length === 0) {
75
- columnRelation.targetColumns = [
76
- { from: 'nick_name', to: `${sourceColumn}_user.nick_name` },
77
- { from: 'avatar', to: `${sourceColumn}_user.avatar` },
78
- ];
79
- }
80
- dictMixUtils.copyColumnRelationToRowNoRelatedCode(row, userInfoMap, columnRelation);
81
- });
82
- }
83
- }