@opengis/admin 0.3.103 → 0.3.105
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
CHANGED
@@ -1,112 +1,107 @@
|
|
1
|
-
import path from 'node:path';
|
2
|
-
|
3
|
-
import {
|
4
|
-
|
5
|
-
import getFilterQuery from '../utils/getFilterQuery.js';
|
6
|
-
|
7
|
-
const maxLimit = 100;
|
8
|
-
|
9
|
-
export default async function tableData({
|
10
|
-
pg = pgClients.client, params = {}, query = {}, user = {},
|
11
|
-
}, reply) {
|
12
|
-
if (!params?.name) {
|
13
|
-
return { message: 'not enough params: name', status: 400 };
|
14
|
-
}
|
15
|
-
|
16
|
-
const body = await getTemplate('report', params.name);
|
17
|
-
const loadTemplate = Array.isArray(body) ? body?.find?.(el => el[0].replace(path.extname(el[0]), '') === 'index')?.[1] : body;
|
18
|
-
|
19
|
-
if (!loadTemplate?.sql && !loadTemplate?.table) {
|
20
|
-
return reply.status(404).send(`report not found: ${params.name}`);
|
21
|
-
}
|
22
|
-
|
23
|
-
if (loadTemplate?.table && !pg.pk?.[loadTemplate.table]) {
|
24
|
-
return reply.status(404).send(`table not found: ${loadTemplate.table}`);
|
25
|
-
}
|
26
|
-
|
27
|
-
if (Array.isArray(body)) {
|
28
|
-
loadTemplate.widgets = [];
|
29
|
-
body.filter(el => el[0].replace(path.extname(el[0]), '') !== 'index').forEach((el) => {
|
30
|
-
loadTemplate.widgets.push(el[1]);
|
31
|
-
});
|
32
|
-
}
|
33
|
-
|
34
|
-
const {
|
35
|
-
|
36
|
-
|
37
|
-
const
|
38
|
-
|
39
|
-
|
40
|
-
const
|
41
|
-
|
42
|
-
|
43
|
-
const
|
44
|
-
|
45
|
-
|
46
|
-
const
|
47
|
-
|
48
|
-
const
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
})
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
const
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
subtitle,
|
109
|
-
widgets,
|
110
|
-
columns,
|
111
|
-
};
|
112
|
-
}
|
1
|
+
import path from 'node:path';
|
2
|
+
|
3
|
+
import { pgClients, getTemplate, metaFormat, handlebarsSync } from '@opengis/fastify-table/utils.js';
|
4
|
+
|
5
|
+
import getFilterQuery from '../utils/getFilterQuery.js';
|
6
|
+
|
7
|
+
const maxLimit = 100;
|
8
|
+
|
9
|
+
export default async function tableData({
|
10
|
+
pg = pgClients.client, params = {}, query = {}, user = {},
|
11
|
+
}, reply) {
|
12
|
+
if (!params?.name) {
|
13
|
+
return { message: 'not enough params: name', status: 400 };
|
14
|
+
}
|
15
|
+
|
16
|
+
const body = await getTemplate('report', params.name);
|
17
|
+
const loadTemplate = Array.isArray(body) ? body?.find?.(el => el[0].replace(path.extname(el[0]), '') === 'index')?.[1] : body;
|
18
|
+
|
19
|
+
if (!loadTemplate?.sql && !loadTemplate?.table) {
|
20
|
+
return reply.status(404).send(`report not found: ${params.name}`);
|
21
|
+
}
|
22
|
+
|
23
|
+
if (loadTemplate?.table && !pg.pk?.[loadTemplate.table]) {
|
24
|
+
return reply.status(404).send(`table not found: ${loadTemplate.table}`);
|
25
|
+
}
|
26
|
+
|
27
|
+
if (Array.isArray(body)) {
|
28
|
+
loadTemplate.widgets = [];
|
29
|
+
body.filter(el => el[0].replace(path.extname(el[0]), '') !== 'index').forEach((el) => {
|
30
|
+
loadTemplate.widgets.push(el[1]);
|
31
|
+
});
|
32
|
+
}
|
33
|
+
|
34
|
+
const { title, subtitle, widgets = [], kpi, sql = `select * from ${loadTemplate.table} where ${loadTemplate.query || 'true'}`, meta, filters } = loadTemplate;
|
35
|
+
const { date, columns: metaColumns } = meta || {};
|
36
|
+
|
37
|
+
const granularity = query.granularity && date && false ? `date_trunc('${query.granularity}',${date})::date::text` : null;
|
38
|
+
const groupby = [meta?.groupby, granularity].filter(el => el).join(',');
|
39
|
+
|
40
|
+
const period = query.period && date ? `${date}=${query.period}` : null;
|
41
|
+
const filter = [query.filter, period].filter(el => el).join(';');
|
42
|
+
|
43
|
+
const limit = Math.min(maxLimit, +(query.limit || 20));
|
44
|
+
const offset = query.page && query.page > 0 ? (query.page - 1) * limit : 0;
|
45
|
+
|
46
|
+
const { fields = [] } = await pg.query(`select * from (${sql.replace(/{{uid}}/g, user?.uid)})q limit 0`);
|
47
|
+
|
48
|
+
const where = filter ? getFilterQuery({ pg, filter, fields, filterList: filters })?.map?.(el => el.query)?.join(' and ') : null;
|
49
|
+
|
50
|
+
const q = `select ${metaColumns || '*'} from (${sql.replace(/{{uid}}/g, user?.uid)})q where ${where || '1=1'} ${groupby ? `group by ${groupby}` : ''} limit ${limit} offset ${offset}`;
|
51
|
+
|
52
|
+
if (query.sql && user?.user_type?.includes('admin')) {
|
53
|
+
return q;
|
54
|
+
}
|
55
|
+
|
56
|
+
if (kpi?.length) {
|
57
|
+
await Promise.all(kpi.map(async (el) => {
|
58
|
+
if (!el.sql && !el.table) {
|
59
|
+
Object.assign(el, { error: 'empty sql / table' });
|
60
|
+
return;
|
61
|
+
}
|
62
|
+
|
63
|
+
const sqlq = el.sql || `select ${el.agg || 'count(*)'} as value from ${el.table} where ${el.query || 'true'}`;
|
64
|
+
const { rows = [], fields = [] } = await pg.query(sqlq.replace(/{{uid}}/g, user?.uid)).catch(err => {
|
65
|
+
Object.assign(el, { error: err.toString() });
|
66
|
+
}) || {};
|
67
|
+
Object.assign(el, { count: rows?.[0]?.[fields[0].name] || 0, sql: user?.user_type === 'admin' ? sqlq.replace(/{{uid}}/g, user?.uid) : undefined });
|
68
|
+
}));
|
69
|
+
}
|
70
|
+
|
71
|
+
widgets?.forEach?.((el) => Object.assign(el, {
|
72
|
+
agg: user?.user_type === 'admin' ? el.agg : undefined,
|
73
|
+
sql: user?.user_type === 'admin' ? el.sql : undefined
|
74
|
+
}));
|
75
|
+
|
76
|
+
const types = fields.reduce((acc, curr) => ({ ...acc, [curr.name]: pg.pgType?.[curr.dataTypeID] }), {});
|
77
|
+
|
78
|
+
const { rows = [] } = await pg.query(q).catch(err => {
|
79
|
+
return reply.status(500).send('query error: ' + err.toString());
|
80
|
+
});
|
81
|
+
|
82
|
+
await metaFormat({ rows, cls: meta?.cls, sufix: false }, pg);
|
83
|
+
|
84
|
+
const columns = fields.map(el => ({
|
85
|
+
name: el.name,
|
86
|
+
title: meta?.titles?.[el.name] || el.name,
|
87
|
+
type: meta?.cls?.[el.name]
|
88
|
+
? 'Autocomplete'
|
89
|
+
: (
|
90
|
+
['date', 'timestamp with time zone', 'timestamp without time zone'].includes(types[el.name])
|
91
|
+
? 'Date'
|
92
|
+
: null
|
93
|
+
) || 'Text',
|
94
|
+
format: pg.pgType?.[el.dataTypeID],
|
95
|
+
data: meta?.cls?.[el.name],
|
96
|
+
}));
|
97
|
+
|
98
|
+
return {
|
99
|
+
q: user?.user_type?.includes('admin') ? q : undefined,
|
100
|
+
kpi,
|
101
|
+
data: rows,
|
102
|
+
title,
|
103
|
+
subtitle,
|
104
|
+
widgets,
|
105
|
+
columns,
|
106
|
+
};
|
107
|
+
}
|
@@ -1,90 +1,105 @@
|
|
1
|
-
import path from 'node:path';
|
2
|
-
|
3
|
-
import { pgClients, getTemplate, metaFormat } from '@opengis/fastify-table/utils.js';
|
4
|
-
|
5
|
-
const maxLimit = 100;
|
6
|
-
|
7
|
-
export default async function widgetData({
|
8
|
-
pg = pgClients.client, params = {}, query = {}, user = {},
|
9
|
-
}, reply) {
|
10
|
-
if (!params?.name) {
|
11
|
-
return { message: 'not enough params: name', status: 400 };
|
12
|
-
}
|
13
|
-
|
14
|
-
if (!params?.widget) {
|
15
|
-
return reply.status(400).send('not enough params: widget');
|
16
|
-
}
|
17
|
-
|
18
|
-
const body = await getTemplate('report', params.name);
|
19
|
-
const loadTemplate = Array.isArray(body) ? body?.find?.(el => el[0].replace(path.extname(el[0]), '') === 'index')?.[1] : body;
|
20
|
-
|
21
|
-
if (!loadTemplate
|
22
|
-
return reply.status(404).send(`report not found: ${params.name}`);
|
23
|
-
}
|
24
|
-
|
25
|
-
if (
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
if (!widget) {
|
41
|
-
return reply.status(404).send(`widget not found: ${
|
42
|
-
}
|
43
|
-
|
44
|
-
const { cls = {}, titles = {} } = widget.meta || {};
|
45
|
-
|
46
|
-
const offset = query.page && query.page > 0 ? (query.page - 1) * limit : 0;
|
47
|
-
const sql = widget.sql || `select * from ${widget.table} where ${widget.query || 'true'} limit ${maxLimit} offset ${offset}`;
|
48
|
-
|
49
|
-
const groupby = typeof widget.groupby === 'string'
|
50
|
-
? { name: widget.groupby }
|
51
|
-
: (widget.groupby?.[0] || widget.groupby);
|
52
|
-
|
53
|
-
if (groupby.cls) {
|
54
|
-
Object.assign(cls, { [groupby.name]: groupby.cls });
|
55
|
-
}
|
56
|
-
|
57
|
-
const
|
58
|
-
? `
|
59
|
-
:
|
60
|
-
|
61
|
-
const
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
1
|
+
import path from 'node:path';
|
2
|
+
|
3
|
+
import { pgClients, getTemplate, metaFormat } from '@opengis/fastify-table/utils.js';
|
4
|
+
|
5
|
+
const maxLimit = 100;
|
6
|
+
|
7
|
+
export default async function widgetData({
|
8
|
+
pg = pgClients.client, params = {}, query = {}, user = {},
|
9
|
+
}, reply) {
|
10
|
+
if (!params?.name) {
|
11
|
+
return { message: 'not enough params: name', status: 400 };
|
12
|
+
}
|
13
|
+
|
14
|
+
if (!params?.widget) {
|
15
|
+
return reply.status(400).send('not enough params: widget');
|
16
|
+
}
|
17
|
+
|
18
|
+
const body = await getTemplate('report', params.name);
|
19
|
+
const loadTemplate = Array.isArray(body) ? body?.find?.(el => el[0].replace(path.extname(el[0]), '') === 'index')?.[1] : body;
|
20
|
+
|
21
|
+
if (!loadTemplate) {
|
22
|
+
return reply.status(404).send(`report not found: ${params.name}`);
|
23
|
+
}
|
24
|
+
|
25
|
+
if (Array.isArray(body)) {
|
26
|
+
loadTemplate.widgets = [];
|
27
|
+
body.filter(el => el[0].replace(path.extname(el[0]), '') !== 'index').forEach((el) => {
|
28
|
+
loadTemplate.widgets.push(el[1]);
|
29
|
+
});
|
30
|
+
}
|
31
|
+
|
32
|
+
const { widgets = [] } = loadTemplate;
|
33
|
+
|
34
|
+
const widget = widgets.find(el => el.name === params.widget);
|
35
|
+
|
36
|
+
if (!widget) {
|
37
|
+
return reply.status(404).send(`widget not found: ${params.widget}`);
|
38
|
+
}
|
39
|
+
|
40
|
+
if (!widget.table || !pg.pk?.[widget.table]) {
|
41
|
+
return reply.status(404).send(`widget table not found: ${widget.table}`);
|
42
|
+
}
|
43
|
+
|
44
|
+
const { cls = {}, titles = {} } = widget.meta || {};
|
45
|
+
|
46
|
+
const offset = query.page && query.page > 0 ? (query.page - 1) * limit : 0;
|
47
|
+
const sql = widget.sql || `select * from ${widget.table} where ${widget.query || 'true'} limit ${maxLimit} offset ${offset}`;
|
48
|
+
|
49
|
+
const groupby = typeof widget.groupby === 'string'
|
50
|
+
? { name: widget.groupby }
|
51
|
+
: (widget.groupby?.[0] || widget.groupby);
|
52
|
+
|
53
|
+
if (groupby.cls) {
|
54
|
+
Object.assign(cls, { [groupby.name]: groupby.cls });
|
55
|
+
}
|
56
|
+
|
57
|
+
const xCol = widget.granularity
|
58
|
+
? `date_trunc('${widget.granularity}', ${groupby.name})`
|
59
|
+
: groupby.name;
|
60
|
+
|
61
|
+
const q = widget.agg
|
62
|
+
? `select ${widget.agg} as metric ${groupby.name
|
63
|
+
? `${widget.granularity
|
64
|
+
? `,date_trunc('${widget.granularity}', ${groupby.name})`
|
65
|
+
: `,${groupby.name}`}`
|
66
|
+
: ''
|
67
|
+
} as ${groupby.name} from (${sql}) t ${groupby.name
|
68
|
+
? `group by ${xCol}`
|
69
|
+
: ''
|
70
|
+
}
|
71
|
+
${widget.orderby || xCol ? `order by ${widget.orderby || xCol}` : ''}`
|
72
|
+
: sql;
|
73
|
+
|
74
|
+
if (query.sql) return q;
|
75
|
+
|
76
|
+
const { rows = [], fields = [] } = await pg.query(q).catch(err => {
|
77
|
+
Object.assign(widget, { error: err.toString() });
|
78
|
+
}) || {};
|
79
|
+
await metaFormat({ rows, cls, sufix: false }, pg);
|
80
|
+
|
81
|
+
const types = fields.reduce((acc, curr) => ({ ...acc, [curr.name]: pg.pgType?.[curr.dataTypeID] }), {});
|
82
|
+
|
83
|
+
const columns = fields.map(el => ({
|
84
|
+
name: el.name,
|
85
|
+
title: titles?.[el.name] || el.name,
|
86
|
+
type: cls?.[el.name]
|
87
|
+
? 'Autocomplete'
|
88
|
+
: (
|
89
|
+
['date', 'timestamp with time zone', 'timestamp without time zone'].includes(types[el.name])
|
90
|
+
? 'Date'
|
91
|
+
: null
|
92
|
+
) || 'Text',
|
93
|
+
format: pg.pgType?.[el.dataTypeID],
|
94
|
+
data: cls?.[el.name],
|
95
|
+
}));
|
96
|
+
|
97
|
+
Object.assign(widget, {
|
98
|
+
source: rows,
|
99
|
+
columns,
|
100
|
+
agg: user?.user_type === 'admin' ? widget.agg : undefined,
|
101
|
+
sql: user?.user_type === 'admin' ? q : undefined,
|
102
|
+
});
|
103
|
+
|
104
|
+
return widget;
|
105
|
+
}
|