| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- import { body, validationResult } from 'express-validator';
- // form rules
- export const inviteRules = () => {
- return [
- body('invitedForm.username')
- .matches(/^[\da-zA-Z\-_.]+$/)
- .withMessage('Username has invalid characters')
- .not()
- .isEmpty()
- .withMessage('Username field is required'),
- body('invitedForm.name').not().isEmpty().withMessage('Name field is required'),
- body('invitedForm.password')
- .matches(/^[\x20-\x7F]*$/)
- .withMessage('Password has invalid character')
- .isLength({ min: 6 })
- .withMessage('Password minimum character should be more than 6 characters')
- .not()
- .isEmpty()
- .withMessage('Password field is required'),
- ];
- };
- // validation action
- export const inviteValidation = (req, res, next) => {
- const form = req.body;
- const errors = validationResult(req);
- if (errors.isEmpty()) {
- Object.assign(form, { isValid: true });
- req.form = form;
- return next();
- }
- const extractedErrors: string[] = [];
- errors.array().map(err => extractedErrors.push(err.msg));
- req.flash('errorMessages', extractedErrors);
- Object.assign(form, { isValid: false });
- req.form = form;
- return next();
- };
- // form rules
- export const loginRules = () => {
- return [
- body('loginForm.username')
- .matches(/^[\da-zA-Z\-_.@]+$/)
- .withMessage('Username has invalid characters')
- .not()
- .isEmpty()
- .withMessage('Username field is required'),
- body('loginForm.password')
- .matches(/^[\x20-\x7F]*$/)
- .withMessage('Password has invalid character')
- .isLength({ min: 6 })
- .withMessage('Password minimum character should be more than 6 characters')
- .not()
- .isEmpty()
- .withMessage('Password field is required'),
- ];
- };
- // validation action
- export const loginValidation = (req, res, next) => {
- const form = req.body;
- const errors = validationResult(req);
- if (errors.isEmpty()) {
- Object.assign(form, { isValid: true });
- req.form = form;
- return next();
- }
- const extractedErrors: string[] = [];
- errors.array().map(err => extractedErrors.push(err.msg));
- req.flash('errorMessages', extractedErrors);
- Object.assign(form, { isValid: false });
- req.form = form;
- return next();
- };
|