@opengis/fastify-table 1.2.0 → 1.2.2
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/package.json +1 -1
- package/server/plugins/crud/funcs/dataDelete.js +3 -2
- package/server/plugins/crud/funcs/dataInsert.js +9 -1
- package/server/plugins/crud/funcs/getAccess.js +11 -6
- package/server/plugins/crud/funcs/utils/logChanges.js +2 -1
- package/server/routes/table/controllers/data.js +15 -3
package/package.json
CHANGED
|
@@ -11,9 +11,10 @@ export default async function dataDelete({
|
|
|
11
11
|
}) {
|
|
12
12
|
const pg = pg1 || getPG({ name: 'client' });
|
|
13
13
|
const { pk } = await getMeta({ pg, table });
|
|
14
|
-
|
|
14
|
+
const table1 = table.replace(/"/g, '');
|
|
15
|
+
if (!pg.tlist?.includes(table1)) return 'table not exist';
|
|
15
16
|
const delQuery = `delete from ${table} WHERE ${pk} = $1 returning *`;
|
|
16
|
-
|
|
17
|
+
|
|
17
18
|
const res = await pg.query(delQuery, [id]).then(el => el.rows?.[0] || {});
|
|
18
19
|
await logChanges({
|
|
19
20
|
pg, table, tokenData, referer, id, uid, type: 'DELETE',
|
|
@@ -36,8 +36,16 @@ export default async function dataInsert({
|
|
|
36
36
|
|
|
37
37
|
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]))]) || {};
|
|
38
38
|
|
|
39
|
+
const table1 = pg.pk[table] ? table : table.replace(/"/g, '');
|
|
39
40
|
await logChanges({
|
|
40
|
-
pg,
|
|
41
|
+
pg,
|
|
42
|
+
table,
|
|
43
|
+
tokenData,
|
|
44
|
+
referer,
|
|
45
|
+
data,
|
|
46
|
+
id: res.rows?.[0]?.[pg.pk[table1]],
|
|
47
|
+
uid,
|
|
48
|
+
type: 'INSERT',
|
|
41
49
|
});
|
|
42
50
|
|
|
43
51
|
rclient.incr(`pg:${table}:crud`);
|
|
@@ -56,12 +56,17 @@ export default async function getAccess({ table, user = {} }) {
|
|
|
56
56
|
return { actions: [], query: '1=1' };
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
const userAccess =
|
|
60
|
-
.
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
59
|
+
const userAccess = pgClients.client?.pk?.['admin.routes']
|
|
60
|
+
&& pgClients.client?.pk?.['admin.role_access']
|
|
61
|
+
&& pgClients.client?.pk?.['admin.roles']
|
|
62
|
+
&& pgClients.client?.pk?.['admin.user_roles']
|
|
63
|
+
? await pgClients.client.query(q, [table, uid])
|
|
64
|
+
.then(el => ({
|
|
65
|
+
...el.rows[0] || {},
|
|
66
|
+
roles: el.rows?.map?.(row => row.role_id) || [],
|
|
67
|
+
actions: el.rows?.map?.(row => row.actions).flat() || [],
|
|
68
|
+
}))
|
|
69
|
+
: {};
|
|
65
70
|
|
|
66
71
|
const query = userAccess?.scope === 'my' ? `uid='${uid}'` : '1=1';
|
|
67
72
|
const actions = userAccess?.actions?.filter?.((el, idx, arr) => arr.indexOf(el) === idx && tableActions.includes(el));
|
|
@@ -11,8 +11,9 @@ function getValue(val) {
|
|
|
11
11
|
// extract titles and cls from form schema
|
|
12
12
|
// alt: extract table template from referer -> form
|
|
13
13
|
export default async function logChanges({
|
|
14
|
-
pg, table, tokenData, referer, id, data, uid = 1, type,
|
|
14
|
+
pg, table: table1, tokenData, referer, id, data, uid = 1, type,
|
|
15
15
|
}) {
|
|
16
|
+
const table = table1.replace(/"/g, '');
|
|
16
17
|
if (!id) {
|
|
17
18
|
console.error('param id is required');
|
|
18
19
|
return null;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
-
config, getTemplate, getFilterSQL, getMeta, metaFormat, getAccess, setToken, gisIRColumn, applyHook,
|
|
3
|
-
handlebars,
|
|
2
|
+
config, getTemplate, getFilterSQL, getMeta, metaFormat, getAccess, setToken, gisIRColumn, applyHook, handlebars, getSelect,
|
|
4
3
|
} from '../../../../utils.js';
|
|
5
4
|
|
|
6
5
|
const maxLimit = 100;
|
|
@@ -135,8 +134,21 @@ export default async function dataAPI(req) {
|
|
|
135
134
|
const agg = Object.keys(counts).filter(el => !['total', 'filtered'].includes(el)).reduce((acc, el) => ({ ...acc, [el]: counts[el] }), {});
|
|
136
135
|
|
|
137
136
|
await metaFormat({ rows, table: hookData?.table || params.table });
|
|
137
|
+
|
|
138
|
+
const status = [];
|
|
139
|
+
if (loadTable.meta?.status) {
|
|
140
|
+
const statusColumn = loadTable.meta?.cls?.[loadTable.meta?.status]
|
|
141
|
+
? { name: loadTable.meta?.status, data: loadTable.meta?.cls?.[loadTable.meta?.status] }
|
|
142
|
+
: loadTable.columns.find(col => col.name === loadTable.meta?.status) || {};
|
|
143
|
+
|
|
144
|
+
const statusCls = statusColumn.data || statusColumn.option;
|
|
145
|
+
const statusClsData = statusCls ? await getSelect(statusCls, pg) : {};
|
|
146
|
+
statusClsData?.arr
|
|
147
|
+
?.forEach(el => status.push({ ...el, count: rows.filter(row => el.id === row[statusColumn.name]).length }));
|
|
148
|
+
}
|
|
149
|
+
|
|
138
150
|
const res = {
|
|
139
|
-
time: Date.now() - time, public: ispublic, card: loadTable.card, actions, total, filtered, count: rows.length, pk, form, agg, rows, meta, columns, filters,
|
|
151
|
+
time: Date.now() - time, public: ispublic, card: loadTable.card, actions, total, filtered, count: rows.length, pk, form, agg, status, rows, meta, columns, filters,
|
|
140
152
|
};
|
|
141
153
|
|
|
142
154
|
// console.log({ add: loadTable.table, form: loadTable.form });
|