Merge branch 'dev'

This commit is contained in:
creations 2025-02-02 13:55:27 -05:00
commit 24d7ca22a6
Signed by: creations
GPG key ID: 8F553AA4320FC711
8 changed files with 38 additions and 21 deletions

View file

@ -18,9 +18,9 @@ export const booruConfig: IBooruConfigMap = {
autocomplete: "ac.rule34.xxx/autocomplete.php?q=",
},
"realbooru.com": {
enabled: false,
enabled: true,
name: "realbooru.com",
aliases: ["realbooru", "rb", "real34"],
aliases: ["realbooru", "rb", "real34", "realb"],
endpoint: "realbooru.com",
functions: booruDefaults,
autocomplete: "realbooru.com/index.php?page=autocomplete&term=",

View file

@ -1,13 +1,5 @@
import dotenv from "dotenv";
import { logger } from "@/helpers/logger";
try {
dotenv.config();
} catch {
logger.error("No .env file found consider creating one");
}
export const environment: Environment = {
port: parseInt(process.env.PORT || "6600", 10),
host: process.env.HOST || "0.0.0.0",

View file

@ -281,6 +281,9 @@ async function handler(
const parsedData: Data = data as Data;
let posts: BooruPost[] = [];
if (booruConfig.name === "realbooru.com") {
posts = parsedData.post || [];
} else {
if (parsedData.post) {
posts = [parsedData.post];
} else if (parsedData.posts) {
@ -288,6 +291,7 @@ async function handler(
} else {
posts = Array.isArray(data) ? (data as BooruPost[]) : [];
}
}
if (posts.length === 0) continue;

View file

@ -1,15 +1,25 @@
const routeDef: RouteDef = {
method: "GET",
accepts: "*/*",
returns: "text/html",
returns: "application/json",
};
async function handler(): Promise<Response> {
return new Response("Hello, World!", {
headers: {
"content-type": "text/html",
return Response.json(
{
success: true,
code: 200,
message:
"Welcome to the booru API, check the documentation for more information",
links: {
forgejo: "https://forgejo.creations.works/creations/booru-api",
GitHub: "https://github.com/Creationsss/booru-api",
},
});
},
{
status: 200,
},
);
}
export { handler, routeDef };

View file

@ -149,11 +149,22 @@ class ServerHandler {
);
}
const headers: Headers = response.headers;
let ip: string | null = server.requestIP(request)?.address || null;
if (!ip) {
ip =
headers.get("CF-Connecting-IP") ||
headers.get("X-Real-IP") ||
headers.get("X-Forwarded-For") ||
null;
}
logger.info([
`[${request.method}]`,
request.url,
`${response.status}`,
server.requestIP(request)?.address || "unknown",
`(${ip || "unknown"})`,
]);
return response;