-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnotificationListeners.ts
353 lines (304 loc) · 9.75 KB
/
notificationListeners.ts
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
import { sendEmail } from "../helpers/nodemailer";
import { EventName, myEmitter } from "./nodeEvents";
import { User } from "../database/models/User";
import { Product } from "../database/models/product";
import { Notification as DBNotification } from "../database/models/notification";
import { emitNotification } from "./socket.util";
import { OrderModelAttributes } from "../types/model";
import HTML_TEMPLATE from "./mail-template";
import { cartItem } from "../types/cart";
import generateInvoicePdf from "./generateInvoicePdf";
export const myEventListener = () => {
myEmitter.on(
EventName.PRODUCT_ADDED_TO_WISHLIST,
async (userId: string, productId: string) => {
try {
const user = await User.findOne({ where: { id: userId } });
const product = await Product.findOne({ where: { id: productId } });
if (!user) {
console.log("User not found");
return;
}
if (!product) {
console.log("Product not found");
return;
}
const sellerId = product.dataValues.sellerId;
const seller = await User.findOne({ where: { id: sellerId } });
const buyerNotification = {
userId: user.dataValues.id,
message: `You have added ${product.dataValues.name} to the wishlist.`,
unread: true,
};
const sellerNotification = {
userId: sellerId,
message: `Your product ${product.dataValues.name} has been added to the wishlist.`,
unread: true,
};
const [buyerNotificationRecord, sellerNotificationRecord] =
await Promise.all([
DBNotification.create(buyerNotification),
DBNotification.create(sellerNotification),
]);
const sendEmailOptions = {
to: user.dataValues.email as string,
subject: "Product Added to Wishlist",
html: HTML_TEMPLATE(
buyerNotificationRecord.message,
"Product Added to Wishlist",
),
};
const sendEmailOptions_Seller = {
to: seller?.dataValues.email as string,
subject: "Product Added to Wishlist",
html: HTML_TEMPLATE(
sellerNotificationRecord.message,
"Product Added to Wishlist",
),
};
emitNotification([buyerNotificationRecord, sellerNotificationRecord]);
await Promise.all([
sendEmail(sendEmailOptions),
sendEmail(sendEmailOptions_Seller),
]);
} catch (error) {
console.error("Error processing event:", error);
}
},
);
myEmitter.on(
EventName.PRODUCT_REMOVED_FROM_WISHLIST,
async (userId: string, productId: string) => {
try {
const user = await User.findOne({ where: { id: userId } });
const product = await Product.findOne({ where: { id: productId } });
const sellerId = product?.dataValues.sellerId;
const seller = await User.findOne({ where: { id: sellerId } });
if (!user) {
console.log("User not found");
return;
}
if (!product) {
console.log("Product not found");
return;
}
// BUYER SIDE
const buyerNotification = {
userId: user.dataValues.id || "",
message: `You have removed ${product.dataValues.name} from the wishlist.`,
unread: true,
};
// SELLER SIDE
const sellerNotification = {
userId: product?.dataValues.sellerId || "",
message: `Your product ${product.dataValues.name} has been removed from the wishlist.`,
unread: true,
};
const [buyerNotificationRecord, sellerNotificationRecord] =
await Promise.all([
DBNotification.create(buyerNotification),
DBNotification.create(sellerNotification),
]);
const sendEmailOptions = {
to: user.dataValues.email,
subject: "Product Removed from Wishlist",
html: HTML_TEMPLATE(
buyerNotificationRecord?.message,
"Product Removed from Wishlist",
),
};
const sendEmailOptions_Seller = {
to: seller?.dataValues.email as string,
subject: "Product Removed from Wishlist",
html: HTML_TEMPLATE(
sellerNotificationRecord?.message,
"Product Removed from Wishlist",
),
};
emitNotification([buyerNotificationRecord, sellerNotificationRecord]);
await Promise.all([
sendEmail(sendEmailOptions),
sendEmail(sendEmailOptions_Seller),
]);
} catch (error) {
console.error("Error processing event:", error);
}
},
);
myEmitter.on(EventName.PRODUCT_GOT_EXPIRED, async (product, user) => {
const sellerNotification = {
userId: user.id,
message: `Your product ${product.name} has expired.`,
unread: true,
};
const [sellerNotificationRecord] = await Promise.all([
DBNotification.create(sellerNotification),
]);
const sendEmailOptions = {
to: user.email as string,
subject: "Product Expired",
html: HTML_TEMPLATE(sellerNotification?.message, "Product Expired"),
};
emitNotification([sellerNotificationRecord]);
await Promise.all([sendEmail(sendEmailOptions)]);
});
myEmitter.on(
EventName.PRRODUCT_BOUGHT,
async (productId: string, order: OrderModelAttributes) => {
try {
const productInfo = await Product.findOne({ where: { id: productId } });
const sellerId = productInfo?.dataValues.sellerId;
const buyerId = order?.buyerId;
if (!productInfo || !sellerId || !buyerId) {
console.log("Product, seller, or buyer information not found");
return;
}
const seller = await User.findOne({ where: { id: sellerId } });
const buyer = await User.findOne({ where: { id: buyerId } });
if (!seller || !buyer) {
console.log("Seller or buyer not found");
return;
}
const sellerNotification = {
userId: sellerId,
message: `Your product ${productInfo.dataValues.name} has been bought, go on and deliver it!`,
unread: true,
};
const buyerNotification = {
userId: buyerId,
message:
"Your order is pending now. Stay tuned to be able to track it!",
unread: true,
};
const [buyerNotificationRecord, sellerNotificationRecord] =
await Promise.all([
DBNotification.create(buyerNotification),
DBNotification.create(sellerNotification),
]);
const sellerEmail = {
to: seller.email,
subject: "Product Bought",
html: HTML_TEMPLATE(
sellerNotificationRecord.message,
"Product Bought",
),
};
const buyerEmail = {
to: buyer.email,
subject: "Product Bought",
html: HTML_TEMPLATE(
buyerNotificationRecord.message,
"Product Bought",
),
};
emitNotification([buyerNotificationRecord, sellerNotificationRecord]);
await Promise.all([sendEmail(sellerEmail), sendEmail(buyerEmail)]);
} catch (error) {
console.error("Error processing product bought event:", error);
}
},
);
myEmitter.on(
EventName.ORDERS_DELIVERED,
async (order: OrderModelAttributes) => {
const buyerId = order.buyerId;
if (!order) {
console.log("Order not found!");
return;
}
const notificationInput = {
userId: buyerId,
message: `Your order has been delivered!, Enjoy your product!`,
unread: true,
};
const [buyerNotificationRecord] = await Promise.all([
DBNotification.create(notificationInput),
]);
const buyer = await User.findOne({ where: { id: buyerId } });
const emailingData = {
to: buyer?.email as string,
subject: "Order Delivered",
html: HTML_TEMPLATE(
buyerNotificationRecord?.message,
"Order Delivered",
),
};
emitNotification([buyerNotificationRecord]);
await Promise.all([sendEmail(emailingData)]);
},
);
myEmitter.on(
EventName.ORDERS_CANCELED,
async (order: OrderModelAttributes) => {
const buyerId = order.buyerId;
if (!order) {
console.log("Order not found!");
return;
}
const notificationInput = {
userId: buyerId,
message: `Your order has been canceled!`,
unread: true,
};
const [buyerNotificationRecord] = await Promise.all([
DBNotification.create(notificationInput),
]);
const buyer = await User.findOne({ where: { id: buyerId } });
const emailingData = {
to: buyer?.email as string,
subject: "Order Canceled",
html: HTML_TEMPLATE(buyerNotificationRecord?.message, "Order Canceled"),
};
emitNotification([buyerNotificationRecord]);
await Promise.all([sendEmail(emailingData)]);
},
);
myEmitter.on(
EventName.ORDERS_COMPLETED,
async (order: OrderModelAttributes, products: cartItem[]) => {
try {
const buyerId = order?.buyerId;
const buyer = await User.findOne({ where: { id: buyerId } });
if (!buyer) {
console.log("Buyer not found");
return;
}
const notifications = [];
const invoiceData = {
products: products,
clientAddress: buyer,
companyAddress: "Kigali, Rwanda",
logoUrl: "https://i.imghippo.com/files/8YpmR1721977307.png",
};
const invoicePdf = await generateInvoicePdf(invoiceData);
const buyerNotification = {
userId: buyerId,
message:
"Your order has been placed successfully. You can now track your order!",
unread: true,
};
const buyerNotificationRecord =
await DBNotification.create(buyerNotification);
notifications.push(buyerNotificationRecord);
emitNotification(notifications);
const buyerEmail = {
to: buyer.email,
subject: "Order Confirmation",
html: HTML_TEMPLATE(
`Dear ${buyer.firstName}, Thank you for your purchase! Your order has been successfully placed and is now being processed. You will receive a confirmation email with your order details shortly. We appreciate your business and are excited to deliver your items soon. If you have any questions or need further assistance, please feel free to contact our customer support. Happy shopping!`,
"Order Confirmation",
),
attachments: [
{
filename: "invoice.pdf",
content: invoicePdf,
},
],
};
await sendEmail(buyerEmail);
} catch (error) {
console.error("Error processing order pending event:", error);
}
},
);
};