@opengis/admin 0.2.81 → 0.2.83

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 (137) hide show
  1. package/README.md +97 -97
  2. package/config.js +4 -4
  3. package/dist/{add-page-VWjSO8tB.js → add-page-DjV6f_jT.js} +1 -1
  4. package/dist/{admin-interface-DKCJEmgv.js → admin-interface-DAyLdquZ.js} +4 -4
  5. package/dist/{admin-view-CUJxtNoN.js → admin-view-DooY0sff.js} +2 -2
  6. package/dist/admin.js +1 -1
  7. package/dist/admin.umd.cjs +51 -51
  8. package/dist/assets/logo.svg +41 -41
  9. package/dist/{card-view-DM7rFVXy.js → card-view-58mVfI5f.js} +1 -1
  10. package/dist/{edit-page-CbLwc_DQ.js → edit-page-Bg2NgUpM.js} +1 -1
  11. package/dist/{import-file-Blg4So6f.js → import-file-BHcTcjJq.js} +6003 -5975
  12. package/dist/style.css +1 -1
  13. package/module/settings/card/admin.accounts.table/index.yml +7 -7
  14. package/module/settings/card/admin.accounts.table/rules.hbs +18 -18
  15. package/module/settings/card/admin.accounts.table/users.hbs +13 -13
  16. package/module/settings/card/admin.routes.table/groups.hbs +11 -11
  17. package/module/settings/card/admin.routes.table/index.yml +11 -11
  18. package/module/settings/card/admin.routes.table/users.hbs +16 -16
  19. package/module/settings/card/admin.table_properties.table/custom_columns.hbs +23 -0
  20. package/module/settings/card/admin.table_properties.table/custom_filters.hbs +1 -0
  21. package/module/settings/card/admin.table_properties.table/index.yml +13 -0
  22. package/module/settings/card/admin.table_properties.table/info.hbs +18 -0
  23. package/module/settings/cls/core.actions.json +17 -17
  24. package/module/settings/cls/core.scope.json +13 -13
  25. package/module/settings/cls/properties.site_status.json +13 -13
  26. package/module/settings/cls/properties.widget_status.json +13 -13
  27. package/module/settings/cls/users.user_type.json +13 -13
  28. package/module/settings/cls/yes_no.json +11 -11
  29. package/module/settings/form/admin.accounts.form.json +13 -13
  30. package/module/settings/form/admin.properties.form.json +15 -15
  31. package/module/settings/form/admin.roles.form.json +21 -21
  32. package/module/settings/form/admin.table_properties.form.json +20 -0
  33. package/module/settings/form/admin.user_properties.form.json +15 -15
  34. package/module/settings/form/admin.user_roles_card.form.json +13 -13
  35. package/module/settings/interface/admin.properties.json +4 -4
  36. package/module/settings/interface/admin.roles.json +4 -4
  37. package/module/settings/interface/admin.routes.json +4 -4
  38. package/module/settings/interface/admin.users.json +4 -4
  39. package/module/settings/menu.json +7 -32
  40. package/module/settings/select/core.routes.sql +1 -1
  41. package/module/settings/select/core.user_mentioned.sql +1 -1
  42. package/module/settings/select/core.user_uid.sql +1 -1
  43. package/module/settings/table/admin.properties.table.json +39 -39
  44. package/module/settings/table/admin.table_properties.table.json +38 -0
  45. package/module/settings/table/admin.user_properties.table.json +34 -34
  46. package/module/settings/table/auth.logs.table.json +98 -0
  47. package/package.json +8 -7
  48. package/plugin.js +29 -29
  49. package/server/helpers/core/badge.js +16 -16
  50. package/server/helpers/core/buttonHelper.js +21 -21
  51. package/server/helpers/core/select.js +48 -48
  52. package/server/helpers/core/token.js +18 -18
  53. package/server/helpers/index.js +31 -31
  54. package/server/helpers/list/buttonHelper.js +21 -21
  55. package/server/helpers/list/tableList.js +1 -1
  56. package/server/helpers/list/utils/button.js +5 -5
  57. package/server/helpers/temp/contentList.js +58 -58
  58. package/server/helpers/temp/ifCond.js +101 -101
  59. package/server/helpers/utils/button.js +5 -5
  60. package/server/plugins/access/index.mjs +6 -6
  61. package/server/plugins/adminHook.js +81 -81
  62. package/server/plugins/cron.js +10 -10
  63. package/server/plugins/docs.js +28 -28
  64. package/server/plugins/vite.js +71 -71
  65. package/server/routes/access/controllers/access.group.js +29 -29
  66. package/server/routes/access/controllers/access.group.post.js +49 -49
  67. package/server/routes/access/index.mjs +11 -11
  68. package/server/routes/access/schema.mjs +67 -67
  69. package/server/routes/calendar/controllers/calendar.data.js +125 -125
  70. package/server/routes/calendar/index.mjs +7 -7
  71. package/server/routes/calendar/schema.js +21 -21
  72. package/server/routes/data/controllers/cardData.js +106 -106
  73. package/server/routes/data/controllers/cardTabData.js +49 -49
  74. package/server/routes/data/controllers/funcs/getFilterSQL/index.js +92 -92
  75. package/server/routes/data/controllers/funcs/getFilterSQL/util/formatValue.js +170 -170
  76. package/server/routes/data/controllers/funcs/getFilterSQL/util/getCustomQuery.js +13 -13
  77. package/server/routes/data/controllers/funcs/getFilterSQL/util/getFilterQuery.js +64 -64
  78. package/server/routes/data/controllers/funcs/getFilterSQL/util/getOptimizedQuery.js +12 -12
  79. package/server/routes/data/controllers/funcs/getFilterSQL/util/getTableSql.js +34 -34
  80. package/server/routes/data/controllers/tableData.js +29 -29
  81. package/server/routes/data/controllers/tableDataId.js +27 -27
  82. package/server/routes/data/controllers/tableFilter.js +92 -92
  83. package/server/routes/data/controllers/tokenInfo.js +9 -9
  84. package/server/routes/data/controllers/utils/assignTokens.js +30 -30
  85. package/server/routes/data/controllers/utils/conditions.js +20 -20
  86. package/server/routes/data/controllers/utils/getColumns.js +8 -8
  87. package/server/routes/data/index.mjs +20 -20
  88. package/server/routes/data/schema.js +54 -54
  89. package/server/routes/menu/controllers/getMenu.js +1 -1
  90. package/server/routes/menu/index.mjs +5 -5
  91. package/server/routes/notifications/controllers/readNotifications.js +27 -27
  92. package/server/routes/notifications/controllers/testEmail.js +35 -35
  93. package/server/routes/notifications/controllers/userNotifications.js +53 -53
  94. package/server/routes/notifications/funcs/addNotification.js +21 -21
  95. package/server/routes/notifications/funcs/sendNotification.js +92 -92
  96. package/server/routes/notifications/hook/onWidgetSet.js +57 -57
  97. package/server/routes/notifications/index.mjs +27 -27
  98. package/server/routes/notifications/schema.js +16 -16
  99. package/server/routes/print/controllers/cardPrint.js +130 -130
  100. package/server/routes/properties/controllers/admin.properties.get.js +29 -29
  101. package/server/routes/properties/controllers/user.properties.get.js +30 -30
  102. package/server/routes/properties/controllers/user.properties.post.js +30 -30
  103. package/server/routes/properties/funcs/getSettings.js +56 -56
  104. package/server/routes/properties/funcs/setSettings.js +44 -44
  105. package/server/routes/properties/funcs/utils/dataInsert.js +26 -26
  106. package/server/routes/properties/index.mjs +14 -14
  107. package/server/routes/properties/schema.js +10 -10
  108. package/server/routes/root.mjs +3 -3
  109. package/server/routes/templates/controllers/getTemplate.js +49 -49
  110. package/server/routes/templates/index.mjs +16 -16
  111. package/server/routes/templates/schema.js +8 -8
  112. package/server/routes/user/controllers/user.cls.id.js +14 -14
  113. package/server/routes/user/controllers/user.cls.js +71 -71
  114. package/server/routes/user/controllers/user.info.js +17 -17
  115. package/server/routes/user/schema.js +14 -14
  116. package/server/routes/widget/controllers/utils/obj2db.js +13 -13
  117. package/server/routes/widget/controllers/widget.del.js +47 -47
  118. package/server/routes/widget/controllers/widget.get.js +103 -103
  119. package/server/routes/widget/controllers/widget.set.js +76 -76
  120. package/server/routes/widget/index.mjs +11 -11
  121. package/server/routes/widget/schema.js +12 -12
  122. package/server/templates/cls/itree.recrzone_category.json +73 -73
  123. package/server/templates/cls/test.json +9 -9
  124. package/server/templates/form/admin.user_cls.data.form.json +49 -49
  125. package/server/templates/form/admin.user_group_rel.form.json +21 -21
  126. package/server/templates/form/cp_building.form.json +32 -32
  127. package/server/templates/form/form-user-pass.json +10 -10
  128. package/server/templates/form/form-user_group.json +39 -39
  129. package/server/templates/form/form-users.json +156 -156
  130. package/server/templates/form/user_group_access.form.json +22 -22
  131. package/server/templates/pt/card-print.pt.hbs +19 -1
  132. package/server/templates/select/account_id.json +2 -2
  133. package/server/templates/select/account_id.sql +1 -1
  134. package/server/templates/table/gis.dataset.table.json +43 -43
  135. package/server/templates/table/management.user_group.table.json +112 -112
  136. package/server/templates/table/management.users.table.json +126 -126
  137. package/utils.js +29 -29
@@ -1,21 +1,21 @@
1
- function onCheck(rule, data) {
2
- const val = data[rule[0]];
3
- // console.log(val, rule[1], rule[2])
4
- if (rule[1] === '==') return val === rule[2];
5
- if (rule[1] === '!=') return val !== rule[2];
6
- if (rule[1] === 'in' && rule[2].split) return rule[2].split(',').includes(val);
7
- if (rule[1] === 'in' && rule[2].includes) return rule[2].includes(val);
8
-
9
- if (rule[1] === 'not in' && rule[2].split) return !rule[2].split(',').includes(val);
10
- if (rule[1] === 'not in' && rule[2].includes) return !rule[2].includes(val);
11
-
12
- if (rule[1] === '>') return val > rule[2];
13
- if (rule[1] === '<') return val < rule[2];
14
- }
15
- export default function conditions(rules, data) {
16
- if (!rules?.length) return true;
17
- const result = Array.isArray(rules[0]) ? !rules.filter(el => !onCheck(el, data)).length : onCheck(rules, data)
18
- // console.log(rules, result)
19
- return result;
20
-
1
+ function onCheck(rule, data) {
2
+ const val = data[rule[0]];
3
+ // console.log(val, rule[1], rule[2])
4
+ if (rule[1] === '==') return val === rule[2];
5
+ if (rule[1] === '!=') return val !== rule[2];
6
+ if (rule[1] === 'in' && rule[2].split) return rule[2].split(',').includes(val);
7
+ if (rule[1] === 'in' && rule[2].includes) return rule[2].includes(val);
8
+
9
+ if (rule[1] === 'not in' && rule[2].split) return !rule[2].split(',').includes(val);
10
+ if (rule[1] === 'not in' && rule[2].includes) return !rule[2].includes(val);
11
+
12
+ if (rule[1] === '>') return val > rule[2];
13
+ if (rule[1] === '<') return val < rule[2];
14
+ }
15
+ export default function conditions(rules, data) {
16
+ if (!rules?.length) return true;
17
+ const result = Array.isArray(rules[0]) ? !rules.filter(el => !onCheck(el, data)).length : onCheck(rules, data)
18
+ // console.log(rules, result)
19
+ return result;
20
+
21
21
  }
@@ -1,9 +1,9 @@
1
- import { getTemplate } from "@opengis/fastify-table/utils.js";
2
-
3
- export default async function getColumns({
4
- columns = [], params = {}, opt = {}, loadTable = {}, form, table, dbColumns = [], mode = 'table',
5
- }) {
6
- const columnList = dbColumns.map((el) => el.name || el).join(',');
7
- const cols = columns.filter((el) => columnList.includes(el?.name) && el?.name !== 'geom').map((el) => el?.name || el).join(',');
8
- return { cols, columnList };
1
+ import { getTemplate } from "@opengis/fastify-table/utils.js";
2
+
3
+ export default async function getColumns({
4
+ columns = [], params = {}, opt = {}, loadTable = {}, form, table, dbColumns = [], mode = 'table',
5
+ }) {
6
+ const columnList = dbColumns.map((el) => el.name || el).join(',');
7
+ const cols = columns.filter((el) => columnList.includes(el?.name) && el?.name !== 'geom').map((el) => el?.name || el).join(',');
8
+ return { cols, columnList };
9
9
  }
@@ -1,20 +1,20 @@
1
-
2
- import tableData from "./controllers/tableData.js";
3
- import tokenInfo from "./controllers/tokenInfo.js";
4
- // import tableDataId from "./controllers/tableDataId.js";
5
- import cardData from "./controllers/cardData.js";
6
- import cardTabData from './controllers/cardTabData.js';
7
- import tableFilter from "./controllers/tableFilter.js";
8
-
9
- import { tableDataSchema, tableDataIdSchema, tableFilterSchema, cardTabDataSchema } from './schema.js';
10
- import tableInfo from "./controllers/tableInfo.js";
11
-
12
- export default async function route(fastify) {
13
- const policy = ['public'];
14
- fastify.get(`/token-info/:token`, { config: { policy: ['admin'] } }, tokenInfo);
15
- fastify.get(`/table-data/:table`, { config: { policy }, schema: tableDataSchema }, tableData);
16
- fastify.get(`/card-data/:token`, { config: { policy }, scheme: cardTabDataSchema }, cardTabData);
17
- fastify.get(`/table-data/:table/:id`, { config: { policy }, schema: tableDataIdSchema }, cardData);
18
- fastify.get(`/table-filter/:name`, { config: { policy }, schema: tableFilterSchema }, tableFilter);
19
- fastify.get(`/table-info/:table/:id?`, { config: { policy }, schema: tableDataSchema }, tableInfo);
20
- }
1
+
2
+ import tableData from "./controllers/tableData.js";
3
+ import tokenInfo from "./controllers/tokenInfo.js";
4
+ // import tableDataId from "./controllers/tableDataId.js";
5
+ import cardData from "./controllers/cardData.js";
6
+ import cardTabData from './controllers/cardTabData.js';
7
+ import tableFilter from "./controllers/tableFilter.js";
8
+
9
+ import { tableDataSchema, tableDataIdSchema, tableFilterSchema, cardTabDataSchema } from './schema.js';
10
+ import tableInfo from "./controllers/tableInfo.js";
11
+
12
+ export default async function route(fastify) {
13
+ const policy = ['public'];
14
+ fastify.get(`/token-info/:token`, { config: { policy: ['admin'] } }, tokenInfo);
15
+ fastify.get(`/table-data/:table`, { config: { policy }, schema: tableDataSchema }, tableData);
16
+ fastify.get(`/card-data/:token`, { config: { policy }, scheme: cardTabDataSchema }, cardTabData);
17
+ fastify.get(`/table-data/:table/:id`, { config: { policy }, schema: tableDataIdSchema }, cardData);
18
+ fastify.get(`/table-filter/:name`, { config: { policy }, schema: tableFilterSchema }, tableFilter);
19
+ fastify.get(`/table-info/:table/:id?`, { config: { policy }, schema: tableDataSchema }, tableInfo);
20
+ }
@@ -1,54 +1,54 @@
1
- const tableDataSchema = {
2
- querystring: {
3
- limit: { type: 'string', pattern: '^(\\d+)$' },
4
- page: { type: 'string', pattern: '^(\\d+)$' },
5
- // filter: { type: 'string', pattern: '^([\\w\\d_-]+)=([А-Яа-яҐґЄєІіЇї\\d\\w\\s\\/\\[\\]\\(\\)\\{\\}\\|,.!?;:—_=-@%#$&^*+=`~]+)$' },
6
- // search: { type: 'string', pattern: '^([А-Яа-яҐґЄєІіЇї\\d\\w\\s\\/\\[\\]\\(\\)\\{\\}\\|,.!?;:—_=-@%#$&^*+=`~]+)$' },
7
- order: { type: 'string', pattern: '^([\\d\\w_.-]+)$' },
8
- desc: { type: 'string', pattern: '^(\\d+)$' },
9
- state: { type: 'string', pattern: '^([\\d\\w._-]+)$' },
10
- custom: { type: 'string', pattern: '^([\\d\\w._-]+)$' },
11
- bbox: { type: 'string', pattern: '^([\\d\\s,.-]+)$' },
12
- polyline: { type: 'string', pattern: '^([\\d\\w|@{}~_`]+)$' },
13
- // key: { type: 'string', pattern: '^([\\d\\w_]+)$' },
14
- sql: { type: 'string', pattern: '^(\\d)$' },
15
- },
16
- params: {
17
- id: { type: 'string', pattern: '^([\\d\\w_.-]+)$' },
18
- table: { type: 'string', pattern: '^([\\d\\w_.-]+)$' },
19
- }
20
- };
21
-
22
- const tableDataIdSchema = {
23
- params: {
24
- id: { type: 'string', pattern: '^([\\d\\w_.-]+)$' },
25
- name: { type: 'string', pattern: '^([\\d\\w._-]+)$' },
26
- }
27
- };
28
-
29
- const tableFilterSchema = {
30
- params: {
31
- name: { type: 'string', pattern: '^([\\d\\w._-]+)$' },
32
- }
33
- };
34
-
35
- const cardDataSchema = {
36
- params: {
37
- id: { type: 'string', pattern: '^([\\d\\w_.-]+)$' },
38
- table: { type: 'string', pattern: '^([\\d\\w._-]+)$' },
39
- }
40
- };
41
-
42
- const cardTabDataSchema = {
43
- querystring: {
44
- sql: { type: 'string', pattern: '^(\\d)$' }
45
- },
46
- params: {
47
- token: { type: 'string', pattern: '^([\\d\\w]+)$' },
48
- }
49
- };
50
- export {
51
- tableDataSchema, tableDataIdSchema, tableFilterSchema,
52
- cardDataSchema, cardTabDataSchema
53
- }
54
- export default null;
1
+ const tableDataSchema = {
2
+ querystring: {
3
+ limit: { type: 'string', pattern: '^(\\d+)$' },
4
+ page: { type: 'string', pattern: '^(\\d+)$' },
5
+ // filter: { type: 'string', pattern: '^([\\w\\d_-]+)=([А-Яа-яҐґЄєІіЇї\\d\\w\\s\\/\\[\\]\\(\\)\\{\\}\\|,.!?;:—_=-@%#$&^*+=`~]+)$' },
6
+ // search: { type: 'string', pattern: '^([А-Яа-яҐґЄєІіЇї\\d\\w\\s\\/\\[\\]\\(\\)\\{\\}\\|,.!?;:—_=-@%#$&^*+=`~]+)$' },
7
+ order: { type: 'string', pattern: '^([\\d\\w_.-]+)$' },
8
+ desc: { type: 'string', pattern: '^(\\d+)$' },
9
+ state: { type: 'string', pattern: '^([\\d\\w._-]+)$' },
10
+ custom: { type: 'string', pattern: '^([\\d\\w._-]+)$' },
11
+ bbox: { type: 'string', pattern: '^([\\d\\s,.-]+)$' },
12
+ polyline: { type: 'string', pattern: '^([\\d\\w|@{}~_`]+)$' },
13
+ // key: { type: 'string', pattern: '^([\\d\\w_]+)$' },
14
+ sql: { type: 'string', pattern: '^(\\d)$' },
15
+ },
16
+ params: {
17
+ id: { type: 'string', pattern: '^([\\d\\w_.-]+)$' },
18
+ table: { type: 'string', pattern: '^([\\d\\w_.-]+)$' },
19
+ }
20
+ };
21
+
22
+ const tableDataIdSchema = {
23
+ params: {
24
+ id: { type: 'string', pattern: '^([\\d\\w_.-]+)$' },
25
+ name: { type: 'string', pattern: '^([\\d\\w._-]+)$' },
26
+ }
27
+ };
28
+
29
+ const tableFilterSchema = {
30
+ params: {
31
+ name: { type: 'string', pattern: '^([\\d\\w._-]+)$' },
32
+ }
33
+ };
34
+
35
+ const cardDataSchema = {
36
+ params: {
37
+ id: { type: 'string', pattern: '^([\\d\\w_.-]+)$' },
38
+ table: { type: 'string', pattern: '^([\\d\\w._-]+)$' },
39
+ }
40
+ };
41
+
42
+ const cardTabDataSchema = {
43
+ querystring: {
44
+ sql: { type: 'string', pattern: '^(\\d)$' }
45
+ },
46
+ params: {
47
+ token: { type: 'string', pattern: '^([\\d\\w]+)$' },
48
+ }
49
+ };
50
+ export {
51
+ tableDataSchema, tableDataIdSchema, tableFilterSchema,
52
+ cardDataSchema, cardTabDataSchema
53
+ }
54
+ export default null;
@@ -36,7 +36,7 @@ export default async function adminMenu({ user = {}, session, pg = pgClients.cli
36
36
 
37
37
  // update user access
38
38
 
39
- if (session && user?.uid && !config.local && ![user.user_type, user.type].includes('admin') && pg.pk['admin.role_access']) {
39
+ if (session && user?.uid && !config.local && !config.admin && ![user.user_type, user.type].includes('admin') && pg.pk['admin.role_access']) {
40
40
  const { type, gl = [], routes = [] } = await pg.query(`select user_type as type, b.gl,routes from admin.users a
41
41
  left join lateral ( select array_agg(role_id) as gl from admin.user_roles where user_uid=a.uid)b on 1=1
42
42
  left join lateral ( select array_agg(route_id) as routes from admin.role_access where role_id=any(b.gl))r on 1=1
@@ -1,5 +1,5 @@
1
- import getMenu from './controllers/getMenu.js';
2
-
3
- export default async function (fastify, opts) {
4
- fastify.get(`/user-menu`, getMenu);
5
- }
1
+ import getMenu from './controllers/getMenu.js';
2
+
3
+ export default async function (fastify, opts) {
4
+ fastify.get(`/user-menu`, getMenu);
5
+ }
@@ -1,27 +1,27 @@
1
- export default async function readNotifications({
2
- pg, params = {}, query = {}, session = {},
3
- }) {
4
- const { uid } = session.passport?.user || {};
5
-
6
- if (!uid) {
7
- return { message: 'access restricted', status: 403 };
8
- }
9
-
10
-
11
- const { userId } = await pg.query('select uid as "userId" from admin.users where $1 in (uid,login) limit 1', [uid])
12
- .then((res) => res.rows?.[0] || {});
13
-
14
- if (!userId) {
15
- return { message: 'access restricted: 2', status: 403 };
16
- }
17
-
18
- const q = `update crm.notifications set read=true where read is not true
19
- and ${params?.id ? 'notification_id=$2' : '1=1'} and addressee_id=$1`;
20
-
21
- if (query.sql) return q;
22
-
23
- const { rowCount = 0 } = await pg.query(q, [userId, params?.id].filter((el) => el));
24
-
25
- return { message: `${rowCount} unread notifications marked as read`, status: 200 };
26
-
27
- }
1
+ export default async function readNotifications({
2
+ pg, params = {}, query = {}, session = {},
3
+ }) {
4
+ const { uid } = session.passport?.user || {};
5
+
6
+ if (!uid) {
7
+ return { message: 'access restricted', status: 403 };
8
+ }
9
+
10
+
11
+ const { userId } = await pg.query('select uid as "userId" from admin.users where $1 in (uid,login) limit 1', [uid])
12
+ .then((res) => res.rows?.[0] || {});
13
+
14
+ if (!userId) {
15
+ return { message: 'access restricted: 2', status: 403 };
16
+ }
17
+
18
+ const q = `update crm.notifications set read=true where read is not true
19
+ and ${params?.id ? 'notification_id=$2' : '1=1'} and addressee_id=$1`;
20
+
21
+ if (query.sql) return q;
22
+
23
+ const { rowCount = 0 } = await pg.query(q, [userId, params?.id].filter((el) => el));
24
+
25
+ return { message: `${rowCount} unread notifications marked as read`, status: 200 };
26
+
27
+ }
@@ -1,35 +1,35 @@
1
- import config from '../../../../config.js';
2
-
3
- import sendNotification from '../funcs/sendNotification.js';
4
-
5
- export default async function testNotification({
6
- pg, query = {}, session = {},
7
- }) {
8
- const { local } = config || {};
9
-
10
- if (!session?.passport?.user?.user_type?.includes('admin') && !local) {
11
- return { message: 'Forbidden', status: 403 };
12
- }
13
-
14
- const date = new Date().toISOString().split('T')[0];
15
- if (!query.to) {
16
- return { message: 'param to is required', status: 400 };
17
- }
18
-
19
- const {
20
- to, template, table, id, nocache,
21
- } = query;
22
-
23
- const data = await sendNotification({
24
- pg,
25
- to,
26
- template,
27
- title: `Test Softpro ${date}`,
28
- table,
29
- nocache,
30
- id,
31
- message: `Test mail Softpro ${date} Lorem Ipsum Lorem Ipsum`,
32
- });
33
-
34
- return { message: data || 'ok' };
35
- }
1
+ import config from '../../../../config.js';
2
+
3
+ import sendNotification from '../funcs/sendNotification.js';
4
+
5
+ export default async function testNotification({
6
+ pg, query = {}, session = {},
7
+ }) {
8
+ const { local } = config || {};
9
+
10
+ if (!session?.passport?.user?.user_type?.includes('admin') && !local) {
11
+ return { message: 'Forbidden', status: 403 };
12
+ }
13
+
14
+ const date = new Date().toISOString().split('T')[0];
15
+ if (!query.to) {
16
+ return { message: 'param to is required', status: 400 };
17
+ }
18
+
19
+ const {
20
+ to, template, table, id, nocache,
21
+ } = query;
22
+
23
+ const data = await sendNotification({
24
+ pg,
25
+ to,
26
+ template,
27
+ title: `Test Softpro ${date}`,
28
+ table,
29
+ nocache,
30
+ id,
31
+ message: `Test mail Softpro ${date} Lorem Ipsum Lorem Ipsum`,
32
+ });
33
+
34
+ return { message: data || 'ok' };
35
+ }
@@ -1,53 +1,53 @@
1
- // for example only
2
- /*
3
- const res = await dataInsert({
4
- pg,
5
- table: 'crm.notifications',
6
- data: {
7
- subject: 'notif title',
8
- body: 'notif body',
9
- link: 'http://localhost:3000/api/notification',
10
- addressee_id: userId,
11
- author_id: userId,
12
- },
13
- });
14
- */
15
-
16
- import { getSelectVal } from '@opengis/fastify-table/utils.js';
17
-
18
- const maxLimit = 100;
19
-
20
- export default async function userNotifications({
21
- pg, query = {}, session = {},
22
- }) {
23
- const time = Date.now();
24
-
25
- const { uid } = session.passport?.user || {};
26
-
27
- if (!uid) {
28
- return { message: 'access restricted', status: 403 };
29
- }
30
-
31
- const limit = Math.min(maxLimit, +(query.limit || 5));
32
- const offset = query.page && query.page > 0 ? (query.page - 1) * limit : 0;
33
-
34
- const q = `select notification_id as id, subject, body, cdate,
35
- author_id, read, link, entity_id, (select avatar from admin.users where uid=a.author_id limit 1) as avatar from crm.notifications a where addressee_id=$1 order by cdate desc limit $2 offset $3`;
36
-
37
- if (query.sql) return q;
38
-
39
- const { rows = [] } = await pg.query(q, [uid, limit, offset]);
40
-
41
- const values = rows.map((el) => el.author_id)
42
- ?.filter((el, idx, arr) => el && arr.indexOf(el) === idx);
43
-
44
- if (values?.length) {
45
- const vals = await getSelectVal({ name: 'core.user_mentioned', values });
46
- rows.forEach((row) => {
47
- Object.assign(row, { author: vals?.[row.author_id] });
48
- });
49
- }
50
-
51
- return { time: Date.now() - time, total: rows?.length, rows };
52
-
53
- }
1
+ // for example only
2
+ /*
3
+ const res = await dataInsert({
4
+ pg,
5
+ table: 'crm.notifications',
6
+ data: {
7
+ subject: 'notif title',
8
+ body: 'notif body',
9
+ link: 'http://localhost:3000/api/notification',
10
+ addressee_id: userId,
11
+ author_id: userId,
12
+ },
13
+ });
14
+ */
15
+
16
+ import { getSelectVal } from '@opengis/fastify-table/utils.js';
17
+
18
+ const maxLimit = 100;
19
+
20
+ export default async function userNotifications({
21
+ pg, query = {}, session = {},
22
+ }) {
23
+ const time = Date.now();
24
+
25
+ const { uid } = session.passport?.user || {};
26
+
27
+ if (!uid) {
28
+ return { message: 'access restricted', status: 403 };
29
+ }
30
+
31
+ const limit = Math.min(maxLimit, +(query.limit || 5));
32
+ const offset = query.page && query.page > 0 ? (query.page - 1) * limit : 0;
33
+
34
+ const q = `select notification_id as id, subject, body, cdate,
35
+ author_id, read, link, entity_id, (select avatar from admin.users where uid=a.author_id limit 1) as avatar from crm.notifications a where addressee_id=$1 order by cdate desc limit $2 offset $3`;
36
+
37
+ if (query.sql) return q;
38
+
39
+ const { rows = [] } = await pg.query(q, [uid, limit, offset]);
40
+
41
+ const values = rows.map((el) => el.author_id)
42
+ ?.filter((el, idx, arr) => el && arr.indexOf(el) === idx);
43
+
44
+ if (values?.length) {
45
+ const vals = await getSelectVal({ name: 'core.user_mentioned', values });
46
+ rows.forEach((row) => {
47
+ Object.assign(row, { author: vals?.[row.author_id] });
48
+ });
49
+ }
50
+
51
+ return { time: Date.now() - time, total: rows?.length, rows };
52
+
53
+ }
@@ -1,21 +1,21 @@
1
- import { dataInsert } from '@opengis/fastify-table/utils.js';
2
-
3
- export default async function addNotification({
4
- pg, session = {}, subject, body, link, uid, entity,
5
- }) {
6
- const { uid: author } = session.passport?.user || {};
7
- const res = await dataInsert({
8
- pg,
9
- table: 'crm.notifications',
10
- data: {
11
- subject,
12
- body,
13
- link,
14
- addressee_id: uid,
15
- author_id: author,
16
- entity_id: entity,
17
- uid: author,
18
- },
19
- });
20
- return res?.rows?.[0] || {};
21
- }
1
+ import { dataInsert } from '@opengis/fastify-table/utils.js';
2
+
3
+ export default async function addNotification({
4
+ pg, session = {}, subject, body, link, uid, entity,
5
+ }) {
6
+ const { uid: author } = session.passport?.user || {};
7
+ const res = await dataInsert({
8
+ pg,
9
+ table: 'crm.notifications',
10
+ data: {
11
+ subject,
12
+ body,
13
+ link,
14
+ addressee_id: uid,
15
+ author_id: author,
16
+ entity_id: entity,
17
+ uid: author,
18
+ },
19
+ });
20
+ return res?.rows?.[0] || {};
21
+ }