dailyhot-api
Version:
An Api on Today's Hot list
51 lines (50 loc) • 1.38 kB
JavaScript
import { getToken, sign } from "../utils/getToken/51cto.js";
import { get } from "../utils/getData.js";
import { getTime } from "../utils/getTime.js";
export const handleRoute = async (_, noCache) => {
const listData = await getList(noCache);
const routeData = {
name: "51cto",
title: "51CTO",
type: "推荐榜",
link: "https://www.51cto.com/",
total: listData.data?.length || 0,
...listData,
};
return routeData;
};
const getList = async (noCache) => {
const url = `https://api-media.51cto.com/index/index/recommend`;
const params = {
page: 1,
page_size: 50,
limit_time: 0,
name_en: "",
};
const timestamp = Date.now();
const token = (await getToken());
const result = await get({
url,
params: {
...params,
timestamp,
token,
sign: sign("index/index/recommend", params, timestamp, token),
},
noCache,
});
const list = result.data.data.data.list;
return {
...result,
data: list.map((v) => ({
id: v.source_id,
title: v.title,
cover: v.cover,
desc: v.abstract,
timestamp: getTime(v.pubdate),
hot: undefined,
url: v.url,
mobileUrl: v.url,
})),
};
};