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