aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators/video-authors.ts
blob: 48ca9b200eb39e6ad743b3bebc56ab484ffcc9b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import * as Promise from 'bluebird'
import * as validator from 'validator'
import * as express from 'express'
import 'express-validator'

import { database as db } from '../../initializers'
import { AuthorInstance } from '../../models'
import { logger } from '../logger'

import { isUserUsernameValid } from './users'

function isVideoAuthorNameValid (value: string) {
  return isUserUsernameValid(value)
}

function checkVideoAuthorExists (id: string, res: express.Response, callback: () => void) {
  let promise: Promise<AuthorInstance>
  if (validator.isInt(id)) {
    promise = db.Author.load(+id)
  } else { // UUID
    promise = db.Author.loadByUUID(id)
  }

  promise.then(author => {
    if (!author) {
      return res.status(404)
        .json({ error: 'Video author not found' })
        .end()
    }

    res.locals.author = author
    callback()
  })
    .catch(err => {
      logger.error('Error in video author request validator.', err)
      return res.sendStatus(500)
    })
}

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

export {
  checkVideoAuthorExists,
  isVideoAuthorNameValid
}