Skip to content

Commit

Permalink
feat(route): add 沃草 (DIYgod#8499)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethan Shen authored Nov 27, 2021
1 parent 52f18fc commit 9b0877c
Show file tree
Hide file tree
Showing 5 changed files with 76 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/new-media.md
Original file line number Diff line number Diff line change
Expand Up @@ -2781,6 +2781,12 @@ column 为 third 时可选的 category:

</Route>

## 沃草

### 文件列表

<Route author="nczitzk" example="/watchout" path="/watchout"/>

## 无产者评论

### 分类
Expand Down
51 changes: 51 additions & 0 deletions lib/v2/watchout/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
const got = require('@/utils/got');
const cheerio = require('cheerio');
const { parseDate } = require('@/utils/parse-date');

module.exports = async (ctx) => {
const rootUrl = 'https://watchout.tw';
const currentUrl = `${rootUrl}/docs`;

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

const $ = cheerio.load(response.data);

let items = $('.title .a-text')
.toArray()
.map((item) => {
item = $(item);

return {
title: item.text(),
link: item.attr('href'),
pubDate: parseDate(item.parent().parent().find('.date').text()),
};
});

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

const content = cheerio.load(detailResponse.data);

item.author = content('.name').eq(0).text();
item.description = content('.content').html();

return item;
})
)
);

ctx.state.data = {
title: $('title').text(),
link: currentUrl,
item: items,
};
};
3 changes: 3 additions & 0 deletions lib/v2/watchout/maintainer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
'/': ['nczitzk'],
};
13 changes: 13 additions & 0 deletions lib/v2/watchout/radar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module.exports = {
'watchout.tw': {
_name: '沃草',
'.': [
{
title: '文件列表',
docs: 'https://docs.rsshub.app/new-media.html#wo-cao-wen-jian-lie-biao',
source: ['/'],
target: '/watchout',
},
],
},
};
3 changes: 3 additions & 0 deletions lib/v2/watchout/router.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = function (router) {
router.get('/', require('./index'));
};

0 comments on commit 9b0877c

Please sign in to comment.