overleaf/services/web/app/coffee/Features/Notifications/NotificationsController.coffee

42 lines
1.5 KiB
CoffeeScript
Raw Normal View History

NotificationsHandler = require("./NotificationsHandler")
NotificationsBuilder = require("./NotificationsBuilder")
2016-09-05 10:58:31 -04:00
AuthenticationController = require("../Authentication/AuthenticationController")
Settings = require 'settings-sharelatex'
UserGetter = require("../User/UserGetter")
logger = require("logger-sharelatex")
async = require "async"
2016-01-22 15:08:39 -05:00
_ = require("underscore")
module.exports =
getAllUnreadNotifications: (req, res)->
ip = req.headers['x-forwarded-for'] ||
req.connection.remoteAddress ||
req.socket.remoteAddress
2016-09-05 10:58:31 -04:00
user_id = AuthenticationController.getLoggedInUserId(req)
# in v2 add notifications for matching university IPs
if Settings.overleaf?
UserGetter.getUser user_id, { 'lastLoginIp': 1 }, (error, user) ->
console.log(user.lastLoginIp)
if ip != user.lastLoginIp
async.series ([
() ->
NotificationsBuilder.ipMatcherAffiliation(user_id, ip).create((err) ->
return err
)
])
2016-09-05 10:58:31 -04:00
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
res.send(unreadNotifications)
markNotificationAsRead: (req, res)->
2016-09-05 10:58:31 -04:00
user_id = AuthenticationController.getLoggedInUserId(req)
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"