Spaces:
Running
Running
File size: 22,720 Bytes
634b9bb | 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 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 | const Notification = require('../models/notificationModel');
const Newsletter = require('../models/newsletterModel');
const { getIO } = require('../utils/socket');
// Helper to emit and get unread count
const getAndEmitUnreadCount = async (userId) => {
try {
const unreadCount = await Notification.countDocuments({
user: userId,
isRead: false,
});
getIO().to(userId.toString()).emit('unreadCountUpdate', unreadCount);
return unreadCount;
} catch (err) {
console.error('Error emitting unread count:', err);
return 0;
}
};
// Get all notifications for the authenticated user
exports.getMyNotifications = async (req, res) => {
try {
if (!req.user) {
return res.status(401).json({
status: 'fail',
message: 'You must be logged in to view notifications',
});
}
const page = parseInt(req.query.page, 10) || 1;
const limit = parseInt(req.query.limit, 10) || 20;
const skip = (page - 1) * limit;
// Filter options
const filter = { user: req.user._id };
if (req.query.isRead !== undefined) {
filter.isRead = req.query.isRead === 'true';
}
if (req.query.type) {
filter.type = req.query.type;
}
const notifications = await Notification.find(filter)
.sort({ createdAt: -1 })
.skip(skip)
.limit(limit)
.populate('relatedId');
const total = await Notification.countDocuments(filter);
const unreadCount = await Notification.countDocuments({
user: req.user._id,
isRead: false,
});
res.status(200).json({
status: 'success',
results: notifications.length,
data: {
notifications,
pagination: {
page,
limit,
total,
pages: Math.ceil(total / limit),
},
unreadCount,
},
});
} catch (err) {
res.status(500).json({
status: 'error',
message: err.message,
});
}
};
// Get unread notification count
exports.getUnreadCount = async (req, res) => {
try {
if (!req.user) {
return res.status(401).json({
status: 'fail',
message: 'You must be logged in',
});
}
const count = await Notification.countDocuments({
user: req.user._id,
isRead: false,
});
res.status(200).json({
status: 'success',
data: { unreadCount: count },
});
} catch (err) {
res.status(500).json({
status: 'error',
message: err.message,
});
}
};
// Mark a notification as read
exports.markAsRead = async (req, res) => {
try {
if (!req.user) {
return res.status(401).json({
status: 'fail',
message: 'You must be logged in',
});
}
const notification = await Notification.findOneAndUpdate(
{ _id: req.params.id, user: req.user._id },
{ isRead: true, readAt: new Date() },
{ new: true },
);
if (!notification) {
return res.status(404).json({
status: 'fail',
message: 'Notification not found',
});
}
const unreadCount = await getAndEmitUnreadCount(req.user._id);
// Sync admin dashboard: Notify admins that this notification was read
getIO().emit('notificationReadAdmin', {
notificationId: notification._id,
userId: req.user._id,
isRead: true,
});
res.status(200).json({
status: 'success',
data: { notification, unreadCount },
});
} catch (err) {
res.status(500).json({
status: 'error',
message: err.message,
});
}
};
// Mark all notifications as read
exports.markAllAsRead = async (req, res) => {
try {
if (!req.user) {
return res.status(401).json({
status: 'fail',
message: 'You must be logged in',
});
}
await Notification.updateMany(
{ user: req.user._id, isRead: false },
{ isRead: true, readAt: new Date() },
);
await getAndEmitUnreadCount(req.user._id);
// Sync admin dashboard: Notify admins that ALL user notifications were read
getIO().emit('notificationAllReadAdmin', {
userId: req.user._id,
});
res.status(200).json({
status: 'success',
message: 'All notifications marked as read',
data: { unreadCount: 0 },
});
} catch (err) {
res.status(500).json({
status: 'error',
message: err.message,
});
}
};
// Delete a notification
exports.deleteNotification = async (req, res) => {
try {
if (!req.user) {
return res.status(401).json({
status: 'fail',
message: 'You must be logged in',
});
}
const notification = await Notification.findOneAndDelete({
_id: req.params.id,
user: req.user._id,
});
if (!notification) {
return res.status(404).json({
status: 'fail',
message: 'Notification not found',
});
}
const unreadCount = await getAndEmitUnreadCount(req.user._id);
// Sync admin dashboard: Notify admins that this notification was deleted
getIO().emit('notificationDeletedAdmin', notification._id);
res.status(200).json({
status: 'success',
data: { unreadCount },
});
} catch (err) {
res.status(500).json({
status: 'error',
message: err.message,
});
}
};
// Delete all read notifications
exports.deleteAllRead = async (req, res) => {
try {
if (!req.user) {
return res.status(401).json({
status: 'fail',
message: 'You must be logged in',
});
}
await Notification.deleteMany({
user: req.user._id,
isRead: true,
});
// Sync admin dashboard: Notify admins that ALL user read notifications were deleted
getIO().emit('notificationAllDeletedReadAdmin', {
userId: req.user._id,
});
res.status(200).json({
status: 'success',
message: 'All read notifications deleted',
});
} catch (err) {
res.status(500).json({
status: 'error',
message: err.message,
});
}
};
// Admin: Get all notifications
exports.getAllNotifications = async (req, res) => {
try {
const page = parseInt(req.query.page, 10) || 1;
const limit = parseInt(req.query.limit, 10) || 50;
const skip = (page - 1) * limit;
const notifications = await Notification.find()
.populate('user', 'name email')
.sort({ createdAt: -1 })
.skip(skip)
.limit(limit);
const total = await Notification.countDocuments();
res.status(200).json({
status: 'success',
results: notifications.length,
data: {
notifications,
pagination: {
page,
limit,
total,
pages: Math.ceil(total / limit),
},
},
});
} catch (err) {
res.status(500).json({
status: 'error',
message: err.message,
});
}
};
// Admin: Create notification for specific user(s)
exports.createNotification = async (req, res) => {
try {
const {
userId,
title,
message,
type,
priority,
metadata,
relatedId,
relatedModel,
} = req.body;
if (!userId || !title || !message) {
return res.status(400).json({
status: 'fail',
message: 'Please provide userId, title, and message',
});
}
const {
createNotification: createNotifService,
} = require('../utils/notificationService');
const notification = await createNotifService({
userId,
title,
message,
type: type || 'general',
priority: priority || 'medium',
metadata,
relatedId: relatedId || undefined,
relatedModel: relatedModel || undefined,
});
if (!notification) {
return res.status(200).json({
status: 'success',
message: 'Notification skipped due to user preferences or error',
data: null,
});
}
res.status(201).json({
status: 'success',
data: { notification },
});
} catch (err) {
res.status(500).json({
status: 'error',
message: err.message,
});
}
};
// Admin: Broadcast notification to all users
exports.broadcastNotification = async (req, res) => {
try {
const {
title,
message,
type,
priority,
metadata,
userRole,
relatedId,
relatedModel,
} = req.body;
if (!title || !message) {
return res.status(400).json({
status: 'fail',
message: 'Please provide title and message',
});
}
const User = require('../models/userModel');
let users;
if (userRole === 'subscriber') {
// Find all active newsletter emails
const subscribers = await Newsletter.find({ isActive: true }).select(
'email',
);
const emails = subscribers.map((s) => s.email);
// Find users whose email is in the subscribers list
users = await User.find({ email: { $in: emails } }).select('_id');
} else {
// Filter users by role if specified
const filter = userRole && userRole !== 'all' ? { role: userRole } : {};
users = await User.find(filter).select('_id');
}
const recipients = users.map((u) => u._id);
const { createBulkNotifications } = require('../utils/notificationService');
const results = await createBulkNotifications(recipients, {
title,
message,
type: type || 'general',
priority: priority || 'medium',
metadata,
relatedId: relatedId || undefined,
relatedModel: relatedModel || undefined,
});
res.status(201).json({
status: 'success',
message: `Notification sent to ${results.length} recipients who opted in`,
data: { count: results.length },
});
} catch (err) {
res.status(500).json({
status: 'error',
message: err.message,
});
}
};
// Admin: Delete any notification (no user ownership check)
exports.adminDeleteNotification = async (req, res) => {
try {
const notification = await Notification.findByIdAndDelete(req.params.id);
if (!notification) {
return res.status(404).json({
status: 'fail',
message: 'Notification not found',
});
}
const io = getIO();
// Notify the specific user that their notification was deleted
io.to(notification.user.toString()).emit(
'notificationDeleted',
notification._id,
);
// Update the user's unread count after deletion
await getAndEmitUnreadCount(notification.user);
// Sync other admins
io.emit('notificationDeletedAdmin', notification._id);
res.status(200).json({
status: 'success',
message: 'Notification deleted successfully',
});
} catch (err) {
res.status(500).json({
status: 'error',
message: err.message,
});
}
};
// Get user's notification preferences
exports.getMyPreferences = async (req, res) => {
try {
if (!req.user) {
return res.status(401).json({
status: 'fail',
message: 'You must be logged in',
});
}
res.status(200).json({
status: 'success',
data: {
preferences: req.user.notificationPreferences,
},
});
} catch (err) {
res.status(500).json({
status: 'error',
message: err.message,
});
}
};
// Update user's notification preferences
exports.updateMyPreferences = async (req, res) => {
try {
if (!req.user) {
return res.status(401).json({
status: 'fail',
message: 'You must be logged in',
});
}
const { preferences } = req.body;
if (!preferences) {
return res.status(400).json({
status: 'fail',
message: 'Please provide preferences to update',
});
}
// Update user document
const User = require('../models/userModel');
const existingUser = await User.findById(req.user._id);
// Guard: Force-enable notifications only for categories the user has permission for.
// Admins always receive everything. Employees only receive what matches their permissions.
if (req.user.role === 'admin') {
if (preferences.orderUpdates) {
preferences.orderUpdates.app = true;
preferences.orderUpdates.email = true;
}
if (preferences.productUpdates) {
preferences.productUpdates.app = true;
preferences.productUpdates.email = true;
}
delete preferences.vendorOrderVisibility;
} else if (req.user.role === 'employee') {
const empPerms = req.user.permissions || [];
// Only force-enable orderUpdates if the employee has manage_orders permission
if (preferences.orderUpdates && empPerms.includes('manage_orders')) {
preferences.orderUpdates.app = true;
preferences.orderUpdates.email = true;
}
// Only force-enable productUpdates if the employee has manage_products permission
if (preferences.productUpdates && empPerms.includes('manage_products')) {
preferences.productUpdates.app = true;
preferences.productUpdates.email = true;
}
delete preferences.vendorOrderVisibility;
}
// Logic to handle disabledAt and blackoutPeriods for vendorOrderVisibility
if (preferences.vendorOrderVisibility) {
const oldPref =
(existingUser.notificationPreferences &&
existingUser.notificationPreferences.vendorOrderVisibility) ||
{};
const wasEnabled = oldPref.app !== false;
const isEnabled = preferences.vendorOrderVisibility.app !== false;
const periods = oldPref.blackoutPeriods || [];
if (wasEnabled && !isEnabled) {
// Just turned off: set disabledAt (start of new blackout)
preferences.vendorOrderVisibility.disabledAt = new Date();
preferences.vendorOrderVisibility.blackoutPeriods = periods;
} else if (!wasEnabled && isEnabled) {
// Just turned on: close the current blackout period and clear disabledAt
if (oldPref.disabledAt) {
periods.push({
start: oldPref.disabledAt,
end: new Date(),
});
}
preferences.vendorOrderVisibility.blackoutPeriods = periods;
preferences.vendorOrderVisibility.disabledAt = null;
} else if (!wasEnabled && !isEnabled) {
// Stayed off: carry over state
preferences.vendorOrderVisibility.disabledAt = oldPref.disabledAt;
preferences.vendorOrderVisibility.blackoutPeriods = periods;
} else {
// Stayed on: carry over state
preferences.vendorOrderVisibility.disabledAt = null;
preferences.vendorOrderVisibility.blackoutPeriods = periods;
}
}
const user = await User.findByIdAndUpdate(
req.user._id,
{ notificationPreferences: preferences },
{ new: true, runValidators: true },
);
res.status(200).json({
status: 'success',
data: {
preferences: user.notificationPreferences,
},
});
} catch (err) {
res.status(500).json({
status: 'error',
message: err.message,
});
}
};
// Admin: Get current vendor preference state (reads first active vendor as representative)
exports.getVendorGlobalPreferences = async (req, res) => {
try {
const User = require('../models/userModel');
const vendor = await User.findOne({ role: 'vendor', isActive: true })
.select('notificationPreferences')
.lean();
const defaults = {
orderUpdates: { app: true, email: true },
productUpdates: { app: true, email: true },
vendorOrderVisibility: { app: true, email: true },
};
if (!vendor || !vendor.notificationPreferences) {
return res
.status(200)
.json({ status: 'success', data: { preferences: defaults } });
}
const p = vendor.notificationPreferences;
return res.status(200).json({
status: 'success',
data: {
preferences: {
orderUpdates: {
app: p.orderUpdates?.app !== false,
email: p.orderUpdates?.email !== false,
},
productUpdates: {
app: p.productUpdates?.app !== false,
email: p.productUpdates?.email !== false,
},
vendorOrderVisibility: {
app: p.vendorOrderVisibility?.app !== false,
email: p.vendorOrderVisibility?.email !== false,
},
},
},
});
} catch (err) {
res.status(500).json({ status: 'error', message: err.message });
}
};
// Admin: Bulk-update preferences for ALL active vendor users
// This lets admins globally control whether vendors receive notifications / see orders
exports.updateAllVendorPreferences = async (req, res) => {
try {
if (!req.user) {
return res
.status(401)
.json({ status: 'fail', message: 'You must be logged in' });
}
const { preferences } = req.body;
if (!preferences) {
return res
.status(400)
.json({ status: 'fail', message: 'Please provide preferences' });
}
const User = require('../models/userModel');
const now = new Date();
// Find all active vendor users
const vendors = await User.find({ role: 'vendor', isActive: true }).select(
'_id notificationPreferences',
);
if (vendors.length === 0) {
return res.status(200).json({
status: 'success',
message: 'No active vendors found',
data: { updatedCount: 0 },
});
}
const bulkOps = vendors.map((vendor) => {
const existingPrefs = vendor.notificationPreferences || {};
const updatedPrefs = { ...existingPrefs };
// Apply orderUpdates preference β app and email are always kept in sync
if (preferences.orderUpdates !== undefined) {
const val =
typeof preferences.orderUpdates.app === 'boolean'
? preferences.orderUpdates.app
: true;
updatedPrefs.orderUpdates = {
...(existingPrefs.orderUpdates || {}),
app: val,
email: val,
};
}
// Apply productUpdates preference β app and email are always kept in sync
if (preferences.productUpdates !== undefined) {
const val =
typeof preferences.productUpdates.app === 'boolean'
? preferences.productUpdates.app
: true;
updatedPrefs.productUpdates = {
...(existingPrefs.productUpdates || {}),
app: val,
email: val,
};
}
// Apply vendorOrderVisibility preference with blackout tracking
if (preferences.vendorOrderVisibility !== undefined) {
const oldVis = existingPrefs.vendorOrderVisibility || {};
const wasEnabled = oldVis.app !== false;
const isEnabled = preferences.vendorOrderVisibility.app !== false;
const periods = oldVis.blackoutPeriods || [];
let disabledAt = oldVis.disabledAt || null;
if (wasEnabled && !isEnabled) {
// Turning OFF: record when it was disabled
disabledAt = now;
} else if (!wasEnabled && isEnabled) {
// Turning ON: close the current blackout period
if (oldVis.disabledAt) {
periods.push({ start: oldVis.disabledAt, end: now });
}
disabledAt = null;
} else if (!wasEnabled && !isEnabled) {
// Stayed off: keep previous disabledAt
} else {
// Stayed on
disabledAt = null;
}
// vendorOrderVisibility: app and email always in sync
updatedPrefs.vendorOrderVisibility = {
app: isEnabled,
email: isEnabled,
disabledAt,
blackoutPeriods: periods,
};
}
return {
updateOne: {
filter: { _id: vendor._id },
update: { $set: { notificationPreferences: updatedPrefs } },
},
};
});
const result = await User.bulkWrite(bulkOps);
// Emit a socket event so online vendors refresh their preferences
const { getIO } = require('../utils/socket');
try {
const io = getIO();
vendors.forEach((vendor) => {
io.to(vendor._id.toString()).emit('preferencesUpdated', {
preferences: bulkOps.find(
(op) =>
op.updateOne.filter._id.toString() === vendor._id.toString(),
)?.updateOne?.update?.$set?.notificationPreferences,
});
});
} catch (socketErr) {
// Non-critical β socket might not be available
console.error(
'Socket emit error in updateAllVendorPreferences:',
socketErr,
);
}
res.status(200).json({
status: 'success',
message: `Updated preferences for ${result.modifiedCount} vendor(s)`,
data: { updatedCount: result.modifiedCount },
});
} catch (err) {
res.status(500).json({ status: 'error', message: err.message });
}
};
// βββ Stock Subscription Handlers βββββββββββββββββββββββββββββββββββββββββββββ
const StockSubscription = require('../models/stockSubscriptionModel');
// POST /notifications/stock-subscribe/:productId
exports.subscribeToStock = async (req, res) => {
try {
const { productId } = req.params;
const userId = req.user._id;
// Upsert: create if not exists, reset notifiedAt so they get notified again on next restock
await StockSubscription.findOneAndUpdate(
{ user: userId, product: productId },
{ user: userId, product: productId, notifiedAt: null },
{ upsert: true, new: true, setDefaultsOnInsert: true },
);
res.status(200).json({
status: 'success',
data: { subscribed: true },
});
} catch (err) {
res.status(500).json({ status: 'error', message: err.message });
}
};
// DELETE /notifications/stock-subscribe/:productId
exports.unsubscribeFromStock = async (req, res) => {
try {
const { productId } = req.params;
const userId = req.user._id;
await StockSubscription.findOneAndDelete({
user: userId,
product: productId,
});
res.status(200).json({
status: 'success',
data: { subscribed: false },
});
} catch (err) {
res.status(500).json({ status: 'error', message: err.message });
}
};
// GET /notifications/stock-subscribe/:productId
exports.checkStockSubscription = async (req, res) => {
try {
const { productId } = req.params;
const userId = req.user._id;
const sub = await StockSubscription.findOne({
user: userId,
product: productId,
});
res.status(200).json({
status: 'success',
data: { subscribed: !!sub },
});
} catch (err) {
res.status(500).json({ status: 'error', message: err.message });
}
};
|