Files
overleaf-cep/services/web/app/src/Features/Notifications/NotificationsController.js
Alasdair Smith 0ca81de78c Merge pull request #1717 from overleaf/as-decaffeinate-backend
Decaffeinate backend

GitOrigin-RevId: 4ca9f94fc809cab6f47cec8254cacaf1bb3806fa
2019-05-29 09:32:21 +00:00

43 lines
1.4 KiB
JavaScript

/* eslint-disable
camelcase,
handle-callback-err,
max-len,
*/
// TODO: This file was created by bulk-decaffeinate.
// Fix any style issues and re-enable lint.
/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
*/
const NotificationsHandler = require('./NotificationsHandler')
const AuthenticationController = require('../Authentication/AuthenticationController')
const logger = require('logger-sharelatex')
const _ = require('underscore')
module.exports = {
getAllUnreadNotifications(req, res) {
const user_id = AuthenticationController.getLoggedInUserId(req)
return NotificationsHandler.getUserNotifications(user_id, function(
err,
unreadNotifications
) {
unreadNotifications = _.map(unreadNotifications, function(notification) {
notification.html = req.i18n.translate(
notification.templateKey,
notification.messageOpts
)
return notification
})
return res.send(unreadNotifications)
})
},
markNotificationAsRead(req, res) {
const user_id = AuthenticationController.getLoggedInUserId(req)
const { notification_id } = req.params
NotificationsHandler.markAsRead(user_id, notification_id, () => res.send())
return logger.log({ user_id, notification_id }, 'mark notification as read')
}
}