cubash-archive/models/Notification.js

68 lines
1.9 KiB
JavaScript

const Errors = require('../lib/errors')
module.exports = (sequelize, DataTypes) => {
let Notification = sequelize.define('Notification', {
interacted: {
type: DataTypes.BOOLEAN,
defaultValue: false
},
read: {
type: DataTypes.BOOLEAN,
defaultValue: false
},
type: DataTypes.ENUM('mention', 'thread update', 'reply')
})
Notification.associate = function (models) {
Notification.hasOne(models.PostNotification)
Notification.belongsTo(models.User)
}
Notification.filterMentions = function (mentions) {
//If mentions is not an array of strings
if(!Array.isArray(mentions) || mentions.filter(m => typeof m !== 'string').length) {
throw Errors.sequelizeValidation(sequelize, {
error: 'mentions must be an array of strings',
value: mentions
})
}
return mentions.filter((mention, pos, self) => {
return self.indexOf(mention) === pos
})
}
Notification.createPostNotification = function (props) {
let { PostNotification, User, Post } = sequelize.models
let userTo = User.findOne({ where: { username: props.usernameTo } })
if(!userTo) return null
let notification = Notification.create({ type: props.type })
let postNotification = PostNotification.create()
postNotification.setUser(props.userFrom)
postNotification.setPost(props.post)
notification.setPostNotification(postNotification)
notification.setUser(userTo)
let reloadedNotification = notification.reload({
include: [{
model: PostNotification,
include: [Post, { model: User, attributes: ['createdAt', 'username', 'color'] }]
}]
})
return reloadedNotification
}
Notification.prototype.emitNotificationMessage = function (ioUsers, io) {
let User = sequelize.models.User
let user = User.findByPk(this.UserId)
if(ioUsers[user.username]) {
console.log(ioUsers)
io.to(ioUsers[user.username])
.emit('notification', this.toJSON())
}
}
return Notification
}