123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464 |
- import * as Bluebird from 'bluebird'
- import * as express from 'express'
- import 'express-validator'
- import { body, param } from 'express-validator/check'
- import { omit } from 'lodash'
- import { isIdOrUUIDValid } from '../../helpers/custom-validators/misc'
- import {
- isUserAdminFlagsValid,
- isUserAutoPlayVideoValid,
- isUserBlockedReasonValid,
- isUserDescriptionValid,
- isUserDisplayNameValid,
- isUserNSFWPolicyValid,
- isUserPasswordValid,
- isUserRoleValid,
- isUserUsernameValid, isUserVideoLanguages,
- isUserVideoQuotaDailyValid,
- isUserVideoQuotaValid,
- isUserVideosHistoryEnabledValid
- } from '../../helpers/custom-validators/users'
- import { doesVideoExist } from '../../helpers/custom-validators/videos'
- import { logger } from '../../helpers/logger'
- import { isSignupAllowed, isSignupAllowedForCurrentIP } from '../../helpers/signup'
- import { Redis } from '../../lib/redis'
- import { UserModel } from '../../models/account/user'
- import { areValidationErrors } from './utils'
- import { ActorModel } from '../../models/activitypub/actor'
- import { isActorPreferredUsernameValid } from '../../helpers/custom-validators/activitypub/actor'
- import { isVideoChannelNameValid } from '../../helpers/custom-validators/video-channels'
- import { UserRegister } from '../../../shared/models/users/user-register.model'
- const usersAddValidator = [
- body('username').custom(isUserUsernameValid).withMessage('Should have a valid username (lowercase alphanumeric characters)'),
- body('password').custom(isUserPasswordValid).withMessage('Should have a valid password'),
- body('email').isEmail().withMessage('Should have a valid email'),
- body('videoQuota').custom(isUserVideoQuotaValid).withMessage('Should have a valid user quota'),
- body('videoQuotaDaily').custom(isUserVideoQuotaDailyValid).withMessage('Should have a valid daily user quota'),
- body('role').custom(isUserRoleValid).withMessage('Should have a valid role'),
- body('adminFlags').optional().custom(isUserAdminFlagsValid).withMessage('Should have a valid admin flags'),
- async (req: express.Request, res: express.Response, next: express.NextFunction) => {
- logger.debug('Checking usersAdd parameters', { parameters: omit(req.body, 'password') })
- if (areValidationErrors(req, res)) return
- if (!await checkUserNameOrEmailDoesNotAlreadyExist(req.body.username, req.body.email, res)) return
- return next()
- }
- ]
- const usersRegisterValidator = [
- body('username').custom(isUserUsernameValid).withMessage('Should have a valid username'),
- body('password').custom(isUserPasswordValid).withMessage('Should have a valid password'),
- body('email').isEmail().withMessage('Should have a valid email'),
- body('displayName')
- .optional()
- .custom(isUserDisplayNameValid).withMessage('Should have a valid display name'),
- body('channel.name')
- .optional()
- .custom(isActorPreferredUsernameValid).withMessage('Should have a valid channel name'),
- body('channel.displayName')
- .optional()
- .custom(isVideoChannelNameValid).withMessage('Should have a valid display name'),
- async (req: express.Request, res: express.Response, next: express.NextFunction) => {
- logger.debug('Checking usersRegister parameters', { parameters: omit(req.body, 'password') })
- if (areValidationErrors(req, res)) return
- if (!await checkUserNameOrEmailDoesNotAlreadyExist(req.body.username, req.body.email, res)) return
- const body: UserRegister = req.body
- if (body.channel) {
- if (!body.channel.name || !body.channel.displayName) {
- return res.status(400)
- .send({ error: 'Channel is optional but if you specify it, channel.name and channel.displayName are required.' })
- .end()
- }
- if (body.channel.name === body.username) {
- return res.status(400)
- .send({ error: 'Channel name cannot be the same than user username.' })
- .end()
- }
- const existing = await ActorModel.loadLocalByName(body.channel.name)
- if (existing) {
- return res.status(409)
- .send({ error: `Channel with name ${body.channel.name} already exists.` })
- .end()
- }
- }
- return next()
- }
- ]
- const usersRemoveValidator = [
- param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
- async (req: express.Request, res: express.Response, next: express.NextFunction) => {
- logger.debug('Checking usersRemove parameters', { parameters: req.params })
- if (areValidationErrors(req, res)) return
- if (!await checkUserIdExist(req.params.id, res)) return
- const user = res.locals.user
- if (user.username === 'root') {
- return res.status(400)
- .send({ error: 'Cannot remove the root user' })
- .end()
- }
- return next()
- }
- ]
- const usersBlockingValidator = [
- param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
- body('reason').optional().custom(isUserBlockedReasonValid).withMessage('Should have a valid blocking reason'),
- async (req: express.Request, res: express.Response, next: express.NextFunction) => {
- logger.debug('Checking usersBlocking parameters', { parameters: req.params })
- if (areValidationErrors(req, res)) return
- if (!await checkUserIdExist(req.params.id, res)) return
- const user = res.locals.user
- if (user.username === 'root') {
- return res.status(400)
- .send({ error: 'Cannot block the root user' })
- .end()
- }
- return next()
- }
- ]
- const deleteMeValidator = [
- async (req: express.Request, res: express.Response, next: express.NextFunction) => {
- const user = res.locals.oauth.token.User
- if (user.username === 'root') {
- return res.status(400)
- .send({ error: 'You cannot delete your root account.' })
- .end()
- }
- return next()
- }
- ]
- const usersUpdateValidator = [
- param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
- body('password').optional().custom(isUserPasswordValid).withMessage('Should have a valid password'),
- body('email').optional().isEmail().withMessage('Should have a valid email attribute'),
- body('emailVerified').optional().isBoolean().withMessage('Should have a valid email verified attribute'),
- body('videoQuota').optional().custom(isUserVideoQuotaValid).withMessage('Should have a valid user quota'),
- body('videoQuotaDaily').optional().custom(isUserVideoQuotaDailyValid).withMessage('Should have a valid daily user quota'),
- body('role').optional().custom(isUserRoleValid).withMessage('Should have a valid role'),
- body('adminFlags').optional().custom(isUserAdminFlagsValid).withMessage('Should have a valid admin flags'),
- async (req: express.Request, res: express.Response, next: express.NextFunction) => {
- logger.debug('Checking usersUpdate parameters', { parameters: req.body })
- if (areValidationErrors(req, res)) return
- if (!await checkUserIdExist(req.params.id, res)) return
- const user = res.locals.user
- if (user.username === 'root' && req.body.role !== undefined && user.role !== req.body.role) {
- return res.status(400)
- .send({ error: 'Cannot change root role.' })
- .end()
- }
- return next()
- }
- ]
- const usersUpdateMeValidator = [
- body('displayName')
- .optional()
- .custom(isUserDisplayNameValid).withMessage('Should have a valid display name'),
- body('description')
- .optional()
- .custom(isUserDescriptionValid).withMessage('Should have a valid description'),
- body('currentPassword')
- .optional()
- .custom(isUserPasswordValid).withMessage('Should have a valid current password'),
- body('password')
- .optional()
- .custom(isUserPasswordValid).withMessage('Should have a valid password'),
- body('email')
- .optional()
- .isEmail().withMessage('Should have a valid email attribute'),
- body('nsfwPolicy')
- .optional()
- .custom(isUserNSFWPolicyValid).withMessage('Should have a valid display Not Safe For Work policy'),
- body('autoPlayVideo')
- .optional()
- .custom(isUserAutoPlayVideoValid).withMessage('Should have a valid automatically plays video attribute'),
- body('videoLanguages')
- .optional()
- .custom(isUserVideoLanguages).withMessage('Should have a valid video languages attribute'),
- body('videosHistoryEnabled')
- .optional()
- .custom(isUserVideosHistoryEnabledValid).withMessage('Should have a valid videos history enabled attribute'),
- async (req: express.Request, res: express.Response, next: express.NextFunction) => {
- logger.debug('Checking usersUpdateMe parameters', { parameters: omit(req.body, 'password') })
- if (req.body.password || req.body.email) {
- if (!req.body.currentPassword) {
- return res.status(400)
- .send({ error: 'currentPassword parameter is missing.' })
- .end()
- }
- const user = res.locals.oauth.token.User
- if (await user.isPasswordMatch(req.body.currentPassword) !== true) {
- return res.status(401)
- .send({ error: 'currentPassword is invalid.' })
- .end()
- }
- }
- if (areValidationErrors(req, res)) return
- return next()
- }
- ]
- const usersGetValidator = [
- param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
- async (req: express.Request, res: express.Response, next: express.NextFunction) => {
- logger.debug('Checking usersGet parameters', { parameters: req.params })
- if (areValidationErrors(req, res)) return
- if (!await checkUserIdExist(req.params.id, res)) return
- return next()
- }
- ]
- const usersVideoRatingValidator = [
- param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid video id'),
- async (req: express.Request, res: express.Response, next: express.NextFunction) => {
- logger.debug('Checking usersVideoRating parameters', { parameters: req.params })
- if (areValidationErrors(req, res)) return
- if (!await doesVideoExist(req.params.videoId, res, 'id')) return
- return next()
- }
- ]
- const ensureUserRegistrationAllowed = [
- async (req: express.Request, res: express.Response, next: express.NextFunction) => {
- const allowed = await isSignupAllowed()
- if (allowed === false) {
- return res.status(403)
- .send({ error: 'User registration is not enabled or user limit is reached.' })
- .end()
- }
- return next()
- }
- ]
- const ensureUserRegistrationAllowedForIP = [
- async (req: express.Request, res: express.Response, next: express.NextFunction) => {
- const allowed = isSignupAllowedForCurrentIP(req.ip)
- if (allowed === false) {
- return res.status(403)
- .send({ error: 'You are not on a network authorized for registration.' })
- .end()
- }
- return next()
- }
- ]
- const usersAskResetPasswordValidator = [
- body('email').isEmail().not().isEmpty().withMessage('Should have a valid email'),
- async (req: express.Request, res: express.Response, next: express.NextFunction) => {
- logger.debug('Checking usersAskResetPassword parameters', { parameters: req.body })
- if (areValidationErrors(req, res)) return
- const exists = await checkUserEmailExist(req.body.email, res, false)
- if (!exists) {
- logger.debug('User with email %s does not exist (asking reset password).', req.body.email)
- // Do not leak our emails
- return res.status(204).end()
- }
- return next()
- }
- ]
- const usersResetPasswordValidator = [
- param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
- body('verificationString').not().isEmpty().withMessage('Should have a valid verification string'),
- body('password').custom(isUserPasswordValid).withMessage('Should have a valid password'),
- async (req: express.Request, res: express.Response, next: express.NextFunction) => {
- logger.debug('Checking usersResetPassword parameters', { parameters: req.params })
- if (areValidationErrors(req, res)) return
- if (!await checkUserIdExist(req.params.id, res)) return
- const user = res.locals.user
- const redisVerificationString = await Redis.Instance.getResetPasswordLink(user.id)
- if (redisVerificationString !== req.body.verificationString) {
- return res
- .status(403)
- .send({ error: 'Invalid verification string.' })
- .end()
- }
- return next()
- }
- ]
- const usersAskSendVerifyEmailValidator = [
- body('email').isEmail().not().isEmpty().withMessage('Should have a valid email'),
- async (req: express.Request, res: express.Response, next: express.NextFunction) => {
- logger.debug('Checking askUsersSendVerifyEmail parameters', { parameters: req.body })
- if (areValidationErrors(req, res)) return
- const exists = await checkUserEmailExist(req.body.email, res, false)
- if (!exists) {
- logger.debug('User with email %s does not exist (asking verify email).', req.body.email)
- // Do not leak our emails
- return res.status(204).end()
- }
- return next()
- }
- ]
- const usersVerifyEmailValidator = [
- param('id')
- .isInt().not().isEmpty().withMessage('Should have a valid id'),
- body('verificationString')
- .not().isEmpty().withMessage('Should have a valid verification string'),
- body('isPendingEmail')
- .optional()
- .toBoolean(),
- async (req: express.Request, res: express.Response, next: express.NextFunction) => {
- logger.debug('Checking usersVerifyEmail parameters', { parameters: req.params })
- if (areValidationErrors(req, res)) return
- if (!await checkUserIdExist(req.params.id, res)) return
- const user = res.locals.user
- const redisVerificationString = await Redis.Instance.getVerifyEmailLink(user.id)
- if (redisVerificationString !== req.body.verificationString) {
- return res
- .status(403)
- .send({ error: 'Invalid verification string.' })
- .end()
- }
- return next()
- }
- ]
- const userAutocompleteValidator = [
- param('search').isString().not().isEmpty().withMessage('Should have a search parameter')
- ]
- const ensureAuthUserOwnsAccountValidator = [
- async (req: express.Request, res: express.Response, next: express.NextFunction) => {
- const user = res.locals.oauth.token.User
- if (res.locals.account.id !== user.Account.id) {
- return res.status(403)
- .send({ error: 'Only owner can access ratings list.' })
- .end()
- }
- return next()
- }
- ]
- // ---------------------------------------------------------------------------
- export {
- usersAddValidator,
- deleteMeValidator,
- usersRegisterValidator,
- usersBlockingValidator,
- usersRemoveValidator,
- usersUpdateValidator,
- usersUpdateMeValidator,
- usersVideoRatingValidator,
- ensureUserRegistrationAllowed,
- ensureUserRegistrationAllowedForIP,
- usersGetValidator,
- usersAskResetPasswordValidator,
- usersResetPasswordValidator,
- usersAskSendVerifyEmailValidator,
- usersVerifyEmailValidator,
- userAutocompleteValidator,
- ensureAuthUserOwnsAccountValidator
- }
- // ---------------------------------------------------------------------------
- function checkUserIdExist (id: number, res: express.Response) {
- return checkUserExist(() => UserModel.loadById(id), res)
- }
- function checkUserEmailExist (email: string, res: express.Response, abortResponse = true) {
- return checkUserExist(() => UserModel.loadByEmail(email), res, abortResponse)
- }
- async function checkUserNameOrEmailDoesNotAlreadyExist (username: string, email: string, res: express.Response) {
- const user = await UserModel.loadByUsernameOrEmail(username, email)
- if (user) {
- res.status(409)
- .send({ error: 'User with this username or email already exists.' })
- .end()
- return false
- }
- const actor = await ActorModel.loadLocalByName(username)
- if (actor) {
- res.status(409)
- .send({ error: 'Another actor (account/channel) with this name on this instance already exists or has already existed.' })
- .end()
- return false
- }
- return true
- }
- async function checkUserExist (finder: () => Bluebird<UserModel>, res: express.Response, abortResponse = true) {
- const user = await finder()
- if (!user) {
- if (abortResponse === true) {
- res.status(404)
- .send({ error: 'User not found' })
- .end()
- }
- return false
- }
- res.locals.user = user
- return true
- }
|