add tag_format option

This commit is contained in:
creations 2025-04-03 15:16:13 -04:00
parent 04048e9c3e
commit e6acb47796
Signed by: creations
GPG key ID: 8F553AA4320FC711
4 changed files with 23 additions and 8 deletions

View file

@ -1,3 +1,5 @@
/* eslint-disable prettier/prettier */
import { booruConfig } from "@config/booru"; import { booruConfig } from "@config/booru";
export function timestampToReadable(timestamp?: number): string { export function timestampToReadable(timestamp?: number): string {
@ -74,6 +76,7 @@ export function determineBooru(
export function postExpectedFormat( export function postExpectedFormat(
booru: IBooruConfig, booru: IBooruConfig,
posts: BooruPost[] | BooruPost, posts: BooruPost[] | BooruPost,
tag_format: string = "string",
): { posts: BooruPost[] } | null { ): { posts: BooruPost[] } | null {
if (!posts) return null; if (!posts) return null;
@ -89,9 +92,12 @@ export function postExpectedFormat(
post_url: post_url:
post.post_url ?? post.post_url ??
`https://${booru.endpoint}/posts/${post.id}`, `https://${booru.endpoint}/posts/${post.id}`,
tags: Object.values(post.tags || {}) tags:
.flat() tag_format === "unformatted"
.join(" "), ? post.tags
: Object.values(post.tags || {})
.flat()
.join(" "),
}; };
}), }),
}; };

View file

@ -17,7 +17,10 @@ async function handler(
query: Query, query: Query,
params: Params, params: Params,
): Promise<Response> { ): Promise<Response> {
const { force } = query as { force: string }; const { force, tag_format } = query as {
force: string;
tag_format: string;
};
const { booru, id } = params as { booru: string; id: string }; const { booru, id } = params as { booru: string; id: string };
if (!booru || !id) { if (!booru || !id) {
@ -70,7 +73,7 @@ async function handler(
url = `https://${booruConfig.endpoint}/${start}${id}${end}`; url = `https://${booruConfig.endpoint}/${start}${id}${end}`;
} }
const cacheKey: string = `nsfw:${booru}:${id}`; const cacheKey: string = `nsfw:${booru}:tag_format(${tag_format}):${id}`;
if (!force) { if (!force) {
const cacheData: unknown = await redis const cacheData: unknown = await redis
.getInstance() .getInstance()
@ -166,6 +169,7 @@ async function handler(
const expectedData: { posts: BooruPost[] } | null = postExpectedFormat( const expectedData: { posts: BooruPost[] } | null = postExpectedFormat(
booruConfig, booruConfig,
posts, posts,
tag_format,
); );
if (!expectedData) { if (!expectedData) {

View file

@ -30,10 +30,12 @@ async function handler(
tags, tags,
results = 5, results = 5,
excludeTags, excludeTags,
tag_format = "formatted",
} = requestBody as { } = requestBody as {
tags: string[]; tags: string[];
results: number; results: number;
excludeTags: string[]; excludeTags: string[];
tag_format: string;
}; };
if (!booru) { if (!booru) {
@ -200,7 +202,7 @@ async function handler(
let state: { tries: number; page: number } = { tries: 0, page: 16 }; let state: { tries: number; page: number } = { tries: 0, page: 16 };
while (state.tries < config.maxTries) { while (state.tries < config.maxTries) {
const cacheKey: string = `nsfw:${booru}:random:${tagsString()}:${results}:${state.page}`; const cacheKey: string = `nsfw:${booru}:random:tag_format(${tag_format}):${tagsString()}:${results}:${state.page}`;
if (!force) { if (!force) {
const cacheData: unknown = await redis const cacheData: unknown = await redis
.getInstance() .getInstance()
@ -286,7 +288,7 @@ async function handler(
if (posts.length === 0) continue; if (posts.length === 0) continue;
let expectedData: { posts: BooruPost[] } | null = let expectedData: { posts: BooruPost[] } | null =
postExpectedFormat(booruConfig, posts); postExpectedFormat(booruConfig, posts, tag_format);
if (!expectedData) continue; if (!expectedData) continue;

View file

@ -28,11 +28,13 @@ async function handler(
tags, tags,
results = 5, results = 5,
excludeTags, excludeTags,
tag_format = "formatted",
} = requestBody as { } = requestBody as {
page: 0; page: 0;
tags: string[] | string; tags: string[] | string;
results: number; results: number;
excludeTags: string[] | string; excludeTags: string[] | string;
tag_format: string;
}; };
if (!booru) { if (!booru) {
@ -170,7 +172,7 @@ async function handler(
return parts.join(""); return parts.join("");
}; };
const cacheKey: string = `nsfw:${booru}:${formattedTags}:${formattedExcludeTags}:${safePage}:${safeResults}`; const cacheKey: string = `nsfw:${booru}:tag_format(${tag_format}):${formattedTags}:${formattedExcludeTags}:${safePage}:${safeResults}`;
if (!force) { if (!force) {
const cacheData: unknown = await redis const cacheData: unknown = await redis
.getInstance() .getInstance()
@ -256,6 +258,7 @@ async function handler(
const expectedData: { posts: BooruPost[] } | null = postExpectedFormat( const expectedData: { posts: BooruPost[] } | null = postExpectedFormat(
booruConfig, booruConfig,
posts, posts,
tag_format,
); );
if (!expectedData) { if (!expectedData) {