c9abc556ba
Co-Authored-By: unknown <> Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
57 lines
1.9 KiB
TypeScript
57 lines
1.9 KiB
TypeScript
import process from "node:process";
|
||
import type { NextApiRequest } from "next";
|
||
import z from "zod";
|
||
import logger from "./logger";
|
||
|
||
export function parseIpFromHeaders(value: string | string[]) {
|
||
return Array.isArray(value) ? value[0] : value.split(",")[0];
|
||
}
|
||
|
||
/**
|
||
* Tries to extract IP address from a request.
|
||
*
|
||
* Header priority (CF → Vercel setup):
|
||
* 1. cf-connecting-ip – set by Cloudflare with the real client IP
|
||
* 2. true-client-ip – set by Cloudflare (Enterprise / Managed Transforms)
|
||
* 3. x-forwarded-for – first IP is the real client; survives the CF → Vercel hop
|
||
* 4. x-real-ip – set by Vercel to the *connecting* IP (CF edge IP when
|
||
* behind Cloudflare, so least reliable)
|
||
*
|
||
* @see https://github.com/vercel/examples/blob/main/edge-functions/ip-blocking/lib/get-ip.ts
|
||
**/
|
||
export default function getIP(request: Request | NextApiRequest) {
|
||
const headers: readonly string[] = ["cf-connecting-ip", "true-client-ip", "x-forwarded-for", "x-real-ip"];
|
||
|
||
for (const header of headers) {
|
||
const value = request instanceof Request ? request.headers.get(header) : request.headers[header];
|
||
if (value) {
|
||
return parseIpFromHeaders(value);
|
||
}
|
||
}
|
||
|
||
return "127.0.0.1";
|
||
}
|
||
|
||
const banlistSchema = z.array(z.string());
|
||
|
||
export function isIpInBanlist(request: Request | NextApiRequest) {
|
||
const IP = getIP(request);
|
||
const rawBanListJson = process.env.IP_BANLIST || "[]";
|
||
const banList = banlistSchema.parse(JSON.parse(rawBanListJson));
|
||
if (banList.includes(IP)) {
|
||
logger.warn(`Found banned IP: ${IP} in IP_BANLIST`);
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
|
||
export function isIpInBanListString(identifer: string) {
|
||
const rawBanListJson = process.env.IP_BANLIST || "[]";
|
||
const banList = banlistSchema.parse(JSON.parse(rawBanListJson));
|
||
if (banList.includes(identifer)) {
|
||
logger.warn(`Found banned IP: ${identifer} in IP_BANLIST`);
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|