jandapress/src/controller/3hentai/3hentaiRandom.ts

50 行
1.5 KiB
TypeScript

import { scrapeContent } from "../../scraper/3hentai/3hentaiGetController";
import c from "../../utils/options";
import { logger } from "../../utils/logger";
import { Request, Response, NextFunction } from "express";
export async function random3hentai(req: Request, res: Response, next: NextFunction) {
try {
/**
* @api {get} /3hentai/random Random 3hentai
* @apiName Random 3hentai
* @apiGroup 3hentai
* @apiDescription Gets random doujinshi on 3hentai
*
* @apiSuccessExample {json} Success-Response:
* HTTP/1.1 200 OK
* HTTP/1.1 200 (cached)
*
* @apiExample {curl} curl
* curl -i https://janda.mod.land/3hentai/random
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://janda.mod.land/3hentai/random")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://janda.mod.land/3hentai/random") as resp:
* print(await resp.json())
*
*/
const url = `${c.THREEHENTAI}/random`;
const data = await scrapeContent(url);
logger.info({
path: req.path,
query: req.query,
method: req.method,
ip: req.ip,
useragent: req.get("User-Agent")
});
return res.json(data);
} catch (err: any) {
next(Error(err.message));
}
}