62 lines
1.8 KiB
TypeScript
62 lines
1.8 KiB
TypeScript
import path from 'node:path';
|
||
|
||
import type { Route } from '@/types';
|
||
import got from '@/utils/got';
|
||
import { parseDate } from '@/utils/parse-date';
|
||
import { art } from '@/utils/render';
|
||
|
||
export const route: Route = {
|
||
path: '/:kind?',
|
||
categories: ['program-update'],
|
||
example: '/gofans',
|
||
parameters: { kind: 'Platform, either `macos` or `ios`, empty means both (default)' },
|
||
features: {
|
||
requireConfig: false,
|
||
requirePuppeteer: false,
|
||
antiCrawler: false,
|
||
supportBT: false,
|
||
supportPodcast: false,
|
||
supportScihub: false,
|
||
},
|
||
name: '最新限免 / 促销应用',
|
||
maintainers: ['HenryQW'],
|
||
handler,
|
||
};
|
||
|
||
async function handler(ctx) {
|
||
const { kind = '' } = ctx.req.param();
|
||
const baseUrl = 'https://gofans.cn';
|
||
|
||
const { data: response } = await got('https://api.gofans.cn/v1/web/app_records', {
|
||
headers: {
|
||
origin: baseUrl,
|
||
},
|
||
searchParams: {
|
||
limit: 20,
|
||
kind: kind && (kind === 'macos' ? 1 : 2),
|
||
page: 1,
|
||
},
|
||
});
|
||
|
||
const items = response.data.map((item) => ({
|
||
title: `「${item.price === '0.00' ? '免费' : '降价'}」-「${item.kind === 1 ? 'macOS' : 'iOS'}」${item.name}`,
|
||
description: art(path.join(__dirname, 'templates/description.art'), {
|
||
icon: item.icon,
|
||
originalPrice: item.original_price,
|
||
price: item.price,
|
||
kind: item.kind,
|
||
description: item.description.replaceAll('\n', '<br>'),
|
||
}),
|
||
pubDate: parseDate(item.updated_at, 'X'),
|
||
link: new URL(`/app/${item.uuid}`, baseUrl).href,
|
||
category: item.primary_genre_name,
|
||
}));
|
||
|
||
return {
|
||
title: '最新限免 / 促销应用',
|
||
link: baseUrl,
|
||
description: 'GoFans:最新限免 / 促销应用',
|
||
item: items,
|
||
};
|
||
}
|