@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,92 +1,92 @@
1
- // eslint-disable-next-line max-len, no-control-regex
2
- const emailReg = /(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])/g;
3
-
4
- import sendEmail from './utils/sendEmail.js';
5
-
6
- import { handlebars, pgClients, getTemplate, getRedis, logger } from '@opengis/fastify-table/utils.js';
7
-
8
- async function generateNotificationContent({
9
- pg, table, template, id, message, data: data1,
10
- }) {
11
- if (template) {
12
- const data = table && id ? await pg.one(`select * from ${table} where ${pg.pk[table]}=$1`, [id]) : data1;
13
- // console.log(data);
14
- const body = await getTemplate('pt', template);
15
- // console.log(body);
16
- const html = handlebars.compile(body || template || 'template not found')(data || {});
17
- // console.log(html);
18
- return html;
19
- }
20
- return message;
21
- }
22
-
23
- // to do: refactor fastify-file to remove funcs completely
24
- export default async function notification({
25
- pg = pgClients.client,
26
- provider = ['email'],
27
- from,
28
- to,
29
- template,
30
- table,
31
- message,
32
- title,
33
- file,
34
- data,
35
- id,
36
- nocache,
37
- }) {
38
- const rclient = getRedis();
39
-
40
- if (!pg) throw new Error('need pg');
41
-
42
- if (pg?.readonly) {
43
- return null;
44
- }
45
-
46
- const keyTo = `${pg.options?.database}:mail:${provider[0]}:${to || ''}${id || ''}${table || ''}${title || ''}`;
47
- const uniqueTo = await rclient.setnx(keyTo, 1);
48
-
49
-
50
- if (!uniqueTo && !nocache) {
51
- logger.file('notification/sent', { keyTo, send: uniqueTo, nocache });
52
- return `already sent: ${keyTo}`;
53
- }
54
- await rclient.expire(keyTo, 1000 * 600);
55
-
56
- if (!to.length) {
57
- return null;
58
- }
59
-
60
- if (!(Array.isArray(provider) && provider.length)) {
61
- return 'notification provider - must be array and not empty';
62
- }
63
-
64
- const html = await generateNotificationContent({
65
- pg, table, template, id, message, data,
66
- });
67
-
68
- if (provider.includes('email')) {
69
- const files = Array.isArray(file) ? file : [file];
70
- const attachments = files?.length && false ? await Promise.all(files?.filter((el) => el).map(async (el) => {
71
- /* const content = await downloadFile(el, { buffer: true }); // ?
72
- return {
73
- filename: el.split('/').pop(),
74
- encoding: 'base64',
75
- content,
76
- }; */
77
- })) : [];
78
-
79
- const toEmail = Array.isArray(to) ? to.map((emails) => emails.match(emailReg)?.join(',')) : to;
80
-
81
- const result = await sendEmail({
82
- attachments,
83
- html,
84
- subject: title,
85
- from,
86
- to: toEmail,
87
- });
88
-
89
- return result;
90
- }
91
- return null;
92
- }
1
+ // eslint-disable-next-line max-len, no-control-regex
2
+ const emailReg = /(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])/g;
3
+
4
+ import sendEmail from './utils/sendEmail.js';
5
+
6
+ import { handlebars, pgClients, getTemplate, getRedis, logger } from '@opengis/fastify-table/utils.js';
7
+
8
+ async function generateNotificationContent({
9
+ pg, table, template, id, message, data: data1,
10
+ }) {
11
+ if (template) {
12
+ const data = table && id ? await pg.one(`select * from ${table} where ${pg.pk[table]}=$1`, [id]) : data1;
13
+ // console.log(data);
14
+ const body = await getTemplate('pt', template);
15
+ // console.log(body);
16
+ const html = handlebars.compile(body || template || 'template not found')(data || {});
17
+ // console.log(html);
18
+ return html;
19
+ }
20
+ return message;
21
+ }
22
+
23
+ // to do: refactor fastify-file to remove funcs completely
24
+ export default async function notification({
25
+ pg = pgClients.client,
26
+ provider = ['email'],
27
+ from,
28
+ to,
29
+ template,
30
+ table,
31
+ message,
32
+ title,
33
+ file,
34
+ data,
35
+ id,
36
+ nocache,
37
+ }) {
38
+ const rclient = getRedis();
39
+
40
+ if (!pg) throw new Error('need pg');
41
+
42
+ if (pg?.readonly) {
43
+ return null;
44
+ }
45
+
46
+ const keyTo = `${pg.options?.database}:mail:${provider[0]}:${to || ''}${id || ''}${table || ''}${title || ''}`;
47
+ const uniqueTo = await rclient.setnx(keyTo, 1);
48
+
49
+
50
+ if (!uniqueTo && !nocache) {
51
+ logger.file('notification/sent', { keyTo, send: uniqueTo, nocache });
52
+ return `already sent: ${keyTo}`;
53
+ }
54
+ await rclient.expire(keyTo, 1000 * 600);
55
+
56
+ if (!to.length) {
57
+ return null;
58
+ }
59
+
60
+ if (!(Array.isArray(provider) && provider.length)) {
61
+ return 'notification provider - must be array and not empty';
62
+ }
63
+
64
+ const html = await generateNotificationContent({
65
+ pg, table, template, id, message, data,
66
+ });
67
+
68
+ if (provider.includes('email')) {
69
+ const files = Array.isArray(file) ? file : [file];
70
+ const attachments = files?.length && false ? await Promise.all(files?.filter((el) => el).map(async (el) => {
71
+ /* const content = await downloadFile(el, { buffer: true }); // ?
72
+ return {
73
+ filename: el.split('/').pop(),
74
+ encoding: 'base64',
75
+ content,
76
+ }; */
77
+ })) : [];
78
+
79
+ const toEmail = Array.isArray(to) ? to.map((emails) => emails.match(emailReg)?.join(',')) : to;
80
+
81
+ const result = await sendEmail({
82
+ attachments,
83
+ html,
84
+ subject: title,
85
+ from,
86
+ to: toEmail,
87
+ });
88
+
89
+ return result;
90
+ }
91
+ return null;
92
+ }
@@ -1,57 +1,57 @@
1
- /* eslint-disable camelcase */
2
- import { config, pgClients, getSelect } from '@opengis/fastify-table/utils.js';
3
-
4
- import { addNotification, sendNotification } from '../../../../utils.js';
5
-
6
- function sequence(arr, data, fn) {
7
- return arr.reduce((promise, row) => promise.then(() => fn({
8
- ...data, ...row,
9
- })), Promise.resolve());
10
- }
11
-
12
- export default async function onWidgetSet({ pg = pgClients?.client, link, session, log, type, payload: data = {} }) {
13
- const values = data.body?.match(/\B@[a-zA-z0-9а-яА-яіїІЇєЄ]+ [a-zA-z0-9а-яА-яіїІЇєЄ]+/g)
14
- ?.filter((el, idx, arr) => el?.replace && arr.indexOf(el) === idx)
15
- ?.map((el) => el.replace(/@/g, ''));
16
-
17
- if (type !== 'comment' || !values?.length) {
18
- return null;
19
- }
20
-
21
- const { sql } = await getSelect('core.user_mentioned');
22
-
23
- const { rows = [] } = await pg.query(`with data (id,name,email) as (${sql})
24
- select id, name, email from data where name = any($1)`, [values]);
25
-
26
- if (!rows?.length) {
27
- return null;
28
- }
29
-
30
- const message = `${data.body?.substring(0, 50)}...`;
31
- const subject = 'You were mentioned';
32
-
33
- await sequence(rows, {}, async ({ id, name, email }) => {
34
- const res = await addNotification({
35
- pg, session, subject, entity: data.entity_id, body: message, link, uid: id,
36
- });
37
- try {
38
- const res1 = await sendNotification({
39
- pg,
40
- log,
41
- to: email,
42
- // template,
43
- message,
44
- title: subject,
45
- data,
46
- nocache: 1,
47
- });
48
- if (config.local) console.info('comment notification', name, id, email, res1);
49
- await pg.query('update crm.notifications set sent=true where notification_id=$1', [res?.notification_id]);
50
- }
51
- catch (err) {
52
- console.error('comment notification send error', err.toString());
53
- }
54
- });
55
- console.log('comment notification add', rows);
56
- return null;
57
- }
1
+ /* eslint-disable camelcase */
2
+ import { config, pgClients, getSelect } from '@opengis/fastify-table/utils.js';
3
+
4
+ import { addNotification, sendNotification } from '../../../../utils.js';
5
+
6
+ function sequence(arr, data, fn) {
7
+ return arr.reduce((promise, row) => promise.then(() => fn({
8
+ ...data, ...row,
9
+ })), Promise.resolve());
10
+ }
11
+
12
+ export default async function onWidgetSet({ pg = pgClients?.client, link, session, log, type, payload: data = {} }) {
13
+ const values = data.body?.match(/\B@[a-zA-z0-9а-яА-яіїІЇєЄ]+ [a-zA-z0-9а-яА-яіїІЇєЄ]+/g)
14
+ ?.filter((el, idx, arr) => el?.replace && arr.indexOf(el) === idx)
15
+ ?.map((el) => el.replace(/@/g, ''));
16
+
17
+ if (type !== 'comment' || !values?.length) {
18
+ return null;
19
+ }
20
+
21
+ const { sql } = await getSelect('core.user_mentioned');
22
+
23
+ const { rows = [] } = await pg.query(`with data (id,name,email) as (${sql})
24
+ select id, name, email from data where name = any($1)`, [values]);
25
+
26
+ if (!rows?.length) {
27
+ return null;
28
+ }
29
+
30
+ const message = `${data.body?.substring(0, 50)}...`;
31
+ const subject = 'You were mentioned';
32
+
33
+ await sequence(rows, {}, async ({ id, name, email }) => {
34
+ const res = await addNotification({
35
+ pg, session, subject, entity: data.entity_id, body: message, link, uid: id,
36
+ });
37
+ try {
38
+ const res1 = await sendNotification({
39
+ pg,
40
+ log,
41
+ to: email,
42
+ // template,
43
+ message,
44
+ title: subject,
45
+ data,
46
+ nocache: 1,
47
+ });
48
+ if (config.local) console.info('comment notification', name, id, email, res1);
49
+ await pg.query('update crm.notifications set sent=true where notification_id=$1', [res?.notification_id]);
50
+ }
51
+ catch (err) {
52
+ console.error('comment notification send error', err.toString());
53
+ }
54
+ });
55
+ console.log('comment notification add', rows);
56
+ return null;
57
+ }
@@ -1,27 +1,27 @@
1
- import { config, addHook } from '@opengis/fastify-table/utils.js';
2
-
3
- // api
4
- import testEmail from './controllers/testEmail.js';
5
- import readNotifications from './controllers/readNotifications.js'; // mark as read
6
- import userNotifications from './controllers/userNotifications.js'; // check all, backend pagination
7
-
8
- // hook
9
- import onWidgetSet from './hook/onWidgetSet.js'; // send notification on comment
10
-
11
- // funcs
12
- // import addNotification from '../notifications/funcs/addNotification.js'; // add to db
13
- // import notification from '../notifications/funcs/sendNotification.js'; // send notification
14
-
15
- import { notificationSchema, emailSchema } from './schema.js';
16
-
17
- export default async function route(fastify) {
18
- const prefix = config.prefix || '/api';
19
-
20
- // fastify.decorate('addNotification', addNotification);
21
- // fastify.decorate('notification', notification);
22
-
23
- fastify.get(`${prefix}/test-email`, { config: { policy: ['user'] }, schema: emailSchema }, testEmail);
24
- fastify.get(`/notification`, { config: { policy: ['user'] }, schema: notificationSchema }, userNotifications);
25
- fastify.get(`/notification-read/:id?`, { config: { policy: ['user'] }, schema: notificationSchema }, readNotifications);
26
- addHook('onWidgetSet', onWidgetSet);
27
- }
1
+ import { config, addHook } from '@opengis/fastify-table/utils.js';
2
+
3
+ // api
4
+ import testEmail from './controllers/testEmail.js';
5
+ import readNotifications from './controllers/readNotifications.js'; // mark as read
6
+ import userNotifications from './controllers/userNotifications.js'; // check all, backend pagination
7
+
8
+ // hook
9
+ import onWidgetSet from './hook/onWidgetSet.js'; // send notification on comment
10
+
11
+ // funcs
12
+ // import addNotification from '../notifications/funcs/addNotification.js'; // add to db
13
+ // import notification from '../notifications/funcs/sendNotification.js'; // send notification
14
+
15
+ import { notificationSchema, emailSchema } from './schema.js';
16
+
17
+ export default async function route(fastify) {
18
+ const prefix = config.prefix || '/api';
19
+
20
+ // fastify.decorate('addNotification', addNotification);
21
+ // fastify.decorate('notification', notification);
22
+
23
+ fastify.get(`${prefix}/test-email`, { config: { policy: ['user'] }, schema: emailSchema }, testEmail);
24
+ fastify.get(`/notification`, { config: { policy: ['user'] }, schema: notificationSchema }, userNotifications);
25
+ fastify.get(`/notification-read/:id?`, { config: { policy: ['user'] }, schema: notificationSchema }, readNotifications);
26
+ addHook('onWidgetSet', onWidgetSet);
27
+ }
@@ -1,17 +1,17 @@
1
- const notificationSchema = {
2
- params: {
3
- id: { type: 'string', pattern: '^([\\d\\w]+)$' },
4
- },
5
- querystring: {
6
- nocache: { type: 'string', pattern: '^(\\d+)$' },
7
- },
8
- };
9
-
10
- const emailSchema = {
11
- quertstring: {
12
- to: { type: 'string', pattern: '^((?!\\.)[\\w\\-_.]*[^.])(@\\w+)(\\.\\w+(\\.\\w+)?[^.\\W])$' },
13
- },
14
- };
15
-
16
- export default null;
1
+ const notificationSchema = {
2
+ params: {
3
+ id: { type: 'string', pattern: '^([\\d\\w]+)$' },
4
+ },
5
+ querystring: {
6
+ nocache: { type: 'string', pattern: '^(\\d+)$' },
7
+ },
8
+ };
9
+
10
+ const emailSchema = {
11
+ quertstring: {
12
+ to: { type: 'string', pattern: '^((?!\\.)[\\w\\-_.]*[^.])(@\\w+)(\\.\\w+(\\.\\w+)?[^.\\W])$' },
13
+ },
14
+ };
15
+
16
+ export default null;
17
17
  export { notificationSchema, emailSchema }
@@ -1,131 +1,131 @@
1
- import path from 'path';
2
- import qr from 'qrcode';
3
- import { readFile } from 'node:fs/promises';
4
- import { fileURLToPath } from 'url';
5
- import { createHash } from 'crypto';
6
-
7
- import {
8
- config, getTemplate, pgClients, handlebars, getFilterSQL, logger, metaFormat, getMeta,
9
- } from '@opengis/fastify-table/utils.js';
10
- import { grpc } from '@opengis/fastify-file/utils.js';
11
-
12
- const { htmlToPdf } = grpc();
13
- const filename = fileURLToPath(import.meta.url);
14
- const dirname = path.dirname(filename);
15
-
16
- // printMap
17
- const host = 'https://data.gki.com.ua';
18
- const width = 850;
19
- const height = 400;
20
- const geomBuffer = 0.001;
21
- const layers = '';
22
- const basemap = 'voyager';
23
-
24
- export default async function cardPrint(req, reply) {
25
- const { pg = pgClients.client, params = {}, query = {}, user = {} } = req;
26
- const { table, id } = params;
27
-
28
- const { template = 'card-print.pt', tab } = query;
29
- const format = query.format || (config.debug ? 'html' : 'pdf');
30
-
31
- const hash = createHash('md5').update([table, id, template, tab].join()).digest('hex');
32
-
33
- // const rootDir = getFolder(req, 'local');
34
- // const filepath = path.join(rootDir, '/files/tmp/print/', `${hash}.pdf`);
35
-
36
- const headers = {
37
- 'Content-Disposition': `inline; filename=${hash}.pdf`,
38
- 'Content-Type': 'application/pdf',
39
- };
40
-
41
- if (!user?.uid) {
42
- return { message: 'access restricted', status: 401 };
43
- }
44
-
45
- if (!table || !id) {
46
- return { message: 'not enougn params: table, id', status: 400 };
47
- }
48
-
49
- const body = await getTemplate('table', table);
50
- const { geom } = await getMeta({ pg, table: body?.table });
51
-
52
- if (!body?.table) {
53
- return { message: 'table nof found', status: 404 };
54
- }
55
-
56
- if (!body.key && !pg.pk?.[body.table]) {
57
- return { message: 'pkey not found', status: 404 };
58
- }
59
-
60
- const where = `${body.query || '1=1'} and ${body.key || pg.pk?.[body.table]}=$1`;
61
-
62
- const { optimizedSQL = `select * from ${body.table} where ${body.query || '1=1'} and ` } = await getFilterSQL({
63
- pg,
64
- table,
65
- query: where,
66
- })
67
- const { rows = [] } = await pg.query(`select * ${geom ? `, st_asgeojson(${geom})::json as geom` : ''} from (${optimizedSQL})q where ${where}`, [id]);
68
-
69
- const cls = body?.columns?.filter(el => el.data)?.reduce((acc, curr) => Object.assign(acc, { [curr.name]: curr.data }), {});
70
- await metaFormat({ rows, cls, sufix: false });
71
-
72
- const data = rows?.[0];
73
- if (!data) {
74
- return { message: 'data not found', status: 404 };
75
- }
76
-
77
- Object.assign(data, { id: data[body.key || pg.pk?.[body.table]] });
78
-
79
- const mapUrl = `${host}/api-user/print-map?basemap=${basemap}&layers=${layers || ''}&geojson=${JSON.stringify(data['geom'])}&base64=1&height=${height}&width=${width}&buffer=${geomBuffer}&nocache=1`;
80
- const resp = data['geom'] ? await fetch(mapUrl) : null;
81
- const printMap = data['geom'] ? await resp.text() : '';
82
-
83
- const pt = await getTemplate('pt', template)
84
- || await readFile(path.join(dirname, '../../../templates/pt/card-print.pt.hbs'), 'utf8');
85
-
86
- const url = (req.protocol || 'https') + '://' + req.hostname + req.url;
87
- const qrCode = `<img src="${await qr.toDataURL(url, { type: 'png', ec_level: 'M', size: 5, margin: 4 })}" alt="qrcode">`;
88
-
89
- const cardTemplates = await getTemplate('card', table);
90
- const index = cardTemplates?.find(el => el[0] === 'index.yml')?.[1];
91
- const cardHbsTabs = cardTemplates.filter(el => el[0].endsWith('hbs'));
92
-
93
- const orderedTabs = index?.panels?.flatMap(panel => panel.items?.map(item => {
94
- const body = cardHbsTabs.find(el => el[0] === `${item.name}.hbs`)?.[1];
95
- return { ...item, body };
96
- })).filter(el => el.name && el.body);
97
-
98
- const tabData = await Promise.all(orderedTabs.map(async (el) => {
99
- const html = await handlebars.compile(el.body.replace(/\{\{\{button[^\}]*\}\}\}/g, ''))(data);
100
- return { name: el.name, title: el.title, html };
101
- }));
102
-
103
- const title = data?.[body.meta.title || ''];
104
-
105
- const columnTitles = body?.columns?.reduce((acc, curr) => Object.assign(acc, { [curr.name]: curr.title || curr.ua }), {});
106
- const obj = {
107
- title,
108
- table_title: body.ua || body.title,
109
- printMap,
110
- rows: tabData,
111
- data: Object.keys(data).filter(el => columnTitles[el]).reduce((acc, curr) => Object.assign(acc, { [columnTitles[curr] || curr]: data[curr] }), {}),
112
- rawData: data,
113
- url,
114
- qr: qrCode,
115
- };
116
-
117
- const html = await handlebars.compile(pt || 'template not found')(obj);
118
-
119
- if (format == 'html') {
120
- return reply.headers({ 'Content-Type': 'text/html; charset=utf-8' }).send(html);
121
- }
122
-
123
- const result = await htmlToPdf({ html });
124
- const buffer = Buffer.from(result.result, 'base64');
125
-
126
- // await mkdir(path.dirname(filepath), { recursive: true });
127
- // await writeFile(filepath, buffer);
128
-
129
- logger.file('cardPrint', { table, id, format, uid: user?.uid });
130
- return reply.headers(headers).send(buffer);
1
+ import path from 'path';
2
+ import qr from 'qrcode';
3
+ import { readFile } from 'node:fs/promises';
4
+ import { fileURLToPath } from 'url';
5
+ import { createHash } from 'crypto';
6
+
7
+ import {
8
+ config, getTemplate, pgClients, handlebars, getFilterSQL, logger, metaFormat, getMeta,
9
+ } from '@opengis/fastify-table/utils.js';
10
+ import { grpc } from '@opengis/fastify-file/utils.js';
11
+
12
+ const { htmlToPdf } = grpc();
13
+ const filename = fileURLToPath(import.meta.url);
14
+ const dirname = path.dirname(filename);
15
+
16
+ // printMap
17
+ const host = 'https://data.gki.com.ua';
18
+ const width = 850;
19
+ const height = 400;
20
+ const geomBuffer = 0.001;
21
+ const layers = '';
22
+ const basemap = 'voyager';
23
+
24
+ export default async function cardPrint(req, reply) {
25
+ const { pg = pgClients.client, params = {}, query = {}, user = {} } = req;
26
+ const { table, id } = params;
27
+
28
+ const { template = 'card-print.pt', tab } = query;
29
+ const format = query.format || (config.debug ? 'html' : 'pdf');
30
+
31
+ const hash = createHash('md5').update([table, id, template, tab].join()).digest('hex');
32
+
33
+ // const rootDir = getFolder(req, 'local');
34
+ // const filepath = path.join(rootDir, '/files/tmp/print/', `${hash}.pdf`);
35
+
36
+ const headers = {
37
+ 'Content-Disposition': `inline; filename=${hash}.pdf`,
38
+ 'Content-Type': 'application/pdf',
39
+ };
40
+
41
+ if (!user?.uid) {
42
+ return { message: 'access restricted', status: 401 };
43
+ }
44
+
45
+ if (!table || !id) {
46
+ return { message: 'not enougn params: table, id', status: 400 };
47
+ }
48
+
49
+ const body = await getTemplate('table', table);
50
+ const { geom } = await getMeta({ pg, table: body?.table });
51
+
52
+ if (!body?.table) {
53
+ return { message: 'table nof found', status: 404 };
54
+ }
55
+
56
+ if (!body.key && !pg.pk?.[body.table]) {
57
+ return { message: 'pkey not found', status: 404 };
58
+ }
59
+
60
+ const where = `${body.query || '1=1'} and ${body.key || pg.pk?.[body.table]}=$1`;
61
+
62
+ const { optimizedSQL = `select * from ${body.table} where ${body.query || '1=1'} and ` } = await getFilterSQL({
63
+ pg,
64
+ table,
65
+ query: where,
66
+ })
67
+ const { rows = [] } = await pg.query(`select * ${geom ? `, st_asgeojson(${geom})::json as geom` : ''} from (${optimizedSQL})q where ${where}`, [id]);
68
+
69
+ const cls = body?.columns?.filter(el => el.data)?.reduce((acc, curr) => Object.assign(acc, { [curr.name]: curr.data }), {});
70
+ await metaFormat({ rows, cls, sufix: false });
71
+
72
+ const data = rows?.[0];
73
+ if (!data) {
74
+ return { message: 'data not found', status: 404 };
75
+ }
76
+
77
+ Object.assign(data, { id: data[body.key || pg.pk?.[body.table]] });
78
+
79
+ const mapUrl = `${host}/api-user/print-map?basemap=${basemap}&layers=${layers || ''}&geojson=${JSON.stringify(data['geom'])}&base64=1&height=${height}&width=${width}&buffer=${geomBuffer}&nocache=1`;
80
+ const resp = data['geom'] ? await fetch(mapUrl) : null;
81
+ const printMap = data['geom'] ? await resp.text() : '';
82
+
83
+ const pt = await getTemplate('pt', template)
84
+ || await readFile(path.join(dirname, '../../../templates/pt/card-print.pt.hbs'), 'utf8');
85
+
86
+ const url = (req.protocol || 'https') + '://' + req.hostname + req.url;
87
+ const qrCode = `<img src="${await qr.toDataURL(url, { type: 'png', ec_level: 'M', size: 5, margin: 4 })}" alt="qrcode">`;
88
+
89
+ const cardTemplates = await getTemplate('card', table);
90
+ const index = cardTemplates?.find(el => el[0] === 'index.yml')?.[1];
91
+ const cardHbsTabs = cardTemplates.filter(el => el[0].endsWith('hbs'));
92
+
93
+ const orderedTabs = index?.panels?.flatMap(panel => panel.items?.map(item => {
94
+ const body = cardHbsTabs.find(el => el[0] === `${item.name}.hbs`)?.[1];
95
+ return { ...item, body };
96
+ })).filter(el => el.name && el.body);
97
+
98
+ const tabData = await Promise.all(orderedTabs.map(async (el) => {
99
+ const html = await handlebars.compile(el.body.replace(/\{\{\{button[^\}]*\}\}\}/g, ''))(data);
100
+ return { name: el.name, title: el.title, html };
101
+ }));
102
+
103
+ const title = data?.[body.meta.title || ''];
104
+
105
+ const columnTitles = body?.columns?.reduce((acc, curr) => Object.assign(acc, { [curr.name]: curr.title || curr.ua }), {});
106
+ const obj = {
107
+ title,
108
+ table_title: body.ua || body.title,
109
+ printMap,
110
+ rows: tabData,
111
+ data: Object.keys(data).filter(el => columnTitles[el]).reduce((acc, curr) => Object.assign(acc, { [columnTitles[curr] || curr]: data[curr] }), {}),
112
+ rawData: data,
113
+ url,
114
+ qr: qrCode,
115
+ };
116
+
117
+ const html = await handlebars.compile(pt || 'template not found')(obj);
118
+
119
+ if (format == 'html') {
120
+ return reply.headers({ 'Content-Type': 'text/html; charset=utf-8' }).send(html);
121
+ }
122
+
123
+ const result = await htmlToPdf({ html });
124
+ const buffer = Buffer.from(result.result, 'base64');
125
+
126
+ // await mkdir(path.dirname(filepath), { recursive: true });
127
+ // await writeFile(filepath, buffer);
128
+
129
+ logger.file('cardPrint', { table, id, format, uid: user?.uid });
130
+ return reply.headers(headers).send(buffer);
131
131
  }