@opengis/admin 0.3.22 → 0.3.23

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 (99) hide show
  1. package/dist/{add-page-DsqxZzEq.js → add-page-2cPkdIAC.js} +29 -26
  2. package/dist/{admin-interface-C8SGlC1N.js → admin-interface-D9Dx7QqK.js} +234 -232
  3. package/dist/{admin-view-DtdqTUPa.js → admin-view-C_Ecdip-.js} +29 -29
  4. package/dist/admin.js +1 -1
  5. package/dist/admin.umd.cjs +88 -88
  6. package/dist/{card-view-juhvChuX.js → card-view-MuS2Gqq6.js} +3 -3
  7. package/dist/{edit-page-DB1hlRzp.js → edit-page-Dr397YuE.js} +33 -31
  8. package/dist/{import-file-BSdaeh6s.js → import-file-CcRnsq1s.js} +23212 -23090
  9. package/dist/{profile-page-B-RhB5JP.js → profile-page-BrKTAsqO.js} +2 -2
  10. package/dist/style.css +1 -1
  11. package/module/settings/card/admin.roles.table/access.hbs +11 -11
  12. package/module/settings/card/admin.roles.table/general_info.hbs +9 -9
  13. package/module/settings/card/admin.roles.table/index.yml +22 -22
  14. package/module/settings/card/admin.roles.table/users.hbs +12 -12
  15. package/module/settings/card/admin.routes.table/general_info.hbs +13 -13
  16. package/module/settings/card/admin.routes.table/index.yml +15 -15
  17. package/module/settings/card/admin.table_properties.table/custom_columns.hbs +22 -22
  18. package/module/settings/card/admin.table_properties.table/index.yml +12 -12
  19. package/module/settings/card/admin.table_properties.table/info.hbs +17 -17
  20. package/module/settings/card/admin.users.table/general_info.hbs +18 -18
  21. package/module/settings/card/admin.users.table/index.yml +20 -20
  22. package/module/settings/card/admin.users.table/last_login.hbs +17 -17
  23. package/module/settings/card/admin.users.table/logs.hbs +16 -16
  24. package/module/settings/card/admin.users.table/routes.hbs +13 -13
  25. package/module/settings/card/admin.users.table/user_roles.hbs +35 -35
  26. package/module/settings/cls/change_type.json +13 -13
  27. package/module/settings/cls/core.column_type.json +14 -14
  28. package/module/settings/form/admin.custom_column.form.json +55 -55
  29. package/module/settings/form/admin.routes.form.json +25 -25
  30. package/module/settings/form/admin.rules.form.json +30 -30
  31. package/module/settings/form/admin.table_properties.form.json +19 -19
  32. package/module/settings/form/admin.user_roles.form.json +24 -24
  33. package/module/settings/form/admin.users.form.json +177 -177
  34. package/module/settings/form/admin.users_edit.form.json +145 -145
  35. package/module/settings/form/context.account_grants.form.json +24 -24
  36. package/module/settings/form/context.account_users.form.json +12 -12
  37. package/module/settings/form/user.user_roles.form.json +13 -13
  38. package/module/settings/menu.json +72 -72
  39. package/module/settings/table/admin.accounts.table.json +49 -49
  40. package/module/settings/table/admin.custom_column.table.json +100 -100
  41. package/module/settings/table/admin.roles.table.json +77 -77
  42. package/module/settings/table/admin.routes.table.json +73 -73
  43. package/module/settings/table/admin.rules.table.json +77 -77
  44. package/module/settings/table/admin.table_properties.table.json +37 -37
  45. package/module/settings/table/admin.user_roles.table.json +74 -74
  46. package/module/settings/table/admin.users.table.json +135 -135
  47. package/module/settings/table/context.account_grants.table.json +88 -88
  48. package/module/settings/table/context.account_users.table.json +53 -53
  49. package/module/settings/table/log.table_changes.table.json +100 -100
  50. package/package.json +102 -102
  51. package/plugin.js +30 -30
  52. package/server/helpers/index.js +40 -40
  53. package/server/helpers/list/descriptionList.js +45 -45
  54. package/server/helpers/list/tableList.js +82 -82
  55. package/server/helpers/list/utils/buttonDel.js +12 -12
  56. package/server/helpers/list/utils/buttonEdit.js +14 -14
  57. package/server/helpers/utils/buttonAdd.js +6 -6
  58. package/server/helpers/utils/buttonDel.js +6 -6
  59. package/server/helpers/utils/buttonEdit.js +5 -5
  60. package/server/helpers/utils/paddingNumber.js +3 -3
  61. package/server/plugins/access/funcs/getAdminAccess.js +12 -12
  62. package/server/plugins/hook.js +276 -276
  63. package/server/plugins/vite.js +77 -77
  64. package/server/routes/access/controllers/access.interface.js +33 -33
  65. package/server/routes/data/controllers/cardData.js +127 -127
  66. package/server/routes/data/controllers/tableFilter.js +9 -9
  67. package/server/routes/data/controllers/tableInfo.js +112 -112
  68. package/server/routes/dblist/controllers/readItems.js +20 -20
  69. package/server/routes/dblist/controllers/setItem.js +22 -22
  70. package/server/routes/dblist/index.mjs +18 -18
  71. package/server/routes/dblist/utils/formatData.js +7 -7
  72. package/server/routes/menu/controllers/getMenu.js +77 -77
  73. package/server/routes/menu/controllers/interfaces.js +20 -20
  74. package/server/routes/menu/index.mjs +7 -7
  75. package/server/routes/print/controllers/printTemplate.add.js +37 -37
  76. package/server/routes/print/controllers/printTemplate.delete.js +29 -29
  77. package/server/routes/print/controllers/printTemplate.edit.js +42 -42
  78. package/server/routes/print/controllers/printTemplate.js +67 -67
  79. package/server/routes/print/controllers/printTemplateList.js +19 -19
  80. package/server/routes/print/controllers/printTemplatePreview.js +87 -87
  81. package/server/routes/print/index.mjs +19 -19
  82. package/server/routes/properties/controllers/admin.properties.get.js +31 -31
  83. package/server/routes/properties/controllers/table.properties.get.js +120 -120
  84. package/server/routes/properties/controllers/table.properties.post.js +115 -115
  85. package/server/routes/properties/controllers/user.properties.get.js +19 -19
  86. package/server/routes/properties/controllers/user.properties.post.js +10 -10
  87. package/server/routes/properties/index.mjs +21 -21
  88. package/server/routes/properties/utils/dataInsert.js +26 -26
  89. package/server/routes/properties/utils/getColumnMetaData.js +17 -17
  90. package/server/routes/properties/utils/refreshData.js +128 -128
  91. package/server/routes/report/utils/getFilterQuery.js +67 -67
  92. package/server/routes/templates/index.mjs +16 -16
  93. package/server/routes/user/controllers/user.cls.post.js +54 -54
  94. package/server/routes/util/index.mjs +5 -5
  95. package/server/routes/widget/controllers/widget.get.js +125 -125
  96. package/server/templates/form/admin.profile.form.json +31 -31
  97. package/server/templates/form/cp_building.form.json +32 -32
  98. package/server/templates/pt/card-print.pt.hbs +245 -245
  99. package/utils.js +26 -26
@@ -1,120 +1,120 @@
1
- import { pgClients, getMeta, getTemplate } from '@opengis/fastify-table/utils.js';
2
-
3
- import getColumnMetaData from '../utils/getColumnMetaData.js';
4
-
5
- /**
6
- *
7
- * @method GET
8
- * @priority 4
9
- * @alias getSettingsTable
10
- * @type api
11
- * @tag custom
12
-
13
- * @returns {String} message and status
14
- */
15
-
16
- export default async function getSettingsTable({
17
- pg = pgClients.client, params = {}, user = {}, query = {},
18
- }) {
19
- const { table, entity } = params;
20
- const { uid } = user;
21
- const time = [];
22
-
23
- if (!uid) {
24
- return { message: 'access restricted', status: 401 };
25
- }
26
-
27
- if (!table) {
28
- return { message: 'not enough params: table', status: 400 };
29
- }
30
-
31
- const loadTable = await getTemplate('table', table);
32
-
33
- const tableName = loadTable?.table || table;
34
- const meta = await getMeta({ pg, table: tableName });
35
- const { view, pk } = meta || {};
36
- time.push(Date.now());
37
-
38
- if (!pk && !view) {
39
- return {
40
- message: `table primary key not found: ${tableName}`,
41
- status: 400,
42
- };
43
- }
44
-
45
- const { rows: geometry } = meta?.geom
46
- ? await pg.queryCache(`select st_geometrytype(${meta?.geom}) as type ,count(*)
47
- from ${tableName} group by st_geometrytype(${meta?.geom})`, { table: tableName }) : [];
48
- time.push(Date.now());
49
-
50
- const stat = !view ? await getColumnMetaData({ pg, table: tableName }) : {};
51
- time.push(Date.now());
52
-
53
- const { total = 0 } = await pg.queryCache(`select count(*) as total from ${tableName}`, { table: tableName })
54
- .then(el => el.rows?.[0] || {});
55
- time.push(Date.now());
56
-
57
- const { property_json: customColumns = [] } = await pg.query(`select property_json::json from setting.property
58
- where property_entity='customColumn' and object_id=$1`, [table]).then(el => el.rows?.[0] || {});
59
-
60
- const { property_json: tableSettingColumns } = await pg.query(`select property_json::json from setting.property
61
- where property_entity='column' and object_id=$1`, [table]).then(el => el.rows?.[0] || {});
62
-
63
- const columns = (tableSettingColumns || loadTable?.columns || meta?.columns)?.map((el) => ({ ...el, title: el.title || el.name }))
64
- ?.filter((value, index, array) => array?.map((el) => el.name).indexOf(value.name) === index); // get unique columns
65
-
66
- const cls = columns?.filter((el) => ['badge', 'select'].includes(el.format) && (el.option || el.data))
67
- ?.map((el) => (el.option || el.data))
68
- ?.filter((value, index, array) => array.indexOf(value) === index); // get unique cls
69
-
70
- const { property_json: userFilterList } = await pg.query(`select property_json::json from setting.property
71
- where property_entity='filter' and object_id=$1`, [table]).then(el => el.rows?.[0] || {});
72
-
73
- const { property_json: customQuery } = await pg.query(`select json_agg(json_build_object('id',property_id,'name', property_key,
74
- 'query', property_text, 'disabled', coalesce((property_json::json->>'disabled')::boolean,false) )) as property_json
75
- from setting.property where 1=1 and property_entity='customQuery' and object_id=$1`, [table]).then(el => el.rows?.[0] || {});
76
-
77
- time.push(Date.now());
78
-
79
- const debug = user?.user_type?.includes('admin') && query?.debug
80
- ? {
81
- view,
82
- tableName,
83
- opt,
84
- colModel,
85
- metaColumns: meta?.columns,
86
- columnProperties: tableSettingColumns,
87
- }
88
- : undefined;
89
-
90
- const res = {
91
- message: {
92
- time: {
93
- geom: time[1] - time[0],
94
- stat: time[2] - time[1],
95
- count: time[3] - time[2],
96
- total: time[4] - time[0],
97
- },
98
- debug,
99
- model: tableName,
100
- total,
101
- geometry,
102
- stat,
103
- cls,
104
- columns,
105
- filters: userFilterList?.length
106
- ? userFilterList
107
- : loadTable?.filters?.map((el) => ({ ...el, title: el.title || el.ua })),
108
- customQuery: customQuery?.length ? customQuery : [],
109
- customColumns,
110
- customFilters: userFilterList || [],
111
- },
112
- status: 200,
113
- };
114
-
115
- if (entity) {
116
- return { [entity]: res.message[entity] };
117
- }
118
-
119
- return res;
120
- };
1
+ import { pgClients, getMeta, getTemplate } from '@opengis/fastify-table/utils.js';
2
+
3
+ import getColumnMetaData from '../utils/getColumnMetaData.js';
4
+
5
+ /**
6
+ *
7
+ * @method GET
8
+ * @priority 4
9
+ * @alias getSettingsTable
10
+ * @type api
11
+ * @tag custom
12
+
13
+ * @returns {String} message and status
14
+ */
15
+
16
+ export default async function getSettingsTable({
17
+ pg = pgClients.client, params = {}, user = {}, query = {},
18
+ }) {
19
+ const { table, entity } = params;
20
+ const { uid } = user;
21
+ const time = [];
22
+
23
+ if (!uid) {
24
+ return { message: 'access restricted', status: 401 };
25
+ }
26
+
27
+ if (!table) {
28
+ return { message: 'not enough params: table', status: 400 };
29
+ }
30
+
31
+ const loadTable = await getTemplate('table', table);
32
+
33
+ const tableName = loadTable?.table || table;
34
+ const meta = await getMeta({ pg, table: tableName });
35
+ const { view, pk } = meta || {};
36
+ time.push(Date.now());
37
+
38
+ if (!pk && !view) {
39
+ return {
40
+ message: `table primary key not found: ${tableName}`,
41
+ status: 400,
42
+ };
43
+ }
44
+
45
+ const { rows: geometry } = meta?.geom
46
+ ? await pg.queryCache(`select st_geometrytype(${meta?.geom}) as type ,count(*)
47
+ from ${tableName} group by st_geometrytype(${meta?.geom})`, { table: tableName }) : [];
48
+ time.push(Date.now());
49
+
50
+ const stat = !view ? await getColumnMetaData({ pg, table: tableName }) : {};
51
+ time.push(Date.now());
52
+
53
+ const { total = 0 } = await pg.queryCache(`select count(*) as total from ${tableName}`, { table: tableName })
54
+ .then(el => el.rows?.[0] || {});
55
+ time.push(Date.now());
56
+
57
+ const { property_json: customColumns = [] } = await pg.query(`select property_json::json from setting.property
58
+ where property_entity='customColumn' and object_id=$1`, [table]).then(el => el.rows?.[0] || {});
59
+
60
+ const { property_json: tableSettingColumns } = await pg.query(`select property_json::json from setting.property
61
+ where property_entity='column' and object_id=$1`, [table]).then(el => el.rows?.[0] || {});
62
+
63
+ const columns = (tableSettingColumns || loadTable?.columns || meta?.columns)?.map((el) => ({ ...el, title: el.title || el.name }))
64
+ ?.filter((value, index, array) => array?.map((el) => el.name).indexOf(value.name) === index); // get unique columns
65
+
66
+ const cls = columns?.filter((el) => ['badge', 'select'].includes(el.format) && (el.option || el.data))
67
+ ?.map((el) => (el.option || el.data))
68
+ ?.filter((value, index, array) => array.indexOf(value) === index); // get unique cls
69
+
70
+ const { property_json: userFilterList } = await pg.query(`select property_json::json from setting.property
71
+ where property_entity='filter' and object_id=$1`, [table]).then(el => el.rows?.[0] || {});
72
+
73
+ const { property_json: customQuery } = await pg.query(`select json_agg(json_build_object('id',property_id,'name', property_key,
74
+ 'query', property_text, 'disabled', coalesce((property_json::json->>'disabled')::boolean,false) )) as property_json
75
+ from setting.property where 1=1 and property_entity='customQuery' and object_id=$1`, [table]).then(el => el.rows?.[0] || {});
76
+
77
+ time.push(Date.now());
78
+
79
+ const debug = user?.user_type?.includes('admin') && query?.debug
80
+ ? {
81
+ view,
82
+ tableName,
83
+ opt,
84
+ colModel,
85
+ metaColumns: meta?.columns,
86
+ columnProperties: tableSettingColumns,
87
+ }
88
+ : undefined;
89
+
90
+ const res = {
91
+ message: {
92
+ time: {
93
+ geom: time[1] - time[0],
94
+ stat: time[2] - time[1],
95
+ count: time[3] - time[2],
96
+ total: time[4] - time[0],
97
+ },
98
+ debug,
99
+ model: tableName,
100
+ total,
101
+ geometry,
102
+ stat,
103
+ cls,
104
+ columns,
105
+ filters: userFilterList?.length
106
+ ? userFilterList
107
+ : loadTable?.filters?.map((el) => ({ ...el, title: el.title || el.ua })),
108
+ customQuery: customQuery?.length ? customQuery : [],
109
+ customColumns,
110
+ customFilters: userFilterList || [],
111
+ },
112
+ status: 200,
113
+ };
114
+
115
+ if (entity) {
116
+ return { [entity]: res.message[entity] };
117
+ }
118
+
119
+ return res;
120
+ };
@@ -1,115 +1,115 @@
1
- import { getRedis, pgClients } from '@opengis/fastify-table/utils.js';
2
-
3
- import refreshData from '../utils/refreshData.js';
4
-
5
- const rclient = getRedis();
6
-
7
- /**
8
- *
9
- * @method POST
10
- * @priority 4
11
- * @alias postSettingsTable
12
- * @type api
13
- * @tag custom
14
- * @returns {String} message and status
15
- */
16
-
17
- export default async function postTablpostSettingsTableeProperties({
18
- pg = pgClients.client, params = {}, body = {}, user = {},
19
- }) {
20
- const { table } = params;
21
- const { uid } = user;
22
-
23
- if (!uid) {
24
- return { message: 'access restricted', status: 401 };
25
- }
26
-
27
- if (!table) {
28
- return { message: 'not enough params: table', status: 400 };
29
- }
30
-
31
- const {
32
- deleted = [],
33
- columns = [],
34
- filters = [],
35
- customColumns = [],
36
- customQuery = [],
37
- } = body;
38
-
39
- const cacheKey = `${pg.options?.database}:filter-list:${table}`;
40
-
41
- if (Array.isArray(deleted) && deleted?.length) {
42
- const sqlList = {
43
- columns: `delete from setting.property where property_entity='column' and object_id=$1`,
44
- filters: `delete from setting.property where property_entity='filter' and object_id=$1`,
45
- customColumns: `delete from setting.custom_data where attr in (select cf_id from setting.custom_field where object_id=$1);
46
- delete from setting.custom_field where object_id=$1;
47
- delete from setting.property where property_entity='customColumn' and object_id=$1;`,
48
- customQuery: `delete from setting.property where property_entity='customQuery' and object_id=$1;`,
49
- };
50
- const q = deleted.map((item) => sqlList[item])?.filter((el) => el)?.join(' ');
51
- const { rowCount = 0 } = await pg.query(q, [table]);
52
-
53
- if (['customColumn', 'column'].find((el) => deleted.includes(el))) {
54
- // await funcs.applyHook('preTemplate', { pg, name: table, type: 'table' });
55
- }
56
- if (['customQuery', 'filter'].find((el) => deleted.includes(el))) {
57
- await rclient.del(cacheKey);
58
- }
59
-
60
- if (rowCount === 0) {
61
- return { message: 'nothing to restore', status: 200 };
62
- }
63
-
64
- return {
65
- message: {
66
- command: 'DELETE',
67
- deleted,
68
- table,
69
- result: 'success',
70
- },
71
- status: 200,
72
- };
73
- }
74
-
75
- const result = {};
76
- // custom filter query (sql)
77
- if (customQuery?.length) {
78
- const res = await refreshData({ pg, entity: 'customQuery', table, uid, data: customQuery });
79
- if (res?.error) return res;
80
- Object.assign(result, { customQuery: res });
81
- }
82
-
83
- // columns
84
- if (columns?.length) {
85
- const res = await refreshData({ pg, entity: 'column', table, uid, data: columns });
86
- if (res?.error) return res;
87
- Object.assign(result, { columns: res });
88
- }
89
-
90
- // custom columns
91
- if (customColumns?.length) {
92
- const colModel = await pg.query(`select property_json::json from setting.property
93
- where property_entity='customColumn' and object_id=$1`, [table]).then((el) => el.rows?.[0]?.property_json);
94
-
95
- const res = await refreshData({ pg, entity: 'customColumn', table, uid, data: customColumns, colModel });
96
- if (res?.error) return res;
97
- Object.assign(result, { customColumns: res });
98
- }
99
-
100
- // filters
101
- if (filters?.length) {
102
- const res = await refreshData({ pg, entity: 'filter', table, uid, data: filters });
103
- if (res?.error) return res;
104
- Object.assign(result, { filters: res });
105
- }
106
-
107
- if (columns?.length || customColumns?.length) {
108
- // await funcs.applyHook('preTemplate', { pg, type: 'table', name: table });
109
- }
110
- if (filters?.length || customQuery?.length) {
111
- await rclient.del(cacheKey);
112
- }
113
-
114
- return { message: result, status: 200 };
115
- };
1
+ import { getRedis, pgClients } from '@opengis/fastify-table/utils.js';
2
+
3
+ import refreshData from '../utils/refreshData.js';
4
+
5
+ const rclient = getRedis();
6
+
7
+ /**
8
+ *
9
+ * @method POST
10
+ * @priority 4
11
+ * @alias postSettingsTable
12
+ * @type api
13
+ * @tag custom
14
+ * @returns {String} message and status
15
+ */
16
+
17
+ export default async function postTablpostSettingsTableeProperties({
18
+ pg = pgClients.client, params = {}, body = {}, user = {},
19
+ }) {
20
+ const { table } = params;
21
+ const { uid } = user;
22
+
23
+ if (!uid) {
24
+ return { message: 'access restricted', status: 401 };
25
+ }
26
+
27
+ if (!table) {
28
+ return { message: 'not enough params: table', status: 400 };
29
+ }
30
+
31
+ const {
32
+ deleted = [],
33
+ columns = [],
34
+ filters = [],
35
+ customColumns = [],
36
+ customQuery = [],
37
+ } = body;
38
+
39
+ const cacheKey = `${pg.options?.database}:filter-list:${table}`;
40
+
41
+ if (Array.isArray(deleted) && deleted?.length) {
42
+ const sqlList = {
43
+ columns: `delete from setting.property where property_entity='column' and object_id=$1`,
44
+ filters: `delete from setting.property where property_entity='filter' and object_id=$1`,
45
+ customColumns: `delete from setting.custom_data where attr in (select cf_id from setting.custom_field where object_id=$1);
46
+ delete from setting.custom_field where object_id=$1;
47
+ delete from setting.property where property_entity='customColumn' and object_id=$1;`,
48
+ customQuery: `delete from setting.property where property_entity='customQuery' and object_id=$1;`,
49
+ };
50
+ const q = deleted.map((item) => sqlList[item])?.filter((el) => el)?.join(' ');
51
+ const { rowCount = 0 } = await pg.query(q, [table]);
52
+
53
+ if (['customColumn', 'column'].find((el) => deleted.includes(el))) {
54
+ // await funcs.applyHook('preTemplate', { pg, name: table, type: 'table' });
55
+ }
56
+ if (['customQuery', 'filter'].find((el) => deleted.includes(el))) {
57
+ await rclient.del(cacheKey);
58
+ }
59
+
60
+ if (rowCount === 0) {
61
+ return { message: 'nothing to restore', status: 200 };
62
+ }
63
+
64
+ return {
65
+ message: {
66
+ command: 'DELETE',
67
+ deleted,
68
+ table,
69
+ result: 'success',
70
+ },
71
+ status: 200,
72
+ };
73
+ }
74
+
75
+ const result = {};
76
+ // custom filter query (sql)
77
+ if (customQuery?.length) {
78
+ const res = await refreshData({ pg, entity: 'customQuery', table, uid, data: customQuery });
79
+ if (res?.error) return res;
80
+ Object.assign(result, { customQuery: res });
81
+ }
82
+
83
+ // columns
84
+ if (columns?.length) {
85
+ const res = await refreshData({ pg, entity: 'column', table, uid, data: columns });
86
+ if (res?.error) return res;
87
+ Object.assign(result, { columns: res });
88
+ }
89
+
90
+ // custom columns
91
+ if (customColumns?.length) {
92
+ const colModel = await pg.query(`select property_json::json from setting.property
93
+ where property_entity='customColumn' and object_id=$1`, [table]).then((el) => el.rows?.[0]?.property_json);
94
+
95
+ const res = await refreshData({ pg, entity: 'customColumn', table, uid, data: customColumns, colModel });
96
+ if (res?.error) return res;
97
+ Object.assign(result, { customColumns: res });
98
+ }
99
+
100
+ // filters
101
+ if (filters?.length) {
102
+ const res = await refreshData({ pg, entity: 'filter', table, uid, data: filters });
103
+ if (res?.error) return res;
104
+ Object.assign(result, { filters: res });
105
+ }
106
+
107
+ if (columns?.length || customColumns?.length) {
108
+ // await funcs.applyHook('preTemplate', { pg, type: 'table', name: table });
109
+ }
110
+ if (filters?.length || customQuery?.length) {
111
+ await rclient.del(cacheKey);
112
+ }
113
+
114
+ return { message: result, status: 200 };
115
+ };
@@ -1,19 +1,19 @@
1
- const table = 'admin.user_properties';
2
-
3
-
4
- export default async function getSettingsUser({
5
- pg = {}, session = {},
6
- }) {
7
- const { uid } = session.passport?.user || {};
8
- if (!uid) {
9
- return { message: 'access restreicted', status: 403 };
10
- }
11
-
12
- if (!pg.pk?.[table]) {
13
- return { message: 'table not found', status: 404 };
14
- }
15
-
16
-
17
-
18
- return { message: 'user', status: 200 };
19
- }
1
+ const table = 'admin.user_properties';
2
+
3
+
4
+ export default async function getSettingsUser({
5
+ pg = {}, session = {},
6
+ }) {
7
+ const { uid } = session.passport?.user || {};
8
+ if (!uid) {
9
+ return { message: 'access restreicted', status: 403 };
10
+ }
11
+
12
+ if (!pg.pk?.[table]) {
13
+ return { message: 'table not found', status: 404 };
14
+ }
15
+
16
+
17
+
18
+ return { message: 'user', status: 200 };
19
+ }
@@ -1,10 +1,10 @@
1
- const table = 'admin.user_properties';
2
-
3
-
4
-
5
- export default async function postSettingsUser({
6
- pg, session = {}, body = {},
7
- }) {
8
-
9
- return { message: 'ok', status: 200 };
10
- }
1
+ const table = 'admin.user_properties';
2
+
3
+
4
+
5
+ export default async function postSettingsUser({
6
+ pg, session = {}, body = {},
7
+ }) {
8
+
9
+ return { message: 'ok', status: 200 };
10
+ }
@@ -1,21 +1,21 @@
1
- import getSettingsApp from './controllers/admin.properties.get.js';
2
- import postSettingsApp from './controllers/admin.properties.post.js';
3
-
4
- //import getSettingsUser from './controllers/user.properties.get.js';
5
- //import postSettingsUser from './controllers/user.properties.post.js';
6
-
7
- import getSettingsTable from './controllers/table.properties.get.js';
8
- import postSettingsTable from './controllers/table.properties.post.js';
9
-
10
- import { propertiesSchema } from './schema.js';
11
-
12
- export default async function route(fastify) {
13
- fastify.get('/settings-app/:key?', { scheme: propertiesSchema }, getSettingsApp);
14
- fastify.post('/settings-app', { config: { policy: ['admin'] } }, postSettingsApp);
15
-
16
- //fastify.get('/settings-user/:key?', { scheme: propertiesSchema }, getSettingsUser);
17
- // fastify.post('/settings-user', {}, postSettingsUser);
18
-
19
- fastify.get('/settings-table/:table/:entity?', {}, getSettingsTable);
20
- fastify.post('/settings-table/:table', {}, postSettingsTable);
21
- }
1
+ import getSettingsApp from './controllers/admin.properties.get.js';
2
+ import postSettingsApp from './controllers/admin.properties.post.js';
3
+
4
+ //import getSettingsUser from './controllers/user.properties.get.js';
5
+ //import postSettingsUser from './controllers/user.properties.post.js';
6
+
7
+ import getSettingsTable from './controllers/table.properties.get.js';
8
+ import postSettingsTable from './controllers/table.properties.post.js';
9
+
10
+ import { propertiesSchema } from './schema.js';
11
+
12
+ export default async function route(fastify) {
13
+ fastify.get('/settings-app/:key?', { scheme: propertiesSchema }, getSettingsApp);
14
+ fastify.post('/settings-app', { config: { policy: ['admin'] } }, postSettingsApp);
15
+
16
+ //fastify.get('/settings-user/:key?', { scheme: propertiesSchema }, getSettingsUser);
17
+ // fastify.post('/settings-user', {}, postSettingsUser);
18
+
19
+ fastify.get('/settings-table/:table/:entity?', {}, getSettingsTable);
20
+ fastify.post('/settings-table/:table', {}, postSettingsTable);
21
+ }
@@ -1,26 +1,26 @@
1
- import { getMeta, getPG } from '@opengis/fastify-table/utils.js';
2
-
3
- export default async function dataInsert({
4
- table, data, pg: pg1,
5
- }) {
6
- const pg = pg1 || getPG({ name: 'client' });
7
- if (!data) return null;
8
- const { columns } = await getMeta(table);
9
- if (!columns) return null;
10
-
11
- const names = columns.map((el) => el.name);
12
- const filterData = Object.keys(data)
13
- .filter((el) => data[el] && names.includes(el)).map((el) => [el, data[el]]);
14
-
15
- const insertQuery = `insert into ${table}
16
-
17
- ( ${filterData?.map((key) => `"${key[0]}"`).join(',')})
18
-
19
- values (${filterData?.map((key, i) => (key[0] === 'property_json' ? `to_json($${i + 1}::${key[1] && typeof key[1] === 'object' ? 'json' : 'text'})` : `$${i + 1}`)).join(',')})
20
-
21
- returning *`;
22
-
23
- const res = await pg.query(insertQuery, [...filterData.map((el) => (typeof el[1] === 'object' && (!Array.isArray(el[1]) || typeof el[1]?.[0] === 'object') ? JSON.stringify(el[1]) : el[1]))]) || {};
24
-
25
- return res;
26
- }
1
+ import { getMeta, getPG } from '@opengis/fastify-table/utils.js';
2
+
3
+ export default async function dataInsert({
4
+ table, data, pg: pg1,
5
+ }) {
6
+ const pg = pg1 || getPG({ name: 'client' });
7
+ if (!data) return null;
8
+ const { columns } = await getMeta(table);
9
+ if (!columns) return null;
10
+
11
+ const names = columns.map((el) => el.name);
12
+ const filterData = Object.keys(data)
13
+ .filter((el) => data[el] && names.includes(el)).map((el) => [el, data[el]]);
14
+
15
+ const insertQuery = `insert into ${table}
16
+
17
+ ( ${filterData?.map((key) => `"${key[0]}"`).join(',')})
18
+
19
+ values (${filterData?.map((key, i) => (key[0] === 'property_json' ? `to_json($${i + 1}::${key[1] && typeof key[1] === 'object' ? 'json' : 'text'})` : `$${i + 1}`)).join(',')})
20
+
21
+ returning *`;
22
+
23
+ const res = await pg.query(insertQuery, [...filterData.map((el) => (typeof el[1] === 'object' && (!Array.isArray(el[1]) || typeof el[1]?.[0] === 'object') ? JSON.stringify(el[1]) : el[1]))]) || {};
24
+
25
+ return res;
26
+ }
@@ -1,17 +1,17 @@
1
- import { pgClients, getMeta } from '@opengis/fastify-table/utils.js';
2
-
3
- export default async function getColumnMetaData({
4
- pg = pgClients.client, table,
5
- }) {
6
- if (!table) return null;
7
-
8
- const { columns = [] } = await getMeta({ pg, table });
9
- const columnList = columns.filter(el => !['files', 'uid', 'editor_date', 'editor_id', 'cdate'].includes(el.name)).map(el => el.name);
10
-
11
- const sql = `select count(*) as total, ${columnList.map((item) => `(count(*) filter(where ${item} is not null)) as "${item}"`).join(',')} from ${table}`;
12
- const res = await pg.queryCache(sql, { table }).then(el => el.rows?.[0] || {});
13
-
14
- return columns
15
- .filter(el => !['files', 'uid', 'editor_date', 'editor_id', 'cdate'].includes(el.name))
16
- .map((row) => Object.assign(row, { percent: ((+res[row.name] / +res.total) * 100).toFixed(0) }));
17
- };
1
+ import { pgClients, getMeta } from '@opengis/fastify-table/utils.js';
2
+
3
+ export default async function getColumnMetaData({
4
+ pg = pgClients.client, table,
5
+ }) {
6
+ if (!table) return null;
7
+
8
+ const { columns = [] } = await getMeta({ pg, table });
9
+ const columnList = columns.filter(el => !['files', 'uid', 'editor_date', 'editor_id', 'cdate'].includes(el.name)).map(el => el.name);
10
+
11
+ const sql = `select count(*) as total, ${columnList.map((item) => `(count(*) filter(where ${item} is not null)) as "${item}"`).join(',')} from ${table}`;
12
+ const res = await pg.queryCache(sql, { table }).then(el => el.rows?.[0] || {});
13
+
14
+ return columns
15
+ .filter(el => !['files', 'uid', 'editor_date', 'editor_id', 'cdate'].includes(el.name))
16
+ .map((row) => Object.assign(row, { percent: ((+res[row.name] / +res.total) * 100).toFixed(0) }));
17
+ };