2016-01-21 15:42:50 -05:00
|
|
|
NotificationsHandler = require("./NotificationsHandler")
|
2016-09-05 10:58:31 -04:00
|
|
|
AuthenticationController = require("../Authentication/AuthenticationController")
|
2016-01-21 15:42:50 -05:00
|
|
|
logger = require("logger-sharelatex")
|
2016-01-22 15:08:39 -05:00
|
|
|
_ = require("underscore")
|
2016-01-21 15:42:50 -05:00
|
|
|
|
|
|
|
module.exports =
|
|
|
|
|
|
|
|
getAllUnreadNotifications: (req, res)->
|
2016-09-05 10:58:31 -04:00
|
|
|
user_id = AuthenticationController.getLoggedInUserId(req)
|
|
|
|
NotificationsHandler.getUserNotifications user_id, (err, unreadNotifications)->
|
|
|
|
unreadNotifications = _.map unreadNotifications, (notification)->
|
2016-01-22 15:08:39 -05:00
|
|
|
notification.html = req.i18n.translate(notification.templateKey, notification.messageOpts)
|
|
|
|
return notification
|
2016-01-21 15:42:50 -05:00
|
|
|
res.send(unreadNotifications)
|
|
|
|
|
|
|
|
markNotificationAsRead: (req, res)->
|
2016-09-05 10:58:31 -04:00
|
|
|
user_id = AuthenticationController.getLoggedInUserId(req)
|
2016-01-21 15:42:50 -05:00
|
|
|
notification_id = req.params.notification_id
|
|
|
|
NotificationsHandler.markAsRead user_id, notification_id, ->
|
|
|
|
res.send()
|
|
|
|
logger.log user_id:user_id, notification_id:notification_id, "mark notification as read"
|