-
-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathsuppression-service.ts
More file actions
443 lines (399 loc) · 10.8 KB
/
suppression-service.ts
File metadata and controls
443 lines (399 loc) · 10.8 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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
import { SuppressionReason, SuppressionList } from "@prisma/client";
import { db } from "../db";
import { UnsendApiError } from "~/server/public-api/api-error";
import { logger } from "../logger/log";
import { deleteFromSesSuppressionList } from "../aws/ses";
export type AddSuppressionParams = {
email: string;
teamId: number;
reason: SuppressionReason;
source?: string;
};
export type GetSuppressionListParams = {
teamId: number;
page?: number;
limit?: number;
search?: string;
reason?: SuppressionReason | null;
sortBy?: "email" | "reason" | "createdAt";
sortOrder?: "asc" | "desc";
};
export type SuppressionListResult = {
suppressions: SuppressionList[];
total: number;
};
export class SuppressionService {
/**
* Add email to suppression list
*/
static async addSuppression(
params: AddSuppressionParams
): Promise<SuppressionList> {
const { email, teamId, reason, source } = params;
try {
const suppression = await db.suppressionList.upsert({
where: {
teamId_email: {
teamId,
email: email.toLowerCase().trim(),
},
},
create: {
email: email.toLowerCase().trim(),
teamId,
reason,
source,
},
update: {
reason,
source,
updatedAt: new Date(),
},
});
logger.info(
{
email,
teamId,
reason,
source,
suppressionId: suppression.id,
},
"Email added to suppression list"
);
return suppression;
} catch (error) {
logger.error(
{
email,
teamId,
reason,
source,
error: error instanceof Error ? error.message : "Unknown error",
},
"Failed to add email to suppression list"
);
throw new UnsendApiError({
code: "INTERNAL_SERVER_ERROR",
message: "Failed to add email to suppression list",
});
}
}
/**
* Check if email is suppressed for team
*/
static async isEmailSuppressed(
email: string,
teamId: number
): Promise<boolean> {
try {
const suppression = await db.suppressionList.findUnique({
where: {
teamId_email: {
teamId,
email: email.toLowerCase().trim(),
},
},
});
return !!suppression;
} catch (error) {
logger.error(
{
email,
teamId,
error: error instanceof Error ? error.message : "Unknown error",
},
"Failed to check email suppression status"
);
// In case of error, err on the side of caution and don't suppress
return false;
}
}
/**
* Remove email from suppression list (both local DB and AWS SES)
*/
static async removeSuppression(email: string, teamId: number): Promise<void> {
const normalizedEmail = email.toLowerCase().trim();
// Get all unique regions from team's domains for AWS SES cleanup
try {
const teamDomains = await db.domain.findMany({
where: { teamId },
select: { region: true },
});
const uniqueRegions = [...new Set(teamDomains.map((d) => d.region))];
// Attempt to remove from AWS SES in all regions (best effort, don't throw)
if (uniqueRegions.length > 0) {
const results = await Promise.allSettled(
uniqueRegions.map((region) =>
deleteFromSesSuppressionList(normalizedEmail, region)
)
);
// Check for failures - deleteFromSesSuppressionList returns false on error
const failures = results.filter(
(r) =>
r.status === "rejected" ||
(r.status === "fulfilled" && r.value === false)
);
if (failures.length > 0) {
logger.warn(
{
email: normalizedEmail,
teamId,
failedRegions: failures.length,
totalRegions: uniqueRegions.length,
},
"Some AWS SES regions failed during suppression removal"
);
}
}
} catch (error) {
// AWS SES cleanup failure should not block local DB deletion
logger.error(
{
email: normalizedEmail,
teamId,
error: error instanceof Error ? error.message : "Unknown error",
},
"Failed to cleanup AWS SES suppression (continuing with local deletion)"
);
}
// Delete from local database
try {
const deleted = await db.suppressionList.delete({
where: {
teamId_email: {
teamId,
email: normalizedEmail,
},
},
});
logger.info(
{
email: normalizedEmail,
teamId,
suppressionId: deleted.id,
},
"Email removed from suppression list"
);
} catch (error) {
// If the record doesn't exist, that's fine - it's already not suppressed
if (
error instanceof Error &&
error.message.includes("Record to delete does not exist")
) {
logger.debug(
{
email: normalizedEmail,
teamId,
},
"Attempted to remove non-existent suppression - already not suppressed"
);
return;
}
logger.error(
{
email: normalizedEmail,
teamId,
error: error instanceof Error ? error.message : "Unknown error",
},
"Failed to remove email from suppression list"
);
throw new UnsendApiError({
code: "INTERNAL_SERVER_ERROR",
message: "Failed to remove email from suppression list",
});
}
}
/**
* Get suppression list for team with pagination
*/
static async getSuppressionList(
params: GetSuppressionListParams
): Promise<SuppressionListResult> {
const {
teamId,
page = 1,
limit = 20,
search,
reason,
sortBy = "createdAt",
sortOrder = "desc",
} = params;
const offset = (page - 1) * limit;
const where = {
teamId,
...(search && {
email: {
contains: search,
mode: "insensitive" as const,
},
}),
...(reason && { reason }),
};
try {
const [suppressions, total] = await Promise.all([
db.suppressionList.findMany({
where,
skip: offset,
take: limit,
orderBy: { [sortBy]: sortOrder },
}),
db.suppressionList.count({ where }),
]);
return {
suppressions,
total,
};
} catch (error) {
logger.error(
{
teamId,
page,
limit,
search,
reason,
error: error instanceof Error ? error.message : "Unknown error",
},
"Failed to get suppression list"
);
throw new UnsendApiError({
code: "INTERNAL_SERVER_ERROR",
message: "Failed to get suppression list",
});
}
}
/**
* Add multiple emails to suppression list
*/
static async addMultipleSuppressions(
teamId: number,
emails: string[],
reason: SuppressionReason
) {
// Remove duplicates by normalizing emails first, then using Set
const normalizedEmails = emails.map((email) => email.toLowerCase().trim());
const uniqueEmails = Array.from(new Set(normalizedEmails));
try {
// Process in batches to avoid overwhelming the database
const batchSize = 1000;
for (let i = 0; i < uniqueEmails.length; i += batchSize) {
const batch = uniqueEmails.slice(i, i + batchSize);
const alreadySuppressed = await db.suppressionList.findMany({
where: {
teamId,
email: { in: batch },
},
});
const emailsToAdd = batch.filter(
(email) => !alreadySuppressed.some((s) => s.email === email)
);
await db.suppressionList.createMany({
data: emailsToAdd.map((email) => ({
teamId,
email,
reason,
})),
});
}
logger.info(
{
originalCount: emails.length,
uniqueCount: uniqueEmails.length,
},
"Added multiple emails to suppression list"
);
} catch (error) {
logger.error(
{
originalCount: emails.length,
uniqueCount: uniqueEmails.length,
error: error instanceof Error ? error.message : "Unknown error",
},
"Failed to add multiple emails to suppression list"
);
throw new UnsendApiError({
code: "INTERNAL_SERVER_ERROR",
message: "Failed to add multiple emails to suppression list",
});
}
}
/**
* Get suppression statistics for a team
*/
static async getSuppressionStats(
teamId: number
): Promise<Record<SuppressionReason, number>> {
try {
const stats = await db.suppressionList.groupBy({
by: ["reason"],
where: { teamId },
_count: { _all: true },
});
const result: Record<SuppressionReason, number> = {
HARD_BOUNCE: 0,
COMPLAINT: 0,
MANUAL: 0,
};
stats.forEach((stat) => {
result[stat.reason] = stat._count._all;
});
return result;
} catch (error) {
logger.error(
{
teamId,
error: error instanceof Error ? error.message : "Unknown error",
},
"Failed to get suppression stats"
);
throw new UnsendApiError({
code: "INTERNAL_SERVER_ERROR",
message: "Failed to get suppression stats",
});
}
}
/**
* Check multiple emails for suppression status
*/
static async checkMultipleEmails(
emails: string[],
teamId: number
): Promise<Record<string, boolean>> {
try {
const normalizedEmails = emails.map((email) =>
email.toLowerCase().trim()
);
const suppressions = await db.suppressionList.findMany({
where: {
teamId,
email: {
in: normalizedEmails,
},
},
select: {
email: true,
},
});
const suppressedEmails = new Set(suppressions.map((s) => s.email));
const result: Record<string, boolean> = {};
emails.forEach((email) => {
result[email] = suppressedEmails.has(email.toLowerCase().trim());
});
return result;
} catch (error) {
logger.error(
{
emailCount: emails.length,
teamId,
error: error instanceof Error ? error.message : "Unknown error",
},
"Failed to check multiple emails for suppression"
);
// In case of error, err on the side of caution and don't suppress any
const result: Record<string, boolean> = {};
emails.forEach((email) => {
result[email] = false;
});
return result;
}
}
}