47 lines
1.6 KiB
TypeScript
47 lines
1.6 KiB
TypeScript
/*
|
|
* Copyright (C) 2026 Fluxer Contributors
|
|
*
|
|
* This file is part of Fluxer.
|
|
*
|
|
* Fluxer is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Fluxer is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with Fluxer. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import {createMiddleware} from 'hono/factory';
|
|
import {HTTPException} from 'hono/http-exception';
|
|
import type {HonoEnv} from '~/App';
|
|
import {Logger} from '~/Logger';
|
|
|
|
interface RequireXForwardedForOptions {
|
|
exemptPaths?: Array<string>;
|
|
}
|
|
|
|
const defaultExemptPaths: Array<string> = ['/_health', '/_rpc', '/webhooks/livekit', '/test'];
|
|
|
|
export const RequireXForwardedForMiddleware = ({exemptPaths = defaultExemptPaths}: RequireXForwardedForOptions = {}) =>
|
|
createMiddleware<HonoEnv>(async (ctx, next) => {
|
|
const path = ctx.req.path;
|
|
if (exemptPaths.some((prefix) => path === prefix || path.startsWith(prefix))) {
|
|
await next();
|
|
return;
|
|
}
|
|
|
|
const headerValue = ctx.req.header('x-forwarded-for');
|
|
if (!headerValue || headerValue.trim() === '') {
|
|
Logger.warn({path}, 'Rejected request without X-Forwarded-For header');
|
|
throw new HTTPException(403, {message: 'Forbidden'});
|
|
}
|
|
|
|
await next();
|
|
});
|