mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-24 09:39:35 +02:00
[Integration branch] Project Dashboard React Migration GitOrigin-RevId: 3c3db39109a8137c57995f5f7c0ff8c800f04c4e
143 lines
3.5 KiB
JavaScript
143 lines
3.5 KiB
JavaScript
const settings = require('@overleaf/settings')
|
|
const request = require('request')
|
|
const logger = require('@overleaf/logger')
|
|
const _ = require('lodash')
|
|
const { promisifyAll } = require('../../util/promises')
|
|
|
|
const notificationsApi = _.get(settings, ['apis', 'notifications', 'url'])
|
|
const oneSecond = 1000
|
|
|
|
const makeRequest = function (opts, callback) {
|
|
if (notificationsApi) {
|
|
request(opts, callback)
|
|
} else {
|
|
callback(null, { statusCode: 200 })
|
|
}
|
|
}
|
|
|
|
const NotificationsHandler = {
|
|
getUserNotifications(userId, callback) {
|
|
const opts = {
|
|
uri: `${notificationsApi}/user/${userId}`,
|
|
json: true,
|
|
timeout: oneSecond,
|
|
method: 'GET',
|
|
}
|
|
makeRequest(opts, function (err, res, unreadNotifications) {
|
|
const statusCode = res ? res.statusCode : 500
|
|
if (err || statusCode !== 200) {
|
|
logger.err(
|
|
{ err, statusCode },
|
|
'something went wrong getting notifications'
|
|
)
|
|
callback(null, [])
|
|
} else {
|
|
if (unreadNotifications == null) {
|
|
unreadNotifications = []
|
|
}
|
|
callback(null, unreadNotifications)
|
|
}
|
|
})
|
|
},
|
|
|
|
createNotification(
|
|
userId,
|
|
key,
|
|
templateKey,
|
|
messageOpts,
|
|
expiryDateTime,
|
|
forceCreate,
|
|
callback
|
|
) {
|
|
if (!callback) {
|
|
callback = forceCreate
|
|
forceCreate = true
|
|
}
|
|
const payload = {
|
|
key,
|
|
messageOpts,
|
|
templateKey,
|
|
forceCreate,
|
|
}
|
|
if (expiryDateTime) {
|
|
payload.expires = expiryDateTime
|
|
}
|
|
const opts = {
|
|
uri: `${notificationsApi}/user/${userId}`,
|
|
timeout: oneSecond,
|
|
method: 'POST',
|
|
json: payload,
|
|
}
|
|
makeRequest(opts, callback)
|
|
},
|
|
|
|
markAsReadWithKey(userId, key, callback) {
|
|
const opts = {
|
|
uri: `${notificationsApi}/user/${userId}`,
|
|
method: 'DELETE',
|
|
timeout: oneSecond,
|
|
json: {
|
|
key,
|
|
},
|
|
}
|
|
makeRequest(opts, callback)
|
|
},
|
|
|
|
markAsRead(userId, notificationId, callback) {
|
|
const opts = {
|
|
method: 'DELETE',
|
|
uri: `${notificationsApi}/user/${userId}/notification/${notificationId}`,
|
|
timeout: oneSecond,
|
|
}
|
|
makeRequest(opts, callback)
|
|
},
|
|
|
|
// removes notification by key, without regard for user_id,
|
|
// should not be exposed to user via ui/router
|
|
markAsReadByKeyOnly(key, callback) {
|
|
const opts = {
|
|
uri: `${notificationsApi}/key/${key}`,
|
|
method: 'DELETE',
|
|
timeout: oneSecond,
|
|
}
|
|
makeRequest(opts, callback)
|
|
},
|
|
|
|
previewMarkAsReadByKeyOnlyBulk(key, callback) {
|
|
const opts = {
|
|
uri: `${notificationsApi}/key/${key}/count`,
|
|
method: 'GET',
|
|
timeout: 10 * oneSecond,
|
|
json: true,
|
|
}
|
|
makeRequest(opts, (err, res, body) => {
|
|
if (err) return callback(err)
|
|
if (res.statusCode !== 200) {
|
|
return callback(
|
|
new Error('cannot preview bulk delete notification: ' + key)
|
|
)
|
|
}
|
|
callback(null, (body && body.count) || 0)
|
|
})
|
|
},
|
|
|
|
markAsReadByKeyOnlyBulk(key, callback) {
|
|
const opts = {
|
|
uri: `${notificationsApi}/key/${key}/bulk`,
|
|
method: 'DELETE',
|
|
timeout: 10 * oneSecond,
|
|
json: true,
|
|
}
|
|
makeRequest(opts, (err, res, body) => {
|
|
if (err) return callback(err)
|
|
if (res.statusCode !== 200) {
|
|
return callback(new Error('cannot bulk delete notification: ' + key))
|
|
}
|
|
callback(null, (body && body.count) || 0)
|
|
})
|
|
},
|
|
}
|
|
|
|
NotificationsHandler.promises = promisifyAll(NotificationsHandler)
|
|
module.exports = NotificationsHandler
|