@opengis/admin 0.1.66 → 0.1.68

Sign up to get free protection for your applications and to get access to all the features.
Files changed (120) hide show
  1. package/README.md +29 -29
  2. package/config.js +4 -4
  3. package/dist/IconChevronDown-Co0qOLyQ.js +26 -0
  4. package/dist/{add-page-YonHQsF2.js → add-page-Bv-BNhYQ.js} +11 -8
  5. package/dist/{admin-interface-DSR1im5I.js → admin-interface-j3f16Iy8.js} +593 -446
  6. package/dist/{admin-view-WZhYBXYw.js → admin-view-DykzQo5I.js} +214 -223
  7. package/dist/admin.js +1 -1
  8. package/dist/admin.umd.cjs +83 -83
  9. package/dist/card-page-DtXydAxe.js +275 -0
  10. package/dist/{card-view-DYhMgpIH.js → card-view-MpG-dhK0.js} +1 -1
  11. package/dist/{edit-page-D8fMSwEp.js → edit-page-DkD5JFQv.js} +13 -12
  12. package/dist/{import-file-Do-GQQHc.js → import-file-DGI0k9si.js} +6797 -6814
  13. package/dist/style.css +1 -1
  14. package/module/settings/card/admin.roles.table/access.hbs +27 -27
  15. package/module/settings/card/admin.roles.table/general_info.hbs +16 -16
  16. package/module/settings/card/admin.roles.table/index.yml +14 -14
  17. package/module/settings/card/admin.roles.table/users.hbs +27 -27
  18. package/module/settings/card/admin.routes.table/general_info.hbs +40 -40
  19. package/module/settings/card/admin.routes.table/index.yml +8 -8
  20. package/module/settings/card/admin.routes.table/users.hbs +33 -33
  21. package/module/settings/card/admin.users.table/general_info.hbs +25 -25
  22. package/module/settings/card/admin.users.table/index.yml +12 -12
  23. package/module/settings/card/admin.users.table/logs.hbs +30 -30
  24. package/module/settings/card/admin.users.table/user_roles.hbs +24 -24
  25. package/module/settings/cls/core.actions.json +13 -13
  26. package/module/settings/cls/core.scope.json +13 -13
  27. package/module/settings/cls/properties.site_status.json +13 -13
  28. package/module/settings/cls/properties.widget_status.json +13 -13
  29. package/module/settings/cls/users.user_type.json +13 -13
  30. package/module/settings/form/admin.access.form.json +36 -36
  31. package/module/settings/form/admin.custom_column.form.json +71 -71
  32. package/module/settings/form/admin.properties.form.json +15 -15
  33. package/module/settings/form/admin.roles.form.json +19 -19
  34. package/module/settings/form/admin.routes.form.json +25 -25
  35. package/module/settings/form/admin.user_properties.form.json +15 -15
  36. package/module/settings/form/admin.user_roles.form.json +21 -21
  37. package/module/settings/form/admin.users.form.json +150 -150
  38. package/module/settings/form/user.user_roles.form.json +13 -13
  39. package/module/settings/interface/admin.properties.json +4 -4
  40. package/module/settings/interface/admin.roles.json +4 -4
  41. package/module/settings/interface/admin.routes.json +4 -4
  42. package/module/settings/interface/admin.users.json +4 -4
  43. package/module/settings/menu.json +50 -50
  44. package/module/settings/select/core.roles.json +2 -2
  45. package/module/settings/select/core.routes.sql +1 -1
  46. package/module/settings/select/core.user_uid.sql +1 -1
  47. package/module/settings/table/admin.access.table.json +77 -77
  48. package/module/settings/table/admin.custom_column.table.json +94 -94
  49. package/module/settings/table/admin.properties.table.json +33 -33
  50. package/module/settings/table/admin.roles.table.json +58 -58
  51. package/module/settings/table/admin.routes.table.json +67 -67
  52. package/module/settings/table/admin.user_properties.table.json +28 -28
  53. package/module/settings/table/admin.user_roles.table.json +66 -66
  54. package/module/settings/table/admin.users.table.json +119 -119
  55. package/package.json +81 -80
  56. package/plugin.js +100 -100
  57. package/server/helpers/controllers/badge.js +11 -11
  58. package/server/helpers/controllers/hb.js +2 -2
  59. package/server/helpers/controllers/map.js +2 -2
  60. package/server/helpers/controllers/mls.js +2 -2
  61. package/server/helpers/controllers/vue.js +2 -2
  62. package/server/helpers/index.mjs +13 -13
  63. package/server/plugins/adminHook.js +165 -165
  64. package/server/plugins/cron.js +10 -10
  65. package/server/plugins/docs.js +28 -28
  66. package/server/plugins/hook.js +152 -185
  67. package/server/plugins/vite.js +74 -69
  68. package/server/routes/calendar/controllers/calendar.data.js +88 -88
  69. package/server/routes/calendar/index.mjs +7 -17
  70. package/server/routes/calendar/schema.js +22 -0
  71. package/server/routes/data/controllers/cardData.js +57 -57
  72. package/server/routes/data/controllers/cardTabData.js +49 -49
  73. package/server/routes/data/controllers/funcs/getFilterSQL/index.js +92 -92
  74. package/server/routes/data/controllers/funcs/getFilterSQL/util/formatValue.js +170 -170
  75. package/server/routes/data/controllers/funcs/getFilterSQL/util/getCustomQuery.js +13 -13
  76. package/server/routes/data/controllers/funcs/getFilterSQL/util/getFilterQuery.js +64 -64
  77. package/server/routes/data/controllers/funcs/getFilterSQL/util/getOptimizedQuery.js +12 -12
  78. package/server/routes/data/controllers/funcs/getFilterSQL/util/getTableSql.js +34 -34
  79. package/server/routes/data/controllers/tableData.js +112 -112
  80. package/server/routes/data/controllers/tableDataId.js +27 -27
  81. package/server/routes/data/controllers/tableFilter.js +63 -63
  82. package/server/routes/data/controllers/utils/assignTokens.js +30 -30
  83. package/server/routes/data/controllers/utils/getColumns.js +8 -8
  84. package/server/routes/data/index.mjs +15 -15
  85. package/server/routes/data/schema.js +54 -7
  86. package/server/routes/menu/controllers/getMenu.js +51 -51
  87. package/server/routes/menu/index.mjs +5 -5
  88. package/server/routes/menu/schema.js +0 -0
  89. package/server/routes/notifications/controllers/readNotifications.js +30 -30
  90. package/server/routes/notifications/controllers/userNotifications.js +64 -64
  91. package/server/routes/notifications/hook/onWidgetSet.js +57 -57
  92. package/server/routes/notifications/index.mjs +15 -40
  93. package/server/routes/notifications/schema.js +11 -0
  94. package/server/routes/properties/controllers/admin.properties.get.js +29 -29
  95. package/server/routes/properties/controllers/user.properties.get.js +34 -34
  96. package/server/routes/properties/controllers/user.properties.post.js +30 -30
  97. package/server/routes/properties/funcs/getSettings.js +56 -56
  98. package/server/routes/properties/funcs/setSettings.js +44 -44
  99. package/server/routes/properties/funcs/utils/dataInsert.js +26 -26
  100. package/server/routes/properties/index.mjs +14 -26
  101. package/server/routes/properties/schema.js +11 -0
  102. package/server/routes/root.mjs +3 -3
  103. package/server/routes/templates/controllers/getTemplate.js +22 -22
  104. package/server/routes/templates/index.mjs +14 -14
  105. package/server/routes/templates/scheme.js +9 -0
  106. package/server/templates/cls/itree.recrzone_category.json +73 -73
  107. package/server/templates/cls/test.json +9 -9
  108. package/server/templates/form/admin.user_cls.data.form.json +49 -49
  109. package/server/templates/form/admin.user_group_rel.form.json +21 -21
  110. package/server/templates/form/cp_building.form.json +32 -32
  111. package/server/templates/form/form-user-pass.json +10 -10
  112. package/server/templates/form/form-user_group.json +39 -39
  113. package/server/templates/form/form-users.json +156 -156
  114. package/server/templates/form/user_group_access.form.json +22 -22
  115. package/server/templates/select/account_id.json +2 -2
  116. package/server/templates/table/gis.dataset.table.json +43 -43
  117. package/server/templates/table/management.user_group.table.json +112 -112
  118. package/server/templates/table/management.users.table.json +126 -126
  119. package/utils.js +21 -21
  120. package/dist/card-page-BH8lGOKk.js +0 -230
@@ -1,113 +1,113 @@
1
- import {
2
- applyHook, getMeta, getAccess, getTemplate, metaFormat, getTableColumn,
3
- } from "@opengis/fastify-table/utils.js";
4
-
5
- import getFilterSQL from "./funcs/getFilterSQL/index.js";
6
-
7
- import assignTokens from './utils/assignTokens.js';
8
-
9
- import getColumns from './utils/getColumns.js';
10
-
11
- const maxLimit = 100;
12
-
13
- export default async function getTableData(req) {
14
- const time = Date.now();
15
-
16
- const {
17
- pg, params, funcs = {}, query = {}, opt = {}, session = {},
18
- } = req;
19
- const { uid } = session.passport?.user || {};
20
-
21
- try {
22
- const loadTable = await getTemplate('table', params.table);
23
-
24
- if (!loadTable) {
25
- return { message: 'template not found', status: 404 };
26
- }
27
-
28
- const {
29
- table, sql, form, meta, sqlColumns, ispublic,
30
- } = loadTable;
31
- const columns = loadTable.columns || loadTable.colModel;
32
-
33
- const { pk, columns: dbColumns = [] } = await getMeta(table);
34
-
35
- if (!pk) {
36
- return { message: `table not found: ${table}`, status: 404 };
37
- }
38
-
39
- const columnList = dbColumns.map((el) => el.name || el).join(',');
40
- const cols = columns.filter((el) => columnList.includes(el?.name) && el?.name !== 'geom').map((el) => el?.name || el).join(',');
41
-
42
- const metaCols = Object.keys(loadTable?.meta?.cls || {}).filter((el) => !cols.includes(el)).length
43
- ? `,${Object.keys(loadTable?.meta?.cls || {})?.filter((el) => !cols.includes(el)).join(',')}`
44
- : '';
45
-
46
- const sqlTable = sql?.filter?.((el) => !el?.disabled && el?.sql?.replace).map((el, i) => ` left join lateral (${el.sql.replace('{{uid}}', uid)}) ${el.name || `t${i}`} on 1=1 `)?.join('') || '';
47
-
48
- if (params.id && columnList.includes(params.id)) {
49
- return getTableColumn({
50
- pg, funcs, layer: params.table, column: params.id, sql: query.sql,
51
- });
52
- }
53
-
54
- const fData = query.filter || query.search ? await getFilterSQL({
55
- funcs,
56
- filter: query.filter,
57
- search: query.search,
58
- table: params.table,
59
- uid,
60
- json: 1,
61
- }) : {};
62
-
63
- const keyQuery = query.key && loadTable.key && !(opt?.id || params.id) ? `${loadTable.key}=$1` : null;
64
-
65
- const limit = Math.min(maxLimit, +(query.limit || 20));
66
-
67
- const offset = query.page && query.page > 0 ? ` offset ${(query.page - 1) * limit}` : '';
68
- // id, query, filter
69
- const [orderColumn, orderDir] = (query.order || loadTable.order || '').split(/[- ]/);
70
-
71
- const order = columnList.includes(orderColumn) && orderColumn?.length ? `order by ${orderColumn} ${query.desc || orderDir === 'desc' ? 'desc' : ''}` : '';
72
-
73
- const state = loadTable.filterState && query.state ? loadTable.filterState?.find((el) => el.name === query.state)?.sql : null;
74
-
75
- const custom = loadTable.filterCustom && query.custom ? loadTable.filterCustom?.find((el) => el.name === query.custom)?.sql : null;
76
-
77
- const search = loadTable.meta?.search && query.search ? `(${loadTable.meta?.search.split(',').map(el => `${el} ilike '%${query.search}%'`).join(' or ')})` : null;
78
-
79
- const queryBbox = query?.bbox ? query.bbox.replace(/ /g, ',').split(',')?.map((el) => el - 0) : [];
80
-
81
- const queryPolyline = meta?.bbox && query?.polyline ? `ST_Contains(ST_MakePolygon(ST_LineFromEncodedPolyline('${query?.polyline}')),${meta.bbox})` : undefined;
82
-
83
- const bbox = meta?.bbox && queryBbox.filter((el) => !Number.isNaN(el))?.length === 4 ? `${meta.bbox} && 'box(${queryBbox[0]} ${queryBbox[1]},${queryBbox[2]} ${queryBbox[3]})'::box2d ` : undefined;
84
-
85
- const access = await getAccess(req, params.table);
86
-
87
- const where = [(opt?.id || params.id ? ` "${pk}" = $1` : null), keyQuery, loadTable.query, fData.q, state, custom, search, access?.query || '1=1', bbox, queryPolyline, fData.extraQuery].filter((el) => el);
88
-
89
- const q = `select ${pk ? `"${pk}" as id,` : ''} ${columnList.includes('geom') ? 'st_asgeojson(geom)::json as geom,' : ''} ${query.id || query.key ? '*' : sqlColumns || cols || '*'} ${metaCols} from ${table} t ${sqlTable} where ${where.join(' and ') || 'true'} ${order} ${offset} limit ${limit}`;
90
-
91
- if (query.sql === '1') { return { message: q }; }
92
-
93
- const { rows } = await pg.query(q, (opt?.id || params.id ? [opt?.id || params.id] : null) || (query.key && loadTable.key ? [query.key] : []));
94
-
95
- const total = keyQuery || opt?.id || params.id ? rows.length : await pg.queryCache(`select count(*) from ${table} t ${sqlTable} where ${where.join(' and ') || 'true'}`).then((el) => (el?.rows[0]?.count || 0) - 0);
96
-
97
-
98
- const res = {
99
- time: Date.now() - time, card: loadTable.card, actions: loadTable.actions, access, total, count: rows.length, pk, form, meta, columns,
100
- };
101
-
102
- await applyHook('afterTable', { table: params?.table, res, rows, user: session?.passport?.user });
103
- await metaFormat({ funcs, rows, table: params.table });
104
-
105
-
106
- const addToken = assignTokens({ rows, funcs, ispublic, uid: 1, loadTable });
107
- Object.assign(res, { rows, addToken });
108
-
109
- return res;
110
- } catch (err) {
111
- return { message: err.toString(), status: 500 };
112
- }
1
+ import {
2
+ applyHook, getMeta, getAccess, getTemplate, metaFormat, getTableColumn,
3
+ } from "@opengis/fastify-table/utils.js";
4
+
5
+ import getFilterSQL from "./funcs/getFilterSQL/index.js";
6
+
7
+ import assignTokens from './utils/assignTokens.js';
8
+
9
+ import getColumns from './utils/getColumns.js';
10
+
11
+ const maxLimit = 100;
12
+
13
+ export default async function getTableData(req) {
14
+ const time = Date.now();
15
+
16
+ const {
17
+ pg, params, funcs = {}, query = {}, opt = {}, session = {},
18
+ } = req;
19
+ const { uid } = session.passport?.user || {};
20
+
21
+ try {
22
+ const loadTable = await getTemplate('table', params.table);
23
+
24
+ if (!loadTable) {
25
+ return { message: 'template not found', status: 404 };
26
+ }
27
+
28
+ const {
29
+ table, sql, form, meta, sqlColumns, ispublic,
30
+ } = loadTable;
31
+ const columns = loadTable.columns || loadTable.colModel;
32
+
33
+ const { pk, columns: dbColumns = [] } = await getMeta(table);
34
+
35
+ if (!pk) {
36
+ return { message: `table not found: ${table}`, status: 404 };
37
+ }
38
+
39
+ const columnList = dbColumns.map((el) => el.name || el).join(',');
40
+ const cols = columns.filter((el) => columnList.includes(el?.name) && el?.name !== 'geom').map((el) => el?.name || el).join(',');
41
+
42
+ const metaCols = Object.keys(loadTable?.meta?.cls || {}).filter((el) => !cols.includes(el)).length
43
+ ? `,${Object.keys(loadTable?.meta?.cls || {})?.filter((el) => !cols.includes(el)).join(',')}`
44
+ : '';
45
+
46
+ const sqlTable = sql?.filter?.((el) => !el?.disabled && el?.sql?.replace).map((el, i) => ` left join lateral (${el.sql.replace('{{uid}}', uid)}) ${el.name || `t${i}`} on 1=1 `)?.join('') || '';
47
+
48
+ if (params.id && columnList.includes(params.id)) {
49
+ return getTableColumn({
50
+ pg, funcs, layer: params.table, column: params.id, sql: query.sql,
51
+ });
52
+ }
53
+
54
+ const fData = query.filter || query.search ? await getFilterSQL({
55
+ funcs,
56
+ filter: query.filter,
57
+ search: query.search,
58
+ table: params.table,
59
+ uid,
60
+ json: 1,
61
+ }) : {};
62
+
63
+ const keyQuery = query.key && loadTable.key && !(opt?.id || params.id) ? `${loadTable.key}=$1` : null;
64
+
65
+ const limit = Math.min(maxLimit, +(query.limit || 20));
66
+
67
+ const offset = query.page && query.page > 0 ? ` offset ${(query.page - 1) * limit}` : '';
68
+ // id, query, filter
69
+ const [orderColumn, orderDir] = (query.order || loadTable.order || '').split(/[- ]/);
70
+
71
+ const order = columnList.includes(orderColumn) && orderColumn?.length ? `order by ${orderColumn} ${query.desc || orderDir === 'desc' ? 'desc' : ''}` : '';
72
+
73
+ const state = loadTable.filterState && query.state ? loadTable.filterState?.find((el) => el.name === query.state)?.sql : null;
74
+
75
+ const custom = loadTable.filterCustom && query.custom ? loadTable.filterCustom?.find((el) => el.name === query.custom)?.sql : null;
76
+
77
+ const search = loadTable.meta?.search && query.search ? `(${loadTable.meta?.search.split(',').map(el => `${el} ilike '%${query.search}%'`).join(' or ')})` : null;
78
+
79
+ const queryBbox = query?.bbox ? query.bbox.replace(/ /g, ',').split(',')?.map((el) => el - 0) : [];
80
+
81
+ const queryPolyline = meta?.bbox && query?.polyline ? `ST_Contains(ST_MakePolygon(ST_LineFromEncodedPolyline('${query?.polyline}')),${meta.bbox})` : undefined;
82
+
83
+ const bbox = meta?.bbox && queryBbox.filter((el) => !Number.isNaN(el))?.length === 4 ? `${meta.bbox} && 'box(${queryBbox[0]} ${queryBbox[1]},${queryBbox[2]} ${queryBbox[3]})'::box2d ` : undefined;
84
+
85
+ const access = await getAccess(req, params.table);
86
+
87
+ const where = [(opt?.id || params.id ? ` "${pk}" = $1` : null), keyQuery, loadTable.query, fData.q, state, custom, search, access?.query || '1=1', bbox, queryPolyline, fData.extraQuery].filter((el) => el);
88
+
89
+ const q = `select ${pk ? `"${pk}" as id,` : ''} ${columnList.includes('geom') ? 'st_asgeojson(geom)::json as geom,' : ''} ${query.id || query.key ? '*' : sqlColumns || cols || '*'} ${metaCols} from ${table} t ${sqlTable} where ${where.join(' and ') || 'true'} ${order} ${offset} limit ${limit}`;
90
+
91
+ if (query.sql === '1') { return { message: q }; }
92
+
93
+ const { rows } = await pg.query(q, (opt?.id || params.id ? [opt?.id || params.id] : null) || (query.key && loadTable.key ? [query.key] : []));
94
+
95
+ const total = keyQuery || opt?.id || params.id ? rows.length : await pg.queryCache(`select count(*) from ${table} t ${sqlTable} where ${where.join(' and ') || 'true'}`).then((el) => (el?.rows[0]?.count || 0) - 0);
96
+
97
+
98
+ const res = {
99
+ time: Date.now() - time, card: loadTable.card, actions: loadTable.actions, access, total, count: rows.length, pk, form, meta, columns,
100
+ };
101
+
102
+ await applyHook('afterTable', { table: params?.table, res, rows, user: session?.passport?.user });
103
+ await metaFormat({ funcs, rows, table: params.table });
104
+
105
+
106
+ const addToken = assignTokens({ rows, funcs, ispublic, uid: 1, loadTable });
107
+ Object.assign(res, { rows, addToken });
108
+
109
+ return res;
110
+ } catch (err) {
111
+ return { message: err.toString(), status: 500 };
112
+ }
113
113
  }
@@ -1,28 +1,28 @@
1
- import getTemplate from "../../templates/funcs/getTemplate.js";
2
- import getTableData from "./tableData.js";
3
-
4
- export default async function tableDataId({
5
- pg, funcs, params = {}, session = {},
6
- }, reply) {
7
- const { name, id } = params;
8
-
9
- const data = await getTemplate('pt', `${name}.pt`);
10
-
11
-
12
- if (!data) {
13
- return { message: `invalid template: ${name}.pt`, status: 400 };
14
- }
15
-
16
- const { message, status = 500, rows = [] } = await getTableData({ pg, params: { name, id }, session });
17
- if (message) {
18
- return { message, status };
19
- }
20
-
21
- if (!rows.length) {
22
- return { message: `data not found: ${name}/${id}`, status: 404 };
23
- }
24
-
25
- const htmlContent = await funcs.handlebars.compile(data)(rows[0]);
26
-
27
- return reply.headers({ 'Content-Type': 'text/html; charset=utf-8' }).send(htmlContent);
1
+ import getTemplate from "../../templates/funcs/getTemplate.js";
2
+ import getTableData from "./tableData.js";
3
+
4
+ export default async function tableDataId({
5
+ pg, funcs, params = {}, session = {},
6
+ }, reply) {
7
+ const { name, id } = params;
8
+
9
+ const data = await getTemplate('pt', `${name}.pt`);
10
+
11
+
12
+ if (!data) {
13
+ return { message: `invalid template: ${name}.pt`, status: 400 };
14
+ }
15
+
16
+ const { message, status = 500, rows = [] } = await getTableData({ pg, params: { name, id }, session });
17
+ if (message) {
18
+ return { message, status };
19
+ }
20
+
21
+ if (!rows.length) {
22
+ return { message: `data not found: ${name}/${id}`, status: 404 };
23
+ }
24
+
25
+ const htmlContent = await funcs.handlebars.compile(data)(rows[0]);
26
+
27
+ return reply.headers({ 'Content-Type': 'text/html; charset=utf-8' }).send(htmlContent);
28
28
  }
@@ -1,64 +1,64 @@
1
- import { getTemplate } from "@opengis/fastify-table/utils.js";
2
-
3
- export default async function tableFilter(req) {
4
- const time = Date.now();
5
- const { pg, funcs = {}, params = {}, session = {} } = req;
6
- const { uid } = session.passport?.user || {};
7
-
8
- if (!params.name) {
9
- return { message: 'not enouggh params: name', status: 400 };
10
- }
11
-
12
- const loadTable = await getTemplate('table', params.name);
13
-
14
- if (!loadTable) {
15
- return { message: 'table not found', status: 404 };
16
- }
17
-
18
- const { columns = [] } = await funcs.getMeta({ table: loadTable.table });
19
-
20
- const filters = loadTable?.filter_list || loadTable?.filters || loadTable?.filterList || [];
21
- filters.forEach(el => {
22
- Object.assign(el, { id: el.name || el.id, name: el.name || el.id });
23
- });
24
-
25
- // admin.custom_column - user filter
26
- const { rows: properties = [] } = await pg.query(`select column_id, name, title, format, data from admin.custom_column where entity=$1 and uid=$2 and filter`, [params.name, uid]);
27
- properties.forEach((row) => filters.push({ id: row.name, name: row.name, ua: row.title, type: row.format, data: row.data }));
28
-
29
- await Promise.all(filters.filter((el) => el.data).map(async (el) => {
30
-
31
- const cls = await getTemplate(['cls', 'select'], el.data);
32
- const name = el.name || el.id;
33
-
34
- if (!cls?.length || !Array.isArray(cls) || !loadTable.table || !name) return;
35
- const { dataTypeID } = columns.find((item) => item?.name === name) || {};
36
- if (el.extra && el.type === 'select' && Array.isArray(cls)) {
37
- const countArr = await pg.query(`select value_text as id, count(*) from crm.extra_data where property_key='${name}' and property_entity='${params.name}' group by value_text`);
38
- const options = countArr.rows.map(cel => {
39
- const data = cls.find(c => c.id === cel.id);
40
- return { ...cel, ...data };
41
- });
42
- Object.assign(el, { options });
43
- }
44
- if (!dataTypeID) return;
45
-
46
- const countArr = pg.pgType?.[dataTypeID]?.includes('[]')
47
- ? await pg.queryCache(`select unnest(${name})::text as id,count(*) from ${loadTable.table} group by unnest(${name})`)
48
- : await pg.queryCache(`select ${name}::text as id,count(*) from ${loadTable.table} group by ${name}`);
49
-
50
- const options = countArr.rows.map(cel => {
51
- const data = cls.find(c => c.id === cel.id);
52
- return { ...cel, ...data };
53
- });
54
- Object.assign(el, { options });
55
- }));
56
-
57
- return {
58
- time: Date.now() - time,
59
- list: filters,
60
- custom: loadTable?.filterCustom?.map(el => ({ label: el.label })),
61
- inline: loadTable?.filterInline,
62
- state: loadTable?.filterState?.map(el => ({ label: el.label })),
63
- };
1
+ import { getTemplate } from "@opengis/fastify-table/utils.js";
2
+
3
+ export default async function tableFilter(req) {
4
+ const time = Date.now();
5
+ const { pg, funcs = {}, params = {}, session = {} } = req;
6
+ const { uid } = session.passport?.user || {};
7
+
8
+ if (!params.name) {
9
+ return { message: 'not enouggh params: name', status: 400 };
10
+ }
11
+
12
+ const loadTable = await getTemplate('table', params.name);
13
+
14
+ if (!loadTable) {
15
+ return { message: 'table not found', status: 404 };
16
+ }
17
+
18
+ const { columns = [] } = await funcs.getMeta({ table: loadTable.table });
19
+
20
+ const filters = loadTable?.filter_list || loadTable?.filters || loadTable?.filterList || [];
21
+ filters.forEach(el => {
22
+ Object.assign(el, { id: el.name || el.id, name: el.name || el.id });
23
+ });
24
+
25
+ // admin.custom_column - user filter
26
+ const { rows: properties = [] } = await pg.query(`select column_id, name, title, format, data from admin.custom_column where entity=$1 and uid=$2 and filter`, [params.name, uid]);
27
+ properties.forEach((row) => filters.push({ id: row.name, name: row.name, ua: row.title, type: row.format, data: row.data }));
28
+
29
+ await Promise.all(filters.filter((el) => el.data).map(async (el) => {
30
+
31
+ const cls = await getTemplate(['cls', 'select'], el.data);
32
+ const name = el.name || el.id;
33
+
34
+ if (!cls?.length || !Array.isArray(cls) || !loadTable.table || !name) return;
35
+ const { dataTypeID } = columns.find((item) => item?.name === name) || {};
36
+ if (el.extra && el.type === 'select' && Array.isArray(cls)) {
37
+ const countArr = await pg.query(`select value_text as id, count(*) from crm.extra_data where property_key='${name}' and property_entity='${params.name}' group by value_text`);
38
+ const options = countArr.rows.map(cel => {
39
+ const data = cls.find(c => c.id === cel.id);
40
+ return { ...cel, ...data };
41
+ });
42
+ Object.assign(el, { options });
43
+ }
44
+ if (!dataTypeID) return;
45
+
46
+ const countArr = pg.pgType?.[dataTypeID]?.includes('[]')
47
+ ? await pg.queryCache(`select unnest(${name})::text as id,count(*) from ${loadTable.table} group by unnest(${name})`)
48
+ : await pg.queryCache(`select ${name}::text as id,count(*) from ${loadTable.table} group by ${name}`);
49
+
50
+ const options = countArr.rows.map(cel => {
51
+ const data = cls.find(c => c.id === cel.id);
52
+ return { ...cel, ...data };
53
+ });
54
+ Object.assign(el, { options });
55
+ }));
56
+
57
+ return {
58
+ time: Date.now() - time,
59
+ list: filters,
60
+ custom: loadTable?.filterCustom?.map(el => ({ label: el.label })),
61
+ inline: loadTable?.filterInline,
62
+ state: loadTable?.filterState?.map(el => ({ label: el.label })),
63
+ };
64
64
  }
@@ -1,31 +1,31 @@
1
- import setToken from "@opengis/fastify-table/crud/funcs/setToken.js";
2
-
3
- export default function assignTokens({
4
- rows = [], funcs = {}, ispublic, uid, loadTable = {},
5
- }) {
6
- if (funcs.config?.security?.disableToken) return;
7
-
8
- if (!funcs.config?.auth?.disable && !ispublic && !uid) throw new Error('empty user');
9
- if (!loadTable?.table || !(loadTable?.form || loadTable?.add_form)) return null;
10
-
11
- const form = loadTable?.form || loadTable?.add_form;
12
- const addTokens = setToken({
13
- ids: [JSON.stringify({ add: loadTable.table, form })],
14
- mode: 'a',
15
- uid: funcs.config?.auth?.disable || ispublic ? '1' : uid,
16
- array: 1,
17
- });
18
- if (!rows.length) return addTokens[0];
19
-
20
- rows.forEach((row) => {
21
- const editTokens = setToken({
22
- ids: [JSON.stringify({ id: row.id, table: loadTable.table, form })],
23
- mode: 'w',
24
- uid: funcs.config?.auth?.disable || ispublic ? '1' : uid,
25
- array: 1,
26
- });
27
- Object.assign(row, { token: editTokens[0] });
28
- });
29
- return addTokens[0];
30
-
1
+ import setToken from "@opengis/fastify-table/crud/funcs/setToken.js";
2
+
3
+ export default function assignTokens({
4
+ rows = [], funcs = {}, ispublic, uid, loadTable = {},
5
+ }) {
6
+ if (funcs.config?.security?.disableToken) return;
7
+
8
+ if (!funcs.config?.auth?.disable && !ispublic && !uid) throw new Error('empty user');
9
+ if (!loadTable?.table || !(loadTable?.form || loadTable?.add_form)) return null;
10
+
11
+ const form = loadTable?.form || loadTable?.add_form;
12
+ const addTokens = setToken({
13
+ ids: [JSON.stringify({ add: loadTable.table, form })],
14
+ mode: 'a',
15
+ uid: funcs.config?.auth?.disable || ispublic ? '1' : uid,
16
+ array: 1,
17
+ });
18
+ if (!rows.length) return addTokens[0];
19
+
20
+ rows.forEach((row) => {
21
+ const editTokens = setToken({
22
+ ids: [JSON.stringify({ id: row.id, table: loadTable.table, form })],
23
+ mode: 'w',
24
+ uid: funcs.config?.auth?.disable || ispublic ? '1' : uid,
25
+ array: 1,
26
+ });
27
+ Object.assign(row, { token: editTokens[0] });
28
+ });
29
+ return addTokens[0];
30
+
31
31
  }
@@ -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,15 +1,15 @@
1
-
2
- import tableData from "./controllers/tableData.js";
3
- // import tableDataId from "./controllers/tableDataId.js";
4
- import cardData from "./controllers/cardData.js";
5
- import cardTabData from './controllers/cardTabData.js';
6
- import tableFilter from "./controllers/tableFilter.js";
7
-
8
- import { tableDataSchema } from './schema.js';
9
-
10
- export default async function route(fastify) {
11
- fastify.get(`/table-data/:table`, { schema: tableDataSchema }, tableData);
12
- fastify.get(`/card-data/:token`, cardTabData);
13
- fastify.get(`/table-data/:table/:id`, cardData);
14
- fastify.get(`/table-filter/:name`, tableFilter);
15
- }
1
+
2
+ import tableData from "./controllers/tableData.js";
3
+ // import tableDataId from "./controllers/tableDataId.js";
4
+ import cardData from "./controllers/cardData.js";
5
+ import cardTabData from './controllers/cardTabData.js';
6
+ import tableFilter from "./controllers/tableFilter.js";
7
+
8
+ import { tableDataSchema, tableDataIdSchema, tableFilterSchema, cardTabDataSchema } from './schema.js';
9
+
10
+ export default async function route(fastify) {
11
+ fastify.get(`/table-data/:table`, { schema: tableDataSchema }, tableData);
12
+ fastify.get(`/card-data/:token`, { scheme: cardTabDataSchema }, cardTabData);
13
+ fastify.get(`/table-data/:table/:id`, { schema: tableDataIdSchema }, cardData);
14
+ fastify.get(`/table-filter/:name`, { schema: tableFilterSchema }, tableFilter);
15
+ }
@@ -1,7 +1,54 @@
1
- const tableDataSchema = {
2
- querystring: {
3
- limit: { type: 'integer' },
4
- }
5
- };
6
- export { tableDataSchema }
7
- 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: '^([А-Яа-яҐґЄєІіЇї\\d\\w\\s(),.!?;:—_=-]+)$' },
6
+ search: { type: 'string', pattern: '^[А-Яа-яҐґЄєІіЇї\\d\\w\\s(),.!?;:—_=-]+$' },
7
+ order: { type: 'string', pattern: '^([\\d\\w_.-]+)$' },
8
+ desc: { type: 'string', pattern: '^(desc)|(asc)$' },
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;