From 0f6acda11681de90d38dd18669863c6e270851ee Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 19 Mar 2019 09:26:50 +0100 Subject: Does exist --- server/helpers/custom-validators/accounts.ts | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to 'server/helpers/custom-validators/accounts.ts') diff --git a/server/helpers/custom-validators/accounts.ts b/server/helpers/custom-validators/accounts.ts index aad04fe93..146c7708e 100644 --- a/server/helpers/custom-validators/accounts.ts +++ b/server/helpers/custom-validators/accounts.ts @@ -5,7 +5,6 @@ import * as validator from 'validator' import { AccountModel } from '../../models/account/account' import { isUserDescriptionValid, isUserUsernameValid } from './users' import { exists } from './misc' -import { CONFIG } from '../../initializers' function isAccountNameValid (value: string) { return isUserUsernameValid(value) @@ -19,7 +18,7 @@ function isAccountDescriptionValid (value: string) { return isUserDescriptionValid(value) } -function isAccountIdExist (id: number | string, res: Response, sendNotFound = true) { +function doesAccountIdExist (id: number | string, res: Response, sendNotFound = true) { let promise: Bluebird if (validator.isInt('' + id)) { @@ -28,20 +27,20 @@ function isAccountIdExist (id: number | string, res: Response, sendNotFound = tr promise = AccountModel.loadByUUID('' + id) } - return isAccountExist(promise, res, sendNotFound) + return doesAccountExist(promise, res, sendNotFound) } -function isLocalAccountNameExist (name: string, res: Response, sendNotFound = true) { +function doesLocalAccountNameExist (name: string, res: Response, sendNotFound = true) { const promise = AccountModel.loadLocalByName(name) - return isAccountExist(promise, res, sendNotFound) + return doesAccountExist(promise, res, sendNotFound) } -function isAccountNameWithHostExist (nameWithDomain: string, res: Response, sendNotFound = true) { - return isAccountExist(AccountModel.loadByNameWithHost(nameWithDomain), res, sendNotFound) +function doesAccountNameWithHostExist (nameWithDomain: string, res: Response, sendNotFound = true) { + return doesAccountExist(AccountModel.loadByNameWithHost(nameWithDomain), res, sendNotFound) } -async function isAccountExist (p: Bluebird, res: Response, sendNotFound: boolean) { +async function doesAccountExist (p: Bluebird, res: Response, sendNotFound: boolean) { const account = await p if (!account) { @@ -63,9 +62,9 @@ async function isAccountExist (p: Bluebird, res: Response, sendNot export { isAccountIdValid, - isAccountIdExist, - isLocalAccountNameExist, + doesAccountIdExist, + doesLocalAccountNameExist, isAccountDescriptionValid, - isAccountNameWithHostExist, + doesAccountNameWithHostExist, isAccountNameValid } -- cgit v1.2.3