Skip to content

Commit

Permalink
feat(route): add techsir.com (DIYgod#17840)
Browse files Browse the repository at this point in the history
  • Loading branch information
p3psi-boo authored Dec 17, 2024
1 parent eed7d3b commit 751cd2e
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 0 deletions.
67 changes: 67 additions & 0 deletions lib/routes/techsir/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
import { Route } from '@/types';

import cache from '@/utils/cache';
import got from '@/utils/got';
import { parseDate } from '@/utils/parse-date';
import { load } from 'cheerio';

export const route: Route = {
path: '/',
categories: ['new-media'],
example: '/techsir',
url: 'www.techsir.com',
name: '最新资讯',
maintainers: ['p3psi-boo'],
handler,
};

async function handler() {
const baseUrl = 'https://techsir.com';

const response = await got({
method: 'get',
url: baseUrl,
});

const $ = load(response.data);

const alist = $(
'#kt_wrapper > div.main-content-area > div.container.container-fluid > div:nth-child(1) > div.col-xs-12.col-sm-6.col-md-8.post-listing > div.row.flex-row-fluid > div:nth-child(2) > div > div > div.card-body.pt-2 > div.d-flex'
);

const list = alist.toArray().map((item) => {
const $item = $(item);

const path = $item.find('a').attr('href');
const link = `${baseUrl}${path}`;
const title = $item.find('a').text();

return {
title,
link,
};
});

const items = await Promise.all(
list.map((item) =>
cache.tryGet(item.link, async () => {
const response = await got({
method: 'get',
url: item.link,
});

const $ = load(response.data);
item.description = $('.kg-card-markdown').html();
item.pubDate = parseDate($('time.time').text());
item.author = $('a.author').text();
return item;
})
)
);

return {
title: 'TechSir - 最新资讯',
link: baseUrl,
item: items,
};
}
8 changes: 8 additions & 0 deletions lib/routes/techsir/namespace.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import type { Namespace } from '@/types';

export const namespace: Namespace = {
name: 'TechSir',
url: 'techsir.com',
description: '科技先生 TechSir.Com 是新酷科技创新与创业媒体',
lang: 'zh-CN',
};

0 comments on commit 751cd2e

Please sign in to comment.