-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(route): add 中国作家网 * fix: remove dead columns * apply suggestions from code review ---------
- Loading branch information
Showing
5 changed files
with
889 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
const got = require('@/utils/got'); | ||
const cheerio = require('cheerio'); | ||
const timezone = require('@/utils/timezone'); | ||
const { parseDate } = require('@/utils/parse-date'); | ||
|
||
module.exports = async (ctx) => { | ||
const { id } = ctx.params; | ||
const limit = ctx.query.limit ? parseInt(ctx.query.limit, 10) : 40; | ||
|
||
const rootUrl = 'http://www.chinawriter.com.cn'; | ||
const currentUrl = `${new URL(id ?? '', rootUrl).href}/`; | ||
|
||
const { data: response } = await got(currentUrl); | ||
|
||
const $ = cheerio.load(response); | ||
|
||
let items = ($('main div.inner').find('a').length === 0 ? $('body') : $('main div.inner')) | ||
.find('a') | ||
.toArray() | ||
.filter((item) => /\/\d{4}\/\d{4}\/\w+-\w+\.html/.test($(item).prop('href'))) | ||
.slice(0, limit) | ||
.map((item) => { | ||
item = $(item); | ||
|
||
const link = item.prop('href'); | ||
|
||
return { | ||
title: item.text(), | ||
link: /^http/.test(link) ? link : new URL(item.prop('href'), rootUrl).href, | ||
}; | ||
}); | ||
|
||
items = await Promise.all( | ||
items.map((item) => | ||
ctx.cache.tryGet(item.link, async () => { | ||
try { | ||
const { data: detailResponse } = await got(item.link); | ||
|
||
const content = cheerio.load(detailResponse); | ||
|
||
content('div.end_shared').remove(); | ||
|
||
const info = content('div.end_info').text().trim(); | ||
|
||
item.title = content('#newstit').text() || content('h6.end_tit').text(); | ||
item.description = content('div.end_article').html(); | ||
item.author = info ? info.match(/\|(.*)\d{4}/)[1].trim() : ''; | ||
item.category = [ | ||
...new Set( | ||
[ | ||
...content('div.location a.clink') | ||
.slice(1) | ||
.toArray() | ||
.map((c) => content(c).text()), | ||
info | ||
? info | ||
.match(/^(.*)\|/)[1] | ||
.replace(/来源:/g, '') | ||
.trim() | ||
: undefined, | ||
].filter(Boolean) | ||
), | ||
]; | ||
item.pubDate = content('div.end_info em').text() ? timezone(parseDate(content('div.end_info em').text(), 'YYYY年MM月DD日HH:mm'), +8) : parseDate(content('meta[name="publishdate"]').prop('content')); | ||
} catch (e) { | ||
// | ||
} | ||
|
||
return item; | ||
}) | ||
) | ||
); | ||
|
||
const icon = new URL($('link[rel="icon"]').prop('href'), rootUrl); | ||
|
||
ctx.state.data = { | ||
item: items, | ||
title: $('title').text().replace(/--/g, ' - '), | ||
link: currentUrl, | ||
description: $('meta[name="description"]').prop('content'), | ||
language: 'zh-cn', | ||
image: new URL($('h1.logo a img').prop('src'), rootUrl).href, | ||
icon, | ||
logo: icon, | ||
subtitle: $('meta[name="keywords"]').prop('content'), | ||
allowEmpty: true, | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
'/:id?': ['nczitzk'], | ||
}; |
Oops, something went wrong.