aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/validators/account.ts
blob: 5abe942d6b5340e5c44e41a38aa66b1f6582b3f1 (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
46
47
48
49
50
51
52
53
import { param } from 'express-validator/check'
import * as express from 'express'

import { database as db } from '../../initializers/database'
import { checkErrors } from './utils'
import {
  logger,
  isUserUsernameValid,
  isUserPasswordValid,
  isUserVideoQuotaValid,
  isUserDisplayNSFWValid,
  isUserRoleValid,
  isAccountNameValid
} from '../../helpers'
import { AccountInstance } from '../../models'

const localAccountValidator = [
  param('name').custom(isAccountNameValid).withMessage('Should have a valid account name'),

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

    checkErrors(req, res, () => {
      checkLocalAccountExists(req.params.name, res, next)
    })
  }
]

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

export {
  localAccountValidator
}

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

function checkLocalAccountExists (name: string, res: express.Response, callback: (err: Error, account: AccountInstance) => void) {
  db.Account.loadLocalAccountByName(name)
    .then(account => {
      if (!account) {
        return res.status(404)
          .send({ error: 'Account not found' })
          .end()
      }

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