feat: add 虛詞 (#3984)

This commit is contained in:
Chenyang Shi
2020-02-15 19:39:17 +08:00
committed by GitHub
parent 8c5a6a5f0f
commit 185bd53379
5 changed files with 151 additions and 0 deletions

View File

@@ -176,6 +176,16 @@ pageClass: routes
</Route>
## 虛詞
### 版块
<Route author="LogicJake" example="/p-articles/section/critics-art" path="/p-articles/section/:section" :paramsDesc="['版块链接, 可在对应版块 URL 中找到, 子版块链接用`-`连接']"/>
### 作者
<Route author="LogicJake" example="/p-articles/contributors/朗天" path="/p-articles/contributors/:author" :paramsDesc="['作者 id, 可在作者页面 URL 找到']"/>
## 纵横
### 章节

View File

@@ -2236,6 +2236,10 @@ router.get('/2048/bbs/:fid', require('./routes/2048/bbs'));
// Google News
router.get('/google/news/:category/:locale', require('./routes/google/news'));
// 虛詞
router.get('/p-articles/section/:section', require('./routes/p-articles/section'));
router.get('/p-articles/contributors/:author', require('./routes/p-articles/contributors'));
// 好好住
router.get('/haohaozhu/whole-house/:keyword?', require('./routes/haohaozhu/whole-house'));
router.get('/haohaozhu/discover/:keyword?', require('./routes/haohaozhu/discover'));

View File

@@ -0,0 +1,48 @@
const got = require('@/utils/got');
const cheerio = require('cheerio');
const url = require('url');
const utils = require('./utils');
const host = 'https://p-articles.com/';
module.exports = async (ctx) => {
const author = ctx.params.author;
const link = `https://p-articles.com/contributors/${author}`;
const response = await got.get(link);
const $ = cheerio.load(response.data);
const list = $('div.contect_box_05in > a')
.map(function() {
const info = {
title: $(this)
.find('h3')
.text()
.trim(),
link: url.resolve(host, $(this).attr('href')),
};
return info;
})
.get();
const out = await Promise.all(
list.map(async (info) => {
const link = info.link;
const cache = await ctx.cache.get(link);
if (cache) {
return Promise.resolve(JSON.parse(cache));
}
const response = await got.get(link);
return utils.ProcessFeed(ctx, info, response.data);
})
);
ctx.state.data = {
title: `虛詞作者-${author}`,
link: link,
item: out,
};
};

View File

@@ -0,0 +1,56 @@
const got = require('@/utils/got');
const cheerio = require('cheerio');
const url = require('url');
const utils = require('./utils');
const host = 'https://p-articles.com/';
module.exports = async (ctx) => {
let section_name = ctx.params.section;
section_name = section_name.replace('-', '/');
section_name += '/';
const link = url.resolve(host, section_name);
const response = await got.get(link);
const $ = cheerio.load(response.data);
const top_info = {
title: $('div.inner_top_title_01 > h1 > a').text(),
link: url.resolve(host, $('div.inner_top_title_01 > h1 > a').attr('href')),
};
const list = $('div.contect_box_04 > a')
.map(function() {
const info = {
title: $(this)
.find('h1')
.text()
.trim(),
link: url.resolve(host, $(this).attr('href')),
};
return info;
})
.get();
list.unshift(top_info);
const out = await Promise.all(
list.map(async (info) => {
const link = info.link;
const cache = await ctx.cache.get(link);
if (cache) {
return Promise.resolve(JSON.parse(cache));
}
const response = await got.get(link);
return utils.ProcessFeed(ctx, info, response.data);
})
);
ctx.state.data = {
title: `虛詞版块-${section_name}`,
link: link,
item: out,
};
};

View File

@@ -0,0 +1,33 @@
const date = require('@/utils/date');
const cheerio = require('cheerio');
const ProcessFeed = (ctx, info, data) => {
const title = info.title;
const itemUrl = info.link;
const $ = cheerio.load(data);
const author = $('div.detail_title_02 > h4 > a:nth-child(2)')
.text()
.trim();
const date_value = $('div.detail_title_02 > h4 ')
.text()
.trim();
const description = $('div.detail_contect_01').html();
const single = {
title: title,
link: itemUrl,
description: description,
author: author,
pubDate: date(date_value, 8),
};
ctx.cache.set(itemUrl, JSON.stringify(single));
return Promise.resolve(single);
};
module.exports = {
ProcessFeed,
};