2016-06-15 12:38:02 -04:00
|
|
|
logger = require("logger-sharelatex")
|
2016-02-05 09:13:38 -05:00
|
|
|
NotificationsHandler = require("./NotificationsHandler")
|
|
|
|
|
2016-08-05 11:11:03 -04:00
|
|
|
module.exports =
|
2016-02-05 09:13:38 -05:00
|
|
|
|
2016-08-11 09:04:11 -04:00
|
|
|
# Note: notification keys should be url-safe
|
|
|
|
|
2016-02-05 09:13:38 -05:00
|
|
|
groupPlan: (user, licence)->
|
|
|
|
key : "join-sub-#{licence.subscription_id}"
|
|
|
|
create: (callback = ->)->
|
2016-08-05 11:11:03 -04:00
|
|
|
messageOpts =
|
2016-02-05 09:13:38 -05:00
|
|
|
groupName: licence.name
|
|
|
|
subscription_id: licence.subscription_id
|
2016-06-15 12:38:02 -04:00
|
|
|
logger.log user_id:user._id, key:key, "creating notification key for user"
|
2016-08-17 11:27:15 -04:00
|
|
|
NotificationsHandler.createNotification user._id, @key, "notification_group_invite", messageOpts, null, false, callback
|
2016-02-05 09:13:38 -05:00
|
|
|
|
|
|
|
read: (callback = ->)->
|
2016-02-17 11:24:09 -05:00
|
|
|
NotificationsHandler.markAsReadWithKey user._id, @key, callback
|
2016-08-05 11:11:03 -04:00
|
|
|
|
|
|
|
projectInvite: (invite, project, sendingUser, user) ->
|
|
|
|
key: "project-invite-#{invite._id}"
|
|
|
|
create: (callback=()->) ->
|
|
|
|
messageOpts =
|
|
|
|
userName: sendingUser.first_name
|
|
|
|
projectName: project.name
|
|
|
|
projectId: project._id.toString()
|
|
|
|
token: invite.token
|
|
|
|
logger.log {user_id: user._id, project_id: project._id, invite_id: invite._id, key: @key}, "creating project invite notification for user"
|
2016-08-17 11:27:15 -04:00
|
|
|
NotificationsHandler.createNotification user._id, @key, "notification_project_invite", messageOpts, invite.expires, true, callback
|
2016-08-05 11:11:03 -04:00
|
|
|
read: (callback=()->) ->
|
2016-08-11 09:04:11 -04:00
|
|
|
NotificationsHandler.markAsReadByKeyOnly @key, callback
|