aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators/accounts.ts
blob: e3c4774149970c2525da1b50c5ab009d7abe9bff (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 * as Bluebird from 'bluebird'
import { Response } from 'express'
import 'express-validator'
import * as validator from 'validator'
import { database as db } from '../../initializers'
import { AccountInstance } from '../../models'
import { isUserUsernameValid } from './users'

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

function isAccountIdExist (id: number | string, res: Response) {
  let promise: Bluebird<AccountInstance>

  if (validator.isInt('' + id)) {
    promise = db.Account.load(+id)
  } else { // UUID
    promise = db.Account.loadByUUID('' + id)
  }

  return isAccountExist(promise, res)
}

function isLocalAccountNameExist (name: string, res: Response) {
  const promise = db.Account.loadLocalByName(name)

  return isAccountExist(promise, res)
}

async function isAccountExist (p: Bluebird<AccountInstance>, res: Response) {
  const account = await p

  if (!account) {
    res.status(404)
      .send({ error: 'Account not found' })
      .end()

    return false
  }

  res.locals.account = account

  return true
}

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

export {
  isAccountIdExist,
  isLocalAccountNameExist,
  isAccountNameValid
}