@opengis/admin 0.1.66 → 0.1.68

Sign up to get free protection for your applications and to get access to all the features.
Files changed (120) hide show
  1. package/README.md +29 -29
  2. package/config.js +4 -4
  3. package/dist/IconChevronDown-Co0qOLyQ.js +26 -0
  4. package/dist/{add-page-YonHQsF2.js → add-page-Bv-BNhYQ.js} +11 -8
  5. package/dist/{admin-interface-DSR1im5I.js → admin-interface-j3f16Iy8.js} +593 -446
  6. package/dist/{admin-view-WZhYBXYw.js → admin-view-DykzQo5I.js} +214 -223
  7. package/dist/admin.js +1 -1
  8. package/dist/admin.umd.cjs +83 -83
  9. package/dist/card-page-DtXydAxe.js +275 -0
  10. package/dist/{card-view-DYhMgpIH.js → card-view-MpG-dhK0.js} +1 -1
  11. package/dist/{edit-page-D8fMSwEp.js → edit-page-DkD5JFQv.js} +13 -12
  12. package/dist/{import-file-Do-GQQHc.js → import-file-DGI0k9si.js} +6797 -6814
  13. package/dist/style.css +1 -1
  14. package/module/settings/card/admin.roles.table/access.hbs +27 -27
  15. package/module/settings/card/admin.roles.table/general_info.hbs +16 -16
  16. package/module/settings/card/admin.roles.table/index.yml +14 -14
  17. package/module/settings/card/admin.roles.table/users.hbs +27 -27
  18. package/module/settings/card/admin.routes.table/general_info.hbs +40 -40
  19. package/module/settings/card/admin.routes.table/index.yml +8 -8
  20. package/module/settings/card/admin.routes.table/users.hbs +33 -33
  21. package/module/settings/card/admin.users.table/general_info.hbs +25 -25
  22. package/module/settings/card/admin.users.table/index.yml +12 -12
  23. package/module/settings/card/admin.users.table/logs.hbs +30 -30
  24. package/module/settings/card/admin.users.table/user_roles.hbs +24 -24
  25. package/module/settings/cls/core.actions.json +13 -13
  26. package/module/settings/cls/core.scope.json +13 -13
  27. package/module/settings/cls/properties.site_status.json +13 -13
  28. package/module/settings/cls/properties.widget_status.json +13 -13
  29. package/module/settings/cls/users.user_type.json +13 -13
  30. package/module/settings/form/admin.access.form.json +36 -36
  31. package/module/settings/form/admin.custom_column.form.json +71 -71
  32. package/module/settings/form/admin.properties.form.json +15 -15
  33. package/module/settings/form/admin.roles.form.json +19 -19
  34. package/module/settings/form/admin.routes.form.json +25 -25
  35. package/module/settings/form/admin.user_properties.form.json +15 -15
  36. package/module/settings/form/admin.user_roles.form.json +21 -21
  37. package/module/settings/form/admin.users.form.json +150 -150
  38. package/module/settings/form/user.user_roles.form.json +13 -13
  39. package/module/settings/interface/admin.properties.json +4 -4
  40. package/module/settings/interface/admin.roles.json +4 -4
  41. package/module/settings/interface/admin.routes.json +4 -4
  42. package/module/settings/interface/admin.users.json +4 -4
  43. package/module/settings/menu.json +50 -50
  44. package/module/settings/select/core.roles.json +2 -2
  45. package/module/settings/select/core.routes.sql +1 -1
  46. package/module/settings/select/core.user_uid.sql +1 -1
  47. package/module/settings/table/admin.access.table.json +77 -77
  48. package/module/settings/table/admin.custom_column.table.json +94 -94
  49. package/module/settings/table/admin.properties.table.json +33 -33
  50. package/module/settings/table/admin.roles.table.json +58 -58
  51. package/module/settings/table/admin.routes.table.json +67 -67
  52. package/module/settings/table/admin.user_properties.table.json +28 -28
  53. package/module/settings/table/admin.user_roles.table.json +66 -66
  54. package/module/settings/table/admin.users.table.json +119 -119
  55. package/package.json +81 -80
  56. package/plugin.js +100 -100
  57. package/server/helpers/controllers/badge.js +11 -11
  58. package/server/helpers/controllers/hb.js +2 -2
  59. package/server/helpers/controllers/map.js +2 -2
  60. package/server/helpers/controllers/mls.js +2 -2
  61. package/server/helpers/controllers/vue.js +2 -2
  62. package/server/helpers/index.mjs +13 -13
  63. package/server/plugins/adminHook.js +165 -165
  64. package/server/plugins/cron.js +10 -10
  65. package/server/plugins/docs.js +28 -28
  66. package/server/plugins/hook.js +152 -185
  67. package/server/plugins/vite.js +74 -69
  68. package/server/routes/calendar/controllers/calendar.data.js +88 -88
  69. package/server/routes/calendar/index.mjs +7 -17
  70. package/server/routes/calendar/schema.js +22 -0
  71. package/server/routes/data/controllers/cardData.js +57 -57
  72. package/server/routes/data/controllers/cardTabData.js +49 -49
  73. package/server/routes/data/controllers/funcs/getFilterSQL/index.js +92 -92
  74. package/server/routes/data/controllers/funcs/getFilterSQL/util/formatValue.js +170 -170
  75. package/server/routes/data/controllers/funcs/getFilterSQL/util/getCustomQuery.js +13 -13
  76. package/server/routes/data/controllers/funcs/getFilterSQL/util/getFilterQuery.js +64 -64
  77. package/server/routes/data/controllers/funcs/getFilterSQL/util/getOptimizedQuery.js +12 -12
  78. package/server/routes/data/controllers/funcs/getFilterSQL/util/getTableSql.js +34 -34
  79. package/server/routes/data/controllers/tableData.js +112 -112
  80. package/server/routes/data/controllers/tableDataId.js +27 -27
  81. package/server/routes/data/controllers/tableFilter.js +63 -63
  82. package/server/routes/data/controllers/utils/assignTokens.js +30 -30
  83. package/server/routes/data/controllers/utils/getColumns.js +8 -8
  84. package/server/routes/data/index.mjs +15 -15
  85. package/server/routes/data/schema.js +54 -7
  86. package/server/routes/menu/controllers/getMenu.js +51 -51
  87. package/server/routes/menu/index.mjs +5 -5
  88. package/server/routes/menu/schema.js +0 -0
  89. package/server/routes/notifications/controllers/readNotifications.js +30 -30
  90. package/server/routes/notifications/controllers/userNotifications.js +64 -64
  91. package/server/routes/notifications/hook/onWidgetSet.js +57 -57
  92. package/server/routes/notifications/index.mjs +15 -40
  93. package/server/routes/notifications/schema.js +11 -0
  94. package/server/routes/properties/controllers/admin.properties.get.js +29 -29
  95. package/server/routes/properties/controllers/user.properties.get.js +34 -34
  96. package/server/routes/properties/controllers/user.properties.post.js +30 -30
  97. package/server/routes/properties/funcs/getSettings.js +56 -56
  98. package/server/routes/properties/funcs/setSettings.js +44 -44
  99. package/server/routes/properties/funcs/utils/dataInsert.js +26 -26
  100. package/server/routes/properties/index.mjs +14 -26
  101. package/server/routes/properties/schema.js +11 -0
  102. package/server/routes/root.mjs +3 -3
  103. package/server/routes/templates/controllers/getTemplate.js +22 -22
  104. package/server/routes/templates/index.mjs +14 -14
  105. package/server/routes/templates/scheme.js +9 -0
  106. package/server/templates/cls/itree.recrzone_category.json +73 -73
  107. package/server/templates/cls/test.json +9 -9
  108. package/server/templates/form/admin.user_cls.data.form.json +49 -49
  109. package/server/templates/form/admin.user_group_rel.form.json +21 -21
  110. package/server/templates/form/cp_building.form.json +32 -32
  111. package/server/templates/form/form-user-pass.json +10 -10
  112. package/server/templates/form/form-user_group.json +39 -39
  113. package/server/templates/form/form-users.json +156 -156
  114. package/server/templates/form/user_group_access.form.json +22 -22
  115. package/server/templates/select/account_id.json +2 -2
  116. package/server/templates/table/gis.dataset.table.json +43 -43
  117. package/server/templates/table/management.user_group.table.json +112 -112
  118. package/server/templates/table/management.users.table.json +126 -126
  119. package/utils.js +21 -21
  120. package/dist/card-page-BH8lGOKk.js +0 -230
@@ -1,52 +1,52 @@
1
-
2
- import { join } from 'path';
3
- import { userTemplateDir, config, getAccess } from '@opengis/fastify-table/utils.js';
4
-
5
- import { existsSync, readdirSync, readFileSync } from 'fs';
6
- const menuCache = [];
7
- // check module dir
8
- const moduleDir = join(process.cwd(), 'module');
9
- const dirs = existsSync(moduleDir) ?
10
- readdirSync(moduleDir).map(el => join(moduleDir, el)) : [];
11
-
12
- // all menu files module + user
13
-
14
-
15
-
16
- const isProduction = process.env.NODE_ENV === 'production';
17
- // readMenu();
18
-
19
- async function readMenu() {
20
- const menuList = dirs.concat(userTemplateDir)
21
- .map(el => join(el, 'menu.json'))
22
- .filter(el => existsSync(el))
23
- // const list = menuList.map(el => readFileSync(el, 'utf-8')); // sync
24
- const list = await Promise.all(menuList.map(el => readFileSync(el, 'utf-8'))); // sync
25
- const menus = list.reduce((p, el) => p.concat(JSON.parse(el)), [])
26
- .map(el => ({ order: 0, ...el }))
27
- .sort((a, b) => (a.order > b.order) ? 1 : ((b.order > a.order) ? -1 : 0))
28
-
29
- if (!menuCache.length) menus.forEach(el => menuCache.push(el))
30
- return menus;
31
- }
32
- export default async function adminMenu(req) {
33
- const menus = isProduction && menuCache.length ? menuCache : await readMenu();
34
- if (req) {
35
- const user = req?.session?.passport?.user || {};
36
- const userMenu = await Promise.all(menus.map(async (menu) => {
37
- if (menu?.menu?.length) {
38
- const submenu = await Promise.all(menu.menu?.map(async (submenu) => {
39
- const access = await getAccess({ table: submenu?.table, user });
40
- return { ...submenu, access };
41
- }));
42
- return { ...menu, menu: submenu.filter((e) => e?.access), access: submenu.filter((e) => e?.access?.actions?.includes('get'))?.length };
43
- } else if (menu?.table) {
44
- const access = await getAccess({ table: menu?.table, user });
45
- return { ...menu, access };
46
- }
47
- return menu;
48
- }));
49
- return userMenu.filter((e) => e?.access)?.map((e) => ({ ...e, menu: e?.menu ? e?.menu?.filter((el) => el?.access?.actions?.includes('get')) : undefined }));
50
- }
51
- return menus;
1
+
2
+ import { join } from 'path';
3
+ import { userTemplateDir, config, getAccess } from '@opengis/fastify-table/utils.js';
4
+
5
+ import { existsSync, readdirSync, readFileSync } from 'fs';
6
+ const menuCache = [];
7
+ // check module dir
8
+ const moduleDir = join(process.cwd(), 'module');
9
+ const dirs = existsSync(moduleDir) ?
10
+ readdirSync(moduleDir).map(el => join(moduleDir, el)) : [];
11
+
12
+ // all menu files module + user
13
+
14
+
15
+
16
+ const isProduction = process.env.NODE_ENV === 'production';
17
+ // readMenu();
18
+
19
+ async function readMenu() {
20
+ const menuList = dirs.concat(userTemplateDir)
21
+ .map(el => join(el, 'menu.json'))
22
+ .filter(el => existsSync(el))
23
+ // const list = menuList.map(el => readFileSync(el, 'utf-8')); // sync
24
+ const list = await Promise.all(menuList.map(el => readFileSync(el, 'utf-8'))); // sync
25
+ const menus = list.reduce((p, el) => p.concat(JSON.parse(el)), [])
26
+ .map(el => ({ order: 0, ...el }))
27
+ .sort((a, b) => (a.order > b.order) ? 1 : ((b.order > a.order) ? -1 : 0))
28
+
29
+ if (!menuCache.length) menus.forEach(el => menuCache.push(el))
30
+ return menus;
31
+ }
32
+ export default async function adminMenu(req) {
33
+ const menus = isProduction && menuCache.length ? menuCache : await readMenu();
34
+ if (req) {
35
+ const user = req?.session?.passport?.user || {};
36
+ const userMenu = await Promise.all(menus.map(async (menu) => {
37
+ if (menu?.menu?.length) {
38
+ const submenu = await Promise.all(menu.menu?.map(async (submenu) => {
39
+ const access = await getAccess({ table: submenu?.table, user });
40
+ return { ...submenu, access };
41
+ }));
42
+ return { ...menu, menu: submenu.filter((e) => e?.access), access: submenu.filter((e) => e?.access?.actions?.includes('get'))?.length };
43
+ } else if (menu?.table) {
44
+ const access = await getAccess({ table: menu?.table, user });
45
+ return { ...menu, access };
46
+ }
47
+ return menu;
48
+ }));
49
+ return userMenu.filter((e) => e?.access)?.map((e) => ({ ...e, menu: e?.menu ? e?.menu?.filter((el) => el?.access?.actions?.includes('get')) : undefined }));
50
+ }
51
+ return menus;
52
52
  }
@@ -1,5 +1,5 @@
1
- import getMenu from './controllers/getMenu.js';
2
-
3
- export default async function (fastify, opts) {
4
- fastify.get(`/user-menu`, getMenu);
5
- }
1
+ import getMenu from './controllers/getMenu.js';
2
+
3
+ export default async function (fastify, opts) {
4
+ fastify.get(`/user-menu`, getMenu);
5
+ }
File without changes
@@ -1,30 +1,30 @@
1
- export default async function readNotifications({
2
- pg, params = {}, query = {}, session = {},
3
- }) {
4
- const { uid } = session.passport?.user || {};
5
-
6
- if (!uid) {
7
- return { message: 'access restricted', status: 403 };
8
- }
9
-
10
- try {
11
- const { userId } = await pg.query('select uid as "userId" from admin.users where $1 in (uid,login) limit 1', [uid])
12
- .then((res) => res.rows?.[0] || {});
13
-
14
- if (!userId) {
15
- return { message: 'access restricted: 2', status: 403 };
16
- }
17
-
18
- const q = `update crm.notifications set read=true where read is not true
19
- and ${params?.id ? 'notification_id=$2' : '1=1'} and addressee_id=$1`;
20
-
21
- if (query.sql) return q;
22
-
23
- const { rowCount = 0 } = await pg.query(q, [userId, params?.id].filter((el) => el));
24
-
25
- return { message: `${rowCount} unread notifications marked as read`, status: 200 };
26
- }
27
- catch (err) {
28
- return { error: err.toString(), status: 500 };
29
- }
30
- }
1
+ export default async function readNotifications({
2
+ pg, params = {}, query = {}, session = {},
3
+ }) {
4
+ const { uid } = session.passport?.user || {};
5
+
6
+ if (!uid) {
7
+ return { message: 'access restricted', status: 403 };
8
+ }
9
+
10
+ try {
11
+ const { userId } = await pg.query('select uid as "userId" from admin.users where $1 in (uid,login) limit 1', [uid])
12
+ .then((res) => res.rows?.[0] || {});
13
+
14
+ if (!userId) {
15
+ return { message: 'access restricted: 2', status: 403 };
16
+ }
17
+
18
+ const q = `update crm.notifications set read=true where read is not true
19
+ and ${params?.id ? 'notification_id=$2' : '1=1'} and addressee_id=$1`;
20
+
21
+ if (query.sql) return q;
22
+
23
+ const { rowCount = 0 } = await pg.query(q, [userId, params?.id].filter((el) => el));
24
+
25
+ return { message: `${rowCount} unread notifications marked as read`, status: 200 };
26
+ }
27
+ catch (err) {
28
+ return { error: err.toString(), status: 500 };
29
+ }
30
+ }
@@ -1,64 +1,64 @@
1
- // for example only
2
- /*
3
- const res = await funcs.dataInsert({
4
- pg,
5
- table: 'crm.notifications',
6
- data: {
7
- subject: 'notif title',
8
- body: 'notif body',
9
- link: 'http://localhost:3000/api/notification',
10
- addressee_id: userId,
11
- author_id: userId,
12
- },
13
- });
14
- */
15
-
16
- import { getSelectVal } from '@opengis/fastify-table/utils.js';
17
-
18
- const maxLimit = 100;
19
-
20
- export default async function userNotifications({
21
- pg, query = {}, session = {},
22
- }) {
23
- const time = Date.now();
24
-
25
- const { uid } = session.passport?.user || {};
26
-
27
- if (!uid) {
28
- return { message: 'access restricted', status: 403 };
29
- }
30
-
31
- const limit = Math.min(maxLimit, +(query.limit || 5));
32
- const offset = query.page && query.page > 0 ? (query.page - 1) * limit : 0;
33
-
34
- try {
35
- const { userId } = await pg.query('select uid as "userId" from admin.users where $1 in (uid,login) limit 1', [uid])
36
- .then((res) => res.rows?.[0] || {});
37
-
38
- if (!userId) {
39
- return { message: 'access restricted: 2', status: 403 };
40
- }
41
-
42
- const q = `select notification_id as id, subject, body, cdate,
43
- author_id, read, link, entity_id, (select avatar from admin.users where uid=a.author_id limit 1) as avatar from crm.notifications a where addressee_id=$1 order by cdate desc limit ${limit} offset ${offset}`;
44
-
45
- if (query.sql) return q;
46
-
47
- const { rows = [] } = await pg.query(q, [userId]);
48
-
49
- const values = rows.map((el) => el.author_id)
50
- ?.filter((el, idx, arr) => el && arr.indexOf(el) === idx);
51
-
52
- if (values?.length) {
53
- const vals = await getSelectVal({ name: 'core.user_mentioned', values });
54
- rows.forEach((row) => {
55
- Object.assign(row, { author: vals?.[row.author_id] });
56
- });
57
- }
58
-
59
- return { time: Date.now() - time, total: rows?.length, rows };
60
- }
61
- catch (err) {
62
- return { error: err.toString(), status: 500 };
63
- }
64
- }
1
+ // for example only
2
+ /*
3
+ const res = await funcs.dataInsert({
4
+ pg,
5
+ table: 'crm.notifications',
6
+ data: {
7
+ subject: 'notif title',
8
+ body: 'notif body',
9
+ link: 'http://localhost:3000/api/notification',
10
+ addressee_id: userId,
11
+ author_id: userId,
12
+ },
13
+ });
14
+ */
15
+
16
+ import { getSelectVal } from '@opengis/fastify-table/utils.js';
17
+
18
+ const maxLimit = 100;
19
+
20
+ export default async function userNotifications({
21
+ pg, query = {}, session = {},
22
+ }) {
23
+ const time = Date.now();
24
+
25
+ const { uid } = session.passport?.user || {};
26
+
27
+ if (!uid) {
28
+ return { message: 'access restricted', status: 403 };
29
+ }
30
+
31
+ const limit = Math.min(maxLimit, +(query.limit || 5));
32
+ const offset = query.page && query.page > 0 ? (query.page - 1) * limit : 0;
33
+
34
+ try {
35
+ const { userId } = await pg.query('select uid as "userId" from admin.users where $1 in (uid,login) limit 1', [uid])
36
+ .then((res) => res.rows?.[0] || {});
37
+
38
+ if (!userId) {
39
+ return { message: 'access restricted: 2', status: 403 };
40
+ }
41
+
42
+ const q = `select notification_id as id, subject, body, cdate,
43
+ author_id, read, link, entity_id, (select avatar from admin.users where uid=a.author_id limit 1) as avatar from crm.notifications a where addressee_id=$1 order by cdate desc limit ${limit} offset ${offset}`;
44
+
45
+ if (query.sql) return q;
46
+
47
+ const { rows = [] } = await pg.query(q, [userId]);
48
+
49
+ const values = rows.map((el) => el.author_id)
50
+ ?.filter((el, idx, arr) => el && arr.indexOf(el) === idx);
51
+
52
+ if (values?.length) {
53
+ const vals = await getSelectVal({ name: 'core.user_mentioned', values });
54
+ rows.forEach((row) => {
55
+ Object.assign(row, { author: vals?.[row.author_id] });
56
+ });
57
+ }
58
+
59
+ return { time: Date.now() - time, total: rows?.length, rows };
60
+ }
61
+ catch (err) {
62
+ return { error: err.toString(), status: 500 };
63
+ }
64
+ }
@@ -1,57 +1,57 @@
1
- /* eslint-disable camelcase */
2
- import {
3
- getSelect, addNotification, sendNotification, config,
4
- } from '@opengis/fastify-table/utils.js';
5
-
6
- function sequence(arr, data, fn) {
7
- return arr.reduce((promise, row) => promise.then(() => fn({
8
- ...data, ...row,
9
- })), Promise.resolve());
10
- }
11
-
12
- export default async function onWidgetSet({ link, session, log, type, payload: data = {} }) {
13
- const values = data.body?.match(/\B@[a-zA-z0-9а-яА-яіїІЇєЄ]+ [a-zA-z0-9а-яА-яіїІЇєЄ]+/g)
14
- ?.filter((el, idx, arr) => el?.replace && arr.indexOf(el) === idx)
15
- ?.map((el) => el.replace(/@/g, ''));
16
-
17
- if (type !== 'comment' || !values?.length) {
18
- return null;
19
- }
20
-
21
- const { sql } = await getSelect('core.user_mentioned');
22
-
23
- const { rows = [] } = await pg.query(`with data (id,name,email) as (${sql})
24
- select id, name, email from data where name = any($1)`, [values]);
25
-
26
- if (!rows?.length) {
27
- return null;
28
- }
29
-
30
- const message = `${data.body?.substring(0, 50)}...`;
31
- const subject = 'You were mentioned';
32
-
33
- await sequence(rows, {}, async ({ id, name, email }) => {
34
- const res = await addNotification({
35
- pg, session, subject, entity: data.entity_id, body: message, link, uid: id,
36
- });
37
- try {
38
- const res1 = await sendNotification({
39
- pg,
40
- log,
41
- to: email,
42
- // template,
43
- message,
44
- title: subject,
45
- data,
46
- nocache: 1,
47
- });
48
- if (config.local) console.info('comment notification', name, id, email, res1);
49
- await pg.query('update crm.notifications set sent=true where notification_id=$1', [res?.notification_id]);
50
- }
51
- catch (err) {
52
- console.error('comment notification send error', err.toString());
53
- }
54
- });
55
- console.log('comment notification add', rows);
56
- return null;
57
- }
1
+ /* eslint-disable camelcase */
2
+ import {
3
+ getSelect, addNotification, sendNotification, config,
4
+ } from '@opengis/fastify-table/utils.js';
5
+
6
+ function sequence(arr, data, fn) {
7
+ return arr.reduce((promise, row) => promise.then(() => fn({
8
+ ...data, ...row,
9
+ })), Promise.resolve());
10
+ }
11
+
12
+ export default async function onWidgetSet({ link, session, log, type, payload: data = {} }) {
13
+ const values = data.body?.match(/\B@[a-zA-z0-9а-яА-яіїІЇєЄ]+ [a-zA-z0-9а-яА-яіїІЇєЄ]+/g)
14
+ ?.filter((el, idx, arr) => el?.replace && arr.indexOf(el) === idx)
15
+ ?.map((el) => el.replace(/@/g, ''));
16
+
17
+ if (type !== 'comment' || !values?.length) {
18
+ return null;
19
+ }
20
+
21
+ const { sql } = await getSelect('core.user_mentioned');
22
+
23
+ const { rows = [] } = await pg.query(`with data (id,name,email) as (${sql})
24
+ select id, name, email from data where name = any($1)`, [values]);
25
+
26
+ if (!rows?.length) {
27
+ return null;
28
+ }
29
+
30
+ const message = `${data.body?.substring(0, 50)}...`;
31
+ const subject = 'You were mentioned';
32
+
33
+ await sequence(rows, {}, async ({ id, name, email }) => {
34
+ const res = await addNotification({
35
+ pg, session, subject, entity: data.entity_id, body: message, link, uid: id,
36
+ });
37
+ try {
38
+ const res1 = await sendNotification({
39
+ pg,
40
+ log,
41
+ to: email,
42
+ // template,
43
+ message,
44
+ title: subject,
45
+ data,
46
+ nocache: 1,
47
+ });
48
+ if (config.local) console.info('comment notification', name, id, email, res1);
49
+ await pg.query('update crm.notifications set sent=true where notification_id=$1', [res?.notification_id]);
50
+ }
51
+ catch (err) {
52
+ console.error('comment notification send error', err.toString());
53
+ }
54
+ });
55
+ console.log('comment notification add', rows);
56
+ return null;
57
+ }
@@ -1,40 +1,15 @@
1
- import { addHook } from '@opengis/fastify-table/utils.js';
2
-
3
- // api
4
- import readNotifications from './controllers/readNotifications.js'; // mark as read
5
- import userNotifications from './controllers/userNotifications.js'; // check all, backend pagination
6
- // hook
7
- import onWidgetSet from './hook/onWidgetSet.js'; // send notification on comment
8
-
9
-
10
- const tableSchema = {
11
- params: {
12
- id: { type: 'string' },
13
- },
14
- querystring: {
15
- nocache: { type: 'string', pattern: '^(\\d+)$' },
16
- },
17
- };
18
-
19
- export default async function plugin(fastify, config = {}) {
20
- const prefix = config.prefix || '/api';
21
- fastify.route({
22
- method: 'GET',
23
- url: '/notification',
24
- config: {
25
- policy: ['user'],
26
- },
27
- schema: tableSchema,
28
- handler: userNotifications,
29
- });
30
- fastify.route({
31
- method: 'GET',
32
- url: '/notification-read/:id?',
33
- config: {
34
- policy: ['user'],
35
- },
36
- schema: tableSchema,
37
- handler: readNotifications,
38
- });
39
- addHook('onWidgetSet', onWidgetSet);
40
- }
1
+ import { addHook } from '@opengis/fastify-table/utils.js';
2
+
3
+ // api
4
+ import readNotifications from './controllers/readNotifications.js'; // mark as read
5
+ import userNotifications from './controllers/userNotifications.js'; // check all, backend pagination
6
+ // hook
7
+ import onWidgetSet from './hook/onWidgetSet.js'; // send notification on comment
8
+
9
+ import { notificationSchema } from './schema.js';
10
+
11
+ export default async function route(fastify) {
12
+ fastify.get(`/notification`, { config: { policy: ['user'] }, schema: notificationSchema }, userNotifications);
13
+ fastify.get(`/notification-read/:id?`, { config: { policy: ['user'] }, schema: notificationSchema }, readNotifications);
14
+ addHook('onWidgetSet', onWidgetSet);
15
+ }
@@ -0,0 +1,11 @@
1
+ const notificationSchema = {
2
+ params: {
3
+ id: { type: 'string', pattern: '^([\\d\\w]+)$' },
4
+ },
5
+ querystring: {
6
+ nocache: { type: 'string', pattern: '^(\\d+)$' },
7
+ },
8
+ };
9
+
10
+ export default null;
11
+ export { notificationSchema }
@@ -1,29 +1,29 @@
1
- const table = 'admin.properties';
2
-
3
- import { getRedis } from '@opengis/fastify-table/utils.js';
4
-
5
- import { getSettings } from '../../../../utils.js';
6
-
7
- export default async function getSettingsAPI({
8
- pg = {}, funcs = {}, params = {}, query = {},
9
- }) {
10
- if (!pg.pk?.[table]) {
11
- return { message: 'table not found', status: 404 };
12
- }
13
-
14
- const redis = getRedis();
15
- const keyCache = `${pg.options?.database}:settings:${params?.key || 'all'}:${query?.json ? 'json' : 'plain'}:${table}`;
16
-
17
- const cache = await redis.get(keyCache);
18
- if (cache && !funcs.config?.local) return JSON.parse(cache);
19
-
20
- try {
21
- const res = await getSettings({
22
- pg, key: params.key, json: query.json, redis, table,
23
- });
24
- return { message: res, status: 200 };
25
- }
26
- catch (err) {
27
- return { error: err.toString(), status: 500 };
28
- }
29
- }
1
+ const table = 'admin.properties';
2
+
3
+ import { getRedis } from '@opengis/fastify-table/utils.js';
4
+
5
+ import { getSettings } from '../../../../utils.js';
6
+
7
+ export default async function getSettingsAPI({
8
+ pg = {}, funcs = {}, params = {}, query = {},
9
+ }) {
10
+ if (!pg.pk?.[table]) {
11
+ return { message: 'table not found', status: 404 };
12
+ }
13
+
14
+ const redis = getRedis();
15
+ const keyCache = `${pg.options?.database}:settings:${params?.key || 'all'}:${query?.json ? 'json' : 'plain'}:${table}`;
16
+
17
+ const cache = await redis.get(keyCache);
18
+ if (cache && !funcs.config?.local) return JSON.parse(cache);
19
+
20
+ try {
21
+ const res = await getSettings({
22
+ pg, key: params.key, json: query.json, redis, table,
23
+ });
24
+ return { message: res, status: 200 };
25
+ }
26
+ catch (err) {
27
+ return { error: err.toString(), status: 500 };
28
+ }
29
+ }
@@ -1,34 +1,34 @@
1
- const table = 'admin.user_properties';
2
-
3
- import { getRedis } from '@opengis/fastify-table/utils.js';
4
-
5
- import { getSettings } from '../../../../utils.js';
6
-
7
- export default async function getUserProperties({
8
- pg = {}, params = {}, query = {}, session = {},
9
- }) {
10
- const { uid } = session.passport?.user || {};
11
- if (!uid) {
12
- return { message: 'access restreicted', status: 403 };
13
- }
14
-
15
- if (!pg.pk?.[table]) {
16
- return { message: 'table not found', status: 404 };
17
- }
18
-
19
- const redis = getRedis();
20
- const keyCache = `${pg.options?.database}:settings:${params?.key || 'all'}:${query?.json ? 'json' : 'plain'}:user`;
21
-
22
- const cache = await redis.get(keyCache);
23
- if (cache) return JSON.parse(cache);
24
-
25
- try {
26
- const res = await getSettings({
27
- pg, key: params.key, json: query.json, redis, table, uid,
28
- });
29
- return { message: res, status: 200 };
30
- }
31
- catch (err) {
32
- return { error: err.toString(), status: 500 };
33
- }
34
- }
1
+ const table = 'admin.user_properties';
2
+
3
+ import { getRedis } from '@opengis/fastify-table/utils.js';
4
+
5
+ import { getSettings } from '../../../../utils.js';
6
+
7
+ export default async function getUserProperties({
8
+ pg = {}, params = {}, query = {}, session = {},
9
+ }) {
10
+ const { uid } = session.passport?.user || {};
11
+ if (!uid) {
12
+ return { message: 'access restreicted', status: 403 };
13
+ }
14
+
15
+ if (!pg.pk?.[table]) {
16
+ return { message: 'table not found', status: 404 };
17
+ }
18
+
19
+ const redis = getRedis();
20
+ const keyCache = `${pg.options?.database}:settings:${params?.key || 'all'}:${query?.json ? 'json' : 'plain'}:user`;
21
+
22
+ const cache = await redis.get(keyCache);
23
+ if (cache) return JSON.parse(cache);
24
+
25
+ try {
26
+ const res = await getSettings({
27
+ pg, key: params.key, json: query.json, redis, table, uid,
28
+ });
29
+ return { message: res, status: 200 };
30
+ }
31
+ catch (err) {
32
+ return { error: err.toString(), status: 500 };
33
+ }
34
+ }