@opengis/fastify-table 1.1.44 → 1.1.45
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/Changelog.md +1 -1
- package/crud/funcs/getAccess.js +4 -4
- package/crud/funcs/utils/logChanges.js +17 -31
- package/hook/funcs/applyHook.js +1 -1
- package/module/test/table/test.rest_zone.table.json +1 -0
- package/package.json +1 -1
- package/table/controllers/card.js +2 -1
- package/table/controllers/data.js +2 -1
- package/table/controllers/table.js +2 -1
- package/test/api/table.test.js +7 -0
package/Changelog.md
CHANGED
package/crud/funcs/getAccess.js
CHANGED
|
@@ -20,10 +20,6 @@ left join admin.user_roles d on
|
|
|
20
20
|
where $1 in (a.route_id, a.alias) and $2 in (b.user_uid, d.user_uid)`;
|
|
21
21
|
|
|
22
22
|
export default async function getAccess({ table, id, user }) {
|
|
23
|
-
if (config.auth?.disable || user?.user_type?.includes('admin')) {
|
|
24
|
-
return { actions: ['get', 'edit', 'del'], my: true, query: '1=1' };
|
|
25
|
-
}
|
|
26
|
-
|
|
27
23
|
const { client: pg } = pgClients || {};
|
|
28
24
|
const { uid, user_type: userType } = user || {};
|
|
29
25
|
|
|
@@ -34,6 +30,10 @@ export default async function getAccess({ table, id, user }) {
|
|
|
34
30
|
const body = await getTemplate('table', table) || {};
|
|
35
31
|
if (!body?.table) return null;
|
|
36
32
|
|
|
33
|
+
if (config.auth?.disable || user?.user_type?.includes('admin') || body?.public) {
|
|
34
|
+
return { actions: ['get', 'edit', 'del'], my: true, query: '1=1' };
|
|
35
|
+
}
|
|
36
|
+
|
|
37
37
|
const { scope = 'my', actions = [] } = await pg.query(q, [table, uid]).then((res) => res.rows?.[0] || {});
|
|
38
38
|
|
|
39
39
|
const { columns = [] } = await getMeta({ table: body?.table });
|
|
@@ -1,28 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
if (!value) return null;
|
|
3
|
-
if (fieldType === 'geometry') {
|
|
4
|
-
return typeof value === 'object' ? `st_astext(st_geomfromgeojson('${JSON.stringify(value)}'::json))` : `st_astext('${value}'::geometry)`;
|
|
5
|
-
}
|
|
6
|
-
if (['integer', 'numeric', 'double precision'].includes(fieldType)) {
|
|
7
|
-
return value || null;
|
|
8
|
-
}
|
|
9
|
-
if (fieldType.includes('timestamp') || fieldType === 'date') {
|
|
10
|
-
if (typeof value === 'object') {
|
|
11
|
-
return value ? `'${value.toISOString()}'::${fieldType}` : null;
|
|
12
|
-
}
|
|
13
|
-
return value ? `'${value}'::${fieldType}` : null;
|
|
14
|
-
}
|
|
15
|
-
if (typeof value === 'object' || fieldType.includes('json')) {
|
|
16
|
-
if (Array.isArray(value)) {
|
|
17
|
-
return `'${JSON.stringify(value)}'`;
|
|
18
|
-
}
|
|
19
|
-
return `'${JSON.stringify(value)}'`;
|
|
20
|
-
}
|
|
21
|
-
if (Array.isArray(value)) {
|
|
22
|
-
return `'{ ${value.join(',')} }'::${fieldType}`;
|
|
23
|
-
}
|
|
24
|
-
return `'${value || null}'`;
|
|
25
|
-
}
|
|
1
|
+
import getMeta from '../../../pg/funcs/getMeta.js';
|
|
26
2
|
|
|
27
3
|
export default async function logChanges({
|
|
28
4
|
pg, table, id, data, uid = 1, type,
|
|
@@ -55,13 +31,23 @@ export default async function logChanges({
|
|
|
55
31
|
|
|
56
32
|
const old = type !== 'INSERT' ? await pg.query(q, [id]).then((res) => res.rows?.[0] || {}) : {};
|
|
57
33
|
|
|
58
|
-
const
|
|
59
|
-
const
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
34
|
+
const { columns = [] } = await getMeta({ table: 'log.table_changes_data' });
|
|
35
|
+
const names = columns.map((el) => el.name);
|
|
36
|
+
|
|
37
|
+
const res = await Promise.all(Object.keys(data || {}).map(async (el) => {
|
|
38
|
+
const filterData = Object.entries({
|
|
39
|
+
change_id: changeId, entity_key: el, value_old: old[el], value_new: data[el], uid,
|
|
40
|
+
})
|
|
41
|
+
.filter((el) => el[1] && names.includes(el[0]));
|
|
42
|
+
|
|
43
|
+
const insertQuery = `insert into log.table_changes_data (${filterData?.map((key) => `"${key[0]}"`).join(',')})
|
|
44
|
+
values (${filterData?.map((key, i) => `$${i + 1}`).join(',')}) returning *`;
|
|
45
|
+
|
|
46
|
+
const { rows = [] } = await pg.query(insertQuery, [...filterData.map((el) => (el[1] && typeof el[1] === 'object' && (!Array.isArray(el[1]) || typeof el[1]?.[0] === 'object') ? JSON.stringify(el[1]) : el[1]))]) || {};
|
|
47
|
+
return rows[0];
|
|
48
|
+
}));
|
|
63
49
|
|
|
64
|
-
const newData = type === 'DELETE' ? {} : (Array.isArray(res) ? res : [res]).reduce((acc, curr) => Object.assign(acc, { [curr.
|
|
50
|
+
const newData = type === 'DELETE' ? {} : (Array.isArray(res) ? res : [res]).reduce((acc, curr) => Object.assign(acc, { [curr.entity_key]: curr.value_new }), {});
|
|
65
51
|
// console.log('logChanges OK', type);
|
|
66
52
|
return {
|
|
67
53
|
change_id: changeId, entity_type: table, entity_id: id, uid, change_type: type, old, new: newData,
|
package/hook/funcs/applyHook.js
CHANGED
|
@@ -2,7 +2,7 @@ import config from '../../config.js';
|
|
|
2
2
|
import hookList from './hookList.js';
|
|
3
3
|
|
|
4
4
|
export default async function applyHook(name, data) {
|
|
5
|
-
const debug = config
|
|
5
|
+
const { debug } = config;
|
|
6
6
|
if (debug) console.log('applyHook', name);
|
|
7
7
|
if (!hookList[name]?.length) return null;
|
|
8
8
|
const result = {};
|
package/package.json
CHANGED
|
@@ -24,7 +24,8 @@ export default async function card(req) {
|
|
|
24
24
|
table: hookData?.table || params.table,
|
|
25
25
|
id: hookData?.id || params?.id,
|
|
26
26
|
user,
|
|
27
|
-
});
|
|
27
|
+
}) || {};
|
|
28
|
+
|
|
28
29
|
if (!actions.includes('get') || (scope === 'my' && !my)) {
|
|
29
30
|
return { message: 'access restricted', status: 403 };
|
|
30
31
|
}
|
|
@@ -30,7 +30,8 @@ export default async function dataAPI(req) {
|
|
|
30
30
|
table: hookData?.table || params.table,
|
|
31
31
|
id: hookData?.id || params?.id,
|
|
32
32
|
user,
|
|
33
|
-
});
|
|
33
|
+
}) || {};
|
|
34
|
+
|
|
34
35
|
if (!actions.includes('get') || (scope === 'my' && !my)) {
|
|
35
36
|
return { message: 'access restricted', status: 403 };
|
|
36
37
|
}
|
|
@@ -30,7 +30,8 @@ export default async function tableAPI(req) {
|
|
|
30
30
|
table: hookData?.table || params.table,
|
|
31
31
|
id: hookData?.id || params?.id,
|
|
32
32
|
user,
|
|
33
|
-
});
|
|
33
|
+
}) || {};
|
|
34
|
+
|
|
34
35
|
if (!actions.includes('get') || (scope === 'my' && !my)) {
|
|
35
36
|
return { message: 'access restricted', status: 403 };
|
|
36
37
|
}
|
package/test/api/table.test.js
CHANGED
|
@@ -11,6 +11,13 @@ const table = 'test.rest_zone.table';
|
|
|
11
11
|
|
|
12
12
|
test('api table', async (t) => {
|
|
13
13
|
const app = await build(t);
|
|
14
|
+
|
|
15
|
+
const session = { passport: { user: { uid: '1', user_type: 'admin' } } };
|
|
16
|
+
app.addHook('onRequest', async (req) => {
|
|
17
|
+
req.session = session;
|
|
18
|
+
req.user = session.passport.user;
|
|
19
|
+
});
|
|
20
|
+
|
|
14
21
|
await init(pgClients.client);
|
|
15
22
|
|
|
16
23
|
const body = await getTemplate('table', table);
|