PeerTube/server/helpers/custom-validators/accounts.ts

64 lines
1.6 KiB
TypeScript
Raw Normal View History

import * as Bluebird from 'bluebird'
2017-11-27 17:30:46 +01:00
import { Response } from 'express'
2017-11-10 14:48:08 +01:00
import 'express-validator'
2017-12-12 17:53:50 +01:00
import { AccountModel } from '../../models/account/account'
import { isUserDescriptionValid, isUserUsernameValid } from './users'
import { exists } from './misc'
2017-11-10 14:48:08 +01:00
2017-11-14 17:31:26 +01:00
function isAccountNameValid (value: string) {
2017-11-10 14:48:08 +01:00
return isUserUsernameValid(value)
}
function isAccountIdValid (value: string) {
return exists(value)
}
function isAccountDescriptionValid (value: string) {
return isUserDescriptionValid(value)
}
2019-05-31 14:02:26 +02:00
function doesAccountIdExist (id: number, res: Response, sendNotFound = true) {
const promise = AccountModel.load(id)
2017-11-10 14:48:08 +01:00
2019-03-19 09:26:50 +01:00
return doesAccountExist(promise, res, sendNotFound)
}
2019-03-19 09:26:50 +01:00
function doesLocalAccountNameExist (name: string, res: Response, sendNotFound = true) {
2017-12-12 17:53:50 +01:00
const promise = AccountModel.loadLocalByName(name)
2019-03-19 09:26:50 +01:00
return doesAccountExist(promise, res, sendNotFound)
}
2019-03-19 09:26:50 +01:00
function doesAccountNameWithHostExist (nameWithDomain: string, res: Response, sendNotFound = true) {
return doesAccountExist(AccountModel.loadByNameWithHost(nameWithDomain), res, sendNotFound)
2018-02-21 16:44:18 +01:00
}
2019-03-19 09:26:50 +01:00
async function doesAccountExist (p: Bluebird<AccountModel>, res: Response, sendNotFound: boolean) {
2017-11-27 17:30:46 +01:00
const account = await p
if (!account) {
if (sendNotFound === true) {
res.status(404)
.send({ error: 'Account not found' })
.end()
}
2017-11-27 17:30:46 +01:00
return false
}
res.locals.account = account
return true
2017-11-10 14:48:08 +01:00
}
// ---------------------------------------------------------------------------
export {
isAccountIdValid,
2019-03-19 09:26:50 +01:00
doesAccountIdExist,
doesLocalAccountNameExist,
isAccountDescriptionValid,
2019-03-19 09:26:50 +01:00
doesAccountNameWithHostExist,
2017-11-14 17:31:26 +01:00
isAccountNameValid
2017-11-10 14:48:08 +01:00
}