forked from DIYgod/RSSHub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1331 from DIYgod/master
[pull] master from diygod:master
- Loading branch information
Showing
13 changed files
with
234 additions
and
34 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 @@ | ||
package-lock=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
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
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
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
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
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,98 @@ | ||
import { Route } from '@/types'; | ||
|
||
import cache from '@/utils/cache'; | ||
import got from '@/utils/got'; | ||
import { load } from 'cheerio'; | ||
import { parseDate } from '@/utils/parse-date'; | ||
|
||
export const handler = async (ctx) => { | ||
const limit = ctx.req.query('limit') ? Number.parseInt(ctx.req.query('limit'), 10) : 10; | ||
|
||
const rootUrl = 'https://junhe.com'; | ||
const currentUrl = new URL('legal-updates', rootUrl).href; | ||
|
||
const { data: response } = await got(currentUrl); | ||
|
||
const $ = load(response); | ||
|
||
const language = $('html').prop('lang'); | ||
|
||
let items = $('a.content-wrap') | ||
.slice(0, limit) | ||
.toArray() | ||
.map((item) => { | ||
item = $(item); | ||
|
||
return { | ||
title: item.find('h1.news.detail').text(), | ||
pubDate: parseDate(item.find('p.date').text(), 'YYYY.MM.DD'), | ||
link: new URL(item.prop('href'), rootUrl).href, | ||
}; | ||
}); | ||
|
||
items = await Promise.all( | ||
items.map((item) => | ||
cache.tryGet(item.link, async () => { | ||
const { data: detailResponse } = await got(item.link); | ||
|
||
const $$ = load(detailResponse); | ||
|
||
const title = $$('h1.d-title').text(); | ||
const description = $$('div.d-content').html(); | ||
const infos = $$('p.d-pub-date').text().split(/\s/); | ||
|
||
item.title = title; | ||
item.description = description; | ||
item.pubDate = parseDate(infos[0], 'YYYY.MM.DD'); | ||
item.author = infos.slice(1).join('/'); | ||
item.content = { | ||
html: description, | ||
text: $$('div.d-content').text(), | ||
}; | ||
item.language = language; | ||
|
||
return item; | ||
}) | ||
) | ||
); | ||
|
||
const image = new URL($('a.site-logo img').prop('src'), rootUrl).href; | ||
|
||
return { | ||
title: $('title').text(), | ||
description: $('meta[name="description"]').prop('content'), | ||
link: currentUrl, | ||
item: items, | ||
allowEmpty: true, | ||
image, | ||
author: '君合律师事务所', | ||
language, | ||
}; | ||
}; | ||
|
||
export const route: Route = { | ||
path: '/legal-updates', | ||
name: '君合法评', | ||
url: 'junhe.com', | ||
maintainers: ['nczitzk'], | ||
handler, | ||
example: '/junhe/legal-updates', | ||
description: '', | ||
categories: ['new-media'], | ||
|
||
features: { | ||
requireConfig: false, | ||
requirePuppeteer: false, | ||
antiCrawler: false, | ||
supportRadar: true, | ||
supportBT: false, | ||
supportPodcast: false, | ||
supportScihub: false, | ||
}, | ||
radar: [ | ||
{ | ||
source: ['/legal-updates'], | ||
target: '/legal-updates', | ||
}, | ||
], | ||
}; |
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,8 @@ | ||
import type { Namespace } from '@/types'; | ||
|
||
export const namespace: Namespace = { | ||
name: '君合律师事务所', | ||
url: 'junhe.com', | ||
categories: ['new-media'], | ||
description: '', | ||
}; |
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,69 @@ | ||
import { Route, Data } from '@/types'; | ||
import got from '@/utils/got'; | ||
|
||
export const route: Route = { | ||
path: '/community/user/:uid', | ||
categories: ['bbs'], | ||
example: '/miui/community/user/1200057564', | ||
parameters: { | ||
uid: '小米用户 UID,可于网页版用户主页链接中 `uid` 项获取', | ||
}, | ||
features: { | ||
requireConfig: false, | ||
requirePuppeteer: false, | ||
antiCrawler: false, | ||
supportBT: false, | ||
supportPodcast: false, | ||
supportScihub: false, | ||
}, | ||
radar: [ | ||
{ | ||
source: ['web.vip.miui.com/page/info/mio/mio/homePage'], | ||
target: (_, url) => `/miui/community/user/${new URL(url).searchParams.get('uid')}`, | ||
}, | ||
], | ||
name: '小米社区用户发帖', | ||
maintainers: ['abc1763613206'], | ||
handler, | ||
}; | ||
|
||
const userRoot = 'https://web.vip.miui.com/page/info/mio/mio/homePage'; | ||
const apiRoot = 'https://api.vip.miui.com/api/community/user/announce/list'; | ||
const pageRoot = 'https://web.vip.miui.com/page/info/mio/mio/detail'; | ||
|
||
async function handler(ctx): Promise<Data> { | ||
const uid = ctx.req.param('uid'); | ||
const apiLink = `${apiRoot}?uid=${uid}&limit=10`; | ||
const userLink = `${userRoot}?uid=${uid}`; | ||
const { data } = await got({ | ||
method: 'get', | ||
url: apiLink, | ||
headers: { | ||
Referer: userLink, | ||
}, | ||
}); | ||
if (data.code === 200) { | ||
let authorName = ''; | ||
const records = data.entity.records; | ||
const items = records.map((item) => { | ||
authorName = item.author.name; | ||
return { | ||
title: item.title || `${authorName} 的动态`, | ||
description: item.textContent, | ||
pubDate: new Date(item.createTime).toUTCString(), | ||
author: item.author.name, | ||
link: `${pageRoot}?postId=${item.id}`, | ||
image: item.pic || item.cover || '', | ||
}; | ||
}); | ||
return { | ||
title: `小米社区 - ${authorName} 的发帖`, | ||
link: userLink, | ||
description: `${authorName} 的发帖`, | ||
item: items, | ||
language: 'zh-cn', | ||
}; | ||
} else { | ||
throw new Error(data.message); | ||
} | ||
} |
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
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
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
Oops, something went wrong.