Skip to content

Commit

Permalink
feat(route): add 理想生活实验室 (DIYgod#13207)
Browse files Browse the repository at this point in the history
* feat(route): add 理想生活实验室

* fix docs

* update lib/v2/toodaylab/index.js

---------
  • Loading branch information
nczitzk authored Sep 6, 2023
1 parent 0d69ffd commit 02491ad
Show file tree
Hide file tree
Showing 5 changed files with 186 additions and 0 deletions.
99 changes: 99 additions & 0 deletions lib/v2/toodaylab/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
const got = require('@/utils/got');
const cheerio = require('cheerio');
const timezone = require('@/utils/timezone');
const { parseDate, parseRelativeDate } = require('@/utils/parse-date');

module.exports = async (ctx) => {
const { params = 'posts' } = ctx.params;
const limit = ctx.query.limit ? parseInt(ctx.query.limit, 10) : 30;

const isHot = params === 'hot';

const rootUrl = 'https://www.toodaylab.com';
const currentUrl = new URL(isHot ? 'posts' : params, rootUrl).href;

const { data: response } = await got(currentUrl);

const $ = cheerio.load(response);

let items = isHot
? $('div.hot-list a')
.slice(0, limit)
.toArray()
.map((item) => {
item = $(item);

return {
title: item.find('div.hot-item p').text(),
link: new URL(item.prop('href'), rootUrl).href,
};
})
: $('div.single-post')
.slice(0, limit)
.toArray()
.map((item) => {
item = $(item);

const a = item.find('p.title a');

const pubDate = item
.find('div.left-infos p')
.text()
.trim()
.split(/\/\/\s/)
.pop();

return {
title: a.text(),
link: new URL(a.prop('href'), rootUrl).href,
description: item.find('p.excerpt').html(),
author: item.find('div.left-infos p a').text().trim(),
pubDate: timezone(/||/.test(pubDate) ? parseDate(pubDate, ['YYYY年M月D日 HH:mm', 'M月D日 HH:mm']) : parseRelativeDate(pubDate), +8),
};
});

items = await Promise.all(
items.map((item) =>
ctx.cache.tryGet(item.link, async () => {
const { data: detailResponse } = await got(item.link);

const content = cheerio.load(detailResponse);

const pubDate = content('div.left-infos p')
.text()
.trim()
.split(/\/\/\s/)
.pop();

item.title = content('h1').text() || item.title;
item.description = content('div.post-content').html() ?? item.description;
item.author = content('div.left-infos p a').text().trim() ?? item.author;
item.category = content('div.right-infos a')
.slice(1)
.toArray()
.map((c) => content(c).text().replace(/#/, ''));
item.pubDate = item.pubDate ?? timezone(/||/.test(pubDate) ? parseDate(pubDate, ['YYYY年M月D日 HH:mm', 'M月D日 HH:mm']) : parseRelativeDate(pubDate), +8);
item.upvotes = content('#like_count').text() ? parseInt(content('#like_count').text(), 10) : 0;
item.comments = parseInt(content('div.right-infos a').first().text(), 10) || 0;

return item;
})
)
);

const title = $('title').text().split(/\s-/)[0];
const icon = $('link[rel="apple-touch-icon"]').last().prop('href');

ctx.state.data = {
item: items,
title: isHot ? title.replace(/[^|]+/, '最热 ') : title,
link: currentUrl,
description: $('meta[name="description"]').prop('content'),
language: $('html').prop('lang'),
image: $('h3.logo a img').prop('src'),
icon,
logo: icon,
subtitle: $('meta[name="keywords"]').prop('content'),
author: $('h3.logo a img').prop('alt'),
};
};
7 changes: 7 additions & 0 deletions lib/v2/toodaylab/maintainer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
'/column/:id': ['nczitzk'],
'/field/:id': ['nczitzk'],
'/hot': ['nczitzk'],
'/posts': ['nczitzk'],
'/topic/:id': ['nczitzk'],
};
37 changes: 37 additions & 0 deletions lib/v2/toodaylab/radar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
module.exports = {
'toodaylab.com': {
_name: '理想生活实验室',
'.': [
{
title: '滚动',
docs: 'https://docs.rsshub.app/routes/new-media#li-xiang-sheng-huo-shi-yan-shi-gun-dong',
source: ['/posts'],
target: '/toodaylab/posts',
},
{
title: '最热',
docs: 'https://docs.rsshub.app/routes/new-media#li-xiang-sheng-huo-shi-yan-shi-zui-re',
source: ['/posts'],
target: '/toodaylab/hot',
},
{
title: '专栏',
docs: 'https://docs.rsshub.app/routes/new-media#li-xiang-sheng-huo-shi-yan-shi-zhuan-lan',
source: ['/column/:id'],
target: '/toodaylab/column/:id',
},
{
title: '领域',
docs: 'https://docs.rsshub.app/routes/new-media#li-xiang-sheng-huo-shi-yan-shi-ling-yu',
source: ['/field/:id'],
target: '/toodaylab/field/:id',
},
{
title: '话题',
docs: 'https://docs.rsshub.app/routes/new-media#li-xiang-sheng-huo-shi-yan-shi-hua-ti',
source: ['/topic/:id'],
target: '/toodaylab/topic/:id',
},
],
},
};
3 changes: 3 additions & 0 deletions lib/v2/toodaylab/router.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = (router) => {
router.get('/:params*', require('./'));
};
40 changes: 40 additions & 0 deletions website/docs/routes/new-media.md
Original file line number Diff line number Diff line change
Expand Up @@ -3384,6 +3384,46 @@ column 为 third 时可选的 category:

</Route>

## 理想生活实验室 {#li-xiang-sheng-huo-shi-yan-shi}

### 滚动 {#li-xiang-sheng-huo-shi-yan-shi-gun-dong}

<Route author="nczitzk" example="/toodaylab/posts" path="/toodaylab/posts" radar="1" rssbud="1"/>

### 最热 {#li-xiang-sheng-huo-shi-yan-shi-zui-re}

<Route author="nczitzk" example="/toodaylab/hot" path="/toodaylab/hot" radar="1" rssbud="1"/>

### 专栏 {#li-xiang-sheng-huo-shi-yan-shi-zhuan-lan}

<Route author="nczitzk" example="/toodaylab/column/299" path="/toodaylab/column/:id" paramsDesc={['专栏 id,见下表,可在对应专栏页 URL 中找到']} radar="1" rssbud="1">

| 专题 | 攻略 |
| ---- | ---- |
| 299 | 300 |

</Route>

### 领域 {#li-xiang-sheng-huo-shi-yan-shi-ling-yu}

<Route author="nczitzk" example="/toodaylab/field/308" path="/toodaylab/field/:id" paramsDesc={['领域 id,见下表,可在对应领域页 URL 中找到']} radar="1" rssbud="1">

| 快消 | 时尚 | 智能 | 娱乐 | 运动 | 生活 | 设计 | 出行 |
| ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
| 308 | 307 | 306 | 305 | 304 | 303 | 302 | 301 |

</Route>

### 话题 {#li-xiang-sheng-huo-shi-yan-shi-hua-ti}

<Route author="nczitzk" example="/toodaylab/topic/309" path="/toodaylab/topic/:id" paramsDesc={['话题 id,见下表,可在对应话题页 URL 中找到']} radar="1" rssbud="1">

| 今日消费资讯 | 实验室带你过周末 | 实验室带你过假期 | 每日一图 | 每周一书 | 实验室数字 | 新鲜社会人 | 实验室TV |
| ------------ | ---------------- | ---------------- | -------- | -------- | ---------- | ---------- | -------- |
| 309 | 37 | 40 | 32 | 33 | 310 | 316 | 476 |

</Route>

## 链捕手 ChainCatcher {#lian-bu-shou-chaincatcher}

### 首页 {#lian-bu-shou-chaincatcher-shou-ye}
Expand Down

0 comments on commit 02491ad

Please sign in to comment.