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

78 lines
2.1 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-11-23 18:04:48 +01:00
import * as validator from 'validator'
2017-12-12 17:53:50 +01:00
import { AccountModel } from '../../models/account/account'
import { isUserDescriptionValid, isUserUsernameValid } from './users'
import { exists } from './misc'
2018-05-25 09:57:16 +02:00
import { CONFIG } from '../../initializers'
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)
}
function isAccountIdExist (id: number | string, res: Response, sendNotFound = true) {
2017-12-12 17:53:50 +01:00
let promise: Bluebird<AccountModel>
if (validator.isInt('' + id)) {
2017-12-12 17:53:50 +01:00
promise = AccountModel.load(+id)
2017-11-10 14:48:08 +01:00
} else { // UUID
2017-12-12 17:53:50 +01:00
promise = AccountModel.loadByUUID('' + id)
2017-11-10 14:48:08 +01:00
}
return isAccountExist(promise, res, sendNotFound)
}
function isLocalAccountNameExist (name: string, res: Response, sendNotFound = true) {
2017-12-12 17:53:50 +01:00
const promise = AccountModel.loadLocalByName(name)
return isAccountExist(promise, res, sendNotFound)
}
function isAccountNameWithHostExist (nameWithDomain: string, res: Response, sendNotFound = true) {
2018-02-21 16:44:18 +01:00
const [ accountName, host ] = nameWithDomain.split('@')
let promise: Bluebird<AccountModel>
2018-05-25 09:57:16 +02:00
if (!host || host === CONFIG.WEBSERVER.HOST) promise = AccountModel.loadLocalByName(accountName)
2018-08-17 15:45:42 +02:00
else promise = AccountModel.loadByNameAndHost(accountName, host)
2018-02-21 16:44:18 +01:00
return isAccountExist(promise, res, sendNotFound)
2018-02-21 16:44:18 +01:00
}
async function isAccountExist (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,
2017-11-27 17:30:46 +01:00
isAccountIdExist,
isLocalAccountNameExist,
isAccountDescriptionValid,
2018-02-21 16:44:18 +01:00
isAccountNameWithHostExist,
2017-11-14 17:31:26 +01:00
isAccountNameValid
2017-11-10 14:48:08 +01:00
}