mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
52 lines
1.7 KiB
CoffeeScript
52 lines
1.7 KiB
CoffeeScript
settings = require("settings-sharelatex")
|
|
request = require("request")
|
|
logger = require("logger-sharelatex")
|
|
|
|
oneSecond = 1000
|
|
module.exports =
|
|
|
|
getUserNotifications: (user_id, callback)->
|
|
opts =
|
|
uri: "#{settings.apis.notifications.url}/user/#{user_id}"
|
|
json: true
|
|
timeout: oneSecond
|
|
request.get opts, (err, res, unreadNotifications)->
|
|
statusCode = if res? then res.statusCode else 500
|
|
if err? or statusCode != 200
|
|
e = new Error("something went wrong getting notifications, #{err}, #{statusCode}")
|
|
logger.err err:err, "something went wrong getting notifications"
|
|
callback(null, [])
|
|
else
|
|
if !unreadNotifications?
|
|
unreadNotifications = []
|
|
callback(null, unreadNotifications)
|
|
|
|
createNotification: (user_id, key, templateKey, messageOpts, callback)->
|
|
opts =
|
|
uri: "#{settings.apis.notifications.url}/user/#{user_id}"
|
|
timeout: oneSecond
|
|
json: {
|
|
key:key
|
|
messageOpts:messageOpts
|
|
templateKey:templateKey
|
|
}
|
|
logger.log opts:opts, "creating notification for user"
|
|
request.post opts, callback
|
|
|
|
markAsReadWithKey: (user_id, key, callback)->
|
|
opts =
|
|
uri: "#{settings.apis.notifications.url}/user/#{user_id}"
|
|
timeout: oneSecond
|
|
json: {
|
|
key:key
|
|
}
|
|
logger.log user_id:user_id, key:key, "sending mark notification as read with key to notifications api"
|
|
request.del opts, callback
|
|
|
|
|
|
markAsRead: (user_id, notification_id, callback)->
|
|
opts =
|
|
uri: "#{settings.apis.notifications.url}/user/#{user_id}/notification/#{notification_id}"
|
|
timeout:oneSecond
|
|
logger.log user_id:user_id, notification_id:notification_id, "sending mark notification as read to notifications api"
|
|
request.del opts, callback
|