rez_core 4.0.98 → 4.0.100

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 (385) hide show
  1. package/.prettierrc +3 -3
  2. package/.vscode/extensions.json +5 -0
  3. package/README.md +99 -99
  4. package/dist/module/auth/guards/role.guard.js +3 -3
  5. package/dist/module/auth/services/auth.service.js +2 -2
  6. package/dist/module/filter/repository/saved-filter.repository.js +4 -4
  7. package/dist/module/filter/service/filter-evaluator.service.js +2 -2
  8. package/dist/module/filter/service/filter.service.js +22 -22
  9. package/dist/module/integration/examples/usage.example.js +9 -9
  10. package/dist/module/integration/service/integration.service.js +1 -1
  11. package/dist/module/integration/service/wrapper.service.js +25 -25
  12. package/dist/module/listmaster/service/list-master-item.service.js +2 -2
  13. package/dist/module/mapper/service/field-mapper.service.js +4 -4
  14. package/dist/module/mapper/service/mapper.service.js +2 -2
  15. package/dist/module/meta/service/entity-dynamic.service.js +25 -20
  16. package/dist/module/meta/service/entity-dynamic.service.js.map +1 -1
  17. package/dist/module/meta/service/entity-list.service.js +3 -3
  18. package/dist/module/meta/service/entity-master.service.js +3 -3
  19. package/dist/module/meta/service/entity-relation.service.js +11 -11
  20. package/dist/module/meta/service/entity-service-impl.service.js +3 -3
  21. package/dist/module/meta/service/resolver.service.js +3 -3
  22. package/dist/module/module/repository/menu.repository.js +12 -12
  23. package/dist/module/notification/service/notification.service.js +9 -9
  24. package/dist/module/user/controller/login.controller.js +18 -18
  25. package/dist/module/user/service/role.service.js +4 -4
  26. package/dist/module/user/service/user-session.service.js +2 -2
  27. package/dist/module/workflow/repository/action.repository.js +20 -20
  28. package/dist/module/workflow/repository/comm-template.repository.js +6 -6
  29. package/dist/module/workflow/repository/form-master.repository.js +2 -2
  30. package/dist/module/workflow/repository/stage-group.repository.js +23 -23
  31. package/dist/module/workflow/repository/stage-movement.repository.js +15 -15
  32. package/dist/module/workflow/repository/stage.repository.js +8 -8
  33. package/dist/module/workflow/service/action-template-mapping.service.js +22 -22
  34. package/dist/module/workflow/service/action.service.js +7 -7
  35. package/dist/module/workflow/service/entity-modification.service.js +6 -6
  36. package/dist/module/workflow/service/stage-group.service.js +2 -2
  37. package/dist/module/workflow/service/stage.service.js +2 -2
  38. package/dist/module/workflow/service/task.service.js +28 -28
  39. package/dist/module/workflow/service/workflow-list-master.service.js +15 -15
  40. package/dist/module/workflow/service/workflow-meta.service.js +35 -35
  41. package/dist/module/workflow/service/workflow.service.js +2 -2
  42. package/dist/tsconfig.build.tsbuildinfo +1 -1
  43. package/dist/utils/service/reflection-helper.service.js +2 -2
  44. package/docs/modules/event-driven-integration-design.md +91 -91
  45. package/docs/modules/integration.md +250 -250
  46. package/eslint.config.mjs +34 -34
  47. package/nest-cli.json +14 -14
  48. package/package.json +118 -118
  49. package/src/app.controller.ts +12 -12
  50. package/src/app.module.ts +49 -49
  51. package/src/app.service.ts +8 -8
  52. package/src/config/config.module.ts +18 -18
  53. package/src/config/database.config.ts +23 -23
  54. package/src/constant/global.constant.ts +67 -67
  55. package/src/core.module.ts +81 -81
  56. package/src/decorators/roles.decorator.ts +7 -7
  57. package/src/dtos/response.dto.ts +6 -6
  58. package/src/dtos/response.ts +5 -5
  59. package/src/index.ts +1 -1
  60. package/src/module/auth/auth.module.ts +49 -49
  61. package/src/module/auth/controller/auth.controller.ts +28 -28
  62. package/src/module/auth/guards/google-auth.guard.ts +9 -9
  63. package/src/module/auth/guards/jwt.guard.ts +22 -22
  64. package/src/module/auth/guards/role.guard.ts +68 -68
  65. package/src/module/auth/services/auth.service.ts +50 -50
  66. package/src/module/auth/services/jwt.service.ts +11 -11
  67. package/src/module/auth/strategies/google.strategy.ts +54 -54
  68. package/src/module/auth/strategies/jwt.strategy.ts +58 -58
  69. package/src/module/auth/strategies/local.strategy.ts +13 -13
  70. package/src/module/dashboard/controller/dashboard.controller.ts +36 -36
  71. package/src/module/dashboard/dashboard.module.ts +21 -21
  72. package/src/module/dashboard/entity/dashboard_page_data.entity.ts +27 -27
  73. package/src/module/dashboard/entity/widget_master.entity.ts +18 -18
  74. package/src/module/dashboard/repository/dashboard.repository.ts +42 -42
  75. package/src/module/dashboard/service/dashboard.service.ts +73 -73
  76. package/src/module/dev/dev.module.ts +12 -12
  77. package/src/module/dev/service/dev.service.ts +7 -7
  78. package/src/module/enterprise/controller/organization.controller.ts +36 -36
  79. package/src/module/enterprise/enterprise.module.ts +30 -30
  80. package/src/module/enterprise/entity/enterprise.entity.ts +37 -37
  81. package/src/module/enterprise/entity/organization-app-mapping.entity.ts +13 -13
  82. package/src/module/enterprise/entity/organization.entity.ts +92 -92
  83. package/src/module/enterprise/repository/enterprise.repository.ts +31 -31
  84. package/src/module/enterprise/repository/organization.repository.ts +26 -26
  85. package/src/module/enterprise/repository/school.repository.ts +278 -278
  86. package/src/module/enterprise/service/brand.service.ts +5 -5
  87. package/src/module/enterprise/service/enterprise.service.ts +16 -16
  88. package/src/module/enterprise/service/organization-app-mapping.service.ts +4 -4
  89. package/src/module/enterprise/service/organization.service.ts +145 -145
  90. package/src/module/filter/controller/filter.controller.ts +84 -84
  91. package/src/module/filter/dto/filter-request.dto.ts +38 -38
  92. package/src/module/filter/entity/saved-filter-detail.entity.ts +41 -41
  93. package/src/module/filter/entity/saved-filter-master.entity.ts +23 -23
  94. package/src/module/filter/filter.module.ts +31 -31
  95. package/src/module/filter/repository/saved-filter.repository.ts +168 -168
  96. package/src/module/filter/service/filter-evaluator.service.ts +86 -86
  97. package/src/module/filter/service/filter.service.ts +941 -941
  98. package/src/module/filter/service/saved-filter.service.ts +170 -170
  99. package/src/module/ics/controller/ics.controller.ts +21 -21
  100. package/src/module/ics/dto/ics.dto.ts +55 -55
  101. package/src/module/ics/ics.module.ts +13 -13
  102. package/src/module/ics/service/ics.service.ts +57 -57
  103. package/src/module/integration/controller/calender-event.controller.ts +31 -31
  104. package/src/module/integration/controller/integration.controller.ts +662 -662
  105. package/src/module/integration/controller/wrapper.controller.ts +37 -37
  106. package/src/module/integration/dto/create-config.dto.ts +526 -526
  107. package/src/module/integration/entity/integration-config.entity.ts +112 -112
  108. package/src/module/integration/entity/integration-entity-mapper.entity.ts +14 -14
  109. package/src/module/integration/entity/integration-source.entity.ts +17 -17
  110. package/src/module/integration/entity/user-integration.entity.ts +71 -71
  111. package/src/module/integration/examples/usage.example.ts +338 -338
  112. package/src/module/integration/factories/base.factory.ts +7 -7
  113. package/src/module/integration/factories/email.factory.ts +49 -49
  114. package/src/module/integration/factories/integration.factory.ts +121 -121
  115. package/src/module/integration/factories/sms.factory.ts +51 -51
  116. package/src/module/integration/factories/telephone.factory.ts +41 -41
  117. package/src/module/integration/factories/whatsapp.factory.ts +56 -56
  118. package/src/module/integration/integration.module.ts +110 -110
  119. package/src/module/integration/service/calendar-event.service.ts +118 -118
  120. package/src/module/integration/service/integration-entity-mapper.service.ts +17 -17
  121. package/src/module/integration/service/integration-queue.service.ts +229 -229
  122. package/src/module/integration/service/integration.service.ts +2633 -2633
  123. package/src/module/integration/service/oauth.service.ts +224 -224
  124. package/src/module/integration/service/wrapper.service.ts +493 -493
  125. package/src/module/integration/strategies/email/gmail-api.strategy.ts +280 -280
  126. package/src/module/integration/strategies/email/outlook-api.strategy.ts +44 -44
  127. package/src/module/integration/strategies/email/outlook.strategy.ts +64 -64
  128. package/src/module/integration/strategies/email/sendgrid-api.strategy.ts +260 -260
  129. package/src/module/integration/strategies/integration.strategy.ts +97 -97
  130. package/src/module/integration/strategies/sms/gupshup-sms.strategy.ts +146 -146
  131. package/src/module/integration/strategies/sms/msg91-sms.strategy.ts +164 -164
  132. package/src/module/integration/strategies/sms/tubelight-sms.strategy.ts +163 -163
  133. package/src/module/integration/strategies/telephone/ozonetel-voice.strategy.ts +238 -238
  134. package/src/module/integration/strategies/telephone/tubelight-voice.strategy.ts +210 -210
  135. package/src/module/integration/strategies/whatsapp/gupshup-whatsapp.strategy.ts +359 -359
  136. package/src/module/integration/strategies/whatsapp/tubelight-whatsapp.strategy.ts +372 -372
  137. package/src/module/integration/strategies/whatsapp/whatsapp-cloud.strategy.ts +403 -403
  138. package/src/module/integration/strategies/whatsapp/whatsapp.strategy.ts +57 -57
  139. package/src/module/layout/controller/layout.controller.ts +47 -47
  140. package/src/module/layout/entity/header-items.entity.ts +28 -28
  141. package/src/module/layout/entity/header-section.entity.ts +19 -19
  142. package/src/module/layout/layout.module.ts +21 -21
  143. package/src/module/layout/repository/header-items.repository.ts +18 -18
  144. package/src/module/layout/repository/header-section.repository.ts +22 -22
  145. package/src/module/layout/service/header-section.service.ts +25 -25
  146. package/src/module/layout_preference/controller/layout_preference.controller.ts +73 -73
  147. package/src/module/layout_preference/entity/layout_preference.entity.ts +28 -28
  148. package/src/module/layout_preference/layout_preference.module.ts +22 -22
  149. package/src/module/layout_preference/repository/layout_preference.repository.ts +65 -65
  150. package/src/module/layout_preference/service/layout_preference.service.ts +184 -184
  151. package/src/module/lead/controller/lead.controller.ts +30 -30
  152. package/src/module/lead/lead.module.ts +14 -14
  153. package/src/module/lead/repository/lead.repository.ts +41 -41
  154. package/src/module/lead/service/lead.service.ts +54 -54
  155. package/src/module/listmaster/controller/list-master.controller.ts +187 -187
  156. package/src/module/listmaster/entity/list-master-items.entity.ts +43 -43
  157. package/src/module/listmaster/entity/list-master.entity.ts +33 -33
  158. package/src/module/listmaster/listmaster.module.ts +44 -44
  159. package/src/module/listmaster/repository/list-master-items.repository.ts +169 -169
  160. package/src/module/listmaster/repository/list-master.repository.ts +46 -46
  161. package/src/module/listmaster/service/list-master-engine.ts +19 -19
  162. package/src/module/listmaster/service/list-master-extension.interface.ts +4 -4
  163. package/src/module/listmaster/service/list-master-item.service.ts +292 -292
  164. package/src/module/listmaster/service/list-master-registry.ts +15 -15
  165. package/src/module/listmaster/service/list-master.service.ts +441 -441
  166. package/src/module/mapper/controller/field-mapper.controller.ts +76 -76
  167. package/src/module/mapper/controller/mapper.controller.ts +20 -20
  168. package/src/module/mapper/dto/field-mapper.dto.ts +14 -14
  169. package/src/module/mapper/entity/field-lovs.entity.ts +19 -19
  170. package/src/module/mapper/entity/field-mapper.entity.ts +53 -53
  171. package/src/module/mapper/entity/mapper.entity.ts +16 -16
  172. package/src/module/mapper/mapper.module.ts +34 -34
  173. package/src/module/mapper/repository/field-lovs.repository.ts +35 -35
  174. package/src/module/mapper/repository/field-mapper.repository.ts +42 -42
  175. package/src/module/mapper/repository/mapper.repository.ts +15 -15
  176. package/src/module/mapper/service/field-mapper.service.ts +266 -266
  177. package/src/module/mapper/service/mapper.service.ts +79 -79
  178. package/src/module/master/controller/master.controller.ts +74 -74
  179. package/src/module/master/service/master.service.ts +483 -483
  180. package/src/module/meta/controller/app-master.controller.ts +38 -38
  181. package/src/module/meta/controller/attribute-master.controller.ts +66 -66
  182. package/src/module/meta/controller/entity-dynamic.controller.ts +125 -125
  183. package/src/module/meta/controller/entity-master.controller.ts +28 -28
  184. package/src/module/meta/controller/entity-relation.controller.ts +36 -36
  185. package/src/module/meta/controller/entity.controller.ts +392 -392
  186. package/src/module/meta/controller/entity.public.controller.ts +75 -75
  187. package/src/module/meta/controller/media.controller.ts +107 -107
  188. package/src/module/meta/controller/meta.controller.ts +96 -96
  189. package/src/module/meta/controller/view-master.controller.ts +86 -86
  190. package/src/module/meta/dto/entity-list-data.dto.ts +6 -6
  191. package/src/module/meta/dto/entity-tab.dto.ts +4 -4
  192. package/src/module/meta/dto/entity-table.dto.ts +9 -9
  193. package/src/module/meta/entity/app-master.entity.ts +34 -34
  194. package/src/module/meta/entity/attribute-master.entity.ts +89 -89
  195. package/src/module/meta/entity/base-entity.entity.ts +75 -75
  196. package/src/module/meta/entity/entity-master.entity.ts +85 -85
  197. package/src/module/meta/entity/entity-relation-data.entity.ts +29 -29
  198. package/src/module/meta/entity/entity-relation.entity.ts +23 -23
  199. package/src/module/meta/entity/entity-table-column.entity.ts +61 -61
  200. package/src/module/meta/entity/entity-table.entity.ts +50 -50
  201. package/src/module/meta/entity/media-data.entity.ts +32 -32
  202. package/src/module/meta/entity/preference.entity.ts +62 -62
  203. package/src/module/meta/entity/view-master.entity.ts +41 -41
  204. package/src/module/meta/entity.module.ts +158 -158
  205. package/src/module/meta/repository/app-master.repository.ts +20 -20
  206. package/src/module/meta/repository/attribute-master.repository.ts +110 -110
  207. package/src/module/meta/repository/entity-master.repository.ts +69 -69
  208. package/src/module/meta/repository/entity-table-column.repository.ts +39 -39
  209. package/src/module/meta/repository/entity-table.repository.ts +53 -53
  210. package/src/module/meta/repository/media-data.repository.ts +50 -50
  211. package/src/module/meta/repository/preference.repository.ts +20 -20
  212. package/src/module/meta/repository/user-app-mapping.repository.ts +28 -28
  213. package/src/module/meta/repository/view-master.repository.ts +42 -42
  214. package/src/module/meta/service/app-master.service.ts +37 -37
  215. package/src/module/meta/service/attribute-master.service.ts +117 -117
  216. package/src/module/meta/service/common.service.ts +9 -9
  217. package/src/module/meta/service/entity-dynamic.service.ts +818 -809
  218. package/src/module/meta/service/entity-list.service.ts +205 -205
  219. package/src/module/meta/service/entity-master.service.ts +169 -169
  220. package/src/module/meta/service/entity-realation-data.service.ts +9 -9
  221. package/src/module/meta/service/entity-relation.service.ts +69 -69
  222. package/src/module/meta/service/entity-service-impl.service.ts +525 -525
  223. package/src/module/meta/service/entity-table-column.service.ts +39 -39
  224. package/src/module/meta/service/entity-table.service.ts +150 -150
  225. package/src/module/meta/service/entity-validation.service.ts +187 -187
  226. package/src/module/meta/service/entity.service.ts +67 -67
  227. package/src/module/meta/service/field-group.service.ts +103 -103
  228. package/src/module/meta/service/media-data.service.ts +507 -507
  229. package/src/module/meta/service/populate-meta.service.ts +193 -193
  230. package/src/module/meta/service/preference.service.ts +16 -16
  231. package/src/module/meta/service/resolver.service.ts +267 -267
  232. package/src/module/meta/service/section-master.service.ts +104 -104
  233. package/src/module/meta/service/update-form-json.service.ts +22 -22
  234. package/src/module/meta/service/user-app-mapping.service.ts +17 -17
  235. package/src/module/meta/service/view-master.service.ts +127 -127
  236. package/src/module/module/controller/menu.controller.ts +15 -15
  237. package/src/module/module/controller/module-access.controller.ts +134 -134
  238. package/src/module/module/entity/menu.entity.ts +43 -43
  239. package/src/module/module/entity/module-access.entity.ts +25 -25
  240. package/src/module/module/entity/module-action.entity.ts +17 -17
  241. package/src/module/module/entity/module.entity.ts +52 -52
  242. package/src/module/module/module.module.ts +42 -42
  243. package/src/module/module/repository/menu.repository.ts +184 -184
  244. package/src/module/module/repository/module-access.repository.ts +344 -344
  245. package/src/module/module/service/menu.service.ts +82 -82
  246. package/src/module/module/service/module-access.service.ts +209 -209
  247. package/src/module/notification/controller/notification.controller.ts +58 -58
  248. package/src/module/notification/controller/otp.controller.ts +117 -117
  249. package/src/module/notification/entity/notification.entity.ts +26 -26
  250. package/src/module/notification/entity/otp.entity.ts +28 -28
  251. package/src/module/notification/firebase-admin.config.ts +22 -22
  252. package/src/module/notification/notification.module.ts +69 -69
  253. package/src/module/notification/repository/otp.repository.ts +27 -27
  254. package/src/module/notification/service/email.service.ts +127 -127
  255. package/src/module/notification/service/notification.service.ts +163 -163
  256. package/src/module/notification/service/otp.service.ts +132 -132
  257. package/src/module/third-party-module/entity/third-party-api-registry.entity.ts +52 -52
  258. package/src/module/third-party-module/repository/third-party-api-registry.repository.ts +20 -20
  259. package/src/module/third-party-module/service/api-registry.service.ts +13 -13
  260. package/src/module/third-party-module/third-party.module.ts +12 -12
  261. package/src/module/user/controller/login.controller.ts +197 -197
  262. package/src/module/user/controller/user.controller.ts +40 -40
  263. package/src/module/user/dto/create-user.dto.ts +62 -62
  264. package/src/module/user/dto/update-user.dto.ts +4 -4
  265. package/src/module/user/entity/role.entity.ts +33 -33
  266. package/src/module/user/entity/user-role-mapping.entity.ts +38 -38
  267. package/src/module/user/entity/user-session.entity.ts +73 -73
  268. package/src/module/user/entity/user.entity.ts +59 -59
  269. package/src/module/user/repository/role.repository.ts +96 -96
  270. package/src/module/user/repository/user-role-mapping.repository.ts +126 -126
  271. package/src/module/user/repository/user.repository.ts +50 -50
  272. package/src/module/user/repository/userSession.repository.ts +33 -33
  273. package/src/module/user/service/login.service.ts +284 -284
  274. package/src/module/user/service/role.service.ts +189 -189
  275. package/src/module/user/service/user-role-mapping.service.ts +98 -98
  276. package/src/module/user/service/user-session.service.ts +168 -168
  277. package/src/module/user/service/user.service.ts +365 -365
  278. package/src/module/user/user.module.ts +65 -65
  279. package/src/module/workflow/controller/action-category.controller.ts +54 -54
  280. package/src/module/workflow/controller/action-resource-mapping.controller.ts +23 -23
  281. package/src/module/workflow/controller/action-template-mapping.controller.ts +35 -35
  282. package/src/module/workflow/controller/action.controller.ts +111 -111
  283. package/src/module/workflow/controller/activity-log.controller.ts +55 -55
  284. package/src/module/workflow/controller/comm-template.controller.ts +43 -43
  285. package/src/module/workflow/controller/entity-modification.controller.ts +35 -35
  286. package/src/module/workflow/controller/form-master.controller.ts +43 -43
  287. package/src/module/workflow/controller/stage-group.controller.ts +48 -48
  288. package/src/module/workflow/controller/stage.controller.ts +50 -50
  289. package/src/module/workflow/controller/task.controller.ts +77 -77
  290. package/src/module/workflow/controller/workflow-list-master.controller.ts +44 -44
  291. package/src/module/workflow/controller/workflow-meta.controller.ts +80 -80
  292. package/src/module/workflow/controller/workflow.controller.ts +67 -67
  293. package/src/module/workflow/entity/action-category.entity.ts +38 -38
  294. package/src/module/workflow/entity/action-data.entity.ts +55 -55
  295. package/src/module/workflow/entity/action-resources-mapping.entity.ts +29 -29
  296. package/src/module/workflow/entity/action-template-mapping.entity.ts +17 -17
  297. package/src/module/workflow/entity/action.entity.ts +50 -50
  298. package/src/module/workflow/entity/activity-log.entity.ts +43 -43
  299. package/src/module/workflow/entity/comm-template.entity.ts +43 -43
  300. package/src/module/workflow/entity/entity-modification.entity.ts +38 -38
  301. package/src/module/workflow/entity/form.entity.ts +25 -25
  302. package/src/module/workflow/entity/stage-action-mapping.entity.ts +17 -17
  303. package/src/module/workflow/entity/stage-group.entity.ts +23 -23
  304. package/src/module/workflow/entity/stage-movement-data.entity.ts +38 -38
  305. package/src/module/workflow/entity/stage.entity.ts +20 -20
  306. package/src/module/workflow/entity/task-data.entity.ts +88 -88
  307. package/src/module/workflow/entity/template-attach-mapper.entity.ts +30 -30
  308. package/src/module/workflow/entity/workflow-data.entity.ts +11 -11
  309. package/src/module/workflow/entity/workflow-level-mapping.entity.ts +18 -18
  310. package/src/module/workflow/entity/workflow.entity.ts +20 -20
  311. package/src/module/workflow/repository/action-category.repository.ts +79 -79
  312. package/src/module/workflow/repository/action-data.repository.ts +333 -333
  313. package/src/module/workflow/repository/action.repository.ts +323 -323
  314. package/src/module/workflow/repository/activity-log.repository.ts +148 -148
  315. package/src/module/workflow/repository/comm-template.repository.ts +149 -149
  316. package/src/module/workflow/repository/form-master.repository.ts +59 -59
  317. package/src/module/workflow/repository/stage-group.repository.ts +176 -176
  318. package/src/module/workflow/repository/stage-movement.repository.ts +244 -244
  319. package/src/module/workflow/repository/stage.repository.ts +172 -172
  320. package/src/module/workflow/repository/task.repository.ts +127 -127
  321. package/src/module/workflow/repository/workflow.repository.ts +42 -42
  322. package/src/module/workflow/service/action-category.service.ts +33 -33
  323. package/src/module/workflow/service/action-data.service.ts +62 -62
  324. package/src/module/workflow/service/action-resources-mapping.service.ts +10 -10
  325. package/src/module/workflow/service/action-template-mapping.service.ts +106 -106
  326. package/src/module/workflow/service/action.service.ts +279 -279
  327. package/src/module/workflow/service/activity-log.service.ts +107 -107
  328. package/src/module/workflow/service/comm-template.service.ts +180 -180
  329. package/src/module/workflow/service/entity-modification.service.ts +67 -67
  330. package/src/module/workflow/service/form-master.service.ts +35 -35
  331. package/src/module/workflow/service/populate-workflow.service.ts +303 -303
  332. package/src/module/workflow/service/stage-action-mapping.service.ts +5 -5
  333. package/src/module/workflow/service/stage-group.service.ts +319 -319
  334. package/src/module/workflow/service/stage.service.ts +199 -199
  335. package/src/module/workflow/service/task.service.ts +560 -560
  336. package/src/module/workflow/service/workflow-list-master.service.ts +60 -60
  337. package/src/module/workflow/service/workflow-meta.service.ts +640 -640
  338. package/src/module/workflow/service/workflow.service.ts +205 -205
  339. package/src/module/workflow/workflow.module.ts +176 -176
  340. package/src/module/workflow-automation/controller/workflow-automation.controller.ts +21 -21
  341. package/src/module/workflow-automation/entity/workflow-automation-action.entity.ts +26 -26
  342. package/src/module/workflow-automation/entity/workflow-automation.entity.ts +35 -35
  343. package/src/module/workflow-automation/interface/action.decorator.ts +7 -7
  344. package/src/module/workflow-automation/interface/action.interface.ts +5 -5
  345. package/src/module/workflow-automation/service/action-registery.service.ts +35 -35
  346. package/src/module/workflow-automation/service/workflow-automation-engine.service.ts +214 -214
  347. package/src/module/workflow-automation/service/workflow-automation.service.ts +347 -347
  348. package/src/module/workflow-automation/workflow-automation.module.ts +34 -34
  349. package/src/resources/dev.properties.yaml +30 -30
  350. package/src/resources/local.properties.yaml +27 -27
  351. package/src/resources/properties.module.ts +12 -12
  352. package/src/resources/properties.yaml.ts +11 -11
  353. package/src/resources/uat.properties.yaml +31 -31
  354. package/src/table.config.ts +126 -126
  355. package/src/utils/dto/excel-data.dto.ts +14 -14
  356. package/src/utils/dto/excelsheet-data.dto.ts +5 -5
  357. package/src/utils/service/base64util.service.ts +18 -18
  358. package/src/utils/service/clockIDGenUtil.service.ts +21 -21
  359. package/src/utils/service/codeGenerator.service.ts +22 -22
  360. package/src/utils/service/dateUtil.service.ts +17 -17
  361. package/src/utils/service/encryptUtil.service.ts +97 -97
  362. package/src/utils/service/excel-helper.service.ts +72 -72
  363. package/src/utils/service/excelUtil.service.ts +15 -15
  364. package/src/utils/service/file-util.service.ts +11 -11
  365. package/src/utils/service/json-util.service.ts +23 -23
  366. package/src/utils/service/loggingUtil.service.ts +34 -34
  367. package/src/utils/service/reflection-helper.service.ts +62 -62
  368. package/src/utils/service/wbsCodeGen.service.ts +8 -8
  369. package/src/utils/utils.module.ts +25 -25
  370. package/tsconfig.build.json +4 -4
  371. package/tsconfig.json +24 -24
  372. package/.claude/settings.local.json +0 -26
  373. package/.idea/250218_nodejs_core.iml +0 -9
  374. package/.idea/codeStyles/Project.xml +0 -59
  375. package/.idea/codeStyles/codeStyleConfig.xml +0 -5
  376. package/.idea/copilot.data.migration.agent.xml +0 -6
  377. package/.idea/copilot.data.migration.ask.xml +0 -6
  378. package/.idea/copilot.data.migration.ask2agent.xml +0 -6
  379. package/.idea/copilot.data.migration.edit.xml +0 -6
  380. package/.idea/inspectionProfiles/Project_Default.xml +0 -6
  381. package/.idea/misc.xml +0 -6
  382. package/.idea/modules.xml +0 -8
  383. package/.idea/prettier.xml +0 -6
  384. package/.idea/vcs.xml +0 -6
  385. package/server.log +0 -850
@@ -1,941 +1,941 @@
1
- import { BadRequestException, Inject, Injectable } from '@nestjs/common';
2
- import { AttributeMasterService } from 'src/module/meta/service/attribute-master.service';
3
- import { EntityMasterService } from 'src/module/meta/service/entity-master.service';
4
- import { EntityTableColumnService } from 'src/module/meta/service/entity-table-column.service';
5
- import { EntityTableService } from 'src/module/meta/service/entity-table.service';
6
- import { DataSource } from 'typeorm';
7
- import { FilterCondition, FilterRequestDto } from '../dto/filter-request.dto';
8
- import { SavedFilterService } from './saved-filter.service';
9
-
10
- import * as moment from 'moment';
11
- import { EntityRelationService } from 'src/module/meta/service/entity-relation.service';
12
- import { ResolverService } from 'src/module/meta/service/resolver.service';
13
- import { LoggingService } from 'src/utils/service/loggingUtil.service';
14
-
15
- @Injectable()
16
- export class FilterService {
17
- constructor(
18
- private dataSource: DataSource,
19
- private readonly attributeMasterService: AttributeMasterService,
20
- private readonly entityMasterService: EntityMasterService,
21
- @Inject('SavedFilterService')
22
- private readonly savedFilterService: SavedFilterService,
23
- @Inject('EntityRelationService')
24
- private readonly entityRelationService: EntityRelationService,
25
- private readonly resolverService: ResolverService,
26
- @Inject() protected readonly loggingService: LoggingService,
27
- ) {}
28
- private readonly skipAppCodeFilterEntities = ['ORGP'];
29
- private readonly skipOrgFilterEntities = ['ORGP'];
30
-
31
-
32
- private async gettab_value_counts(
33
- tableName: string,
34
- column: string | undefined,
35
- whereClauses: { query: string; params: Record<string, any> }[],
36
- ) {
37
- if (!column) return [];
38
-
39
- let whereSQL = '';
40
- const values: any[] = [];
41
-
42
- if (whereClauses.length > 0) {
43
- const clauseParts = whereClauses.map((clause) => {
44
- let parsedQuery = clause.query.replace(/\be\./g, ''); // remove e.
45
-
46
- Object.entries(clause.params).forEach(([key, val]) => {
47
- if (Array.isArray(val)) {
48
- // if it's an array → expand placeholders (?, ?, ?)
49
- const placeholders = val.map(() => '?').join(', ');
50
- parsedQuery = parsedQuery.replace(new RegExp(`:${key}`, 'g'), `(${placeholders})`);
51
- values.push(...val); // flatten values
52
- } else {
53
- parsedQuery = parsedQuery.replace(new RegExp(`:${key}`, 'g'), '?');
54
- values.push(val);
55
- }
56
- });
57
-
58
- return parsedQuery;
59
- });
60
-
61
- whereSQL = `WHERE ${clauseParts.join(' AND ')}`;
62
- }
63
-
64
- const rawSQL = `
65
- SELECT ${column} AS tab_value, COUNT(*) AS tab_value_count
66
- FROM ${tableName}
67
- ${whereSQL}
68
- GROUP BY ${column}
69
- `;
70
-
71
- const rows = await this.dataSource.query(rawSQL, values);
72
-
73
- const total = rows.reduce(
74
- (sum, r) => sum + parseInt(r.tab_value_count, 10),
75
- 0,
76
- );
77
-
78
- return [
79
- { tab_value: 'All', tab_value_count: total },
80
- ...rows.map((r) => ({
81
- tab_value: r.tab_value ?? 'UNKNOWN',
82
- tab_value_count: parseInt(r.tab_value_count, 10),
83
- })),
84
- ];
85
- }
86
-
87
-
88
- async applyFilterWrapper(dto: FilterRequestDto) {
89
- const {
90
- entity_type,
91
- quickFilter = [],
92
- savedFilterCode,
93
- attributeFilter = [],
94
- loggedInUser,
95
- } = dto;
96
-
97
- // 🔹 Step 1: Collect all filters (from body + savedFilter)
98
- const savedFilters = await this.getSavedFilters(
99
- savedFilterCode ?? undefined,
100
- );
101
- const allFilters = [
102
- ...quickFilter,
103
- ...attributeFilter,
104
- ...savedFilters,
105
- ].filter((f) => f.filter_value !== '');
106
-
107
- // 🔹 Step 2: Group filters by filter_entity_type
108
- const grouped = allFilters.reduce(
109
- (acc, f) => {
110
- if (!acc[f.filter_entity_type]) acc[f.filter_entity_type] = [];
111
- acc[f.filter_entity_type].push(f);
112
- return acc;
113
- },
114
- {} as Record<string, any[]>,
115
- );
116
-
117
- console.log('🟠 [FilterService] Grouped filters by entity type:', grouped);
118
-
119
- // 🔹 Step 3: Handle sub-entities first
120
- let intersectionIds: number[] | null = null;
121
- for (const [subEntityType, filters] of Object.entries(grouped)) {
122
- if (subEntityType === entity_type) continue; // skip main entity for now
123
-
124
- let { queryParams, tabs, ...newDto } = dto;
125
-
126
- const subDto: FilterRequestDto = {
127
- ...newDto,
128
- entity_type: subEntityType,
129
- quickFilter: filters as FilterCondition[],
130
- savedFilterCode: null, // already merged
131
- attributeFilter: [],
132
- };
133
-
134
- const subResult = await this.applyFilter(subDto);
135
- const subEntityIds = subResult.data.entity_list.map((row) => row.id);
136
-
137
- console.log(
138
- `🧩 [FilterService] Sub-entity ${subEntityType} returned IDs:`,
139
- subEntityIds,
140
- );
141
-
142
- if (!subEntityIds.length) {
143
- console.log(
144
- `ℹ️ [FilterService] No records for sub-entity ${subEntityType}, returning empty result`,
145
- );
146
- return {
147
- success: true,
148
- data: { entity_tabs: [], entity_list: [], pagination: {} },
149
- };
150
- }
151
-
152
- const relatedIds = await this.entityRelationService.getRelatedEntityIds(
153
- entity_type,
154
- subEntityType,
155
- subEntityIds,
156
- dto.loggedInUser.organization_id,
157
- );
158
-
159
- intersectionIds =
160
- intersectionIds === null
161
- ? relatedIds
162
- : intersectionIds.filter((id) => relatedIds.includes(id));
163
-
164
- if (intersectionIds.length === 0) {
165
- console.log(
166
- '🚫 [FilterService] No intersection IDs left, returning empty result',
167
- );
168
- return {
169
- success: true,
170
- data: { entity_tabs: [], entity_list: [], pagination: {} },
171
- };
172
- }
173
- }
174
-
175
- // 🔹 Step 4: Call applyFilter for main entity
176
- const mainFilters = grouped[entity_type] || [];
177
- const mainDto: FilterRequestDto = {
178
- ...dto,
179
- quickFilter: [...mainFilters],
180
- savedFilterCode: null,
181
- attributeFilter: [],
182
- };
183
-
184
- if (intersectionIds && intersectionIds.length > 0) {
185
- (mainDto.quickFilter ??= []).push({
186
- filter_attribute: 'id',
187
- filter_operator: 'equal',
188
- filter_value: intersectionIds,
189
- filter_entity_type: entity_type,
190
- });
191
- }
192
-
193
- return await this.applyFilter(mainDto);
194
- }
195
-
196
- async applyFilter(dto: FilterRequestDto) {
197
- const {
198
- entity_type,
199
- quickFilter,
200
- savedFilterCode,
201
- attributeFilter,
202
- tabs,
203
- sortby,
204
- loggedInUser,
205
- queryParams,
206
- customLevelType,
207
- customLevelId,
208
- customAppCode,
209
- } = dto;
210
-
211
- // abstract user details
212
- const {
213
- level_type,
214
- level_id,
215
- id: user_id,
216
- appcode,
217
- organization_id,
218
- } = loggedInUser || {};
219
-
220
- // Fetch meta from entity table service
221
- const entityMeta = await this.entityMasterService.getEntityData(
222
- entity_type,
223
- loggedInUser,
224
- );
225
- const tableName = entityMeta?.data_source; // data_source is the table name
226
-
227
- if (!tableName) {
228
- console.error(`❌ [FilterService] Invalid entity_type: ${entity_type}`);
229
- throw new BadRequestException(`Invalid entity_type: ${entity_type}`);
230
- }
231
-
232
- const getAttributeColumnMeta =
233
- await this.attributeMasterService.findAttributesByMappedEntityType(
234
- entity_type,
235
- loggedInUser,
236
- );
237
-
238
- const attributeMetaMap = getAttributeColumnMeta.reduce(
239
- (acc, attr) => {
240
- acc[attr.attribute_key] = attr;
241
- return acc;
242
- },
243
- {} as Record<string, any>,
244
- );
245
-
246
- // Get and parse saved filters
247
- const savedFilters = await this.getSavedFilters(
248
- savedFilterCode ?? undefined,
249
- );
250
- const savedFiltersNormalized = savedFilters.map((f) => ({
251
- filter_attribute: f.filter_attribute,
252
- filter_operator: f.filter_operator,
253
- filter_value: f.filter_value,
254
- }));
255
-
256
- const baseFilters = [
257
- ...(quickFilter || []).filter(
258
- (f) => f.filter_value != null && f.filter_value !== '',
259
- ),
260
- ...savedFiltersNormalized.filter(
261
- (f) => f.filter_value != null && f.filter_value !== '',
262
- ),
263
- ...(attributeFilter || []).filter(
264
- (f) => f.filter_value != null && f.filter_value !== '',
265
- ),
266
- ];
267
-
268
- // 🧱 Build where clauses
269
- const baseWhere = this.buildWhereClauses(baseFilters, attributeMetaMap);
270
-
271
- // Handle TEMPLATE entity special condition
272
- if (entity_type === 'TEMP' || entity_type === 'TEM') {
273
- const templateTable = entityMeta?.data_source || 'frm_wf_comm_template';
274
-
275
- if (level_type === 'ORG') {
276
-
277
- baseWhere.push({
278
- query: ` ((e.level_type = 'ORG' AND e.level_id = ${loggedInUser.organization_id} AND e.organization_id = ${loggedInUser.organization_id}))`,
279
- params: {
280
-
281
- }
282
- })
283
-
284
- } else if (level_type === 'SCH') {
285
- baseWhere.push({
286
- query: `
287
- (
288
- (e.level_type = 'SCH' AND e.level_id = ${loggedInUser.level_id} AND e.organization_id = ${loggedInUser.organization_id})
289
- OR
290
- (
291
- e.level_type = 'ORG'
292
- AND e.level_id = ${loggedInUser.organization_id}
293
- AND e.organization_id = ${loggedInUser.organization_id}
294
- AND e.code NOT IN (
295
- SELECT sub.code
296
- FROM frm_wf_comm_template AS sub
297
- WHERE sub.level_type = 'SCH' AND sub.level_id = ${loggedInUser.level_id}
298
- )
299
- )
300
- )
301
- `,
302
- params: {
303
-
304
- }
305
- });
306
-
307
- }
308
- }
309
-
310
- // Default org/level clause — skip TEMPLATE entity
311
- if (
312
- entity_type !== 'ORGP' &&
313
- entity_type !== 'TEMP' &&
314
- entity_type !== 'TEM' && // ✅ skip TEMPLATE
315
- level_type &&
316
- level_id &&
317
- organization_id &&
318
- !customLevelType &&
319
- !customLevelId
320
- ) {
321
- baseWhere.push({
322
- query:
323
- 'e.organization_id = :organization_id AND e.level_type = :level_type AND e.level_id = :level_id',
324
- params: { organization_id, level_type, level_id },
325
- });
326
- }
327
-
328
-
329
-
330
-
331
-
332
- if (entity_type == "USR" || entity_type == "UPR") {
333
- baseWhere.push({
334
- query: 'e.is_customer is NULL',
335
- params: {},
336
- });
337
- }
338
-
339
-
340
- if (customLevelType && customLevelId && customAppCode) {
341
- baseWhere.push({
342
- query:
343
- 'e.organization_id = :organization_id AND e.level_type = :customLevelType AND e.level_id = :customLevelId AND e.appcode = :customAppCode',
344
- params: {
345
- organization_id,
346
- customLevelType,
347
- customLevelId,
348
- customAppCode,
349
- },
350
- });
351
- }
352
-
353
- // Handle queryParams filters
354
- if (queryParams) {
355
- Object.entries(queryParams).forEach(([key, value]) => {
356
- if (!value) return;
357
-
358
- if (key === 'attributeName' && queryParams['attributeValue']) {
359
- const attrName = value;
360
- const attrValue = queryParams['attributeValue'];
361
- baseWhere.push({
362
- query: `e.${attrName} = :${attrName}`,
363
- params: { [attrName]: attrValue },
364
- });
365
- } else if (key !== 'attributeValue') {
366
- baseWhere.push({
367
- query: `e.${key} = :${key}`,
368
- params: { [key]: value },
369
- });
370
- }
371
- });
372
- }
373
-
374
- console.log('🟠 [FilterService] Constructed baseWhere clauses:', baseWhere);
375
-
376
- // layout preference query
377
- const layoutPreference = await this.dataSource.query(
378
- `SELECT mapped_json
379
- FROM frm_entity_layout_pref
380
- WHERE user_id = ? AND mapped_entity_type = ? AND mapped_level_id = ? AND mapped_level_type = ? AND type = 'layout'`,
381
- [user_id, entity_type, level_id, level_type],
382
- );
383
-
384
- // Extract layout preference
385
- const layout = layoutPreference?.[0]?.mapped_json?.quick_tab || {};
386
- const showList = layout?.show_list?.map((val) => val.toLowerCase()) || [];
387
-
388
- let allTabs;
389
- if (layout.attribute) {
390
- allTabs = await this.gettab_value_counts(
391
- entityMeta?.data_source,
392
- layout.attribute,
393
- baseWhere,
394
- );
395
- } else {
396
- allTabs = await this.gettab_value_counts(
397
- entityMeta?.data_source,
398
- tabs?.columnName,
399
- baseWhere,
400
- );
401
- }
402
-
403
- let filteredTabs;
404
-
405
- if (showList?.length > 0) {
406
- const isAllNeeded = layout?.isAllSelected && !showList.includes('all');
407
- if (isAllNeeded) showList.push('all');
408
-
409
- filteredTabs = allTabs.filter((tab) =>
410
- showList.includes(tab.tab_value.toLowerCase()),
411
- );
412
-
413
- const allTab = filteredTabs.find(
414
- (tab) => tab.tab_value?.toLowerCase() === 'all',
415
- );
416
- filteredTabs = filteredTabs.filter(
417
- (tab) => tab.tab_value?.toLowerCase() !== 'all',
418
- );
419
-
420
- // SORTING LOGIC
421
- if (layout.sorting === 'asc') {
422
- filteredTabs.sort((a, b) =>
423
- a.tab_value.toLowerCase().localeCompare(b.tab_value.toLowerCase()),
424
- );
425
- } else if (layout.sorting === 'dsc') {
426
- filteredTabs.sort((a, b) =>
427
- b.tab_value.toLowerCase().localeCompare(a.tab_value.toLowerCase()),
428
- );
429
- } else if (layout.sorting === 'count_asc') {
430
- filteredTabs.sort((a, b) => a.tab_value_count - b.tab_value_count);
431
- } else if (layout.sorting === 'count_dsc') {
432
- filteredTabs.sort((a, b) => b.tab_value_count - a.tab_value_count);
433
- } else if (layout.sorting === 'custom') {
434
- const orderMap = new Map<string, number>(
435
- showList.map((val, index) => [val.toLowerCase(), index]),
436
- );
437
- filteredTabs.sort((a, b) => {
438
- const aIndex = orderMap.get(a.tab_value.toLowerCase()) ?? Infinity;
439
- const bIndex = orderMap.get(b.tab_value.toLowerCase()) ?? Infinity;
440
- return aIndex - bIndex;
441
- });
442
- }
443
-
444
- if (allTab) filteredTabs.unshift(allTab);
445
-
446
- if (layout?.isCombineOther) {
447
- const originalAllTab = allTabs.find(
448
- (tab) => tab.tab_value.toLowerCase() === 'all',
449
- );
450
- const allCount = originalAllTab?.tab_value_count ?? 0;
451
- const knownTabCountSum = filteredTabs
452
- .filter((tab) => tab.tab_value.toLowerCase() !== 'all')
453
- .reduce((acc, tab) => acc + tab.tab_value_count, 0);
454
-
455
- const othersCount = allCount - knownTabCountSum;
456
- filteredTabs.push({
457
- tab_value: 'OTHERS',
458
- tab_value_count: othersCount < 0 ? 0 : othersCount,
459
- });
460
- }
461
- } else {
462
- filteredTabs = allTabs;
463
- }
464
-
465
- const dataWhere = [...baseWhere];
466
-
467
- if (tabs?.columnName && tabs?.value) {
468
- const tabAttrMeta = attributeMetaMap[tabs.columnName];
469
- const tabValue = tabs.value.toLowerCase();
470
-
471
- if (tabValue === 'others') {
472
- const valuesToExclude = showList.filter((v) => v !== 'all');
473
- if (valuesToExclude.length > 0) {
474
- for (const value of valuesToExclude) {
475
- const resolvedId = await this.resolverService.getResolvedId(
476
- loggedInUser,
477
- tabs.columnName,
478
- value,
479
- entity_type,
480
- );
481
- if (resolvedId) {
482
- const tabCondition = this.buildCondition(
483
- {
484
- filter_attribute: tabs.columnName,
485
- filter_operator: 'not_equal',
486
- filter_value: [resolvedId],
487
- skip_id: true,
488
- },
489
- tabAttrMeta,
490
- );
491
- if (tabCondition) dataWhere.push(tabCondition);
492
- }
493
- }
494
- }
495
- } else if (tabValue !== 'all') {
496
- const resolvedId = await this.resolverService.getResolvedId(
497
- loggedInUser,
498
- tabs.columnName,
499
- tabs.value,
500
- entity_type,
501
- );
502
-
503
- if (resolvedId) {
504
- const tabCondition = this.buildCondition(
505
- {
506
- filter_attribute: tabs.columnName,
507
- filter_operator: 'equal',
508
- filter_value: [resolvedId],
509
- skip_id: true,
510
- },
511
- tabAttrMeta,
512
- );
513
- if (tabCondition) dataWhere.push(tabCondition);
514
- }
515
- }
516
- }
517
-
518
- const qb = this.dataSource
519
- .createQueryBuilder()
520
- .select('e.*')
521
- .from(tableName, 'e');
522
- dataWhere.forEach((clause) => qb.andWhere(clause.query, clause.params));
523
-
524
- if (layoutPreference && layoutPreference[0]?.mapped_json?.sorting) {
525
- if (Array.isArray(layoutPreference[0]?.mapped_json?.sorting?.tabs)) {
526
- const preferenceTabArray =
527
- layoutPreference[0]?.mapped_json?.sorting?.tabs;
528
- const tabFilter = preferenceTabArray.find(
529
- (tabData) => tabData.tab_name === tabs?.value,
530
- );
531
- tabFilter?.sortby.forEach(({ column, order }) => {
532
- qb.addOrderBy(
533
- `e.${column}`,
534
- order?.toUpperCase() === 'DSC' ? 'DESC' : 'ASC',
535
- );
536
- });
537
- } else if (
538
- Array.isArray(layoutPreference[0]?.mapped_json?.sorting?.sortby)
539
- ) {
540
- layoutPreference[0]?.mapped_json?.sorting?.sortby?.forEach(
541
- ({ column, order }) => {
542
- qb.addOrderBy(
543
- `e.${column}`,
544
- order?.toUpperCase() === 'DSC' ? 'DESC' : 'ASC',
545
- );
546
- },
547
- );
548
- }
549
- }
550
-
551
- if (Array.isArray(sortby) && sortby.length > 0) {
552
- sortby.forEach(({ sortColum, sortType }) => {
553
- if (sortColum) {
554
- qb.addOrderBy(`e.${sortColum}`, sortType?.toUpperCase() === 'DSC' ? 'DESC' : 'ASC');
555
- }
556
- });
557
- } else {
558
- // fallback if no explicit sortby sent
559
- qb.addOrderBy('e.created_date', 'DESC');
560
- }
561
-
562
-
563
-
564
- const page = dto.page && dto.page > 0 ? dto.page : 1;
565
- const size = dto.size && dto.size > 0 ? dto.size : 10;
566
- qb.skip((page - 1) * size).take(size);
567
-
568
- const entity_list = await qb.getRawMany();
569
-
570
- console.log(`📦 [FilterService] Fetched ${entity_list.length} records`);
571
-
572
- const dateAttributes = Object.entries(attributeMetaMap)
573
- .filter(([_, attr]) => attr.data_type === 'date')
574
- .map(([key]) => key);
575
-
576
- const formatDate = (dateStr: string | null): string | null =>
577
- dateStr ? moment(dateStr).format('DD-MM-YYYY') : '';
578
-
579
- const formatDatesInRow = (row: any): any => {
580
- const formattedRow = { ...row };
581
- for (const key of dateAttributes) {
582
- if (formattedRow[key])
583
- formattedRow[key] = formatDate(formattedRow[key]);
584
- }
585
- return formattedRow;
586
- };
587
-
588
- const formattedEntityList = entity_list.map(formatDatesInRow);
589
-
590
- const resolvedEntityList = await Promise.all(
591
- formattedEntityList.map((row) =>
592
- this.resolverService.getResolvedData(loggedInUser, row, entity_type),
593
- ),
594
- );
595
-
596
- const resolvedTabs = await Promise.all(
597
- filteredTabs.map(async (tab) => {
598
- const tabAttrKey = layout?.attribute || tabs?.columnName;
599
-
600
- if (
601
- !tabAttrKey ||
602
- tab.tab_value?.toLowerCase() === 'all' ||
603
- tab.tab_value?.toLowerCase() === 'others'
604
- ) {
605
- return tab;
606
- }
607
-
608
- const resolvedVal = await this.resolverService.getResolvedValue(
609
- loggedInUser,
610
- tabAttrKey,
611
- tab.tab_value,
612
- entity_type,
613
- );
614
-
615
- return { ...tab, tab_value: resolvedVal ?? tab.tab_value };
616
- }),
617
- );
618
-
619
- const countQb = this.dataSource
620
- .createQueryBuilder()
621
- .select('COUNT(*)', 'count')
622
- .from(tableName, 'e');
623
- dataWhere.forEach((clause) =>
624
- countQb.andWhere(clause.query, clause.params),
625
- );
626
- const countResult = await countQb.getRawOne();
627
- const total = parseInt(countResult.count, 10);
628
-
629
- console.log('📊 [FilterService] Returning final result with total:', total);
630
-
631
- return {
632
- success: true,
633
- data: {
634
- entity_tabs: resolvedTabs,
635
- entity_list: resolvedEntityList,
636
- pagination: {
637
- total,
638
- page,
639
- size,
640
- totalPages: Math.ceil(total / size),
641
- hasNextPage: page * size < total,
642
- hasPreviousPage: page > 1,
643
- },
644
- },
645
- };
646
- }
647
-
648
- private parseFilters(raw: any, isSingle = false): any[] {
649
- if (!raw) return [];
650
-
651
- if (typeof raw === 'string') {
652
- try {
653
- const parsed = JSON.parse(raw);
654
- return isSingle ? [parsed] : parsed;
655
- } catch {
656
- throw new BadRequestException('Invalid JSON in filter input');
657
- }
658
- }
659
-
660
- return isSingle ? [raw] : Array.isArray(raw) ? raw : [];
661
- }
662
-
663
- private async getSavedFilters(code?: string): Promise<any[]> {
664
- if (!code) return [];
665
-
666
- const savedFilter = await this.savedFilterService.getDetailsByCode(code);
667
- if (!savedFilter) {
668
- throw new BadRequestException(`Saved filter not found for code: ${code}`);
669
- }
670
- return savedFilter;
671
- }
672
-
673
- private buildWhereClauses(
674
- filters: any[],
675
- attributeMeta: Record<string, any>,
676
- ) {
677
- return filters
678
- .map((f) => this.buildCondition(f, attributeMeta[f.filter_attribute]))
679
- .filter(
680
- (clause): clause is { query: string; params: any } => clause !== null,
681
- );
682
- }
683
-
684
- private buildCondition(
685
- filter: any,
686
- meta: any,
687
- ): { query: string; params: any } | null {
688
- if (!meta) return null;
689
-
690
- let attr = filter.filter_attribute;
691
- const val = filter.filter_value;
692
- const op = filter.filter_operator;
693
- const key = `param_${attr}_${Math.random().toString(36).substring(2, 8)}`;
694
-
695
- // if (
696
- // (meta.data_source_type === 'entity' ||
697
- // meta.data_source_type === 'master') &&
698
- // !filter.skip_id
699
- // ) {
700
- // attr = `${attr}_id`;
701
- // }
702
-
703
- switch (meta.data_type) {
704
- case 'text':
705
- return this.buildTextCondition(attr, op, val, key);
706
- case 'number':
707
- return this.buildNumberCondition(attr, op, val, key);
708
- case 'date':
709
- return this.buildDateCondition(attr, op, val, key);
710
- case 'select':
711
- return this.buildMultiSelectCondition(attr, op, val, key);
712
- case 'multiselect':
713
- return this.buildMultiSelectCondition(attr, op, val, key);
714
- case 'checkbox':
715
- return this.buildMultiSelectCondition(attr, op, val, key);
716
- case 'radio':
717
- return this.buildMultiSelectCondition(attr, op, val, key);
718
- case 'year':
719
- return this.buildYearCondition(attr, op, val, key);
720
- default:
721
- return null;
722
- }
723
- }
724
-
725
- private buildTextCondition(attr: string, op: string, val: any, key: string) {
726
- switch (op) {
727
- case 'contains':
728
- return {
729
- query: `LOWER(e.${attr}) LIKE :${key}`,
730
- params: { [key]: `%${val ? val.toLowerCase() : ''}%` },
731
- };
732
- case 'equal':
733
- return {
734
- query: `e.${attr} = :${key}`,
735
- params: { [key]: val },
736
- };
737
- case 'not_equal':
738
- return {
739
- query: `e.${attr} != :${key}`,
740
- params: { [key]: val },
741
- };
742
- case 'empty':
743
- return {
744
- query: `e.${attr} IS NULL`,
745
- params: {},
746
- };
747
- case 'not_empty':
748
- return {
749
- query: `e.${attr} IS NOT NULL`,
750
- params: {},
751
- };
752
- default:
753
- throw new BadRequestException(`Unsupported operator for text: ${op}`);
754
- }
755
- }
756
-
757
- private buildNumberCondition(
758
- attr: string,
759
- op: string,
760
- val: any,
761
- key: string,
762
- ) {
763
- switch (op) {
764
- case 'equal':
765
- return { query: `e.${attr} = :${key}`, params: { [key]: val } };
766
- case 'not_equal':
767
- return { query: `e.${attr} != :${key}`, params: { [key]: val } };
768
- case 'greater_than':
769
- return { query: `e.${attr} > :${key}`, params: { [key]: val } };
770
- case 'less_than':
771
- return { query: `e.${attr} < :${key}`, params: { [key]: val } };
772
- case 'less_than_qual_to':
773
- return { query: `e.${attr} <= :${key}`, params: { [key]: val } };
774
- case 'greater_than_qual_to':
775
- return { query: `e.${attr} >= :${key}`, params: { [key]: val } };
776
- case 'empty':
777
- return { query: `e.${attr} IS NULL`, params: {} };
778
- case 'not_empty':
779
- return { query: `e.${attr} IS NOT NULL`, params: {} };
780
-
781
- default:
782
- throw new BadRequestException(`Unsupported operator for number: ${op}`);
783
- }
784
- }
785
-
786
- private buildDateCondition(attr: string, op: string, val: any, key: string) {
787
- switch (op) {
788
- case 'equal':
789
- return { query: `e.${attr} = :${key}`, params: { [key]: val } };
790
- case 'before':
791
- return { query: `e.${attr} < :${key}`, params: { [key]: val } };
792
- case 'after':
793
- return { query: `e.${attr} > :${key}`, params: { [key]: val } };
794
- case 'between': {
795
- if (typeof val === 'string') {
796
- val = val.split(',').map((v) => v.trim());
797
- }
798
-
799
- if (
800
- !Array.isArray(val) ||
801
- val.length !== 2 ||
802
- val[0] === '' ||
803
- val[1] === ''
804
- ) {
805
- // throw new BadRequestException(`Invalid value for in_between: ${val}`);
806
- console.log(`Invalid value for in_between: ${val}`);
807
- return null;
808
- }
809
- return {
810
- query: `e.${attr} BETWEEN :${key}_start AND :${key}_end`,
811
- params: {
812
- [`${key}_start`]: val[0],
813
- [`${key}_end`]: val[1],
814
- },
815
- };
816
- }
817
-
818
- case 'today': {
819
- const today = new Date().toISOString().split('T')[0]; // 'YYYY-MM-DD'
820
-
821
- return {
822
- query: `DATE(e.${attr}) = :today`,
823
- params: {
824
- today,
825
- },
826
- };
827
- }
828
-
829
- case 'empty': {
830
- return {
831
- query: `e.${attr} IS NULL`,
832
- params: {},
833
- };
834
- }
835
-
836
- case 'not_empty': {
837
- return {
838
- query: `e.${attr} IS NOT NULL`,
839
- params: {},
840
- };
841
- }
842
- default:
843
- throw new BadRequestException(`Unsupported operator for date: ${op}`);
844
- }
845
- }
846
-
847
- private buildSelectCondition(
848
- attr: string,
849
- op: string,
850
- val: any,
851
- key: string,
852
- ) {
853
- switch (op) {
854
- case 'equal':
855
- return { query: `e.${attr} = :${key}`, params: { [key]: val } };
856
- case 'not_equal':
857
- return { query: `e.${attr} != :${key}`, params: { [key]: val } };
858
- case 'empty':
859
- return { query: `e.${attr} IS NULL`, params: {} };
860
- case 'not_empty':
861
- return { query: `e.${attr} IS NOT NULL`, params: {} };
862
- default:
863
- throw new BadRequestException(`Unsupported operator for select: ${op}`);
864
- }
865
- }
866
-
867
- private buildMultiSelectCondition(
868
- attr: string,
869
- op: string,
870
- val: any,
871
- key: string,
872
- ) {
873
- if (Array.isArray(val) && val.length === 0) {
874
- return { query: '1=1', params: {} };
875
- }
876
-
877
- if ((op === 'equal' || op === 'not_equal') && !Array.isArray(val)) {
878
- throw new BadRequestException(
879
- `Value for multi-select must be an array for operator: ${op}`,
880
- );
881
- }
882
-
883
- switch (op) {
884
- case 'equal':
885
- return {
886
- query: `e.${attr} IN (:${key})`,
887
- params: { [key]: val },
888
- };
889
- case 'not_equal':
890
- return {
891
- query: `e.${attr} NOT IN (:${key})`,
892
- params: { [key]: val },
893
- };
894
- case 'contains':
895
- return {
896
- query: `e.${attr} LIKE :${key}`,
897
- params: { [key]: `%${val}%` },
898
- };
899
- case 'not_contains':
900
- return {
901
- query: `e.${attr} NOT LIKE :${key}`,
902
- params: { [key]: `%${val}%` },
903
- };
904
- case 'empty':
905
- return { query: `e.${attr} IS NULL`, params: {} };
906
- case 'not_empty':
907
- return { query: `e.${attr} IS NOT NULL`, params: {} };
908
- default:
909
- throw new BadRequestException(
910
- `Unsupported operator for multiselect: ${op}`,
911
- );
912
- }
913
- }
914
-
915
- private buildYearCondition(attr: string, op: string, val: any, key: string) {
916
- switch (op) {
917
- case 'equal':
918
- return {
919
- query: `e.${attr} = :${key}`,
920
- params: { [key]: parseInt(val, 10) },
921
- };
922
- case 'not_equal':
923
- return {
924
- query: `e.${attr} != :${key}`,
925
- params: { [key]: parseInt(val, 10) },
926
- };
927
- case 'greater_than':
928
- return {
929
- query: `e.${attr} > :${key}`,
930
- params: { [key]: parseInt(val, 10) },
931
- };
932
- case 'less_than':
933
- return {
934
- query: `e.${attr} < :${key}`,
935
- params: { [key]: parseInt(val, 10) },
936
- };
937
- default:
938
- throw new BadRequestException(`Unsupported operator for year: ${op}`);
939
- }
940
- }
941
- }
1
+ import { BadRequestException, Inject, Injectable } from '@nestjs/common';
2
+ import { AttributeMasterService } from 'src/module/meta/service/attribute-master.service';
3
+ import { EntityMasterService } from 'src/module/meta/service/entity-master.service';
4
+ import { EntityTableColumnService } from 'src/module/meta/service/entity-table-column.service';
5
+ import { EntityTableService } from 'src/module/meta/service/entity-table.service';
6
+ import { DataSource } from 'typeorm';
7
+ import { FilterCondition, FilterRequestDto } from '../dto/filter-request.dto';
8
+ import { SavedFilterService } from './saved-filter.service';
9
+
10
+ import * as moment from 'moment';
11
+ import { EntityRelationService } from 'src/module/meta/service/entity-relation.service';
12
+ import { ResolverService } from 'src/module/meta/service/resolver.service';
13
+ import { LoggingService } from 'src/utils/service/loggingUtil.service';
14
+
15
+ @Injectable()
16
+ export class FilterService {
17
+ constructor(
18
+ private dataSource: DataSource,
19
+ private readonly attributeMasterService: AttributeMasterService,
20
+ private readonly entityMasterService: EntityMasterService,
21
+ @Inject('SavedFilterService')
22
+ private readonly savedFilterService: SavedFilterService,
23
+ @Inject('EntityRelationService')
24
+ private readonly entityRelationService: EntityRelationService,
25
+ private readonly resolverService: ResolverService,
26
+ @Inject() protected readonly loggingService: LoggingService,
27
+ ) {}
28
+ private readonly skipAppCodeFilterEntities = ['ORGP'];
29
+ private readonly skipOrgFilterEntities = ['ORGP'];
30
+
31
+
32
+ private async gettab_value_counts(
33
+ tableName: string,
34
+ column: string | undefined,
35
+ whereClauses: { query: string; params: Record<string, any> }[],
36
+ ) {
37
+ if (!column) return [];
38
+
39
+ let whereSQL = '';
40
+ const values: any[] = [];
41
+
42
+ if (whereClauses.length > 0) {
43
+ const clauseParts = whereClauses.map((clause) => {
44
+ let parsedQuery = clause.query.replace(/\be\./g, ''); // remove e.
45
+
46
+ Object.entries(clause.params).forEach(([key, val]) => {
47
+ if (Array.isArray(val)) {
48
+ // if it's an array → expand placeholders (?, ?, ?)
49
+ const placeholders = val.map(() => '?').join(', ');
50
+ parsedQuery = parsedQuery.replace(new RegExp(`:${key}`, 'g'), `(${placeholders})`);
51
+ values.push(...val); // flatten values
52
+ } else {
53
+ parsedQuery = parsedQuery.replace(new RegExp(`:${key}`, 'g'), '?');
54
+ values.push(val);
55
+ }
56
+ });
57
+
58
+ return parsedQuery;
59
+ });
60
+
61
+ whereSQL = `WHERE ${clauseParts.join(' AND ')}`;
62
+ }
63
+
64
+ const rawSQL = `
65
+ SELECT ${column} AS tab_value, COUNT(*) AS tab_value_count
66
+ FROM ${tableName}
67
+ ${whereSQL}
68
+ GROUP BY ${column}
69
+ `;
70
+
71
+ const rows = await this.dataSource.query(rawSQL, values);
72
+
73
+ const total = rows.reduce(
74
+ (sum, r) => sum + parseInt(r.tab_value_count, 10),
75
+ 0,
76
+ );
77
+
78
+ return [
79
+ { tab_value: 'All', tab_value_count: total },
80
+ ...rows.map((r) => ({
81
+ tab_value: r.tab_value ?? 'UNKNOWN',
82
+ tab_value_count: parseInt(r.tab_value_count, 10),
83
+ })),
84
+ ];
85
+ }
86
+
87
+
88
+ async applyFilterWrapper(dto: FilterRequestDto) {
89
+ const {
90
+ entity_type,
91
+ quickFilter = [],
92
+ savedFilterCode,
93
+ attributeFilter = [],
94
+ loggedInUser,
95
+ } = dto;
96
+
97
+ // 🔹 Step 1: Collect all filters (from body + savedFilter)
98
+ const savedFilters = await this.getSavedFilters(
99
+ savedFilterCode ?? undefined,
100
+ );
101
+ const allFilters = [
102
+ ...quickFilter,
103
+ ...attributeFilter,
104
+ ...savedFilters,
105
+ ].filter((f) => f.filter_value !== '');
106
+
107
+ // 🔹 Step 2: Group filters by filter_entity_type
108
+ const grouped = allFilters.reduce(
109
+ (acc, f) => {
110
+ if (!acc[f.filter_entity_type]) acc[f.filter_entity_type] = [];
111
+ acc[f.filter_entity_type].push(f);
112
+ return acc;
113
+ },
114
+ {} as Record<string, any[]>,
115
+ );
116
+
117
+ console.log('🟠 [FilterService] Grouped filters by entity type:', grouped);
118
+
119
+ // 🔹 Step 3: Handle sub-entities first
120
+ let intersectionIds: number[] | null = null;
121
+ for (const [subEntityType, filters] of Object.entries(grouped)) {
122
+ if (subEntityType === entity_type) continue; // skip main entity for now
123
+
124
+ let { queryParams, tabs, ...newDto } = dto;
125
+
126
+ const subDto: FilterRequestDto = {
127
+ ...newDto,
128
+ entity_type: subEntityType,
129
+ quickFilter: filters as FilterCondition[],
130
+ savedFilterCode: null, // already merged
131
+ attributeFilter: [],
132
+ };
133
+
134
+ const subResult = await this.applyFilter(subDto);
135
+ const subEntityIds = subResult.data.entity_list.map((row) => row.id);
136
+
137
+ console.log(
138
+ `🧩 [FilterService] Sub-entity ${subEntityType} returned IDs:`,
139
+ subEntityIds,
140
+ );
141
+
142
+ if (!subEntityIds.length) {
143
+ console.log(
144
+ `ℹ️ [FilterService] No records for sub-entity ${subEntityType}, returning empty result`,
145
+ );
146
+ return {
147
+ success: true,
148
+ data: { entity_tabs: [], entity_list: [], pagination: {} },
149
+ };
150
+ }
151
+
152
+ const relatedIds = await this.entityRelationService.getRelatedEntityIds(
153
+ entity_type,
154
+ subEntityType,
155
+ subEntityIds,
156
+ dto.loggedInUser.organization_id,
157
+ );
158
+
159
+ intersectionIds =
160
+ intersectionIds === null
161
+ ? relatedIds
162
+ : intersectionIds.filter((id) => relatedIds.includes(id));
163
+
164
+ if (intersectionIds.length === 0) {
165
+ console.log(
166
+ '🚫 [FilterService] No intersection IDs left, returning empty result',
167
+ );
168
+ return {
169
+ success: true,
170
+ data: { entity_tabs: [], entity_list: [], pagination: {} },
171
+ };
172
+ }
173
+ }
174
+
175
+ // 🔹 Step 4: Call applyFilter for main entity
176
+ const mainFilters = grouped[entity_type] || [];
177
+ const mainDto: FilterRequestDto = {
178
+ ...dto,
179
+ quickFilter: [...mainFilters],
180
+ savedFilterCode: null,
181
+ attributeFilter: [],
182
+ };
183
+
184
+ if (intersectionIds && intersectionIds.length > 0) {
185
+ (mainDto.quickFilter ??= []).push({
186
+ filter_attribute: 'id',
187
+ filter_operator: 'equal',
188
+ filter_value: intersectionIds,
189
+ filter_entity_type: entity_type,
190
+ });
191
+ }
192
+
193
+ return await this.applyFilter(mainDto);
194
+ }
195
+
196
+ async applyFilter(dto: FilterRequestDto) {
197
+ const {
198
+ entity_type,
199
+ quickFilter,
200
+ savedFilterCode,
201
+ attributeFilter,
202
+ tabs,
203
+ sortby,
204
+ loggedInUser,
205
+ queryParams,
206
+ customLevelType,
207
+ customLevelId,
208
+ customAppCode,
209
+ } = dto;
210
+
211
+ // abstract user details
212
+ const {
213
+ level_type,
214
+ level_id,
215
+ id: user_id,
216
+ appcode,
217
+ organization_id,
218
+ } = loggedInUser || {};
219
+
220
+ // Fetch meta from entity table service
221
+ const entityMeta = await this.entityMasterService.getEntityData(
222
+ entity_type,
223
+ loggedInUser,
224
+ );
225
+ const tableName = entityMeta?.data_source; // data_source is the table name
226
+
227
+ if (!tableName) {
228
+ console.error(`❌ [FilterService] Invalid entity_type: ${entity_type}`);
229
+ throw new BadRequestException(`Invalid entity_type: ${entity_type}`);
230
+ }
231
+
232
+ const getAttributeColumnMeta =
233
+ await this.attributeMasterService.findAttributesByMappedEntityType(
234
+ entity_type,
235
+ loggedInUser,
236
+ );
237
+
238
+ const attributeMetaMap = getAttributeColumnMeta.reduce(
239
+ (acc, attr) => {
240
+ acc[attr.attribute_key] = attr;
241
+ return acc;
242
+ },
243
+ {} as Record<string, any>,
244
+ );
245
+
246
+ // Get and parse saved filters
247
+ const savedFilters = await this.getSavedFilters(
248
+ savedFilterCode ?? undefined,
249
+ );
250
+ const savedFiltersNormalized = savedFilters.map((f) => ({
251
+ filter_attribute: f.filter_attribute,
252
+ filter_operator: f.filter_operator,
253
+ filter_value: f.filter_value,
254
+ }));
255
+
256
+ const baseFilters = [
257
+ ...(quickFilter || []).filter(
258
+ (f) => f.filter_value != null && f.filter_value !== '',
259
+ ),
260
+ ...savedFiltersNormalized.filter(
261
+ (f) => f.filter_value != null && f.filter_value !== '',
262
+ ),
263
+ ...(attributeFilter || []).filter(
264
+ (f) => f.filter_value != null && f.filter_value !== '',
265
+ ),
266
+ ];
267
+
268
+ // 🧱 Build where clauses
269
+ const baseWhere = this.buildWhereClauses(baseFilters, attributeMetaMap);
270
+
271
+ // Handle TEMPLATE entity special condition
272
+ if (entity_type === 'TEMP' || entity_type === 'TEM') {
273
+ const templateTable = entityMeta?.data_source || 'frm_wf_comm_template';
274
+
275
+ if (level_type === 'ORG') {
276
+
277
+ baseWhere.push({
278
+ query: ` ((e.level_type = 'ORG' AND e.level_id = ${loggedInUser.organization_id} AND e.organization_id = ${loggedInUser.organization_id}))`,
279
+ params: {
280
+
281
+ }
282
+ })
283
+
284
+ } else if (level_type === 'SCH') {
285
+ baseWhere.push({
286
+ query: `
287
+ (
288
+ (e.level_type = 'SCH' AND e.level_id = ${loggedInUser.level_id} AND e.organization_id = ${loggedInUser.organization_id})
289
+ OR
290
+ (
291
+ e.level_type = 'ORG'
292
+ AND e.level_id = ${loggedInUser.organization_id}
293
+ AND e.organization_id = ${loggedInUser.organization_id}
294
+ AND e.code NOT IN (
295
+ SELECT sub.code
296
+ FROM frm_wf_comm_template AS sub
297
+ WHERE sub.level_type = 'SCH' AND sub.level_id = ${loggedInUser.level_id}
298
+ )
299
+ )
300
+ )
301
+ `,
302
+ params: {
303
+
304
+ }
305
+ });
306
+
307
+ }
308
+ }
309
+
310
+ // Default org/level clause — skip TEMPLATE entity
311
+ if (
312
+ entity_type !== 'ORGP' &&
313
+ entity_type !== 'TEMP' &&
314
+ entity_type !== 'TEM' && // ✅ skip TEMPLATE
315
+ level_type &&
316
+ level_id &&
317
+ organization_id &&
318
+ !customLevelType &&
319
+ !customLevelId
320
+ ) {
321
+ baseWhere.push({
322
+ query:
323
+ 'e.organization_id = :organization_id AND e.level_type = :level_type AND e.level_id = :level_id',
324
+ params: { organization_id, level_type, level_id },
325
+ });
326
+ }
327
+
328
+
329
+
330
+
331
+
332
+ if (entity_type == "USR" || entity_type == "UPR") {
333
+ baseWhere.push({
334
+ query: 'e.is_customer is NULL',
335
+ params: {},
336
+ });
337
+ }
338
+
339
+
340
+ if (customLevelType && customLevelId && customAppCode) {
341
+ baseWhere.push({
342
+ query:
343
+ 'e.organization_id = :organization_id AND e.level_type = :customLevelType AND e.level_id = :customLevelId AND e.appcode = :customAppCode',
344
+ params: {
345
+ organization_id,
346
+ customLevelType,
347
+ customLevelId,
348
+ customAppCode,
349
+ },
350
+ });
351
+ }
352
+
353
+ // Handle queryParams filters
354
+ if (queryParams) {
355
+ Object.entries(queryParams).forEach(([key, value]) => {
356
+ if (!value) return;
357
+
358
+ if (key === 'attributeName' && queryParams['attributeValue']) {
359
+ const attrName = value;
360
+ const attrValue = queryParams['attributeValue'];
361
+ baseWhere.push({
362
+ query: `e.${attrName} = :${attrName}`,
363
+ params: { [attrName]: attrValue },
364
+ });
365
+ } else if (key !== 'attributeValue') {
366
+ baseWhere.push({
367
+ query: `e.${key} = :${key}`,
368
+ params: { [key]: value },
369
+ });
370
+ }
371
+ });
372
+ }
373
+
374
+ console.log('🟠 [FilterService] Constructed baseWhere clauses:', baseWhere);
375
+
376
+ // layout preference query
377
+ const layoutPreference = await this.dataSource.query(
378
+ `SELECT mapped_json
379
+ FROM frm_entity_layout_pref
380
+ WHERE user_id = ? AND mapped_entity_type = ? AND mapped_level_id = ? AND mapped_level_type = ? AND type = 'layout'`,
381
+ [user_id, entity_type, level_id, level_type],
382
+ );
383
+
384
+ // Extract layout preference
385
+ const layout = layoutPreference?.[0]?.mapped_json?.quick_tab || {};
386
+ const showList = layout?.show_list?.map((val) => val.toLowerCase()) || [];
387
+
388
+ let allTabs;
389
+ if (layout.attribute) {
390
+ allTabs = await this.gettab_value_counts(
391
+ entityMeta?.data_source,
392
+ layout.attribute,
393
+ baseWhere,
394
+ );
395
+ } else {
396
+ allTabs = await this.gettab_value_counts(
397
+ entityMeta?.data_source,
398
+ tabs?.columnName,
399
+ baseWhere,
400
+ );
401
+ }
402
+
403
+ let filteredTabs;
404
+
405
+ if (showList?.length > 0) {
406
+ const isAllNeeded = layout?.isAllSelected && !showList.includes('all');
407
+ if (isAllNeeded) showList.push('all');
408
+
409
+ filteredTabs = allTabs.filter((tab) =>
410
+ showList.includes(tab.tab_value.toLowerCase()),
411
+ );
412
+
413
+ const allTab = filteredTabs.find(
414
+ (tab) => tab.tab_value?.toLowerCase() === 'all',
415
+ );
416
+ filteredTabs = filteredTabs.filter(
417
+ (tab) => tab.tab_value?.toLowerCase() !== 'all',
418
+ );
419
+
420
+ // SORTING LOGIC
421
+ if (layout.sorting === 'asc') {
422
+ filteredTabs.sort((a, b) =>
423
+ a.tab_value.toLowerCase().localeCompare(b.tab_value.toLowerCase()),
424
+ );
425
+ } else if (layout.sorting === 'dsc') {
426
+ filteredTabs.sort((a, b) =>
427
+ b.tab_value.toLowerCase().localeCompare(a.tab_value.toLowerCase()),
428
+ );
429
+ } else if (layout.sorting === 'count_asc') {
430
+ filteredTabs.sort((a, b) => a.tab_value_count - b.tab_value_count);
431
+ } else if (layout.sorting === 'count_dsc') {
432
+ filteredTabs.sort((a, b) => b.tab_value_count - a.tab_value_count);
433
+ } else if (layout.sorting === 'custom') {
434
+ const orderMap = new Map<string, number>(
435
+ showList.map((val, index) => [val.toLowerCase(), index]),
436
+ );
437
+ filteredTabs.sort((a, b) => {
438
+ const aIndex = orderMap.get(a.tab_value.toLowerCase()) ?? Infinity;
439
+ const bIndex = orderMap.get(b.tab_value.toLowerCase()) ?? Infinity;
440
+ return aIndex - bIndex;
441
+ });
442
+ }
443
+
444
+ if (allTab) filteredTabs.unshift(allTab);
445
+
446
+ if (layout?.isCombineOther) {
447
+ const originalAllTab = allTabs.find(
448
+ (tab) => tab.tab_value.toLowerCase() === 'all',
449
+ );
450
+ const allCount = originalAllTab?.tab_value_count ?? 0;
451
+ const knownTabCountSum = filteredTabs
452
+ .filter((tab) => tab.tab_value.toLowerCase() !== 'all')
453
+ .reduce((acc, tab) => acc + tab.tab_value_count, 0);
454
+
455
+ const othersCount = allCount - knownTabCountSum;
456
+ filteredTabs.push({
457
+ tab_value: 'OTHERS',
458
+ tab_value_count: othersCount < 0 ? 0 : othersCount,
459
+ });
460
+ }
461
+ } else {
462
+ filteredTabs = allTabs;
463
+ }
464
+
465
+ const dataWhere = [...baseWhere];
466
+
467
+ if (tabs?.columnName && tabs?.value) {
468
+ const tabAttrMeta = attributeMetaMap[tabs.columnName];
469
+ const tabValue = tabs.value.toLowerCase();
470
+
471
+ if (tabValue === 'others') {
472
+ const valuesToExclude = showList.filter((v) => v !== 'all');
473
+ if (valuesToExclude.length > 0) {
474
+ for (const value of valuesToExclude) {
475
+ const resolvedId = await this.resolverService.getResolvedId(
476
+ loggedInUser,
477
+ tabs.columnName,
478
+ value,
479
+ entity_type,
480
+ );
481
+ if (resolvedId) {
482
+ const tabCondition = this.buildCondition(
483
+ {
484
+ filter_attribute: tabs.columnName,
485
+ filter_operator: 'not_equal',
486
+ filter_value: [resolvedId],
487
+ skip_id: true,
488
+ },
489
+ tabAttrMeta,
490
+ );
491
+ if (tabCondition) dataWhere.push(tabCondition);
492
+ }
493
+ }
494
+ }
495
+ } else if (tabValue !== 'all') {
496
+ const resolvedId = await this.resolverService.getResolvedId(
497
+ loggedInUser,
498
+ tabs.columnName,
499
+ tabs.value,
500
+ entity_type,
501
+ );
502
+
503
+ if (resolvedId) {
504
+ const tabCondition = this.buildCondition(
505
+ {
506
+ filter_attribute: tabs.columnName,
507
+ filter_operator: 'equal',
508
+ filter_value: [resolvedId],
509
+ skip_id: true,
510
+ },
511
+ tabAttrMeta,
512
+ );
513
+ if (tabCondition) dataWhere.push(tabCondition);
514
+ }
515
+ }
516
+ }
517
+
518
+ const qb = this.dataSource
519
+ .createQueryBuilder()
520
+ .select('e.*')
521
+ .from(tableName, 'e');
522
+ dataWhere.forEach((clause) => qb.andWhere(clause.query, clause.params));
523
+
524
+ if (layoutPreference && layoutPreference[0]?.mapped_json?.sorting) {
525
+ if (Array.isArray(layoutPreference[0]?.mapped_json?.sorting?.tabs)) {
526
+ const preferenceTabArray =
527
+ layoutPreference[0]?.mapped_json?.sorting?.tabs;
528
+ const tabFilter = preferenceTabArray.find(
529
+ (tabData) => tabData.tab_name === tabs?.value,
530
+ );
531
+ tabFilter?.sortby.forEach(({ column, order }) => {
532
+ qb.addOrderBy(
533
+ `e.${column}`,
534
+ order?.toUpperCase() === 'DSC' ? 'DESC' : 'ASC',
535
+ );
536
+ });
537
+ } else if (
538
+ Array.isArray(layoutPreference[0]?.mapped_json?.sorting?.sortby)
539
+ ) {
540
+ layoutPreference[0]?.mapped_json?.sorting?.sortby?.forEach(
541
+ ({ column, order }) => {
542
+ qb.addOrderBy(
543
+ `e.${column}`,
544
+ order?.toUpperCase() === 'DSC' ? 'DESC' : 'ASC',
545
+ );
546
+ },
547
+ );
548
+ }
549
+ }
550
+
551
+ if (Array.isArray(sortby) && sortby.length > 0) {
552
+ sortby.forEach(({ sortColum, sortType }) => {
553
+ if (sortColum) {
554
+ qb.addOrderBy(`e.${sortColum}`, sortType?.toUpperCase() === 'DSC' ? 'DESC' : 'ASC');
555
+ }
556
+ });
557
+ } else {
558
+ // fallback if no explicit sortby sent
559
+ qb.addOrderBy('e.created_date', 'DESC');
560
+ }
561
+
562
+
563
+
564
+ const page = dto.page && dto.page > 0 ? dto.page : 1;
565
+ const size = dto.size && dto.size > 0 ? dto.size : 10;
566
+ qb.skip((page - 1) * size).take(size);
567
+
568
+ const entity_list = await qb.getRawMany();
569
+
570
+ console.log(`📦 [FilterService] Fetched ${entity_list.length} records`);
571
+
572
+ const dateAttributes = Object.entries(attributeMetaMap)
573
+ .filter(([_, attr]) => attr.data_type === 'date')
574
+ .map(([key]) => key);
575
+
576
+ const formatDate = (dateStr: string | null): string | null =>
577
+ dateStr ? moment(dateStr).format('DD-MM-YYYY') : '';
578
+
579
+ const formatDatesInRow = (row: any): any => {
580
+ const formattedRow = { ...row };
581
+ for (const key of dateAttributes) {
582
+ if (formattedRow[key])
583
+ formattedRow[key] = formatDate(formattedRow[key]);
584
+ }
585
+ return formattedRow;
586
+ };
587
+
588
+ const formattedEntityList = entity_list.map(formatDatesInRow);
589
+
590
+ const resolvedEntityList = await Promise.all(
591
+ formattedEntityList.map((row) =>
592
+ this.resolverService.getResolvedData(loggedInUser, row, entity_type),
593
+ ),
594
+ );
595
+
596
+ const resolvedTabs = await Promise.all(
597
+ filteredTabs.map(async (tab) => {
598
+ const tabAttrKey = layout?.attribute || tabs?.columnName;
599
+
600
+ if (
601
+ !tabAttrKey ||
602
+ tab.tab_value?.toLowerCase() === 'all' ||
603
+ tab.tab_value?.toLowerCase() === 'others'
604
+ ) {
605
+ return tab;
606
+ }
607
+
608
+ const resolvedVal = await this.resolverService.getResolvedValue(
609
+ loggedInUser,
610
+ tabAttrKey,
611
+ tab.tab_value,
612
+ entity_type,
613
+ );
614
+
615
+ return { ...tab, tab_value: resolvedVal ?? tab.tab_value };
616
+ }),
617
+ );
618
+
619
+ const countQb = this.dataSource
620
+ .createQueryBuilder()
621
+ .select('COUNT(*)', 'count')
622
+ .from(tableName, 'e');
623
+ dataWhere.forEach((clause) =>
624
+ countQb.andWhere(clause.query, clause.params),
625
+ );
626
+ const countResult = await countQb.getRawOne();
627
+ const total = parseInt(countResult.count, 10);
628
+
629
+ console.log('📊 [FilterService] Returning final result with total:', total);
630
+
631
+ return {
632
+ success: true,
633
+ data: {
634
+ entity_tabs: resolvedTabs,
635
+ entity_list: resolvedEntityList,
636
+ pagination: {
637
+ total,
638
+ page,
639
+ size,
640
+ totalPages: Math.ceil(total / size),
641
+ hasNextPage: page * size < total,
642
+ hasPreviousPage: page > 1,
643
+ },
644
+ },
645
+ };
646
+ }
647
+
648
+ private parseFilters(raw: any, isSingle = false): any[] {
649
+ if (!raw) return [];
650
+
651
+ if (typeof raw === 'string') {
652
+ try {
653
+ const parsed = JSON.parse(raw);
654
+ return isSingle ? [parsed] : parsed;
655
+ } catch {
656
+ throw new BadRequestException('Invalid JSON in filter input');
657
+ }
658
+ }
659
+
660
+ return isSingle ? [raw] : Array.isArray(raw) ? raw : [];
661
+ }
662
+
663
+ private async getSavedFilters(code?: string): Promise<any[]> {
664
+ if (!code) return [];
665
+
666
+ const savedFilter = await this.savedFilterService.getDetailsByCode(code);
667
+ if (!savedFilter) {
668
+ throw new BadRequestException(`Saved filter not found for code: ${code}`);
669
+ }
670
+ return savedFilter;
671
+ }
672
+
673
+ private buildWhereClauses(
674
+ filters: any[],
675
+ attributeMeta: Record<string, any>,
676
+ ) {
677
+ return filters
678
+ .map((f) => this.buildCondition(f, attributeMeta[f.filter_attribute]))
679
+ .filter(
680
+ (clause): clause is { query: string; params: any } => clause !== null,
681
+ );
682
+ }
683
+
684
+ private buildCondition(
685
+ filter: any,
686
+ meta: any,
687
+ ): { query: string; params: any } | null {
688
+ if (!meta) return null;
689
+
690
+ let attr = filter.filter_attribute;
691
+ const val = filter.filter_value;
692
+ const op = filter.filter_operator;
693
+ const key = `param_${attr}_${Math.random().toString(36).substring(2, 8)}`;
694
+
695
+ // if (
696
+ // (meta.data_source_type === 'entity' ||
697
+ // meta.data_source_type === 'master') &&
698
+ // !filter.skip_id
699
+ // ) {
700
+ // attr = `${attr}_id`;
701
+ // }
702
+
703
+ switch (meta.data_type) {
704
+ case 'text':
705
+ return this.buildTextCondition(attr, op, val, key);
706
+ case 'number':
707
+ return this.buildNumberCondition(attr, op, val, key);
708
+ case 'date':
709
+ return this.buildDateCondition(attr, op, val, key);
710
+ case 'select':
711
+ return this.buildMultiSelectCondition(attr, op, val, key);
712
+ case 'multiselect':
713
+ return this.buildMultiSelectCondition(attr, op, val, key);
714
+ case 'checkbox':
715
+ return this.buildMultiSelectCondition(attr, op, val, key);
716
+ case 'radio':
717
+ return this.buildMultiSelectCondition(attr, op, val, key);
718
+ case 'year':
719
+ return this.buildYearCondition(attr, op, val, key);
720
+ default:
721
+ return null;
722
+ }
723
+ }
724
+
725
+ private buildTextCondition(attr: string, op: string, val: any, key: string) {
726
+ switch (op) {
727
+ case 'contains':
728
+ return {
729
+ query: `LOWER(e.${attr}) LIKE :${key}`,
730
+ params: { [key]: `%${val ? val.toLowerCase() : ''}%` },
731
+ };
732
+ case 'equal':
733
+ return {
734
+ query: `e.${attr} = :${key}`,
735
+ params: { [key]: val },
736
+ };
737
+ case 'not_equal':
738
+ return {
739
+ query: `e.${attr} != :${key}`,
740
+ params: { [key]: val },
741
+ };
742
+ case 'empty':
743
+ return {
744
+ query: `e.${attr} IS NULL`,
745
+ params: {},
746
+ };
747
+ case 'not_empty':
748
+ return {
749
+ query: `e.${attr} IS NOT NULL`,
750
+ params: {},
751
+ };
752
+ default:
753
+ throw new BadRequestException(`Unsupported operator for text: ${op}`);
754
+ }
755
+ }
756
+
757
+ private buildNumberCondition(
758
+ attr: string,
759
+ op: string,
760
+ val: any,
761
+ key: string,
762
+ ) {
763
+ switch (op) {
764
+ case 'equal':
765
+ return { query: `e.${attr} = :${key}`, params: { [key]: val } };
766
+ case 'not_equal':
767
+ return { query: `e.${attr} != :${key}`, params: { [key]: val } };
768
+ case 'greater_than':
769
+ return { query: `e.${attr} > :${key}`, params: { [key]: val } };
770
+ case 'less_than':
771
+ return { query: `e.${attr} < :${key}`, params: { [key]: val } };
772
+ case 'less_than_qual_to':
773
+ return { query: `e.${attr} <= :${key}`, params: { [key]: val } };
774
+ case 'greater_than_qual_to':
775
+ return { query: `e.${attr} >= :${key}`, params: { [key]: val } };
776
+ case 'empty':
777
+ return { query: `e.${attr} IS NULL`, params: {} };
778
+ case 'not_empty':
779
+ return { query: `e.${attr} IS NOT NULL`, params: {} };
780
+
781
+ default:
782
+ throw new BadRequestException(`Unsupported operator for number: ${op}`);
783
+ }
784
+ }
785
+
786
+ private buildDateCondition(attr: string, op: string, val: any, key: string) {
787
+ switch (op) {
788
+ case 'equal':
789
+ return { query: `e.${attr} = :${key}`, params: { [key]: val } };
790
+ case 'before':
791
+ return { query: `e.${attr} < :${key}`, params: { [key]: val } };
792
+ case 'after':
793
+ return { query: `e.${attr} > :${key}`, params: { [key]: val } };
794
+ case 'between': {
795
+ if (typeof val === 'string') {
796
+ val = val.split(',').map((v) => v.trim());
797
+ }
798
+
799
+ if (
800
+ !Array.isArray(val) ||
801
+ val.length !== 2 ||
802
+ val[0] === '' ||
803
+ val[1] === ''
804
+ ) {
805
+ // throw new BadRequestException(`Invalid value for in_between: ${val}`);
806
+ console.log(`Invalid value for in_between: ${val}`);
807
+ return null;
808
+ }
809
+ return {
810
+ query: `e.${attr} BETWEEN :${key}_start AND :${key}_end`,
811
+ params: {
812
+ [`${key}_start`]: val[0],
813
+ [`${key}_end`]: val[1],
814
+ },
815
+ };
816
+ }
817
+
818
+ case 'today': {
819
+ const today = new Date().toISOString().split('T')[0]; // 'YYYY-MM-DD'
820
+
821
+ return {
822
+ query: `DATE(e.${attr}) = :today`,
823
+ params: {
824
+ today,
825
+ },
826
+ };
827
+ }
828
+
829
+ case 'empty': {
830
+ return {
831
+ query: `e.${attr} IS NULL`,
832
+ params: {},
833
+ };
834
+ }
835
+
836
+ case 'not_empty': {
837
+ return {
838
+ query: `e.${attr} IS NOT NULL`,
839
+ params: {},
840
+ };
841
+ }
842
+ default:
843
+ throw new BadRequestException(`Unsupported operator for date: ${op}`);
844
+ }
845
+ }
846
+
847
+ private buildSelectCondition(
848
+ attr: string,
849
+ op: string,
850
+ val: any,
851
+ key: string,
852
+ ) {
853
+ switch (op) {
854
+ case 'equal':
855
+ return { query: `e.${attr} = :${key}`, params: { [key]: val } };
856
+ case 'not_equal':
857
+ return { query: `e.${attr} != :${key}`, params: { [key]: val } };
858
+ case 'empty':
859
+ return { query: `e.${attr} IS NULL`, params: {} };
860
+ case 'not_empty':
861
+ return { query: `e.${attr} IS NOT NULL`, params: {} };
862
+ default:
863
+ throw new BadRequestException(`Unsupported operator for select: ${op}`);
864
+ }
865
+ }
866
+
867
+ private buildMultiSelectCondition(
868
+ attr: string,
869
+ op: string,
870
+ val: any,
871
+ key: string,
872
+ ) {
873
+ if (Array.isArray(val) && val.length === 0) {
874
+ return { query: '1=1', params: {} };
875
+ }
876
+
877
+ if ((op === 'equal' || op === 'not_equal') && !Array.isArray(val)) {
878
+ throw new BadRequestException(
879
+ `Value for multi-select must be an array for operator: ${op}`,
880
+ );
881
+ }
882
+
883
+ switch (op) {
884
+ case 'equal':
885
+ return {
886
+ query: `e.${attr} IN (:${key})`,
887
+ params: { [key]: val },
888
+ };
889
+ case 'not_equal':
890
+ return {
891
+ query: `e.${attr} NOT IN (:${key})`,
892
+ params: { [key]: val },
893
+ };
894
+ case 'contains':
895
+ return {
896
+ query: `e.${attr} LIKE :${key}`,
897
+ params: { [key]: `%${val}%` },
898
+ };
899
+ case 'not_contains':
900
+ return {
901
+ query: `e.${attr} NOT LIKE :${key}`,
902
+ params: { [key]: `%${val}%` },
903
+ };
904
+ case 'empty':
905
+ return { query: `e.${attr} IS NULL`, params: {} };
906
+ case 'not_empty':
907
+ return { query: `e.${attr} IS NOT NULL`, params: {} };
908
+ default:
909
+ throw new BadRequestException(
910
+ `Unsupported operator for multiselect: ${op}`,
911
+ );
912
+ }
913
+ }
914
+
915
+ private buildYearCondition(attr: string, op: string, val: any, key: string) {
916
+ switch (op) {
917
+ case 'equal':
918
+ return {
919
+ query: `e.${attr} = :${key}`,
920
+ params: { [key]: parseInt(val, 10) },
921
+ };
922
+ case 'not_equal':
923
+ return {
924
+ query: `e.${attr} != :${key}`,
925
+ params: { [key]: parseInt(val, 10) },
926
+ };
927
+ case 'greater_than':
928
+ return {
929
+ query: `e.${attr} > :${key}`,
930
+ params: { [key]: parseInt(val, 10) },
931
+ };
932
+ case 'less_than':
933
+ return {
934
+ query: `e.${attr} < :${key}`,
935
+ params: { [key]: parseInt(val, 10) },
936
+ };
937
+ default:
938
+ throw new BadRequestException(`Unsupported operator for year: ${op}`);
939
+ }
940
+ }
941
+ }