@opengis/admin 0.1.81 → 0.1.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.
- package/README.md +29 -29
- package/config.js +4 -4
- package/dist/{IconChevronDown-D5JGurpf.js → IconChevronDown-B7bJL5rk.js} +1 -1
- package/dist/{add-page-DjmhHq_I.js → add-page-D5TrUydC.js} +1 -1
- package/dist/{admin-interface-CIA9Y-Dz.js → admin-interface-Cv1M1Cmt.js} +370 -352
- package/dist/{admin-view-DABvcRfg.js → admin-view-vVXbKHih.js} +45 -45
- package/dist/admin.js +1 -1
- package/dist/admin.umd.cjs +63 -61
- package/dist/assets/logo.svg +41 -41
- package/dist/{card-page-B_Vr2qvx.js → card-page-BbP6doYG.js} +146 -126
- package/dist/{card-view-XmNFtrP8.js → card-view-C2YWCaFs.js} +1 -1
- package/dist/{edit-page-ELlQWVFa.js → edit-page-BRKTh4MZ.js} +1 -1
- package/dist/{import-file-CsnR0UjH.js → import-file-DA-DiiaH.js} +6024 -5941
- package/dist/style.css +1 -1
- package/module/settings/card/admin.roles.table/access.hbs +27 -27
- package/module/settings/card/admin.roles.table/general_info.hbs +16 -16
- package/module/settings/card/admin.roles.table/index.yml +14 -14
- package/module/settings/card/admin.roles.table/users.hbs +27 -27
- package/module/settings/card/admin.routes.table/general_info.hbs +40 -40
- package/module/settings/card/admin.routes.table/index.yml +8 -8
- package/module/settings/card/admin.routes.table/users.hbs +33 -33
- package/module/settings/card/admin.users.table/general_info.hbs +25 -25
- package/module/settings/card/admin.users.table/index.yml +12 -12
- package/module/settings/card/admin.users.table/logs.hbs +30 -30
- package/module/settings/card/admin.users.table/user_roles.hbs +24 -24
- package/module/settings/cls/core.actions.json +17 -13
- package/module/settings/cls/core.scope.json +13 -13
- package/module/settings/cls/properties.site_status.json +13 -13
- package/module/settings/cls/properties.widget_status.json +13 -13
- package/module/settings/cls/users.user_type.json +13 -13
- package/module/settings/form/admin.access.form.json +36 -36
- package/module/settings/form/admin.custom_column.form.json +71 -71
- package/module/settings/form/admin.properties.form.json +15 -15
- package/module/settings/form/admin.roles.form.json +19 -19
- package/module/settings/form/admin.routes.form.json +25 -25
- package/module/settings/form/admin.user_properties.form.json +15 -15
- package/module/settings/form/admin.user_roles.form.json +21 -21
- package/module/settings/form/admin.users.form.json +153 -153
- package/module/settings/form/user.user_roles.form.json +13 -13
- package/module/settings/interface/admin.properties.json +4 -4
- package/module/settings/interface/admin.roles.json +4 -4
- package/module/settings/interface/admin.routes.json +4 -4
- package/module/settings/interface/admin.users.json +4 -4
- package/module/settings/menu.json +50 -50
- package/module/settings/select/core.roles.json +2 -2
- package/module/settings/select/core.routes.sql +1 -1
- package/module/settings/select/core.user_mentioned.sql +1 -1
- package/module/settings/select/core.user_uid.sql +1 -1
- package/module/settings/table/admin.access.table.json +83 -83
- package/module/settings/table/admin.custom_column.table.json +99 -99
- package/module/settings/table/admin.properties.table.json +39 -39
- package/module/settings/table/admin.roles.table.json +64 -64
- package/module/settings/table/admin.routes.table.json +68 -68
- package/module/settings/table/admin.user_properties.table.json +34 -34
- package/module/settings/table/admin.user_roles.table.json +72 -72
- package/module/settings/table/admin.users.table.json +121 -121
- package/package.json +81 -81
- package/plugin.js +29 -27
- package/server/helpers/controllers/badge.js +11 -11
- package/server/helpers/controllers/hb.js +2 -2
- package/server/helpers/controllers/map.js +2 -2
- package/server/helpers/controllers/mls.js +2 -2
- package/server/helpers/controllers/token.js +15 -15
- package/server/helpers/controllers/vue.js +2 -2
- package/server/helpers/index.mjs +17 -17
- package/server/plugins/access/funcs/getAdminAccess.js +15 -0
- package/server/plugins/access/index.mjs +6 -0
- package/server/plugins/adminHook.js +93 -93
- package/server/plugins/cron.js +10 -10
- package/server/plugins/docs.js +28 -28
- package/server/plugins/hook.js +223 -223
- package/server/plugins/vite.js +71 -71
- package/server/routes/access/controllers/access.group.js +30 -0
- package/server/routes/access/controllers/access.group.post.js +44 -0
- package/server/routes/access/index.mjs +63 -0
- package/server/routes/calendar/controllers/calendar.data.js +87 -87
- package/server/routes/calendar/index.mjs +7 -7
- package/server/routes/calendar/schema.js +21 -21
- package/server/routes/data/controllers/cardData.js +81 -79
- package/server/routes/data/controllers/cardTabData.js +49 -49
- package/server/routes/data/controllers/funcs/getFilterSQL/index.js +92 -92
- package/server/routes/data/controllers/funcs/getFilterSQL/util/formatValue.js +170 -170
- package/server/routes/data/controllers/funcs/getFilterSQL/util/getCustomQuery.js +13 -13
- package/server/routes/data/controllers/funcs/getFilterSQL/util/getFilterQuery.js +64 -64
- package/server/routes/data/controllers/funcs/getFilterSQL/util/getOptimizedQuery.js +12 -12
- package/server/routes/data/controllers/funcs/getFilterSQL/util/getTableSql.js +34 -34
- package/server/routes/data/controllers/tableData.js +20 -20
- package/server/routes/data/controllers/tableDataId.js +27 -27
- package/server/routes/data/controllers/tableFilter.js +63 -63
- package/server/routes/data/controllers/tokenInfo.js +10 -0
- package/server/routes/data/controllers/utils/assignTokens.js +30 -30
- package/server/routes/data/controllers/utils/getColumns.js +8 -8
- package/server/routes/data/index.mjs +17 -15
- package/server/routes/data/schema.js +54 -54
- package/server/routes/menu/controllers/getMenu.js +67 -67
- package/server/routes/menu/index.mjs +5 -5
- package/server/routes/notifications/controllers/readNotifications.js +27 -27
- package/server/routes/notifications/controllers/testEmail.js +35 -35
- package/server/routes/notifications/controllers/userNotifications.js +53 -53
- package/server/routes/notifications/funcs/addNotification.js +21 -21
- package/server/routes/notifications/funcs/sendNotification.js +105 -105
- package/server/routes/notifications/hook/onWidgetSet.js +57 -57
- package/server/routes/notifications/index.mjs +27 -27
- package/server/routes/notifications/schema.js +16 -16
- package/server/routes/properties/controllers/admin.properties.get.js +29 -29
- package/server/routes/properties/controllers/user.properties.get.js +30 -30
- package/server/routes/properties/controllers/user.properties.post.js +30 -30
- package/server/routes/properties/funcs/getSettings.js +56 -56
- package/server/routes/properties/funcs/setSettings.js +44 -44
- package/server/routes/properties/funcs/utils/dataInsert.js +26 -26
- package/server/routes/properties/index.mjs +14 -14
- package/server/routes/properties/schema.js +10 -10
- package/server/routes/root.mjs +3 -3
- package/server/routes/templates/controllers/getTemplate.js +26 -26
- package/server/routes/templates/index.mjs +16 -16
- package/server/routes/templates/schema.js +8 -8
- package/server/routes/user/controllers/user.cls.id.js +14 -14
- package/server/routes/user/controllers/user.cls.js +71 -71
- package/server/routes/user/controllers/user.cls.post.js +52 -52
- package/server/routes/user/controllers/user.info.js +17 -17
- package/server/routes/user/schema.js +14 -14
- package/server/routes/widget/controllers/utils/historyFormat.js +75 -75
- package/server/routes/widget/controllers/utils/obj2db.js +13 -13
- package/server/routes/widget/controllers/widget.del.js +41 -41
- package/server/routes/widget/controllers/widget.get.js +96 -96
- package/server/routes/widget/controllers/widget.set.js +76 -76
- package/server/routes/widget/index.mjs +11 -11
- package/server/routes/widget/schema.js +12 -12
- package/server/templates/cls/itree.recrzone_category.json +73 -73
- package/server/templates/cls/test.json +9 -9
- package/server/templates/form/admin.user_cls.data.form.json +49 -49
- package/server/templates/form/admin.user_group_rel.form.json +21 -21
- package/server/templates/form/cp_building.form.json +32 -32
- package/server/templates/form/form-user-pass.json +10 -10
- package/server/templates/form/form-user_group.json +39 -39
- package/server/templates/form/form-users.json +156 -156
- package/server/templates/form/user_group_access.form.json +22 -22
- package/server/templates/select/account_id.json +2 -2
- package/server/templates/table/gis.dataset.table.json +43 -43
- package/server/templates/table/management.user_group.table.json +112 -112
- package/server/templates/table/management.users.table.json +126 -126
- package/utils.js +29 -26
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
/* eslint-disable no-continue */
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* @param {Number} opt.json - (1|0) 1 - Результат - Object, 0 - String
|
|
5
|
-
* @param {String} opt.query - запит до таблиці
|
|
6
|
-
* @param {String} opt.hash - інформація з хешу по запиту
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
import formatValue from './formatValue.js';
|
|
10
|
-
|
|
11
|
-
function getQuery({
|
|
12
|
-
pg, filter: filterStr, table, tableSQL, fields, filterList,
|
|
13
|
-
}) {
|
|
14
|
-
if (!filterStr) return null; // filter list API
|
|
15
|
-
|
|
16
|
-
const mainOperators = ['=', '~', '>', '<'];
|
|
17
|
-
|
|
18
|
-
const filterQueryArray = decodeURI(filterStr?.replace(/(^,)|(,$)/g, '')).replace(/'/g, '').split(/[;|]/);
|
|
19
|
-
|
|
20
|
-
const resultList = [];
|
|
21
|
-
|
|
22
|
-
for (let i = 0; i < filterQueryArray.length; i += 1) {
|
|
23
|
-
const item = filterQueryArray[i];
|
|
24
|
-
const operator = mainOperators?.find((el) => item.indexOf(el) !== -1) || '=';
|
|
25
|
-
const [name] = item.split(operator);
|
|
26
|
-
|
|
27
|
-
// skip already added filter
|
|
28
|
-
if (resultList.find((el) => el.name === name)) {
|
|
29
|
-
continue;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
// filter
|
|
33
|
-
const filter = filterList?.find((el) => [el.id, el.name].includes(name)) || { type: 'text' };
|
|
34
|
-
|
|
35
|
-
// find all value
|
|
36
|
-
const value = filterQueryArray.filter((el) => el.startsWith(name)).map((el) => el.substring(name.length + 1)).join(',');
|
|
37
|
-
|
|
38
|
-
const optimize = fields?.find((el) => el.name === name) ? null : tableSQL.find((el) => el.name === name);
|
|
39
|
-
|
|
40
|
-
// find field and skip not exists
|
|
41
|
-
const { dataTypeID } = fields?.find((el) => el.name === name) || fields?.find((el) => el.name === optimize?.pk) || {};
|
|
42
|
-
|
|
43
|
-
// format query
|
|
44
|
-
const { op, query, filterType, fieldType } = formatValue({
|
|
45
|
-
pg,
|
|
46
|
-
table,
|
|
47
|
-
filter,
|
|
48
|
-
optimize,
|
|
49
|
-
name,
|
|
50
|
-
value: decodeURIComponent(value),
|
|
51
|
-
operator,
|
|
52
|
-
dataTypeID,
|
|
53
|
-
}) || {};
|
|
54
|
-
if (!query) continue;
|
|
55
|
-
|
|
56
|
-
resultList.push({
|
|
57
|
-
name, value, query, operator: op, filterType, type: fieldType,
|
|
58
|
-
});
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
return resultList;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export default getQuery;
|
|
1
|
+
/* eslint-disable no-continue */
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @param {Number} opt.json - (1|0) 1 - Результат - Object, 0 - String
|
|
5
|
+
* @param {String} opt.query - запит до таблиці
|
|
6
|
+
* @param {String} opt.hash - інформація з хешу по запиту
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import formatValue from './formatValue.js';
|
|
10
|
+
|
|
11
|
+
function getQuery({
|
|
12
|
+
pg, filter: filterStr, table, tableSQL, fields, filterList,
|
|
13
|
+
}) {
|
|
14
|
+
if (!filterStr) return null; // filter list API
|
|
15
|
+
|
|
16
|
+
const mainOperators = ['=', '~', '>', '<'];
|
|
17
|
+
|
|
18
|
+
const filterQueryArray = decodeURI(filterStr?.replace(/(^,)|(,$)/g, '')).replace(/'/g, '').split(/[;|]/);
|
|
19
|
+
|
|
20
|
+
const resultList = [];
|
|
21
|
+
|
|
22
|
+
for (let i = 0; i < filterQueryArray.length; i += 1) {
|
|
23
|
+
const item = filterQueryArray[i];
|
|
24
|
+
const operator = mainOperators?.find((el) => item.indexOf(el) !== -1) || '=';
|
|
25
|
+
const [name] = item.split(operator);
|
|
26
|
+
|
|
27
|
+
// skip already added filter
|
|
28
|
+
if (resultList.find((el) => el.name === name)) {
|
|
29
|
+
continue;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// filter
|
|
33
|
+
const filter = filterList?.find((el) => [el.id, el.name].includes(name)) || { type: 'text' };
|
|
34
|
+
|
|
35
|
+
// find all value
|
|
36
|
+
const value = filterQueryArray.filter((el) => el.startsWith(name)).map((el) => el.substring(name.length + 1)).join(',');
|
|
37
|
+
|
|
38
|
+
const optimize = fields?.find((el) => el.name === name) ? null : tableSQL.find((el) => el.name === name);
|
|
39
|
+
|
|
40
|
+
// find field and skip not exists
|
|
41
|
+
const { dataTypeID } = fields?.find((el) => el.name === name) || fields?.find((el) => el.name === optimize?.pk) || {};
|
|
42
|
+
|
|
43
|
+
// format query
|
|
44
|
+
const { op, query, filterType, fieldType } = formatValue({
|
|
45
|
+
pg,
|
|
46
|
+
table,
|
|
47
|
+
filter,
|
|
48
|
+
optimize,
|
|
49
|
+
name,
|
|
50
|
+
value: decodeURIComponent(value),
|
|
51
|
+
operator,
|
|
52
|
+
dataTypeID,
|
|
53
|
+
}) || {};
|
|
54
|
+
if (!query) continue;
|
|
55
|
+
|
|
56
|
+
resultList.push({
|
|
57
|
+
name, value, query, operator: op, filterType, type: fieldType,
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
return resultList;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export default getQuery;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
function getOptimizedQuery({ body, table, q }, count) {
|
|
2
|
-
const order = body?.orderby || body?.order ? `order by ${body?.orderby || body?.order}` : '';
|
|
3
|
-
|
|
4
|
-
const tableName = body?.table || body?.model || table;
|
|
5
|
-
|
|
6
|
-
const sqlList = body?.sql?.filter((el) => !el.disabled && el?.sql?.replace && (count ? el.count !== false : true))
|
|
7
|
-
.map((el) => ` left join lateral (${el.filter ? el.sql.replace(/limit 1/ig, '') : el.sql}) as ${el.name} on 1=1 `).join(' ');
|
|
8
|
-
|
|
9
|
-
return `(select * from ${tableName} ${sqlList ? ` t ${sqlList}` : ''} where 1=1 and ${q?.replace('q.', 't.') || '1=1'} ${order})q`;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
export default getOptimizedQuery;
|
|
1
|
+
function getOptimizedQuery({ body, table, q }, count) {
|
|
2
|
+
const order = body?.orderby || body?.order ? `order by ${body?.orderby || body?.order}` : '';
|
|
3
|
+
|
|
4
|
+
const tableName = body?.table || body?.model || table;
|
|
5
|
+
|
|
6
|
+
const sqlList = body?.sql?.filter((el) => !el.disabled && el?.sql?.replace && (count ? el.count !== false : true))
|
|
7
|
+
.map((el) => ` left join lateral (${el.filter ? el.sql.replace(/limit 1/ig, '') : el.sql}) as ${el.name} on 1=1 `).join(' ');
|
|
8
|
+
|
|
9
|
+
return `(select * from ${tableName} ${sqlList ? ` t ${sqlList}` : ''} where 1=1 and ${q?.replace('q.', 't.') || '1=1'} ${order})q`;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export default getOptimizedQuery;
|
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
function getTable(table) {
|
|
2
|
-
const result = table?.toLowerCase()?.replace(/[\n\r]+/g, ' ')?.split(' from ')?.filter((el) => /^[a-z0-9_]+\.[a-z0-9_]+/.test(el))
|
|
3
|
-
?.map((el) => el.split(/[ )]/)[0]);
|
|
4
|
-
return result;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* @param {Number} opt.json - (1|0) 1 - Результат - Object, 0 - String
|
|
9
|
-
* @param {String} opt.query - запит до таблиці
|
|
10
|
-
* @param {String} opt.hash - інформація з хешу по запиту
|
|
11
|
-
*/
|
|
12
|
-
const tableSql = {};
|
|
13
|
-
async function getTableSql({
|
|
14
|
-
pg, body, table, fields,
|
|
15
|
-
}) {
|
|
16
|
-
if (tableSql[table]) return tableSql[table];
|
|
17
|
-
|
|
18
|
-
const fieldList = fields.map((el) => el.name);
|
|
19
|
-
|
|
20
|
-
const tableList = body?.sql?.map((el) => getTable(el.sql)).reduce((acc, el) => acc.concat(el), []).filter((el) => fieldList.includes(pg.pk[el]));
|
|
21
|
-
|
|
22
|
-
if (!tableList) { tableSql[table] = []; return []; }
|
|
23
|
-
|
|
24
|
-
const data = await Promise.all(tableList?.map(async (tableEl) => {
|
|
25
|
-
const { fields: fieldsEl } = await pg.query(`select * from ${tableEl} limit 0`);
|
|
26
|
-
return fieldsEl.map((el) => ({ name: el.name, table: tableEl, pk: pg.pk[tableEl] }));
|
|
27
|
-
}));
|
|
28
|
-
|
|
29
|
-
tableSql[table] = data.reduce((acc, el) => acc.concat(el), []);
|
|
30
|
-
|
|
31
|
-
return tableSql[table];
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default getTableSql;
|
|
1
|
+
function getTable(table) {
|
|
2
|
+
const result = table?.toLowerCase()?.replace(/[\n\r]+/g, ' ')?.split(' from ')?.filter((el) => /^[a-z0-9_]+\.[a-z0-9_]+/.test(el))
|
|
3
|
+
?.map((el) => el.split(/[ )]/)[0]);
|
|
4
|
+
return result;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @param {Number} opt.json - (1|0) 1 - Результат - Object, 0 - String
|
|
9
|
+
* @param {String} opt.query - запит до таблиці
|
|
10
|
+
* @param {String} opt.hash - інформація з хешу по запиту
|
|
11
|
+
*/
|
|
12
|
+
const tableSql = {};
|
|
13
|
+
async function getTableSql({
|
|
14
|
+
pg, body, table, fields,
|
|
15
|
+
}) {
|
|
16
|
+
if (tableSql[table]) return tableSql[table];
|
|
17
|
+
|
|
18
|
+
const fieldList = fields.map((el) => el.name);
|
|
19
|
+
|
|
20
|
+
const tableList = body?.sql?.map((el) => getTable(el.sql)).reduce((acc, el) => acc.concat(el), []).filter((el) => fieldList.includes(pg.pk[el]));
|
|
21
|
+
|
|
22
|
+
if (!tableList) { tableSql[table] = []; return []; }
|
|
23
|
+
|
|
24
|
+
const data = await Promise.all(tableList?.map(async (tableEl) => {
|
|
25
|
+
const { fields: fieldsEl } = await pg.query(`select * from ${tableEl} limit 0`);
|
|
26
|
+
return fieldsEl.map((el) => ({ name: el.name, table: tableEl, pk: pg.pk[tableEl] }));
|
|
27
|
+
}));
|
|
28
|
+
|
|
29
|
+
tableSql[table] = data.reduce((acc, el) => acc.concat(el), []);
|
|
30
|
+
|
|
31
|
+
return tableSql[table];
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export default getTableSql;
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import getData from '@opengis/fastify-table/server/routes/table/controllers/data.js';
|
|
2
|
-
import { getOpt } from '@opengis/fastify-table/utils.js';
|
|
3
|
-
// import getData from '../../../../../../npm/fastify-table/server/routes/table/controllers/data.js';
|
|
4
|
-
|
|
5
|
-
export default async function getTableData(req) {
|
|
6
|
-
//const time = Date.now();
|
|
7
|
-
const tokenData = await getOpt(req.params.table, req.user?.uid);
|
|
8
|
-
if (tokenData) {
|
|
9
|
-
const { rows } = await req.pg.query(`select ${tokenData.columns || '*'} from ${tokenData.table} where ${tokenData.query || 'true'} limit 10`)
|
|
10
|
-
return { rows }
|
|
11
|
-
}
|
|
12
|
-
const interfaceName = req.headers?.referer?.match(/.*\/([^?]+)/)?.[1];
|
|
13
|
-
const { query = '1=1' } = interfaceName ? await req.pg.query(`select query from admin.routes where route_id=$1`, [interfaceName])
|
|
14
|
-
.then((res1) => res1.rows?.[0] || {}) : {};
|
|
15
|
-
|
|
16
|
-
req.params.query = query;
|
|
17
|
-
const res = await getData(req);
|
|
18
|
-
|
|
19
|
-
return res;
|
|
20
|
-
|
|
1
|
+
import getData from '@opengis/fastify-table/server/routes/table/controllers/data.js';
|
|
2
|
+
import { getOpt } from '@opengis/fastify-table/utils.js';
|
|
3
|
+
// import getData from '../../../../../../npm/fastify-table/server/routes/table/controllers/data.js';
|
|
4
|
+
|
|
5
|
+
export default async function getTableData(req) {
|
|
6
|
+
//const time = Date.now();
|
|
7
|
+
const tokenData = await getOpt(req.params.table, req.user?.uid);
|
|
8
|
+
if (tokenData) {
|
|
9
|
+
const { rows } = await req.pg.query(`select ${tokenData.columns || '*'} from ${tokenData.table} where ${tokenData.query || 'true'} limit 10`)
|
|
10
|
+
return { rows }
|
|
11
|
+
}
|
|
12
|
+
const interfaceName = req.headers?.referer?.match(/.*\/([^?]+)/)?.[1];
|
|
13
|
+
const { query = '1=1' } = interfaceName ? await req.pg.query(`select query from admin.routes where route_id=$1`, [interfaceName])
|
|
14
|
+
.then((res1) => res1.rows?.[0] || {}) : {};
|
|
15
|
+
|
|
16
|
+
req.params.query = query;
|
|
17
|
+
const res = await getData(req);
|
|
18
|
+
|
|
19
|
+
return res;
|
|
20
|
+
|
|
21
21
|
}
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import { handlebars } from "@opengis/fastify-table/utils.js";
|
|
2
|
-
|
|
3
|
-
import getTemplate from "../../templates/funcs/getTemplate.js";
|
|
4
|
-
import getTableData from "./tableData.js";
|
|
5
|
-
|
|
6
|
-
export default async function tableDataId({ pg, params = {}, session = {}, user }, 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
|
-
debugger;
|
|
16
|
-
const { message, status = 500, rows = [] } = await getTableData({ pg, params: { name, id }, session, user });
|
|
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 handlebars.compile(data)(rows[0]);
|
|
26
|
-
|
|
27
|
-
return reply.headers({ 'Content-Type': 'text/html; charset=utf-8' }).send(htmlContent);
|
|
1
|
+
import { handlebars } from "@opengis/fastify-table/utils.js";
|
|
2
|
+
|
|
3
|
+
import getTemplate from "../../templates/funcs/getTemplate.js";
|
|
4
|
+
import getTableData from "./tableData.js";
|
|
5
|
+
|
|
6
|
+
export default async function tableDataId({ pg, params = {}, session = {}, user }, 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
|
+
debugger;
|
|
16
|
+
const { message, status = 500, rows = [] } = await getTableData({ pg, params: { name, id }, session, user });
|
|
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 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, getMeta } from "@opengis/fastify-table/utils.js";
|
|
2
|
-
|
|
3
|
-
export default async function tableFilter(req) {
|
|
4
|
-
const time = Date.now();
|
|
5
|
-
const { pg, 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 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=$1 and property_entity=$2 group by value_text`, [name, params.name]);
|
|
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, getMeta } from "@opengis/fastify-table/utils.js";
|
|
2
|
+
|
|
3
|
+
export default async function tableFilter(req) {
|
|
4
|
+
const time = Date.now();
|
|
5
|
+
const { pg, 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 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=$1 and property_entity=$2 group by value_text`, [name, params.name]);
|
|
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
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { getToken } from "@opengis/fastify-table/utils.js";
|
|
2
|
+
|
|
3
|
+
export default async function tokenInfo(req) {
|
|
4
|
+
|
|
5
|
+
const { params = {}, user } = req;
|
|
6
|
+
if (user.user_type !== 'admin') return { status: 403, message: 'access restricted' }
|
|
7
|
+
const tokenData = await getToken({ uid: user.uid, token: params.token, })
|
|
8
|
+
return tokenData;
|
|
9
|
+
|
|
10
|
+
}
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import { config, setToken } from "@opengis/fastify-table/utils.js";
|
|
2
|
-
|
|
3
|
-
export default function assignTokens({
|
|
4
|
-
rows = [], ispublic, uid, loadTable = {},
|
|
5
|
-
}) {
|
|
6
|
-
if (config?.security?.disableToken) return;
|
|
7
|
-
|
|
8
|
-
if (!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: 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: 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 { config, setToken } from "@opengis/fastify-table/utils.js";
|
|
2
|
+
|
|
3
|
+
export default function assignTokens({
|
|
4
|
+
rows = [], ispublic, uid, loadTable = {},
|
|
5
|
+
}) {
|
|
6
|
+
if (config?.security?.disableToken) return;
|
|
7
|
+
|
|
8
|
+
if (!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: 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: 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,17 @@
|
|
|
1
|
-
|
|
2
|
-
import tableData from "./controllers/tableData.js";
|
|
3
|
-
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
fastify.get(`/
|
|
13
|
-
fastify.get(`/table-data/:table
|
|
14
|
-
fastify.get(`/
|
|
15
|
-
}
|
|
1
|
+
|
|
2
|
+
import tableData from "./controllers/tableData.js";
|
|
3
|
+
import tokenInfo from "./controllers/tokenInfo.js";
|
|
4
|
+
// import tableDataId from "./controllers/tableDataId.js";
|
|
5
|
+
import cardData from "./controllers/cardData.js";
|
|
6
|
+
import cardTabData from './controllers/cardTabData.js';
|
|
7
|
+
import tableFilter from "./controllers/tableFilter.js";
|
|
8
|
+
|
|
9
|
+
import { tableDataSchema, tableDataIdSchema, tableFilterSchema, cardTabDataSchema } from './schema.js';
|
|
10
|
+
|
|
11
|
+
export default async function route(fastify) {
|
|
12
|
+
fastify.get(`/token-info/:token`, tokenInfo);
|
|
13
|
+
fastify.get(`/table-data/:table`, { schema: tableDataSchema }, tableData);
|
|
14
|
+
fastify.get(`/card-data/:token`, { scheme: cardTabDataSchema }, cardTabData);
|
|
15
|
+
fastify.get(`/table-data/:table/:id`, { schema: tableDataIdSchema }, cardData);
|
|
16
|
+
fastify.get(`/table-filter/:name`, { schema: tableFilterSchema }, tableFilter);
|
|
17
|
+
}
|