Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 61x 61x 61x 61x 61x 61x 3x 58x 58x 56x 58x 58x 58x 14x 6x 7x 13x 10x 4x 4x 14x 14x 2x 2x 14x 12x 6x 7x 7x 13x 13x 10x 10x 4x 4x 4x 4x | import {
NotificationTask,
NotificationTaskType,
} from "server/utils/notificationQueue";
import {
buildEmail,
EmailMessage,
getAcceptedEmailTemplate,
getProgramItemCancelledEmailTemplate,
getProgramItemDeletedEmailTemplate,
getProgramItemNoKonstiSignupEmailTemplate,
getProgramItemNoLotteryEmailTemplate,
getProgramItemTimeChangedEmailTemplate,
getRejectedEmailTemplate,
} from "./senderCommon";
import { logger } from "server/utils/logger";
import { findUser } from "server/features/user/userRepository";
import { findProgramItemById } from "server/features/program-item/programItemRepository";
import { config } from "shared/config";
import { EmailSender } from "server/features/notifications/email";
export async function emailNotificationWorker(
sender: EmailSender,
notification: NotificationTask,
): Promise<void> {
try {
const userResult = await findUser(notification.username);
Iif (!userResult.ok) {
logger.error(
new Error(
`Failed to fetch user to send email notification ${notification.username}`,
),
);
return;
}
const user = userResult.value;
Iif (!user) {
logger.error(
`Trying to send email notification for unknown user ${notification.username}.`,
);
return;
}
if (
!user.email ||
!/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/.test(user.email)
) {
return;
}
const message = await generateEmail(user.email, notification);
Eif (message !== null) {
await sender.sendEmail(message);
}
} catch (error) {
logger.error(
new Error("Unexpected error in sending email notification", {
cause: error,
}),
);
}
return;
}
async function generateEmail(
email: string,
notification: NotificationTask,
): Promise<EmailMessage | null> {
const fromAddress = config.server().emailSendFromAddress;
switch (notification.type) {
case NotificationTaskType.SEND_EMAIL_ACCEPTED:
return generateAcceptedEmail(email, fromAddress, notification);
case NotificationTaskType.SEND_EMAIL_REJECTED:
return generateRejectedEmail(email, fromAddress, notification);
case NotificationTaskType.SEND_EMAIL_PROGRAM_ITEM_CANCELLED:
return generateProgramItemCancelledEmail(
email,
fromAddress,
notification,
);
case NotificationTaskType.SEND_EMAIL_PROGRAM_ITEM_DELETED:
return generateProgramItemDeletedEmail(email, fromAddress, notification);
case NotificationTaskType.SEND_EMAIL_PROGRAM_ITEM_NO_KONSTI_SIGNUP_ANYMORE:
return generateProgramItemNoKonstiSignupEmail(
email,
fromAddress,
notification,
);
case NotificationTaskType.SEND_EMAIL_PROGRAM_ITEM_NO_LOTTERY_ANYMORE:
return generateProgramItemNoLotteryEmail(
email,
fromAddress,
notification,
);
case NotificationTaskType.SEND_EMAIL_PROGRAM_ITEM_TIME_CHANGED:
return generateProgramItemTimeChangedEmail(
email,
fromAddress,
notification,
);
}
}
async function generateAcceptedEmail(
email: string,
fromAddress: string,
notification: NotificationTask,
): Promise<EmailMessage | null> {
const programItemResult = await findProgramItemById(
notification.programItemId,
);
Iif (!programItemResult.ok) {
logger.error(
`Failed to found program for programItemId ${notification.programItemId}`,
);
return null;
}
const template = getAcceptedEmailTemplate(
programItemResult.value.title,
notification,
);
return buildEmail(template, email, fromAddress);
}
function generateRejectedEmail(
email: string,
fromAddress: string,
notification: NotificationTask,
): EmailMessage {
return buildEmail(getRejectedEmailTemplate(notification), email, fromAddress);
}
function generateProgramItemCancelledEmail(
email: string,
fromAddress: string,
notification: NotificationTask,
): EmailMessage | null {
Iif (!notification.programItemTitle) {
logger.error(
`Missing programItemTitle for notification type ${notification.type}, username ${notification.username}`,
);
return null;
}
return buildEmail(
getProgramItemCancelledEmailTemplate(notification),
email,
fromAddress,
);
}
function generateProgramItemDeletedEmail(
email: string,
fromAddress: string,
notification: NotificationTask,
): EmailMessage | null {
Iif (!notification.programItemTitle) {
logger.error(
`Missing programItemTitle for notification type ${notification.type}, username ${notification.username}`,
);
return null;
}
return buildEmail(
getProgramItemDeletedEmailTemplate(notification),
email,
fromAddress,
);
}
function generateProgramItemNoKonstiSignupEmail(
email: string,
fromAddress: string,
notification: NotificationTask,
): EmailMessage | null {
Iif (!notification.programItemTitle) {
logger.error(
`Missing programItemTitle for notification type ${notification.type}, username ${notification.username}`,
);
return null;
}
return buildEmail(
getProgramItemNoKonstiSignupEmailTemplate(notification),
email,
fromAddress,
);
}
function generateProgramItemNoLotteryEmail(
email: string,
fromAddress: string,
notification: NotificationTask,
): EmailMessage | null {
Iif (!notification.programItemTitle) {
logger.error(
`Missing programItemTitle for notification type ${notification.type}, username ${notification.username}`,
);
return null;
}
return buildEmail(
getProgramItemNoLotteryEmailTemplate(notification),
email,
fromAddress,
);
}
function generateProgramItemTimeChangedEmail(
email: string,
fromAddress: string,
notification: NotificationTask,
): EmailMessage | null {
Iif (!notification.programItemTitle) {
logger.error(
`Missing programItemTitle for notification type ${notification.type}, username ${notification.username}`,
);
return null;
}
return buildEmail(
getProgramItemTimeChangedEmailTemplate(notification),
email,
fromAddress,
);
}
|