1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
import { Hono } from "hono";
import { logger } from "hono/logger";
import { prettyJSON } from "hono/pretty-json";
import { zValidator } from "@hono/zod-validator";
import { list } from "./schemas";
import { Bindings, Variables } from "./env";
const app = new Hono<{ Bindings: Bindings; Variables: Variables }>();
app.use("*", logger());
app.use("*", prettyJSON());
app.get("/", (c) => {
return c.redirect(
c.env.REDIRECT_ROOT ?? "https://github.com/getchoo/teawieAPI",
);
});
app.get("/static/*", async (c) => {
return await c.env.ASSETS.fetch(c.req.raw);
});
app.get("/list_teawies", zValidator("query", list), async (c) => {
const { limit } = c.req.query();
return c.json(
WIES.slice(0, parseInt(limit ?? "5")).map((wie) => {
return {
url: `${c.env.URL ?? "https://api.mydadleft.me"}/${WIE_DIR}/${wie}`,
};
}),
);
});
app.get("/random_teawie", (c) => {
const wie = WIES[Math.floor(Math.random() * WIES.length)];
return c.json({
url: `${c.env.URL ?? "https://api.mydadleft.me"}/${WIE_DIR}/${wie}`,
});
});
app.get("/get_random_teawie", (c) => {
return c.redirect(`${c.env.URL ?? "https://api.mydadleft.me"}/random_teawie`);
});
export default app;
|