127 lines
4.1 KiB
TypeScript
127 lines
4.1 KiB
TypeScript
import { Route } from '@/types';
|
|
import { getCurrentPath } from '@/utils/helpers';
|
|
const __dirname = getCurrentPath(import.meta.url);
|
|
|
|
import cache from '@/utils/cache';
|
|
import got from '@/utils/got';
|
|
import { parseDate } from '@/utils/parse-date';
|
|
import path from 'node:path';
|
|
import { art } from '@/utils/render';
|
|
import { config } from '@/config';
|
|
|
|
export const route: 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.tryGet('artstation:csrfToken', async () => {
|
|
const tokenResponse = await got.post('https://www.artstation.com/api/v2/csrf_protection/token.json', {
|
|
headers,
|
|
});
|
|
return tokenResponse.headers['set-cookie'][0].split(';')[0].split('=')[1];
|
|
});
|
|
|
|
const { data: userData } = await got(`https://www.artstation.com/users/${handle}/quick.json`, {
|
|
headers: {
|
|
...headers,
|
|
cookie: `PRIVATE-CSRF-TOKEN=${csrfToken}`,
|
|
},
|
|
});
|
|
const { data: projects } = await got(`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.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.tryGet(item.link, async () => {
|
|
if (item.assetsCount > 1 || !item.icons.image) {
|
|
const { data } = await got(`https://www.artstation.com/projects/${item.hashId}.json`, {
|
|
headers: {
|
|
...headers,
|
|
cookie: `PRIVATE-CSRF-TOKEN=${csrfToken}`,
|
|
},
|
|
});
|
|
|
|
item.description = art(path.join(__dirname, 'templates/description.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}`); // model3d, marmoset, pano
|
|
}
|
|
}
|
|
}
|
|
|
|
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,
|
|
};
|
|
}
|