-
-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathcontroller.js
More file actions
150 lines (136 loc) · 3.97 KB
/
controller.js
File metadata and controls
150 lines (136 loc) · 3.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
'use strict';
const notificationsService = require('./service');
const { UnauthorizedError } = require('../../shared/errors');
const { getAuthenticatedUserId } = require('../../utils/request-utils');
function requireUserId(req) {
const userId = getAuthenticatedUserId(req);
if (!userId) {
throw new UnauthorizedError('Authentication required');
}
return userId;
}
const notificationsController = {
async getAll(req, res, next) {
try {
const userId = requireUserId(req);
const result = await notificationsService.getAll(userId, req.query);
res.json(result);
} catch (error) {
next(error);
}
},
async getUnreadCount(req, res, next) {
try {
const userId = requireUserId(req);
const result = await notificationsService.getUnreadCount(userId);
res.json(result);
} catch (error) {
next(error);
}
},
async markAsRead(req, res, next) {
try {
const userId = requireUserId(req);
const result = await notificationsService.markAsRead(
userId,
req.params.id
);
res.json(result);
} catch (error) {
next(error);
}
},
async markAsUnread(req, res, next) {
try {
const userId = requireUserId(req);
const result = await notificationsService.markAsUnread(
userId,
req.params.id
);
res.json(result);
} catch (error) {
next(error);
}
},
async markAllAsRead(req, res, next) {
try {
const userId = requireUserId(req);
const result = await notificationsService.markAllAsRead(userId);
res.json(result);
} catch (error) {
next(error);
}
},
async dismiss(req, res, next) {
try {
const userId = requireUserId(req);
const result = await notificationsService.dismiss(
userId,
req.params.id
);
res.json(result);
} catch (error) {
next(error);
}
},
async getVapidKey(req, res, next) {
try {
const result = await notificationsService.getVapidKey();
res.json(result);
} catch (error) {
next(error);
}
},
async subscribe(req, res, next) {
try {
const userId = requireUserId(req);
const result = await notificationsService.subscribe(
userId,
req.body.subscription
);
res.json(result);
} catch (error) {
next(error);
}
},
async unsubscribe(req, res, next) {
try {
const userId = requireUserId(req);
const result = await notificationsService.unsubscribe(
userId,
req.body.endpoint
);
res.json(result);
} catch (error) {
next(error);
}
},
async triggerTest(req, res, next) {
try {
const userId = requireUserId(req);
const result = await notificationsService.triggerTest(
userId,
req.body.type
);
res.json(result);
} catch (error) {
// Handle ValidationError with availableTypes
if (error.availableTypes) {
return res.status(error.statusCode || 400).json({
error: error.message,
availableTypes: error.availableTypes,
});
}
next(error);
}
},
async getTestTypes(req, res, next) {
try {
const result = await notificationsService.getTestTypes();
res.json(result);
} catch (error) {
next(error);
}
},
};
module.exports = notificationsController;