1
0
Fork 0
peertube/server/core/middlewares/validators/server.ts

76 lines
2.2 KiB
TypeScript
Raw Normal View History

2021-08-27 12:32:44 +00:00
import express from 'express'
2019-07-25 14:23:44 +00:00
import { body } from 'express-validator'
import { HttpStatusCode } from '@peertube/peertube-models'
import { isHostValid, isValidContactBody } from '../../helpers/custom-validators/servers.js'
import { isUserDisplayNameValid } from '../../helpers/custom-validators/users.js'
import { logger } from '../../helpers/logger.js'
import { CONFIG, isEmailEnabled } from '../../initializers/config.js'
import { Redis } from '../../lib/redis.js'
import { ServerModel } from '../../models/server/server.js'
import { areValidationErrors } from './shared/index.js'
const serverGetValidator = [
body('host').custom(isHostValid).withMessage('Should have a valid host'),
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
if (areValidationErrors(req, res)) return
const server = await ServerModel.loadByHost(req.body.host)
if (!server) {
return res.fail({
status: HttpStatusCode.NOT_FOUND_404,
message: 'Server host not found.'
})
}
res.locals.server = server
return next()
}
]
2019-01-09 14:14:29 +00:00
const contactAdministratorValidator = [
body('fromName')
.custom(isUserDisplayNameValid),
2019-01-09 14:14:29 +00:00
body('fromEmail')
.isEmail(),
2019-01-09 14:14:29 +00:00
body('body')
.custom(isValidContactBody),
2019-01-09 14:14:29 +00:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
if (areValidationErrors(req, res)) return
if (CONFIG.CONTACT_FORM.ENABLED === false) {
return res.fail({
status: HttpStatusCode.CONFLICT_409,
message: 'Contact form is not enabled on this instance.'
})
2019-01-09 14:14:29 +00:00
}
2020-02-17 09:27:00 +00:00
if (isEmailEnabled() === false) {
return res.fail({
status: HttpStatusCode.CONFLICT_409,
message: 'SMTP is not configured on this instance.'
})
2019-01-09 14:14:29 +00:00
}
2019-03-19 08:26:50 +00:00
if (await Redis.Instance.doesContactFormIpExist(req.ip)) {
2019-01-09 14:14:29 +00:00
logger.info('Refusing a contact form by %s: already sent one recently.', req.ip)
return res.fail({
status: HttpStatusCode.FORBIDDEN_403,
message: 'You already sent a contact form recently.'
})
2019-01-09 14:14:29 +00:00
}
return next()
}
]
// ---------------------------------------------------------------------------
export {
2019-01-09 14:14:29 +00:00
serverGetValidator,
contactAdministratorValidator
}