-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add route /gov/zj/search/:websiteid?/:word/:cateid? (#15359)
* feat: 浙江省人民政府-统一搜索结果 * refactor: 浙江省人民政府-统一搜索结果-代码规范修正、description字段补充 * Update lib/routes/gov/zj/search.ts Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/routes/gov/zj/search.ts Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/routes/gov/zj/search.ts Co-authored-by: Tony <TonyRL@users.noreply.github.com> --------- Co-authored-by: lihaoyu <lihaoyu@unicoresoft.com>
- Loading branch information
Showing
1 changed file
with
78 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,78 @@ | ||
import { Route } from '@/types'; | ||
import { parseDate } from '@/utils/parse-date'; | ||
import got from '@/utils/got'; | ||
import { load } from 'cheerio'; | ||
import dayjs from 'dayjs'; | ||
|
||
export const route: Route = { | ||
path: '/zj/search/:websiteid?/:word/:cateid?', | ||
categories: ['government'], | ||
example: '/gov/zj/search', | ||
parameters: { | ||
websiteid: '搜索范围-全省、各市各区、详细信息点击源网站https://www.zj.gov.cn/请求中寻找', | ||
word: '搜索关键词-默认:人才', | ||
cateid: '信息分类-默认:658(全部)', | ||
sortType: '排序类型-默认:2(按时间)', | ||
}, | ||
radar: [{ | ||
source: ['search.zj.gov.cn/jsearchfront/search.do'], | ||
target: '/zj/search/:websiteid?/:word/:cateid?', | ||
}], | ||
name: '浙江省人民政府-全省政府网站统一搜索', | ||
url: 'search.zj.gov.cn/jsearchfront/search.do', | ||
maintainers: ['HaoyuLee'], | ||
description: ` | ||
| 行政区域 | websiteid | | ||
| ------------ | -- | | ||
| 宁波市本级 | 330201000000000 | | ||
| 搜索关键词 | word | | ||
| 信息分类 | cateid | | ||
| 排序类型 | sortType | | ||
| ------------ | -- | | ||
| 按相关度 | 1 | | ||
| 按时间 | 2 | | ||
`, | ||
async handler(ctx) { | ||
const { websiteid = '330201000000000', word = '人才', cateid = 658, sortType = 2 } = ctx.req.param(); | ||
const { | ||
data: { result: list }, | ||
} = await got.post('https://search.zj.gov.cn/jsearchfront/interfaces/cateSearch.do', { | ||
form: { | ||
websiteid, | ||
pg: '30', | ||
p: '1', | ||
cateid, | ||
word, | ||
checkError: 1, | ||
isContains: 0, | ||
q: word, | ||
begin: dayjs().subtract(1, 'week').format('YYYYMMDD'), | ||
end: dayjs().format('YYYYMMDD'), | ||
timetype: 2, | ||
pos: 'title,content,keyword', | ||
sortType, | ||
}, | ||
}); | ||
const items = | ||
list?.map((item: string) => { | ||
const $ = load(item); | ||
const title = $('.titleWrapper>a'); | ||
const footer = $('.sourceTime>span'); | ||
return { | ||
title: title.text().trim() || '', | ||
link: title.attr('href') || '', | ||
pubDate: parseDate(footer.eq(1).text().trim().replace('时间:', '')) || '', | ||
author: footer.eq(0).text().trim().replace('来源:', '') || '', | ||
description: $('.newsDescribe>a').text() || '', | ||
}; | ||
}) || []; | ||
return { | ||
title: '浙江省人民政府-全省政府网站统一搜索', | ||
link: 'https://search.zj.gov.cn/jsearchfront/search.do', | ||
item: items, | ||
}; | ||
}, | ||
}; |