-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprojectNotifications.ts
More file actions
246 lines (207 loc) · 7.28 KB
/
projectNotifications.ts
File metadata and controls
246 lines (207 loc) · 7.28 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
import {
ReceiveTypes
} from '../models/project';
import { ProjectNotificationsRuleDBScheme } from '@hawk.so/types';
import { ResolverContextWithUser } from '../types/graphql';
import { ApolloError, UserInputError } from 'apollo-server-express';
import { NotificationsChannelsDBScheme } from '../types/notification-channels';
/**
* Mutation payload for creating notifications rule from GraphQL Schema
*/
interface CreateProjectNotificationsRuleMutationPayload {
/**
* Project id to update
*/
projectId: string;
/**
* Allows to disable rule without removing
*/
isEnabled: true;
/**
* Receive type: 'ALL' or 'ONLY_NEW'
*/
whatToReceive: ReceiveTypes;
/**
* Only those which contains passed words
*/
including: string[];
/**
* Skip those which contains passed words
*/
excluding: string[];
/**
* Available channels to receive
*/
channels: NotificationsChannelsDBScheme;
/**
* Threshold to receive notification
*/
threshold: number;
/**
* Period to receive notification
*/
thresholdPeriod: number;
}
/**
* Mutation payload for updating project notifications rule
*/
interface UpdateProjectNotificationsRuleMutationPayload extends CreateProjectNotificationsRuleMutationPayload {
/**
* Rule id to update
*/
ruleId: string;
}
/**
* Mutation payload for deleting project notifications rule
*/
interface ProjectNotificationsRulePointer {
/**
* Project id which owns the rule
*/
projectId: string;
/**
* Rule id to delete
*/
ruleId: string;
}
/**
* Returns true is threshold and threshold period are valid
* @param threshold - threshold of the notification rule to be checked
* @param thresholdPeriod - threshold period of the notification rule to be checked
*/
function validateNotificationsRuleTresholdAndPeriod(
threshold: ProjectNotificationsRuleDBScheme['threshold'],
thresholdPeriod: ProjectNotificationsRuleDBScheme['thresholdPeriod']
): string | null {
const validThresholdPeriods = [60_000, 3_600_000, 86_400_000, 604_800_000];
if (thresholdPeriod === undefined || !validThresholdPeriods.includes(thresholdPeriod)) {
return 'Threshold period should be one of the following: 60000, 3600000, 86400000, 604800000';
}
if (threshold === undefined || threshold < 1) {
return 'Threshold should be greater than 0';
}
return null;
}
/**
* Return true if all passed channels are filled with correct endpoints
*/
function validateNotificationsRuleChannels(channels: NotificationsChannelsDBScheme): string | null {
if (channels.email!.isEnabled) {
if (!/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/.test(channels.email!.endpoint)) {
return 'Invalid email endpoint passed';
}
}
if (channels.slack!.isEnabled) {
if (!/^https:\/\/hooks\.slack\.com\/services\/[A-Za-z0-9]+\/[A-Za-z0-9]+\/[A-Za-z0-9]+$/.test(channels.slack!.endpoint)) {
return 'Invalid slack endpoint passed';
}
}
if (channels.telegram!.isEnabled) {
if (!/^https:\/\/notify\.bot\.codex\.so\/u\/[A-Za-z0-9]+$/.test(channels.telegram!.endpoint)) {
return 'Invalid telegram endpoint passed';
}
}
return null;
}
/**
* See all types and fields here {@see ../typeDefs/notify.graphql}
*/
export default {
Mutation: {
/**
* Creates new notification rule and add it to start of the array of notifications rules
* @param _obj - parent object
* @param user - current authorized user {@see ../index.js}
* @param factories - factories for working with models
* @param input - input data for creating
*/
async createProjectNotificationsRule(
_obj: undefined,
{ input }: { input: CreateProjectNotificationsRuleMutationPayload },
{ user, factories }: ResolverContextWithUser
): Promise<ProjectNotificationsRuleDBScheme> {
const project = await factories.projectsFactory.findById(input.projectId);
if (!project) {
throw new ApolloError('No project with such id');
}
const channelsValidationResult = validateNotificationsRuleChannels(input.channels);
if (channelsValidationResult !== null) {
throw new UserInputError(channelsValidationResult);
}
if (input.whatToReceive === ReceiveTypes.SEEN_MORE) {
const thresholdValidationResult = validateNotificationsRuleTresholdAndPeriod(input.threshold, input.thresholdPeriod);
if (thresholdValidationResult !== null) {
throw new UserInputError(thresholdValidationResult);
}
}
return project.createNotificationsRule({
...input,
uidAdded: user.id,
});
},
/**
* Updates existing notifications rule
* @param _obj - parent object
* @param user - current authorized user {@see ../index.js}
* @param factories - factories for working with models
* @param input - input data for creating
*/
async updateProjectNotificationsRule(
_obj: undefined,
{ input }: { input: UpdateProjectNotificationsRuleMutationPayload },
{ user, factories }: ResolverContextWithUser
): Promise<ProjectNotificationsRuleDBScheme | null> {
const project = await factories.projectsFactory.findById(input.projectId);
if (!project) {
throw new ApolloError('No project with such id');
}
const channelsValidationResult = validateNotificationsRuleChannels(input.channels);
if (channelsValidationResult !== null) {
throw new UserInputError(channelsValidationResult);
}
if (input.whatToReceive === ReceiveTypes.SEEN_MORE) {
const thresholdValidationResult = validateNotificationsRuleTresholdAndPeriod(input.threshold, input.thresholdPeriod);
if (thresholdValidationResult !== null) {
throw new UserInputError(thresholdValidationResult);
}
}
return project.updateNotificationsRule(input);
},
/**
* Removes notifications rule from project
* @param _obj - parent object
* @param user - current authorized user {@see ../index.js}
* @param factories - factories for working with models
* @param input - input data for deleting
*/
async deleteProjectNotificationsRule(
_obj: undefined,
{ input }: { input: ProjectNotificationsRulePointer },
{ user, factories }: ResolverContextWithUser
): Promise<ProjectNotificationsRuleDBScheme | null> {
const project = await factories.projectsFactory.findById(input.projectId);
if (!project) {
throw new ApolloError('No project with such id');
}
return project.deleteNotificationsRule(input.ruleId);
},
/**
* Toggles isEnabled field in project notifications rule
* @param _obj - parent object
* @param user - current authorized user {@see ../index.js}
* @param factories - factories for working with models
* @param input - input data for toggling
*/
async toggleProjectNotificationsRuleEnabledState(
_obj: undefined,
{ input }: { input: ProjectNotificationsRulePointer },
{ user, factories }: ResolverContextWithUser
): Promise<ProjectNotificationsRuleDBScheme | null> {
const project = await factories.projectsFactory.findById(input.projectId);
if (!project) {
throw new ApolloError('No project with such id');
}
return project.toggleNotificationsRuleEnabledState(input.ruleId);
},
},
};