feat(nhentai): staged changes

このコミットが含まれているのは:
sinkaroid 2022-06-07 15:42:24 +07:00
コミット 0d9215d4dd
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: A7DF4E245FDD8159
5個のファイルの変更53行の追加4行の削除

ファイルの表示

@ -10,7 +10,7 @@ export async function getNhentai(req: any, res: any) {
if (isNaN(book)) throw Error("Value must be number");
let actualAPI;
if (!await mock(c.NHENTAI)) actualAPI = c.NHENTAI_IP_2;
if (!await mock(c.NHENTAI)) actualAPI = c.NHENTAI_IP;
const url = `${actualAPI}/api/gallery/${book}`;
const data = await scrapeContent(url);

ファイルの表示

@ -10,7 +10,7 @@ export async function relatedNhentai(req: any, res: any) {
if (isNaN(book)) throw Error("Value must be number");
let actualAPI;
if (!await mock(c.NHENTAI)) actualAPI = c.NHENTAI_IP_2;
if (!await mock(c.NHENTAI)) actualAPI = c.NHENTAI_IP;
const url = `${actualAPI}/api/gallery/${book}/related`;
const data = await scrapeContent(url);

ファイルの表示

@ -13,7 +13,7 @@ export async function searchNhentai(req: any, res: any) {
if (!sorting.includes(sort)) throw Error("Invalid short: " + sorting.join(", "));
let actualAPI;
if (!await mock(c.NHENTAI)) actualAPI = c.NHENTAI_IP_2;
if (!await mock(c.NHENTAI)) actualAPI = c.NHENTAI_IP;
const url = `${actualAPI}/api/galleries/search?query=${key}&sort=${sort}&page=${page}`;
const data = await scrapeContent(url);

ファイルの表示

@ -1,4 +1,29 @@
import p from "phin";
import { CookieJar } from "tough-cookie";
import { HttpsCookieAgent } from "http-cookie-agent/http";
import { config } from "dotenv";
import * as pkg from "../../package.json";
config();
const jar = new CookieJar();
jar.setCookie(process.env.CF as string, "https://nhentai.net/");
async function nhentaiStatus(): Promise<boolean> {
const res = await p({
url: "https://nhentai.net/api/galleries/search?query=futanari",
core: {
agent: new HttpsCookieAgent({ cookies: { jar, }, }),
},
"headers": {
"User-Agent": `jandapress/${pkg.version} Node.js/16.9.1`
},
});
if (res.statusCode === 200) {
return true;
} else {
return false;
}
}
function getPururinInfo(value: string) {
return value.replace(/\n/g, " ").replace(/\s\s+/g, " ").trim();
@ -62,4 +87,4 @@ export const isNumeric = (val: string) : boolean => {
};
export { getPururinInfo, getPururinPageCount, getUrl, getId, getDate, timeAgo, mock };
export { getPururinInfo, getPururinPageCount, getUrl, getId, getDate, timeAgo, mock, nhentaiStatus };

24
test/nhentaiCookietest.ts ノーマルファイル
ファイルの表示

@ -0,0 +1,24 @@
import p from "phin";
import { CookieJar } from "tough-cookie";
import { HttpsCookieAgent } from "http-cookie-agent/http";
import { config } from "dotenv";
config();
const jar = new CookieJar();
jar.setCookie("cf_clearance=HBMSCcaARc4EO7JkODYxsgfCoxqBX1gxyRswiHL5VZ4-1654510626-0-150", "https://nhentai.net/");
async function test() {
const res = await p({
url: "https://nhentai.net/api/galleries/search?query=mother",
core: {
agent: new HttpsCookieAgent({ cookies: { jar, }, }),
},
"headers": {
"User-Agent": "jandapress/1.0.5 Node.js/16.9.1" // nhentai-api-client/3.4.3 Node.js/16.9.1
},
});
//check status
console.log(res.statusCode);
}
test();