Skip to content

Commit

Permalink
feat(route): add amz123.com (#17799)
Browse files Browse the repository at this point in the history
  • Loading branch information
defp authored Dec 4, 2024
1 parent 147964c commit 4f0a740
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 0 deletions.
65 changes: 65 additions & 0 deletions lib/routes/amz123/kx.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
import { Route, ViewType } from '@/types';
import got from '@/utils/got';
import { parseDate } from '@/utils/parse-date';

export const route: Route = {
path: '/kx',
categories: ['new-media'],
example: '/amz123/kx',
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['amz123.com/kx'],
target: '/kx',
},
],
name: 'AMZ123 快讯',
maintainers: ['defp'],
handler,
url: 'amz123.com/kx',
view: ViewType.Articles,
};

async function handler() {
const limit = 12;
const apiRootUrl = 'https://api.amz123.com';
const rootUrl = 'https://www.amz123.com';

const { data: response } = await got.post(`${apiRootUrl}/ugc/v1/user_content/forum_list`, {
json: {
page: 1,
page_size: limit,
tag_id: 0,
fid: 4,
ban: 0,
is_new: 1,
},
headers: {
'content-type': 'application/json',
},
});

const items = response.data.rows.map((item) => ({
title: item.title,
description: item.description,
pubDate: parseDate(item.published_at * 1000),
link: `${rootUrl}/kx/${item.id}`,
author: item.author?.username,
category: item.tags.map((tag) => tag.name),
guid: item.resource_id,
}));

return {
title: 'AMZ123 快讯',
link: `${rootUrl}/kx`,
item: items,
};
}
9 changes: 9 additions & 0 deletions lib/routes/amz123/namespace.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import type { Namespace } from '@/types';

export const namespace: Namespace = {
name: 'Amz123',
url: 'www.amz123.com',
categories: ['new-media'],
description: '跨境电商平台',
lang: 'zh-CN',
};

0 comments on commit 4f0a740

Please sign in to comment.