fe-middleware/src/services/GelbooruApiService.ts

22 lines
834 B
TypeScript
Raw Normal View History

2024-03-28 11:43:24 +00:00
import GelbooruApiResponse from "../types/GelbooruApiResponse";
import GelbooruServiceResponse from "../types/GelbooruServiceResponse";
2024-03-28 10:41:36 +00:00
class GelbooruApiService {
async get(): Promise<GelbooruServiceResponse> {
const limit = 100;
const url: string = `https://gelbooru.com/index.php?page=dapi&s=post&q=index&limit=${limit}&json=1&tags=2girls+sleeping`
const response: GelbooruApiResponse = await fetch(url)
.then(res => {
if (!res.ok) {
throw new Error("Error fetching images");
} else {
return res.json();
2024-03-28 10:41:36 +00:00
}
}) as GelbooruApiResponse;
return { posts: response.post.map(post => ({ url: post.file_url, tags: post.tags.split(" ") })) };
}
}
export default new GelbooruApiService();