@opengis/fastify-table 1.0.97 → 1.1.0

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 (59) hide show
  1. package/.eslintrc.cjs +42 -42
  2. package/README.md +26 -26
  3. package/config.js +10 -10
  4. package/cron/controllers/cronApi.js +22 -22
  5. package/cron/controllers/utils/cronList.js +1 -1
  6. package/cron/funcs/addCron.js +131 -131
  7. package/cron/index.js +10 -10
  8. package/crud/controllers/utils/checkXSS.js +45 -45
  9. package/crud/controllers/utils/xssInjection.js +72 -72
  10. package/crud/funcs/dataUpdate.js +30 -30
  11. package/crud/funcs/getToken.js +27 -27
  12. package/crud/funcs/isFileExists.js +13 -13
  13. package/crud/funcs/setToken.js +53 -53
  14. package/crud/funcs/utils/logChanges.js +7 -4
  15. package/notification/controllers/testEmail.js +49 -49
  16. package/notification/funcs/utils/sendEmail.js +39 -39
  17. package/notification/index.js +38 -38
  18. package/package.json +1 -1
  19. package/pg/funcs/getPG.js +30 -30
  20. package/redis/funcs/getRedis.js +23 -23
  21. package/server/migrations/crm.sql +150 -150
  22. package/server/migrations/log.sql +80 -80
  23. package/server/templates/select/test.storage.data.json +3 -3
  24. package/server/templates/select/test.suggest.ato_new.json +2 -2
  25. package/server/templates/select/test.suggest.ato_new.sql +25 -25
  26. package/server/templates/select/test.suggest.data.json +4 -4
  27. package/server/templates/select/test.suggest.parent.sql +2 -2
  28. package/server.js +14 -14
  29. package/table/controllers/card.js +44 -44
  30. package/table/controllers/filter.js +37 -37
  31. package/table/controllers/form.js +28 -28
  32. package/table/controllers/search.js +80 -72
  33. package/table/controllers/utils/getSelect.js +20 -20
  34. package/table/controllers/utils/getTemplate.js +69 -28
  35. package/table/controllers/utils/getTemplatePath.js +40 -0
  36. package/table/controllers/utils/getTemplate_old.js +28 -0
  37. package/table/controllers/utils/getTemplates.js +18 -18
  38. package/table/controllers/utils/loadTemplate.js +1 -0
  39. package/table/controllers/utils/loadTemplatePath.js +1 -0
  40. package/table/index.js +84 -80
  41. package/test/api/crud.xss.test.js +72 -72
  42. package/test/api/notification.test.js +37 -37
  43. package/test/api/suggest.test.js +65 -65
  44. package/test/config.example +18 -18
  45. package/test/funcs/notification.test.js +31 -31
  46. package/test/funcs/pg.test.js +34 -34
  47. package/test/funcs/redis.test.js +19 -19
  48. package/test/templates/cls/test.json +9 -9
  49. package/test/templates/form/cp_building.form.json +32 -32
  50. package/test/templates/select/account_id.json +3 -3
  51. package/test/templates/select/storage.data.json +2 -2
  52. package/test/templates/table/gis.dataset.table.json +20 -20
  53. package/util/controllers/logger.file.js +90 -90
  54. package/util/controllers/next.id.js +4 -4
  55. package/util/controllers/properties.get.js +19 -19
  56. package/util/controllers/utils/checkUserAccess.js +19 -19
  57. package/util/controllers/utils/getRootDir.js +20 -20
  58. package/util/index.js +23 -23
  59. package/utils.js +8 -0
@@ -1,72 +1,72 @@
1
- const xssInjection = [
2
- 'onkeypress=',
3
- 'onkeyup=',
4
- 'ondblclick=',
5
- 'onerror=',
6
- 'onmouseover=',
7
- '<meta',
8
- '<script',
9
- 'vascript:',
10
- 'onkeydown=',
11
- 'onmousedown=',
12
- 'onmouseenter=',
13
- 'onmouseleave=',
14
- 'onmousemove=',
15
- 'onmouseout=',
16
- 'onmouseup=',
17
- 'onmousewheel=',
18
- 'onpaste=',
19
- 'onscroll=',
20
- 'onwheel=',
21
- 'javascript:',
22
- '\\x',
23
- 'eval(',
24
- 'onmouseover=',
25
- 'action=',
26
- 'xlink:',
27
- 'allowscriptaccess',
28
- 'href=',
29
- 'behavior:',
30
- 'onreadystatechange=',
31
- 'onstart=',
32
- 'offline=',
33
- 'onabort=',
34
- 'onafterprint=',
35
- 'onbeforeonload=',
36
- 'onbeforeprint=',
37
- 'onblur=',
38
- 'oncanplay=',
39
- 'oncanplaythrough=',
40
- 'onchange=',
41
- 'onclick=',
42
- 'oncontextmenu=',
43
- 'ondblclick=',
44
- 'ondrag=',
45
- 'ondragend=',
46
- 'ondragenter=',
47
- 'ondragleave=',
48
- 'ondragover=',
49
- 'ondragstart=',
50
- 'ondrop=',
51
- 'ondurationchange=',
52
- 'onemptied=',
53
- 'onended=',
54
- 'onerror=',
55
- 'onfocus=',
56
- 'onformchange=',
57
- 'onforminput=',
58
- 'onhaschange=',
59
- 'oninput=',
60
- 'oninvalid=',
61
- 'onkeydown=',
62
- 'onkeypress=',
63
- 'onkeyup=',
64
- 'onload=',
65
- 'onloadeddata=',
66
- 'onloadedmetadata=',
67
- 'onloadstart=',
68
- 'alert(',
69
- 'script:',
70
- ];
71
-
72
- export default xssInjection;
1
+ const xssInjection = [
2
+ 'onkeypress=',
3
+ 'onkeyup=',
4
+ 'ondblclick=',
5
+ 'onerror=',
6
+ 'onmouseover=',
7
+ '<meta',
8
+ '<script',
9
+ 'vascript:',
10
+ 'onkeydown=',
11
+ 'onmousedown=',
12
+ 'onmouseenter=',
13
+ 'onmouseleave=',
14
+ 'onmousemove=',
15
+ 'onmouseout=',
16
+ 'onmouseup=',
17
+ 'onmousewheel=',
18
+ 'onpaste=',
19
+ 'onscroll=',
20
+ 'onwheel=',
21
+ 'javascript:',
22
+ '\\x',
23
+ 'eval(',
24
+ 'onmouseover=',
25
+ 'action=',
26
+ 'xlink:',
27
+ 'allowscriptaccess',
28
+ 'href=',
29
+ 'behavior:',
30
+ 'onreadystatechange=',
31
+ 'onstart=',
32
+ 'offline=',
33
+ 'onabort=',
34
+ 'onafterprint=',
35
+ 'onbeforeonload=',
36
+ 'onbeforeprint=',
37
+ 'onblur=',
38
+ 'oncanplay=',
39
+ 'oncanplaythrough=',
40
+ 'onchange=',
41
+ 'onclick=',
42
+ 'oncontextmenu=',
43
+ 'ondblclick=',
44
+ 'ondrag=',
45
+ 'ondragend=',
46
+ 'ondragenter=',
47
+ 'ondragleave=',
48
+ 'ondragover=',
49
+ 'ondragstart=',
50
+ 'ondrop=',
51
+ 'ondurationchange=',
52
+ 'onemptied=',
53
+ 'onended=',
54
+ 'onerror=',
55
+ 'onfocus=',
56
+ 'onformchange=',
57
+ 'onforminput=',
58
+ 'onhaschange=',
59
+ 'oninput=',
60
+ 'oninvalid=',
61
+ 'onkeydown=',
62
+ 'onkeypress=',
63
+ 'onkeyup=',
64
+ 'onload=',
65
+ 'onloadeddata=',
66
+ 'onloadedmetadata=',
67
+ 'onloadstart=',
68
+ 'alert(',
69
+ 'script:',
70
+ ];
71
+
72
+ export default xssInjection;
@@ -1,30 +1,30 @@
1
- import getPG from '../../pg/funcs/getPG.js';
2
-
3
- import getMeta from '../../pg/funcs/getMeta.js';
4
- import logChanges from './utils/logChanges.js';
5
-
6
- export default async function dataUpdate({
7
- table, id, data, pg: pg1, uid,
8
- }) {
9
- if (!data || !table || !id) return null;
10
-
11
- const pg = pg1 || getPG({ name: 'client' });
12
- const { columns, pk } = await getMeta(table);
13
-
14
- const names = columns?.map((el) => el.name);
15
- const filterData = Object.keys(data)
16
- .filter((el) => (/* typeof data[el] === 'boolean' ? true : data[el] && */ names?.includes(el)));
17
-
18
- const filterValue = filterData.map((el) => [el, data[el]]).map((el) => (typeof el[1] === 'object' && el[1] && (!Array.isArray(el[1]) || typeof el[1]?.[0] === 'object') ? JSON.stringify(el[1]) : el[1]));
19
-
20
- const updateQuery = `UPDATE ${table} SET ${filterData?.map((key, i) => (key === 'geom' ? `"${key}"=st_setsrid(st_geomfromgeojson($${i + 2}::json),4326)` : `"${key}"=$${i + 2}`)).join(',')}
21
- WHERE ${pk} = $1 returning *`;
22
- // console.log(updateQuery, filterValue);
23
- const res = await pg.query(updateQuery, [id, ...filterValue]).then(el => el?.rows?.[0]) || {};
24
-
25
- await logChanges({
26
- pg, table, data, id, uid, type: 'UPDATE',
27
- });
28
-
29
- return res;
30
- }
1
+ import getPG from '../../pg/funcs/getPG.js';
2
+
3
+ import getMeta from '../../pg/funcs/getMeta.js';
4
+ import logChanges from './utils/logChanges.js';
5
+
6
+ export default async function dataUpdate({
7
+ table, id, data, pg: pg1, uid,
8
+ }) {
9
+ if (!data || !table || !id) return null;
10
+
11
+ const pg = pg1 || getPG({ name: 'client' });
12
+ const { columns, pk } = await getMeta(table);
13
+
14
+ const names = columns?.map((el) => el.name);
15
+ const filterData = Object.keys(data)
16
+ .filter((el) => (/* typeof data[el] === 'boolean' ? true : data[el] && */ names?.includes(el)));
17
+
18
+ const filterValue = filterData.map((el) => [el, data[el]]).map((el) => (typeof el[1] === 'object' && el[1] && (!Array.isArray(el[1]) || typeof el[1]?.[0] === 'object') ? JSON.stringify(el[1]) : el[1]));
19
+
20
+ const updateQuery = `UPDATE ${table} SET ${filterData?.map((key, i) => (key === 'geom' ? `"${key}"=st_setsrid(st_geomfromgeojson($${i + 2}::json),4326)` : `"${key}"=$${i + 2}`)).join(',')}
21
+ WHERE ${pk} = $1 returning *`;
22
+ // console.log(updateQuery, filterValue);
23
+ const res = await pg.query(updateQuery, [id, ...filterValue]).then(el => el?.rows?.[0]) || {};
24
+
25
+ await logChanges({
26
+ pg, table, data, id, uid, type: 'UPDATE',
27
+ });
28
+
29
+ return res;
30
+ }
@@ -1,27 +1,27 @@
1
- import getRedis from '../../redis/funcs/getRedis.js';
2
- import config from '../../config.js';
3
-
4
- function sprintf(str, ...args) {
5
- return str.replace(/%s/g, () => args.shift());
6
- }
7
-
8
- const keys = {
9
- r: '%s:token:view:%s',
10
- a: '%s:token:add:%s',
11
- w: '%s:token:edit:%s',
12
- e: '%s:token:exec:%s',
13
- };
14
-
15
- async function getToken({
16
- uid, token, mode = 'r', json,
17
- }) {
18
- if (mode === 'r') return token;
19
-
20
- const rclient = getRedis({ db: 0 });
21
-
22
- const key = sprintf(keys[mode], config?.pg?.database, uid?.toString());
23
- const id = await rclient.hget(key, token);
24
- return json && id?.[0] === '{' ? JSON.parse(id) : id;
25
- }
26
-
27
- export default getToken;
1
+ import getRedis from '../../redis/funcs/getRedis.js';
2
+ import config from '../../config.js';
3
+
4
+ function sprintf(str, ...args) {
5
+ return str.replace(/%s/g, () => args.shift());
6
+ }
7
+
8
+ const keys = {
9
+ r: '%s:token:view:%s',
10
+ a: '%s:token:add:%s',
11
+ w: '%s:token:edit:%s',
12
+ e: '%s:token:exec:%s',
13
+ };
14
+
15
+ async function getToken({
16
+ uid, token, mode = 'r', json,
17
+ }) {
18
+ if (mode === 'r') return token;
19
+
20
+ const rclient = getRedis({ db: 0 });
21
+
22
+ const key = sprintf(keys[mode], config?.pg?.database, uid?.toString());
23
+ const id = await rclient.hget(key, token);
24
+ return json && id?.[0] === '{' ? JSON.parse(id) : id;
25
+ }
26
+
27
+ export default getToken;
@@ -1,13 +1,13 @@
1
- import { access } from 'fs/promises';
2
-
3
- const isFileExists = async (filepath) => {
4
- try {
5
- await access(filepath);
6
- return true;
7
- }
8
- catch (err) {
9
- return false;
10
- }
11
- };
12
-
13
- export default isFileExists;
1
+ import { access } from 'fs/promises';
2
+
3
+ const isFileExists = async (filepath) => {
4
+ try {
5
+ await access(filepath);
6
+ return true;
7
+ }
8
+ catch (err) {
9
+ return false;
10
+ }
11
+ };
12
+
13
+ export default isFileExists;
@@ -1,53 +1,53 @@
1
- import { createHash, randomUUID } from 'crypto';
2
-
3
- import config from '../../config.js';
4
- import getRedis from '../../redis/funcs/getRedis.js';
5
-
6
- const generateCodes = (ids, userToken) => {
7
- const token = userToken || randomUUID();
8
- const notNullIds = ids.filter((el) => el);
9
- const obj = {};
10
- const codes = notNullIds.reduce((acc, id) => {
11
- const newToken = createHash('sha1').update(token + id).digest('base64url').replace(/-/g, '');
12
- acc[newToken] = id; obj[id] = newToken;
13
- return acc;
14
- }, {});
15
- return { codes, obj };
16
- };
17
-
18
- function setToken({
19
- ids: idsOrigin, mode = 'r', uid, referer, array,
20
- }) {
21
- const rclient2 = getRedis({ db: 0 });
22
- // const rclient5 = getRedis({ db: 0, funcs });
23
-
24
- if (!uid) return { user: 'empty' };
25
- if (!Object.keys(idsOrigin).length) return { ids: 'empty' };
26
-
27
- const ids = idsOrigin.map((el) => (typeof el === 'object' ? JSON.stringify(el) : el));
28
- // update/delete
29
-
30
- if (mode === 'r') return null;
31
-
32
- // TODO generate salt
33
- const { codes, obj } = generateCodes(ids, uid);
34
-
35
- if (!Object.keys(codes).length) return { ids: 'empty' };
36
-
37
- rclient2.hmset(`${config.pg.database}:token:${{
38
- e: 'exec', r: 'view', w: 'edit', a: 'add',
39
- }[mode]}:${uid}`, codes);
40
-
41
- // log token for debug. add extra data - uid, mode, date
42
- /* const dt = new Date().toISOString();
43
- const codesLog = Object.keys(codes).reduce((acc, key) => {
44
- acc[key] = `{"referer": "${referer}" ,"uid":"${uid}","mode":"${mode}","date":"${dt}",${codes[key].substr(1)}`;
45
- return acc;
46
- }, {});
47
- rclient5.hmset(`${config.pg.database}:token:edit`, codesLog); // 'EX', 64800 */
48
-
49
- // TODO дополнительно писать в hset token -> uid
50
- return array ? Object.values(obj) : obj;
51
- }
52
-
53
- export default setToken;
1
+ import { createHash, randomUUID } from 'crypto';
2
+
3
+ import config from '../../config.js';
4
+ import getRedis from '../../redis/funcs/getRedis.js';
5
+
6
+ const generateCodes = (ids, userToken) => {
7
+ const token = userToken || randomUUID();
8
+ const notNullIds = ids.filter((el) => el);
9
+ const obj = {};
10
+ const codes = notNullIds.reduce((acc, id) => {
11
+ const newToken = createHash('sha1').update(token + id).digest('base64url').replace(/-/g, '');
12
+ acc[newToken] = id; obj[id] = newToken;
13
+ return acc;
14
+ }, {});
15
+ return { codes, obj };
16
+ };
17
+
18
+ function setToken({
19
+ ids: idsOrigin, mode = 'r', uid, referer, array,
20
+ }) {
21
+ const rclient2 = getRedis({ db: 0 });
22
+ // const rclient5 = getRedis({ db: 0, funcs });
23
+
24
+ if (!uid) return { user: 'empty' };
25
+ if (!Object.keys(idsOrigin).length) return { ids: 'empty' };
26
+
27
+ const ids = idsOrigin.map((el) => (typeof el === 'object' ? JSON.stringify(el) : el));
28
+ // update/delete
29
+
30
+ if (mode === 'r') return null;
31
+
32
+ // TODO generate salt
33
+ const { codes, obj } = generateCodes(ids, uid);
34
+
35
+ if (!Object.keys(codes).length) return { ids: 'empty' };
36
+
37
+ rclient2.hmset(`${config.pg.database}:token:${{
38
+ e: 'exec', r: 'view', w: 'edit', a: 'add',
39
+ }[mode]}:${uid}`, codes);
40
+
41
+ // log token for debug. add extra data - uid, mode, date
42
+ /* const dt = new Date().toISOString();
43
+ const codesLog = Object.keys(codes).reduce((acc, key) => {
44
+ acc[key] = `{"referer": "${referer}" ,"uid":"${uid}","mode":"${mode}","date":"${dt}",${codes[key].substr(1)}`;
45
+ return acc;
46
+ }, {});
47
+ rclient5.hmset(`${config.pg.database}:token:edit`, codesLog); // 'EX', 64800 */
48
+
49
+ // TODO дополнительно писать в hset token -> uid
50
+ return array ? Object.values(obj) : obj;
51
+ }
52
+
53
+ export default setToken;
@@ -12,13 +12,16 @@ function formatData(fieldType = 'text', value = null) {
12
12
  }
13
13
  return value ? `'${value}'::${fieldType}` : null;
14
14
  }
15
- /* if (fieldType.includes('json') && Array.isArray(value)) {
16
- return value;
17
- } */
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
+ }
18
21
  if (Array.isArray(value)) {
19
22
  return `'{ ${value.join(',')} }'::${fieldType}`;
20
23
  }
21
- return typeof value === 'object' ? JSON.stringify(value) : `'${value || null}'`;
24
+ return `'${value || null}'`;
22
25
  }
23
26
 
24
27
  export default async function logChanges({
@@ -1,49 +1,49 @@
1
- import path from 'path';
2
- import { existsSync } from 'fs';
3
- import { fileURLToPath } from 'url';
4
-
5
- const fileName = fileURLToPath(import.meta.url);
6
- const dirName = path.dirname(fileName);
7
-
8
- import notification from '../funcs/sendNotification.js';
9
-
10
- export default async function testNotification({
11
- pg, funcs = {}, log, query = {}, session = {},
12
- }) {
13
- const { local } = funcs.config || {};
14
- if (!session?.passport?.user?.user_type?.includes('admin') && !local) {
15
- return { message: 'Forbidden', status: 403 };
16
- }
17
-
18
- const date = new Date().toISOString().split('T')[0];
19
- if (!query.to) {
20
- return { message: 'param to is required', status: 400 };
21
- }
22
-
23
- try {
24
- const {
25
- to, template, table, id, nocache,
26
- } = query;
27
- const file = [path.join(dirName, '../../', 'changelog.md'), path.join(dirName, 'utils', 'pin-m-ty-media-record-outline+303070.png')].filter((el) => existsSync(el));
28
- const data = await notification({
29
- pg,
30
- funcs,
31
- log,
32
- to,
33
- template,
34
- title: `Test Softpro ${date}`,
35
- table,
36
- nocache,
37
- file,
38
- id,
39
- message: `Test mail Softpro ${date} Lorem Ipsum Lorem Ipsum`,
40
- });
41
-
42
- return {
43
- message: data || 'ok',
44
- };
45
- }
46
- catch (err) {
47
- return { error: err.toString(), status: 500 };
48
- }
49
- }
1
+ import path from 'path';
2
+ import { existsSync } from 'fs';
3
+ import { fileURLToPath } from 'url';
4
+
5
+ const fileName = fileURLToPath(import.meta.url);
6
+ const dirName = path.dirname(fileName);
7
+
8
+ import notification from '../funcs/sendNotification.js';
9
+
10
+ export default async function testNotification({
11
+ pg, funcs = {}, log, query = {}, session = {},
12
+ }) {
13
+ const { local } = funcs.config || {};
14
+ if (!session?.passport?.user?.user_type?.includes('admin') && !local) {
15
+ return { message: 'Forbidden', status: 403 };
16
+ }
17
+
18
+ const date = new Date().toISOString().split('T')[0];
19
+ if (!query.to) {
20
+ return { message: 'param to is required', status: 400 };
21
+ }
22
+
23
+ try {
24
+ const {
25
+ to, template, table, id, nocache,
26
+ } = query;
27
+ const file = [path.join(dirName, '../../', 'changelog.md'), path.join(dirName, 'utils', 'pin-m-ty-media-record-outline+303070.png')].filter((el) => existsSync(el));
28
+ const data = await notification({
29
+ pg,
30
+ funcs,
31
+ log,
32
+ to,
33
+ template,
34
+ title: `Test Softpro ${date}`,
35
+ table,
36
+ nocache,
37
+ file,
38
+ id,
39
+ message: `Test mail Softpro ${date} Lorem Ipsum Lorem Ipsum`,
40
+ });
41
+
42
+ return {
43
+ message: data || 'ok',
44
+ };
45
+ }
46
+ catch (err) {
47
+ return { error: err.toString(), status: 500 };
48
+ }
49
+ }
@@ -1,39 +1,39 @@
1
- import nodemailer from 'nodemailer';
2
-
3
- /**
4
- * Надсилає поваідомлення на пошту
5
- *
6
- * @type function
7
- * @alias sendEmail
8
- * @summary Функція здійснює розсилку по email
9
- */
10
-
11
- export default async function sendEmail({
12
- funcs, to, from, subject, html, attachments,
13
- }) {
14
- const { config = {} } = funcs;
15
-
16
- if (!to?.length) {
17
- throw new Error('empty to list');
18
- }
19
-
20
- const { mailSetting = {} } = config;
21
-
22
- /*= == check service and setting === */
23
- if (!mailSetting.service) {
24
- throw new Error('service is not defined in config');
25
- }
26
-
27
- Object.assign(mailSetting, { rejectUnauthorized: false });
28
-
29
- if (mailSetting.port === 465) {
30
- Object.assign(mailSetting, { secure: true });
31
- }
32
-
33
- const transport = nodemailer.createTransport(mailSetting);
34
-
35
- const result = await transport.sendMail({
36
- from: from || mailSetting.from, to, subject, html, attachments,
37
- });
38
- return result;
39
- }
1
+ import nodemailer from 'nodemailer';
2
+
3
+ /**
4
+ * Надсилає поваідомлення на пошту
5
+ *
6
+ * @type function
7
+ * @alias sendEmail
8
+ * @summary Функція здійснює розсилку по email
9
+ */
10
+
11
+ export default async function sendEmail({
12
+ funcs, to, from, subject, html, attachments,
13
+ }) {
14
+ const { config = {} } = funcs;
15
+
16
+ if (!to?.length) {
17
+ throw new Error('empty to list');
18
+ }
19
+
20
+ const { mailSetting = {} } = config;
21
+
22
+ /*= == check service and setting === */
23
+ if (!mailSetting.service) {
24
+ throw new Error('service is not defined in config');
25
+ }
26
+
27
+ Object.assign(mailSetting, { rejectUnauthorized: false });
28
+
29
+ if (mailSetting.port === 465) {
30
+ Object.assign(mailSetting, { secure: true });
31
+ }
32
+
33
+ const transport = nodemailer.createTransport(mailSetting);
34
+
35
+ const result = await transport.sendMail({
36
+ from: from || mailSetting.from, to, subject, html, attachments,
37
+ });
38
+ return result;
39
+ }
@@ -1,38 +1,38 @@
1
- // api
2
- import userNotifications from './controllers/userNotifications.js';
3
- import testEmail from './controllers/testEmail.js';
4
- // funcs
5
- import addNotification from './funcs/addNotification.js'; // add to db
6
- import notification from './funcs/sendNotification.js'; // send
7
-
8
- const tableSchema = {
9
- querystring: {
10
- nocache: { type: 'string', pattern: '^(\\d+)$' },
11
- },
12
- };
13
-
14
- async function plugin(fastify, config = {}) {
15
- const prefix = config.prefix || '/api';
16
- fastify.route({
17
- method: 'GET',
18
- url: `${prefix}/notification`,
19
- config: {
20
- policy: ['user'], // implement user auth check policy??
21
- },
22
- schema: tableSchema,
23
- handler: userNotifications,
24
- });
25
- fastify.route({
26
- method: 'GET',
27
- url: `${prefix}/test-email`,
28
- config: {
29
- policy: ['user'],
30
- },
31
- handler: testEmail,
32
- });
33
-
34
- fastify.decorate('addNotification', addNotification);
35
- fastify.decorate('notification', notification);
36
- }
37
-
38
- export default plugin;
1
+ // api
2
+ import userNotifications from './controllers/userNotifications.js';
3
+ import testEmail from './controllers/testEmail.js';
4
+ // funcs
5
+ import addNotification from './funcs/addNotification.js'; // add to db
6
+ import notification from './funcs/sendNotification.js'; // send
7
+
8
+ const tableSchema = {
9
+ querystring: {
10
+ nocache: { type: 'string', pattern: '^(\\d+)$' },
11
+ },
12
+ };
13
+
14
+ async function plugin(fastify, config = {}) {
15
+ const prefix = config.prefix || '/api';
16
+ fastify.route({
17
+ method: 'GET',
18
+ url: `${prefix}/notification`,
19
+ config: {
20
+ policy: ['user'], // implement user auth check policy??
21
+ },
22
+ schema: tableSchema,
23
+ handler: userNotifications,
24
+ });
25
+ fastify.route({
26
+ method: 'GET',
27
+ url: `${prefix}/test-email`,
28
+ config: {
29
+ policy: ['user'],
30
+ },
31
+ handler: testEmail,
32
+ });
33
+
34
+ fastify.decorate('addNotification', addNotification);
35
+ fastify.decorate('notification', notification);
36
+ }
37
+
38
+ export default plugin;