gancio-upstream/server/notifier.js
2021-12-02 12:39:55 +01:00

89 lines
3 KiB
JavaScript

const events = require('events')
const mail = require('./api/mail')
const log = require('./log')
const fediverseHelpers = require('./federation/helpers')
const Event = require('./api/models/event')
const Notification = require('./api/models/notification')
const EventNotification = require('./api/models/eventnotification')
const User = require('./api/models/user')
const Place = require('./api/models/place')
const Tag = require('./api/models/tag')
const eventController = require('./api/controller/event')
const settingsController = require('./api/controller/settings')
const notifier = {
emitter: new events.EventEmitter(),
sendNotification (notification, event) {
const promises = []
log.info(`Send ${notification.type} notification ${notification.action}`)
let p
switch (notification.type) {
// case 'mail': TODO: locale?
// return mail.send(notification.email, 'event', { event, notification })
case 'admin_email':
p = mail.send(settingsController.settings.admin_email, 'event',
{ event, to_confirm: !event.is_visible, notification })
promises.push(p)
break
case 'ap':
p = fediverseHelpers.sendEvent(event, notification.action)
promises.push(p)
}
return Promise.all(promises)
},
async notifyEvent (action, eventId) {
const event = await Event.findByPk(eventId, {
include: [Tag, Place, Notification, User]
})
notifier.emitter.emit(action, event.get({ plain: true, raw: true }))
log.debug(action, event.title)
// insert notifications
const notifications = await eventController.getNotifications(event, action)
await event.addNotifications(notifications)
const event_notifications = await event.getNotifications({ through: { where: { status: 'new' } } })
const promises = event_notifications.map(async notification => {
try {
await notification.event_notification.update({ status: 'sending' })
await notifier.sendNotification(notification, event)
notification.event_notification.status = 'sent'
} catch (err) {
log.error('[NOTIFY EVENT]', err)
notification.event_notification.status = 'error'
}
return notification.event_notification.save()
})
return Promise.all(promises)
},
async notify () {
// get all event notification in queue
const eventNotifications = await EventNotification.findAll({ where: { status: 'new' } })
const promises = eventNotifications.map(async e => {
const event = await Event.findByPk(e.eventId, { include: [User, Place, Tag] })
if (!event.place) { return }
const notification = await Notification.findByPk(e.notificationId)
try {
await notifier.sendNotification(notification, event)
e.status = 'sent'
return e.save()
} catch (err) {
log.error('[NOTIFY]', err)
e.status = 'error'
e.error = err
return e.save()
}
})
return Promise.all(promises)
}
}
module.exports = notifier