aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/middlewares/validators/videos/video-watch.ts
blob: d83710a647647e071c67c0c118fd501d77281ac6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                             
                                        
                                                                                
                                                                     
                                                
                                                                                    

                                

                                 
                     
                                 





                                                                                      
                                                                    
 
                                            

                                                                                                



                                            

     








                                                                              
import express from 'express'
import { body } from 'express-validator'
import { HttpStatusCode } from '../../../../shared/models/http/http-error-codes'
import { toIntOrNull } from '../../../helpers/custom-validators/misc'
import { logger } from '../../../helpers/logger'
import { areValidationErrors, doesVideoExist, isValidVideoIdParam } from '../shared'

const videoWatchingValidator = [
  isValidVideoIdParam('videoId'),

  body('currentTime')
    .customSanitizer(toIntOrNull)
    .isInt().withMessage('Should have correct current time'),

  async (req: express.Request, res: express.Response, next: express.NextFunction) => {
    logger.debug('Checking videoWatching parameters', { parameters: req.body })

    if (areValidationErrors(req, res)) return
    if (!await doesVideoExist(req.params.videoId, res, 'id')) return

    const user = res.locals.oauth.token.User
    if (user.videosHistoryEnabled === false) {
      logger.warn('Cannot set videos to watch by user %d: videos history is disabled.', user.id)
      return res.fail({
        status: HttpStatusCode.CONFLICT_409,
        message: 'Video history is disabled'
      })
    }

    return next()
  }
]

// ---------------------------------------------------------------------------

export {
  videoWatchingValidator
}