@opengis/admin 0.3.63 → 0.3.65

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 (116) hide show
  1. package/README.md +97 -97
  2. package/config.js +4 -4
  3. package/dist/{add-page-BQ1-lxUt.js → add-page-C2X-VEBg.js} +1 -1
  4. package/dist/{admin-interface-DjANwHNt.js → admin-interface-qtoX1zqj.js} +2 -2
  5. package/dist/{admin-view-CPe1z9gc.js → admin-view-O0BGOxwz.js} +1 -1
  6. package/dist/admin.js +1 -1
  7. package/dist/admin.umd.cjs +50 -50
  8. package/dist/assets/logo.svg +41 -41
  9. package/dist/{card-view-BoIRYW4b.js → card-view-BfRTa45B.js} +1 -1
  10. package/dist/{edit-page-DtEfthoR.js → edit-page-BmDuiOeF.js} +1 -1
  11. package/dist/{import-file-BUHL6QPy.js → import-file-Ht3Bk57h.js} +3915 -3933
  12. package/dist/{profile-page-HQIAuwTH.js → profile-page-D03Y2bjM.js} +1 -1
  13. package/dist/style.css +1 -1
  14. package/module/settings/card/admin.accounts.table/index.yml +7 -7
  15. package/module/settings/card/admin.accounts.table/rules.hbs +18 -18
  16. package/module/settings/card/admin.accounts.table/users.hbs +13 -13
  17. package/module/settings/card/admin.routes.table/groups.hbs +11 -11
  18. package/module/settings/card/admin.routes.table/users.hbs +16 -16
  19. package/module/settings/cls/core.actions.json +17 -17
  20. package/module/settings/cls/core.scope.json +13 -13
  21. package/module/settings/cls/properties.site_status.json +13 -13
  22. package/module/settings/cls/properties.widget_status.json +13 -13
  23. package/module/settings/cls/yes_no.json +11 -11
  24. package/module/settings/form/admin.accounts.form.json +13 -13
  25. package/module/settings/form/admin.properties.form.json +15 -15
  26. package/module/settings/form/admin.roles.form.json +21 -21
  27. package/module/settings/form/admin.user_properties.form.json +15 -15
  28. package/module/settings/form/admin.user_roles_card.form.json +13 -13
  29. package/module/settings/interface/admin.properties.json +4 -4
  30. package/module/settings/interface/admin.roles.json +4 -4
  31. package/module/settings/interface/admin.routes.json +4 -4
  32. package/module/settings/interface/admin.users.json +4 -4
  33. package/module/settings/select/core.routes.sql +1 -1
  34. package/module/settings/select/core.user_mentioned.sql +1 -1
  35. package/module/settings/select/core.user_uid.sql +1 -1
  36. package/module/settings/table/admin.properties.table.json +39 -39
  37. package/module/settings/table/admin.user_properties.table.json +34 -34
  38. package/package.json +4 -4
  39. package/server/helpers/core/badge.js +16 -16
  40. package/server/helpers/core/buttonHelper.js +21 -21
  41. package/server/helpers/core/coalesce.js +7 -7
  42. package/server/helpers/core/select.js +48 -48
  43. package/server/helpers/core/token.js +18 -18
  44. package/server/helpers/list/buttonHelper.js +21 -21
  45. package/server/helpers/list/tableList.js +1 -1
  46. package/server/helpers/list/utils/button.js +5 -5
  47. package/server/helpers/temp/contentList.js +58 -58
  48. package/server/helpers/temp/ifCond.js +101 -101
  49. package/server/helpers/utils/button.js +5 -5
  50. package/server/helpers/utils/mdToHTML.js +17 -17
  51. package/server/plugins/access/index.mjs +6 -6
  52. package/server/plugins/adminHook.js +81 -81
  53. package/server/plugins/cron.js +10 -10
  54. package/server/plugins/docs.js +28 -28
  55. package/server/routes/access/controllers/access.group.js +29 -29
  56. package/server/routes/access/controllers/access.group.post.js +54 -54
  57. package/server/routes/access/index.mjs +11 -11
  58. package/server/routes/access/schema.mjs +67 -67
  59. package/server/routes/calendar/controllers/calendar.data.js +125 -125
  60. package/server/routes/calendar/index.mjs +7 -7
  61. package/server/routes/calendar/schema.js +21 -21
  62. package/server/routes/data/controllers/cardTabData.js +49 -49
  63. package/server/routes/data/controllers/funcs/getFilterSQL/index.js +92 -92
  64. package/server/routes/data/controllers/funcs/getFilterSQL/util/formatValue.js +170 -170
  65. package/server/routes/data/controllers/funcs/getFilterSQL/util/getCustomQuery.js +13 -13
  66. package/server/routes/data/controllers/funcs/getFilterSQL/util/getFilterQuery.js +64 -64
  67. package/server/routes/data/controllers/funcs/getFilterSQL/util/getOptimizedQuery.js +12 -12
  68. package/server/routes/data/controllers/funcs/getFilterSQL/util/getTableSql.js +34 -34
  69. package/server/routes/data/controllers/tableDataId.js +27 -27
  70. package/server/routes/data/controllers/tokenInfo.js +9 -9
  71. package/server/routes/data/controllers/utils/assignTokens.js +30 -30
  72. package/server/routes/data/controllers/utils/conditions.js +20 -20
  73. package/server/routes/data/controllers/utils/getColumns.js +8 -8
  74. package/server/routes/data/index.mjs +20 -20
  75. package/server/routes/data/schema.js +54 -54
  76. package/server/routes/notifications/controllers/readNotifications.js +18 -18
  77. package/server/routes/notifications/controllers/testEmail.js +35 -35
  78. package/server/routes/notifications/controllers/userNotifications.js +53 -53
  79. package/server/routes/notifications/hook/onWidgetSet.js +56 -56
  80. package/server/routes/notifications/index.mjs +26 -26
  81. package/server/routes/notifications/schema.js +16 -16
  82. package/server/routes/print/controllers/cardPrint.js +135 -135
  83. package/server/routes/properties/controllers/admin.properties.get.js +6 -12
  84. package/server/routes/properties/controllers/admin.properties.post.js +17 -11
  85. package/server/routes/properties/schema.js +10 -10
  86. package/server/routes/report/controllers/data.js +76 -76
  87. package/server/routes/report/controllers/list.js +18 -18
  88. package/server/routes/report/index.mjs +7 -7
  89. package/server/routes/report/utils/formatValue.js +179 -179
  90. package/server/routes/root.mjs +3 -3
  91. package/server/routes/templates/controllers/getTemplate.js +44 -44
  92. package/server/routes/templates/schema.js +8 -8
  93. package/server/routes/user/controllers/user.cls.id.js +14 -14
  94. package/server/routes/user/controllers/user.cls.js +72 -72
  95. package/server/routes/user/controllers/user.info.js +17 -17
  96. package/server/routes/user/schema.js +14 -14
  97. package/server/routes/util/controllers/code.generator.js +89 -89
  98. package/server/routes/widget/controllers/widget.del.js +80 -80
  99. package/server/routes/widget/controllers/widget.set.js +101 -101
  100. package/server/routes/widget/hook/onWidgetSet.js +12 -12
  101. package/server/routes/widget/index.mjs +20 -20
  102. package/server/routes/widget/schema.js +12 -12
  103. package/server/templates/cls/itree.recrzone_category.json +73 -73
  104. package/server/templates/cls/test.json +9 -9
  105. package/server/templates/form/admin.user_cls.data.form.json +49 -49
  106. package/server/templates/form/admin.user_group_rel.form.json +21 -21
  107. package/server/templates/form/form-user-pass.json +10 -10
  108. package/server/templates/form/form-user_group.json +39 -39
  109. package/server/templates/form/form-users.json +156 -156
  110. package/server/templates/form/user_group_access.form.json +22 -22
  111. package/server/templates/select/account_id.json +2 -2
  112. package/server/templates/table/gis.dataset.table.json +43 -43
  113. package/server/templates/table/management.user_group.table.json +112 -112
  114. package/server/templates/table/management.users.table.json +126 -126
  115. package/server/utils/addNotification.js +21 -21
  116. package/server/utils/sendNotification.js +89 -89
@@ -1,26 +1,26 @@
1
- import { 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
-
19
- // fastify.decorate('addNotification', addNotification);
20
- // fastify.decorate('notification', notification);
21
-
22
- fastify.get('/test-email', { config: { policy: ['user'] }, schema: emailSchema }, testEmail);
23
- fastify.get('/notification', { config: { policy: ['user'] }, schema: notificationSchema }, userNotifications);
24
- fastify.get('/notification-read/:id?', { config: { policy: ['user'] }, schema: notificationSchema }, readNotifications);
25
- addHook('onWidgetSet', onWidgetSet);
26
- }
1
+ import { 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
+
19
+ // fastify.decorate('addNotification', addNotification);
20
+ // fastify.decorate('notification', notification);
21
+
22
+ fastify.get('/test-email', { config: { policy: ['user'] }, schema: emailSchema }, testEmail);
23
+ fastify.get('/notification', { config: { policy: ['user'] }, schema: notificationSchema }, userNotifications);
24
+ fastify.get('/notification-read/:id?', { config: { policy: ['user'] }, schema: notificationSchema }, readNotifications);
25
+ addHook('onWidgetSet', onWidgetSet);
26
+ }
@@ -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,136 +1,136 @@
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
- // metaFormat + descriptionList => bugs
70
- // const cls = body?.columns?.filter(el => el.data)?.reduce((acc, curr) => Object.assign(acc, { [curr.name]: curr.data }), {});
71
- // await metaFormat({ rows, cls, sufix: false });
72
-
73
- const data = rows?.[0];
74
- if (!data) {
75
- return { message: 'data not found', status: 404 };
76
- }
77
-
78
- Object.assign(data, { id: data[body.key || pg.pk?.[body.table]] });
79
-
80
- 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`;
81
- const resp = data['geom'] ? await fetch(mapUrl) : null;
82
- const printMap = data['geom'] ? await resp.text() : '';
83
-
84
- const pt = await getTemplate('pt', template)
85
- || await readFile(path.join(dirname, '../../../templates/pt/card-print.pt.hbs'), 'utf8');
86
-
87
- const trimPort = ['80', '443'].find(el => req.hostname.endsWith(el));
88
- const url = (req.protocol || 'https') + '://' + req.hostname.replace(trimPort, '') + req.url.replace(req.routeOptions.url.split(':')[0], '/card/');
89
- const qrCode = `<img src="${await qr.toDataURL(url, { type: 'png', ec_level: 'M', size: 5, margin: 4 })}" alt="qrcode">`;
90
-
91
- const cardTemplates = await getTemplate('card', table);
92
- const index = cardTemplates?.find(el => el[0] === 'index.yml')?.[1];
93
- const cardHbsTabs = cardTemplates.filter(el => el[0].endsWith('hbs'));
94
-
95
- const orderedTabs = index?.panels
96
- ?.flatMap(panel => panel.items?.map(item => {
97
- const body = cardHbsTabs.find(el => el[0] === `${item.name}.hbs`)?.[1];
98
- return { ...item, body };
99
- }))
100
- .filter(el => el.name && el.body)
101
- .filter(el => query.tab ? el.name === query.tab.toString() : true);
102
-
103
- const tabData = await Promise.all(orderedTabs.map(async (el) => {
104
- const html = await handlebars.compile(el.body.replace(/\{\{\{button[^\}]*\}\}\}/g, ''))(data);
105
- return { name: el.name, title: el.title, html };
106
- }));
107
-
108
- const title = data?.[body.meta.title || ''];
109
-
110
- const columnTitles = body?.columns?.reduce((acc, curr) => Object.assign(acc, { [curr.name]: curr.title || curr.ua }), {});
111
- const obj = {
112
- title,
113
- table_title: body.ua || body.title,
114
- printMap,
115
- rows: tabData,
116
- data: Object.keys(data).filter(el => columnTitles[el]).reduce((acc, curr) => Object.assign(acc, { [columnTitles[curr] || curr]: data[curr] }), {}),
117
- rawData: data,
118
- url,
119
- qr: qrCode,
120
- };
121
-
122
- const html = await handlebars.compile(pt || 'template not found')(obj);
123
-
124
- if (format == 'html') {
125
- return reply.headers({ 'Content-Type': 'text/html; charset=utf-8' }).send(html);
126
- }
127
-
128
- const result = await htmlToPdf({ html });
129
- const buffer = Buffer.from(result.result, 'base64');
130
-
131
- // await mkdir(path.dirname(filepath), { recursive: true });
132
- // await writeFile(filepath, buffer);
133
-
134
- logger.file('cardPrint', { table, id, format, uid: user?.uid });
135
- 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
+ // metaFormat + descriptionList => bugs
70
+ // const cls = body?.columns?.filter(el => el.data)?.reduce((acc, curr) => Object.assign(acc, { [curr.name]: curr.data }), {});
71
+ // await metaFormat({ rows, cls, sufix: false });
72
+
73
+ const data = rows?.[0];
74
+ if (!data) {
75
+ return { message: 'data not found', status: 404 };
76
+ }
77
+
78
+ Object.assign(data, { id: data[body.key || pg.pk?.[body.table]] });
79
+
80
+ 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`;
81
+ const resp = data['geom'] ? await fetch(mapUrl) : null;
82
+ const printMap = data['geom'] ? await resp.text() : '';
83
+
84
+ const pt = await getTemplate('pt', template)
85
+ || await readFile(path.join(dirname, '../../../templates/pt/card-print.pt.hbs'), 'utf8');
86
+
87
+ const trimPort = ['80', '443'].find(el => req.hostname.endsWith(el));
88
+ const url = (req.protocol || 'https') + '://' + req.hostname.replace(trimPort, '') + req.url.replace(req.routeOptions.url.split(':')[0], '/card/');
89
+ const qrCode = `<img src="${await qr.toDataURL(url, { type: 'png', ec_level: 'M', size: 5, margin: 4 })}" alt="qrcode">`;
90
+
91
+ const cardTemplates = await getTemplate('card', table);
92
+ const index = cardTemplates?.find(el => el[0] === 'index.yml')?.[1];
93
+ const cardHbsTabs = cardTemplates.filter(el => el[0].endsWith('hbs'));
94
+
95
+ const orderedTabs = index?.panels
96
+ ?.flatMap(panel => panel.items?.map(item => {
97
+ const body = cardHbsTabs.find(el => el[0] === `${item.name}.hbs`)?.[1];
98
+ return { ...item, body };
99
+ }))
100
+ .filter(el => el.name && el.body)
101
+ .filter(el => query.tab ? el.name === query.tab.toString() : true);
102
+
103
+ const tabData = await Promise.all(orderedTabs.map(async (el) => {
104
+ const html = await handlebars.compile(el.body.replace(/\{\{\{button[^\}]*\}\}\}/g, ''))(data);
105
+ return { name: el.name, title: el.title, html };
106
+ }));
107
+
108
+ const title = data?.[body.meta.title || ''];
109
+
110
+ const columnTitles = body?.columns?.reduce((acc, curr) => Object.assign(acc, { [curr.name]: curr.title || curr.ua }), {});
111
+ const obj = {
112
+ title,
113
+ table_title: body.ua || body.title,
114
+ printMap,
115
+ rows: tabData,
116
+ data: Object.keys(data).filter(el => columnTitles[el]).reduce((acc, curr) => Object.assign(acc, { [columnTitles[curr] || curr]: data[curr] }), {}),
117
+ rawData: data,
118
+ url,
119
+ qr: qrCode,
120
+ };
121
+
122
+ const html = await handlebars.compile(pt || 'template not found')(obj);
123
+
124
+ if (format == 'html') {
125
+ return reply.headers({ 'Content-Type': 'text/html; charset=utf-8' }).send(html);
126
+ }
127
+
128
+ const result = await htmlToPdf({ html });
129
+ const buffer = Buffer.from(result.result, 'base64');
130
+
131
+ // await mkdir(path.dirname(filepath), { recursive: true });
132
+ // await writeFile(filepath, buffer);
133
+
134
+ logger.file('cardPrint', { table, id, format, uid: user?.uid });
135
+ return reply.headers(headers).send(buffer);
136
136
  }
@@ -6,26 +6,20 @@ import { pgClients, getTemplatePath, getTemplate } from '@opengis/fastify-table/
6
6
 
7
7
  export default async function getSettingsApp({
8
8
  pg = pgClients.client,
9
- }) {
9
+ }, reply) {
10
10
  const time = Date.now();
11
+
11
12
  if (!pg.pk?.[table]) {
12
- return { message: 'table not found', status: 404 };
13
+ return reply.status(404).send('table not found');
13
14
  }
14
15
 
15
- /*const keyCache = `${pg.options?.database}:settings:${params?.key || 'all'}:${query?.json ? 'json' : 'plain'}:${table}`;
16
- const cache = await redis.get(keyCache);
17
-
18
- if (cache && !config?.local) {
19
- return JSON.parse(cache);
20
- }*/
16
+ const { rows = [] } = await pg.query('select property_key as key, property_text, property_json from admin.properties');
21
17
 
22
- const { rows } = await pgClients.client.query("select property_key as key,property_text as val from admin.properties /*where property_key~'^(site|map)'*/");
23
- const settings = rows.reduce((p, { key, val }) => { const [k1, k2] = key.split('.'); p[k1] = p[k1] || {}; p[k1][k2] = val; return p }, {});
24
- const settings1 = rows.reduce((p, { key, val }) => ({ ...p, [key]: val }), {});
18
+ const settings = rows.reduce((acc, { key, property_text, property_json }) => ({ ...acc, [key]: property_text || property_json }), {});
25
19
 
26
20
  const forms = await Promise.all(getTemplatePath('setting')
27
21
  .map(async (el) => ({ name: el[0], body: await getTemplate('setting', el[0]) }))
28
22
  );
29
23
 
30
- return { message: { time: Date.now() - time, forms, settings: settings1 }, status: 200 };
24
+ return reply.status(200).send({ time: Date.now() - time, forms, settings });
31
25
  }
@@ -1,6 +1,6 @@
1
1
  const table = 'admin.properties';
2
2
 
3
- import { dataInsert } from '@opengis/fastify-table/utils.js';
3
+ import { dataInsert, pgClients } from '@opengis/fastify-table/utils.js';
4
4
 
5
5
  function checkValueType(val) {
6
6
  if (val) {
@@ -15,28 +15,34 @@ function checkValueType(val) {
15
15
  }
16
16
 
17
17
  export default async function postSettingsApp({
18
- pg, user = {}, body = {}, uid
19
- }) {
18
+ pg = pgClients.client, body = {}, user = {}, uid = user?.uid,
19
+ }, reply) {
20
20
  if (!user?.user_type?.includes?.('admin')) {
21
- return { message: 'access restricted', status: 403 };
21
+ return reply.status(403).send('access restricted');
22
22
  }
23
23
  const { key, val } = body;
24
+
24
25
  if ((!key || !val) && !Object.keys(body).length) {
25
- return { message: 'not enough params', status: 400 };
26
+ return reply.status(400).send('not enough body params');
26
27
  }
27
28
 
28
29
  if (!pg?.pk?.[table]) {
29
- return { message: 'table not found', status: 404 };
30
+ return reply.status(404).send('table not found');
30
31
  }
32
+
31
33
  const keys = Object.keys(body);
32
34
  await pg.query(`delete from ${table} where property_key=any($1)`, [keys]);
33
35
 
34
- await Promise.all(keys.map(async (el) => {
35
- const columnType = table === 'admin.user_properties' ? 'property_json' : checkValueType(body[el]);
36
- const data = { property_key: el, [columnType]: body[el], uid };
37
- if (!body[el]) return;
36
+ await Promise.all(keys.filter(el => body[el]).map(async (el) => {
37
+ const columnType = table === 'admin.user_properties'
38
+ ? 'property_json'
39
+ : checkValueType(body[el]);
40
+
38
41
  await dataInsert({
39
- pg, table, data, uid,
42
+ pg,
43
+ table,
44
+ data: { property_key: el, [columnType]: body[el] },
45
+ uid,
40
46
  });
41
47
 
42
48
  }));
@@ -1,11 +1,11 @@
1
- const propertiesSchema = {
2
- params: {
3
- key: { type: 'string', pattern: '^([\\d\\w._]+)$' },
4
- },
5
- querystring: {
6
- json: { type: 'string', pattern: '^([\\d\\w]+)$' },
7
- },
8
- };
9
-
10
- export default null;
1
+ const propertiesSchema = {
2
+ params: {
3
+ key: { type: 'string', pattern: '^([\\d\\w._]+)$' },
4
+ },
5
+ querystring: {
6
+ json: { type: 'string', pattern: '^([\\d\\w]+)$' },
7
+ },
8
+ };
9
+
10
+ export default null;
11
11
  export { propertiesSchema }
@@ -1,76 +1,76 @@
1
- import { handlebars, pgClients, getTemplate, metaFormat, handlebarsSync } from '@opengis/fastify-table/utils.js';
2
-
3
- import getFilterQuery from '../utils/getFilterQuery.js';
4
-
5
- const maxLimit = 100;
6
-
7
- export default async function reportData({
8
- pg = pgClients.client, params = {}, query = {}, user = {},
9
- }) {
10
- if (!params?.name) {
11
- return { message: 'not enough params: name', status: 400 };
12
- }
13
-
14
- const loadTemplate = await getTemplate('report', params.name);
15
-
16
- if (!loadTemplate?.sql) {
17
- return { message: `report not found: ${params.name}`, status: 404 };
18
- }
19
-
20
- const { uid } = user;
21
-
22
- const { kpi, sql, meta, filters } = loadTemplate;
23
- const { date, columns: metaColumns } = meta || {};
24
-
25
- const granularity = query.granularity && date && false ? `date_trunc('${query.granularity}',${date})::date::text` : null;
26
- const groupby = [meta?.groupby, granularity].filter(el => el).join(',');
27
-
28
- const period = query.period && date ? `${date}=${query.period}` : null;
29
- const filter = [query.filter, period].filter(el => el).join(';');
30
-
31
- const limit = Math.min(maxLimit, +(query.limit || 20));
32
- const offset = query.page && query.page > 0 ? (query.page - 1) * limit : 0;
33
-
34
- const kpiColumns = kpi ? kpi?.map(el => `${el.sql || 'count(*)'} as "${el.name}"`)?.join(',') : '';
35
- const columnsList = metaColumns || loadTemplate.columns?.map(el => el.name)?.join(',');
36
-
37
- const qMeta = await handlebars.compile(sql)({ user, uid });
38
- const { fields = [] } = await pg.query(`select * from (${qMeta})q limit 0`);
39
-
40
- const where = filter ? getFilterQuery({ pg, filter, fields, filterList: filters })?.map?.(el => el.query)?.join(' and ') : null;
41
-
42
- const qAgg = `select ${kpiColumns || ''} from (${qMeta})q where ${where || '1=1'}`;
43
- const q = `select ${columnsList || '*'} from (${qMeta})q where ${where || '1=1'} ${groupby ? `group by ${groupby}` : ''} limit ${limit} offset ${offset}`;
44
-
45
- if (query.sql && user?.user_type?.includes('admin')) return `${qAgg};${q}`;
46
-
47
- const kpiData = await pg.query(qAgg).then(el => el.rows?.[0] || {});
48
- kpi?.forEach(el => Object.assign(el, { count: kpiData[el.name] || '0' }));
49
-
50
- const { rows = [] } = await pg.query(q);
51
-
52
- const cls = meta?.cls || loadTemplate.columns
53
- ?.filter(el => (el.option || el.data))
54
- ?.reduce((acc, curr) => Object.assign(acc, { [curr.name]: (curr.option || curr.data) }), {});
55
-
56
- const titles = meta?.titles
57
- || loadTemplate.columns?.reduce((acc, curr) => Object.assign(acc, { [curr.name]: curr.title }), {});
58
-
59
- await metaFormat({ rows, cls, sufix: true });
60
-
61
- const columns = loadTemplate.columns
62
- || fields.map(el => ({
63
- name: el.name,
64
- title: titles?.[el.name] || el.name,
65
- type: cls?.[el.name] ? 'Autocomplete' : 'Text',
66
- format: pg.pgType?.[el.dataTypeID],
67
- data: cls?.[el.name],
68
- }));
69
-
70
- return {
71
- q: user?.user_type?.includes('admin') ? q : undefined,
72
- kpi,
73
- rows,
74
- columns,
75
- };
76
- }
1
+ import { handlebars, pgClients, getTemplate, metaFormat, handlebarsSync } from '@opengis/fastify-table/utils.js';
2
+
3
+ import getFilterQuery from '../utils/getFilterQuery.js';
4
+
5
+ const maxLimit = 100;
6
+
7
+ export default async function reportData({
8
+ pg = pgClients.client, params = {}, query = {}, user = {},
9
+ }) {
10
+ if (!params?.name) {
11
+ return { message: 'not enough params: name', status: 400 };
12
+ }
13
+
14
+ const loadTemplate = await getTemplate('report', params.name);
15
+
16
+ if (!loadTemplate?.sql) {
17
+ return { message: `report not found: ${params.name}`, status: 404 };
18
+ }
19
+
20
+ const { uid } = user;
21
+
22
+ const { kpi, sql, meta, filters } = loadTemplate;
23
+ const { date, columns: metaColumns } = meta || {};
24
+
25
+ const granularity = query.granularity && date && false ? `date_trunc('${query.granularity}',${date})::date::text` : null;
26
+ const groupby = [meta?.groupby, granularity].filter(el => el).join(',');
27
+
28
+ const period = query.period && date ? `${date}=${query.period}` : null;
29
+ const filter = [query.filter, period].filter(el => el).join(';');
30
+
31
+ const limit = Math.min(maxLimit, +(query.limit || 20));
32
+ const offset = query.page && query.page > 0 ? (query.page - 1) * limit : 0;
33
+
34
+ const kpiColumns = kpi ? kpi?.map(el => `${el.sql || 'count(*)'} as "${el.name}"`)?.join(',') : '';
35
+ const columnsList = metaColumns || loadTemplate.columns?.map(el => el.name)?.join(',');
36
+
37
+ const qMeta = await handlebars.compile(sql)({ user, uid });
38
+ const { fields = [] } = await pg.query(`select * from (${qMeta})q limit 0`);
39
+
40
+ const where = filter ? getFilterQuery({ pg, filter, fields, filterList: filters })?.map?.(el => el.query)?.join(' and ') : null;
41
+
42
+ const qAgg = `select ${kpiColumns || ''} from (${qMeta})q where ${where || '1=1'}`;
43
+ const q = `select ${columnsList || '*'} from (${qMeta})q where ${where || '1=1'} ${groupby ? `group by ${groupby}` : ''} limit ${limit} offset ${offset}`;
44
+
45
+ if (query.sql && user?.user_type?.includes('admin')) return `${qAgg};${q}`;
46
+
47
+ const kpiData = await pg.query(qAgg).then(el => el.rows?.[0] || {});
48
+ kpi?.forEach(el => Object.assign(el, { count: kpiData[el.name] || '0' }));
49
+
50
+ const { rows = [] } = await pg.query(q);
51
+
52
+ const cls = meta?.cls || loadTemplate.columns
53
+ ?.filter(el => (el.option || el.data))
54
+ ?.reduce((acc, curr) => Object.assign(acc, { [curr.name]: (curr.option || curr.data) }), {});
55
+
56
+ const titles = meta?.titles
57
+ || loadTemplate.columns?.reduce((acc, curr) => Object.assign(acc, { [curr.name]: curr.title }), {});
58
+
59
+ await metaFormat({ rows, cls, sufix: true });
60
+
61
+ const columns = loadTemplate.columns
62
+ || fields.map(el => ({
63
+ name: el.name,
64
+ title: titles?.[el.name] || el.name,
65
+ type: cls?.[el.name] ? 'Autocomplete' : 'Text',
66
+ format: pg.pgType?.[el.dataTypeID],
67
+ data: cls?.[el.name],
68
+ }));
69
+
70
+ return {
71
+ q: user?.user_type?.includes('admin') ? q : undefined,
72
+ kpi,
73
+ rows,
74
+ columns,
75
+ };
76
+ }