12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- let express = require('express')
- let router = express.Router()
- const Errors = require('../lib/errors')
- let { Notification, User, Post, PostNotification } = require('../models')
- router.all('*', (req, res, next) => {
- if(req.session.loggedIn) {
- next()
- } else {
- res.status(401)
- res.json({
- errors: [Errors.requestNotAuthorized]
- })
- }
- })
- router.get('/', async (req, res, next) => {
- try {
- let Notifications = await Notification.findAll({
- where: {
- 'UserId': req.session.UserId
- },
- order: [['id', 'DESC']],
- include: [{
- model: PostNotification,
- include: [Post, { model: User, attributes: ['createdAt', 'username', 'color'] }]
- }]
- })
- let unreadCount = Notifications.reduce((acc, val) => {
- return val.read ? acc : acc+1
- }, 0)
- res.json({ Notifications, unreadCount })
- } catch (e) { next(e) }
- })
- router.put('/', async (req, res, next) => {
- try {
- await Notification.update({ read: true }, {
- where: {
- 'UserId': req.session.UserId,
- 'read': false
- }
- })
- res.json({ success: true })
- } catch (e) { next(e) }
- })
- router.put('/:id', async (req, res, next) => {
- try {
- let updatedRows = await Notification.update({ interacted: true, read: true }, {
- where: {
- 'UserId': req.session.UserId,
- id: req.params.id
- }
- })
- if(updatedRows[0] === 0) {
- res.status(400)
- res.json({
- errors: [Errors.invalidParameter('id', 'invalid notification id')]
- })
- } else {
- res.json({ success: true })
- }
- } catch (e) { next(e) }
- })
- router.delete('/:id', async (req, res, next) => {
- try {
- let deleted = await Notification.destroy({
- where: {
- 'UserId': req.session.UserId,
- id: req.params.id
- }
- })
- if(deleted) {
- res.json({ success: true })
- } else {
- res.status(400)
- res.json({
- errors: [Errors.invalidParameter('id', 'invalid notification id')]
- })
- }
- } catch (e) { next(e) }
- })
- module.exports = router
|