You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
main
${ noResults }
63 lines
2.0 KiB
TypeScript
63 lines
2.0 KiB
TypeScript
import express from 'express'
|
|||
import RateLimit, { Options as RateLimitHandlerOptions } from 'express-rate-limit'
|
|||
import { UserRole, UserRoleType } from '@peertube/peertube-models'
|
|||
import { CONFIG } from '@server/initializers/config.js'
|
|||
import { RunnerModel } from '@server/models/runner/runner.js'
|
|||
import { optionalAuthenticate } from './auth.js'
|
|||
import { logger } from '@server/helpers/logger.js'
|
|||
|
|||
const whitelistRoles = new Set<UserRoleType>([ UserRole.ADMINISTRATOR, UserRole.MODERATOR ])
|
|||
|
|||
export function buildRateLimiter (options: {
|
|||
windowMs: number
|
|||
max: number
|
|||
skipFailedRequests?: boolean
|
|||
}) {
|
|||
return RateLimit({
|
|||
windowMs: options.windowMs,
|
|||
max: options.max,
|
|||
skipFailedRequests: options.skipFailedRequests,
|
|||
|
|||
handler: (req, res, next, options) => {
|
|||
// Bypass rate limit for registered runners
|
|||
if (req.body?.runnerToken) {
|
|||
return RunnerModel.loadByToken(req.body.runnerToken)
|
|||
.then(runner => {
|
|||
if (runner) return next()
|
|||
|
|||
return sendRateLimited(req, res, options)
|
|||
})
|
|||
}
|
|||
|
|||
// Bypass rate limit for admins/moderators
|
|||
return optionalAuthenticate(req, res, () => {
|
|||
if (res.locals.authenticated === true && whitelistRoles.has(res.locals.oauth.token.User.role)) {
|
|||
return next()
|
|||
}
|
|||
|
|||
return sendRateLimited(req, res, options)
|
|||
})
|
|||
}
|
|||
})
|
|||
}
|
|||
|
|||
export const apiRateLimiter = buildRateLimiter({
|
|||
windowMs: CONFIG.RATES_LIMIT.API.WINDOW_MS,
|
|||
max: CONFIG.RATES_LIMIT.API.MAX
|
|||
})
|
|||
|
|||
export const activityPubRateLimiter = buildRateLimiter({
|
|||
windowMs: CONFIG.RATES_LIMIT.ACTIVITY_PUB.WINDOW_MS,
|
|||
max: CONFIG.RATES_LIMIT.ACTIVITY_PUB.MAX
|
|||
})
|
|||
|
|||
// ---------------------------------------------------------------------------
|
|||
// Private
|
|||
// ---------------------------------------------------------------------------
|
|||
|
|||
function sendRateLimited (req: express.Request, res: express.Response, options: RateLimitHandlerOptions) {
|
|||
logger.debug('Rate limit exceeded for route ' + req.originalUrl)
|
|||
|
|||
return res.status(options.statusCode).send(options.message)
|
|||
}
|