rsshub
Version:
Make RSS Great Again!
114 lines (97 loc) • 4.41 kB
text/typescript
import got from '@/utils/got';
import { load } from 'cheerio';
import timezone from '@/utils/timezone';
import { parseDate } from '@/utils/parse-date';
import cache from '@/utils/cache';
const domain = 'mydrivers.com';
const rootUrl = `https://m.${domain}`;
const rootRSSUrl = `https://rss.${domain}`;
const apiVoteUrl = new URL('m/newsvote.ashx', rootUrl).href;
const title = '快科技';
const categories = {
new: '最新',
hot: '热门',
zhibo: '直播',
};
/**
* Converts a path string into a query string.
* @param {string} path - The path string separated by slashes, containing key-value pairs.
* @returns {string} - The query string with key-value pairs separated by question marks and equal signs.
*/
const convertToQueryString = (path) => {
const parts = path.split('/');
const queryStringParams = [];
for (let i = 0; i < parts.length; i += 2) {
const key = parts[i];
const value = parts[i + 1];
if (key !== undefined && value !== undefined) {
queryStringParams.push(`${key}=${value}`);
}
}
return `?${queryStringParams.join('&')}`;
};
/**
* Retrieves information from a given URL using a provided tryGet function.
* @param {string} url - The URL to retrieve information from.
* @param {number|undefined} [range] - The index value of the range (optional).
* @returns {Promise<Object>} - A promise that resolves to an object containing the retrieved information.
*/
const getInfo = (url, range) =>
cache.tryGet(url, async () => {
const { data: response } = await got(url);
const $ = load(response);
const icon = new URL($('link[rel="apple-touch-icon-precomposed"]').prop('href'), rootUrl).href;
const image = `https:${$('div.logo a img').prop('src')}`;
const ranges = $('div.hottime a')
.toArray()
.map((a) => $(a).text());
return {
title: `${title} - ${range !== undefined && ranges ? ranges[range] : $(`a[data-id="${url.split(/=/).pop()}"]`).text() || $('#newsEventSwitch a.cur').text()}`,
link: url,
description: $('meta[name="description"]').prop('content'),
language: 'zh-cn',
image,
icon,
logo: icon,
subtitle: $('meta[name="keywords"]').prop('content'),
author: title,
allowEmpty: true,
};
});
/**
* Process items asynchronously.
*
* @param {Array<Object>} items - The array of items to process.
* @param {function} tryGet - The tryGet function that handles the retrieval process.
* @returns {Promise<Array<Object>>} Returns a Promise that resolves to an array of processed items.
*/
const processItems = async (items) =>
await Promise.all(
items.map((item) =>
cache.tryGet(`${domain}#${item.guid}`, async () => {
const { data: detailResponse } = await got(`${rootUrl}/newsview/${item.guid}.html`);
const { data: voteResponse } = await got.post(apiVoteUrl, {
json: {
Tid: item.guid,
},
});
const content = load(detailResponse);
item.title = content('div.news_t').text() || item.title;
item.description = content('#content').html() ?? item.description;
item.author = content('li.writer').text() || item.author;
item.category = [
...(item.category ?? []),
...content('div.bqian1 a')
.toArray()
.map((c) => content(c).contents().last().text().trim()),
].filter(Boolean);
item.guid = `${domain}#${item.guid}`;
item.pubDate = item.pubDate ?? timezone(parseDate(content('li.writer').next().text().trim(), 'YYYY年MM月DD日 HH:mm'), +8);
item.upvotes = voteResponse.NewsSupport ? Number.parseInt(voteResponse.NewsSupport, 10) : 0;
item.downvotes = voteResponse.NewsOppose ? Number.parseInt(voteResponse.NewsOppose, 10) : 0;
item.comments = content('#tpinglun').text() ? Number.parseInt(content('#tpinglun').text(), 10) : 0;
return item;
})
)
);
export { rootUrl, rootRSSUrl, title, categories, convertToQueryString, getInfo, processItems };