rsshub
Version:
Make RSS Great Again!
105 lines (103 loc) • 3.57 kB
JavaScript
import { n as init_esm_shims, t as __dirname } from "./esm-shims-CzJ_djXG.mjs";
import { t as config } from "./config-C37vj7VH.mjs";
import "./dist-BInvbO1W.mjs";
import "./logger-Czu8UMNd.mjs";
import { t as ofetch_default } from "./ofetch-BIyrKU3Y.mjs";
import { t as parseDate } from "./parse-date-BrP7mxXf.mjs";
import { t as cache_default } from "./cache-Bo__VnGm.mjs";
import "./helpers-DxBp0Pty.mjs";
import { t as art } from "./render-BQo6B4tL.mjs";
import { t as got_default } from "./got-KxxWdaxq.mjs";
import path from "node:path";
//#region lib/routes/artstation/user.ts
init_esm_shims();
const route = {
path: "/:handle",
categories: ["picture"],
example: "/artstation/wlop",
parameters: { handle: "Artist handle, can be found in URL" },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
radar: [{ source: ["www.artstation.com/:handle"] }],
name: "Artist Profolio",
maintainers: ["TonyRL"],
handler
};
async function handler(ctx) {
const handle = ctx.req.param("handle");
const headers = {
accept: "application/json, text/plain, */*",
"accept-language": "en-US,en;q=0.9",
"content-type": "application/json",
"user-agent": config.trueUA
};
const csrfToken = await cache_default.tryGet("artstation:csrfToken", async () => {
return (await ofetch_default.raw("https://www.artstation.com/api/v2/csrf_protection/token.json", {
method: "POST",
headers
})).headers.getSetCookie()[0].split(";")[0].split("=")[1];
});
const { data: userData } = await got_default(`https://www.artstation.com/users/${handle}/quick.json`, { headers: {
...headers,
cookie: `PRIVATE-CSRF-TOKEN=${csrfToken}`
} });
const { data: projects } = await got_default(`https://www.artstation.com/users/${handle}/projects.json`, {
headers: {
...headers,
cookie: `PRIVATE-CSRF-TOKEN=${csrfToken}`
},
searchParams: {
user_id: userData.id,
page: 1
}
});
const resolveImageUrl = (url) => url.replace(/\/\d{14}\/small_square\//, "/large/");
const list = projects.data.map((item) => ({
title: item.title,
description: art(path.join(__dirname, "templates/description-674eb99b.art"), {
description: item.description,
image: {
src: resolveImageUrl(item.cover.small_square_url),
title: item.title
}
}),
pubDate: parseDate(item.published_at),
updated: parseDate(item.updated_at),
link: item.permalink,
author: userData.full_name,
assetsCount: item.assets_count,
hashId: item.hash_id,
icons: item.icons
}));
const items = await Promise.all(list.map((item) => cache_default.tryGet(item.link, async () => {
if (item.assetsCount > 1 || !item.icons.image) {
const { data } = await got_default(`https://www.artstation.com/projects/${item.hashId}.json`, { headers: {
...headers,
cookie: `PRIVATE-CSRF-TOKEN=${csrfToken}`
} });
item.description = art(path.join(__dirname, "templates/description-674eb99b.art"), {
description: data.description,
assets: data.assets
});
for (const a of data.assets) if (a.asset_type !== "video" && a.asset_type !== "image" && a.asset_type !== "video_clip" && a.asset_type !== "cover") throw new Error(`Unhandle asset type: ${a.asset_type}`);
}
return item;
})));
return {
title: `${userData.full_name} - ArtStation`,
description: userData.headline,
link: userData.permalink,
logo: userData.large_avatar_url,
icon: userData.large_avatar_url,
image: userData.default_cover_url,
item: items
};
}
//#endregion
export { route };