X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmiddlewares%2Fvalidators%2Faccount.ts;h=e529c831d541ea575e80209a8d6f3d623848dc00;hb=082d32eb8873190e48329b61b91f87d71f3cf812;hp=5abe942d6b5340e5c44e41a38aa66b1f6582b3f1;hpb=e4f97babf701481b55cc10fb3448feab5f97c867;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/middlewares/validators/account.ts b/server/middlewares/validators/account.ts index 5abe942d6..e529c831d 100644 --- a/server/middlewares/validators/account.ts +++ b/server/middlewares/validators/account.ts @@ -1,53 +1,38 @@ -import { param } from 'express-validator/check' -import * as express from 'express' - -import { database as db } from '../../initializers/database' -import { checkErrors } from './utils' -import { - logger, - isUserUsernameValid, - isUserPasswordValid, - isUserVideoQuotaValid, - isUserDisplayNSFWValid, - isUserRoleValid, - isAccountNameValid -} from '../../helpers' -import { AccountInstance } from '../../models' +import express from 'express' +import { param } from 'express-validator' +import { isAccountNameValid } from '../../helpers/custom-validators/accounts' +import { logger } from '../../helpers/logger' +import { areValidationErrors, doesAccountNameWithHostExist, doesLocalAccountNameExist } from './shared' const localAccountValidator = [ param('name').custom(isAccountNameValid).withMessage('Should have a valid account name'), - (req: express.Request, res: express.Response, next: express.NextFunction) => { + async (req: express.Request, res: express.Response, next: express.NextFunction) => { logger.debug('Checking localAccountValidator parameters', { parameters: req.params }) - checkErrors(req, res, () => { - checkLocalAccountExists(req.params.name, res, next) - }) + if (areValidationErrors(req, res)) return + if (!await doesLocalAccountNameExist(req.params.name, res)) return + + return next() } ] -// --------------------------------------------------------------------------- +const accountNameWithHostGetValidator = [ + param('accountName').exists().withMessage('Should have an account name with host'), -export { - localAccountValidator -} + async (req: express.Request, res: express.Response, next: express.NextFunction) => { + logger.debug('Checking accountsNameWithHostGetValidator parameters', { parameters: req.params }) + + if (areValidationErrors(req, res)) return + if (!await doesAccountNameWithHostExist(req.params.accountName, res)) return + + return next() + } +] // --------------------------------------------------------------------------- -function checkLocalAccountExists (name: string, res: express.Response, callback: (err: Error, account: AccountInstance) => void) { - db.Account.loadLocalAccountByName(name) - .then(account => { - if (!account) { - return res.status(404) - .send({ error: 'Account not found' }) - .end() - } - - res.locals.account = account - return callback(null, account) - }) - .catch(err => { - logger.error('Error in account request validator.', err) - return res.sendStatus(500) - }) +export { + localAccountValidator, + accountNameWithHostGetValidator }