rsshub 1.0.0-master.f78ad03 → 1.0.0-master.f792555
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -8
- package/lib/config.js +20 -4
- package/lib/middleware/parameter.js +10 -10
- package/lib/middleware/template.js +29 -11
- package/lib/radar-rules.js +53 -391
- package/lib/router.js +135 -144
- package/lib/routes/bbc/index.js +1 -0
- package/lib/routes/cell/cover.js +1 -1
- package/lib/routes/sankakucomplex/post.js +1 -4
- package/lib/routes/v2ex/post.js +3 -0
- package/lib/routes/v2ex/topics.js +4 -8
- package/lib/utils/parse-date.js +4 -4
- package/lib/utils/puppeteer-utils.js +63 -0
- package/lib/utils/puppeteer.js +16 -0
- package/lib/utils/render.js +45 -0
- package/lib/utils/request-wrapper.js +38 -94
- package/lib/utils/unify-proxy.js +116 -0
- package/lib/utils/wechat-mp.js +3 -0
- package/lib/v2/18comic/utils.js +2 -2
- package/lib/v2/35photo/genre.js +2 -1
- package/lib/v2/35photo/utils.js +19 -4
- package/lib/v2/36kr/index.js +29 -24
- package/lib/v2/8world/index.js +8 -8
- package/lib/v2/8world/maintainer.js +1 -0
- package/lib/v2/8world/radar.js +6 -0
- package/lib/v2/8world/router.js +1 -1
- package/lib/v2/agora0/maintainer.js +1 -0
- package/lib/v2/agora0/pen0.js +43 -0
- package/lib/v2/agora0/radar.js +12 -1
- package/lib/v2/agora0/router.js +1 -0
- package/lib/v2/aicaijing/index.js +73 -0
- package/lib/v2/aicaijing/maintainer.js +6 -0
- package/lib/v2/aicaijing/radar.js +31 -0
- package/lib/v2/aicaijing/router.js +3 -0
- package/lib/v2/aicaijing/templates/description.art +4 -0
- package/lib/v2/aiea/index.js +39 -0
- package/lib/v2/aiea/maintainer.js +3 -0
- package/lib/v2/aiea/radar.js +13 -0
- package/lib/v2/aiea/router.js +3 -0
- package/lib/v2/aliyundrive/files.js +63 -0
- package/lib/v2/aliyundrive/maintainer.js +3 -0
- package/lib/v2/aliyundrive/radar.js +13 -0
- package/lib/v2/aliyundrive/router.js +3 -0
- package/lib/v2/aljazeera/index.js +87 -0
- package/lib/v2/aljazeera/maintainer.js +5 -0
- package/lib/v2/aljazeera/radar.js +62 -0
- package/lib/v2/aljazeera/router.js +3 -0
- package/lib/v2/aljazeera/templates/description.art +8 -0
- package/lib/v2/anquanke/category.js +39 -0
- package/lib/v2/anquanke/maintainer.js +4 -0
- package/lib/v2/anquanke/radar.js +13 -0
- package/lib/v2/anquanke/router.js +4 -0
- package/lib/{routes/aqk → v2/anquanke}/vul.js +3 -2
- package/lib/v2/apnews/topics.js +20 -18
- package/lib/v2/asus/bios.js +1 -0
- package/lib/v2/baidu/gushitong/index.js +28 -0
- package/lib/v2/baidu/maintainer.js +8 -0
- package/lib/v2/baidu/radar.js +60 -0
- package/lib/v2/baidu/router.js +8 -0
- package/lib/v2/baidu/templates/forum.art +1 -0
- package/lib/v2/baidu/templates/gushitong.art +9 -0
- package/lib/v2/baidu/templates/post.art +4 -0
- package/lib/v2/baidu/tieba/forum.js +64 -0
- package/lib/{routes → v2/baidu}/tieba/post.js +30 -16
- package/lib/v2/baidu/tieba/user.js +33 -0
- package/lib/v2/bangumi/maintainer.js +15 -2
- package/lib/v2/bangumi/{index.js → moe/index.js} +2 -2
- package/lib/v2/bangumi/online/online.js +28 -0
- package/lib/v2/bangumi/radar.js +77 -4
- package/lib/v2/bangumi/router.js +12 -1
- package/lib/v2/bangumi/templates/online/image.art +1 -0
- package/lib/v2/bangumi/templates/tv/ep.art +2 -0
- package/lib/v2/bangumi/templates/tv/today.art +12 -0
- package/lib/v2/bangumi/tv/calendar/_base.js +37 -0
- package/lib/{routes/bangumi → v2/bangumi/tv}/calendar/today.js +15 -27
- package/lib/v2/bangumi/tv/group/reply.js +59 -0
- package/lib/v2/bangumi/tv/group/topic.js +39 -0
- package/lib/{routes/bangumi → v2/bangumi/tv}/person/index.js +14 -10
- package/lib/{routes/bangumi → v2/bangumi/tv}/subject/comments.js +12 -14
- package/lib/v2/bangumi/tv/subject/ep.js +31 -0
- package/lib/{routes/bangumi → v2/bangumi/tv}/subject/index.js +1 -2
- package/lib/{routes/bangumi → v2/bangumi/tv}/subject/offcial-subject-api.js +7 -5
- package/lib/{routes/bangumi → v2/bangumi/tv}/user/blog.js +7 -6
- package/lib/v2/bilibili/cache.js +98 -70
- package/lib/v2/bilibili/dynamic.js +5 -2
- package/lib/v2/bilibili/maintainer.js +2 -2
- package/lib/v2/bilibili/radar.js +18 -9
- package/lib/v2/bilibili/router.js +2 -2
- package/lib/v2/bilibili/userChannel.js +31 -35
- package/lib/v2/bilibili/userCollection.js +51 -0
- package/lib/v2/bilibili/utils.js +10 -0
- package/lib/v2/bilibili/video-all.js +29 -8
- package/lib/v2/bilibili/video.js +11 -3
- package/lib/v2/bilibili/vsearch.js +29 -9
- package/lib/v2/bloomberg/index.js +37 -0
- package/lib/v2/bloomberg/maintainer.js +4 -0
- package/lib/v2/bloomberg/radar.js +13 -0
- package/lib/v2/bloomberg/router.js +4 -0
- package/lib/v2/bloomberg/templates/audio_media.art +13 -0
- package/lib/v2/bloomberg/templates/image_figure.art +9 -0
- package/lib/v2/bloomberg/templates/lede_media.art +14 -0
- package/lib/v2/bloomberg/templates/video_media.art +25 -0
- package/lib/v2/bloomberg/utils.js +395 -0
- package/lib/v2/bluestacks/maintainer.js +3 -0
- package/lib/v2/bluestacks/radar.js +13 -0
- package/lib/v2/bluestacks/release.js +63 -0
- package/lib/v2/bluestacks/router.js +3 -0
- package/lib/v2/bnu/dwxgb.js +57 -0
- package/lib/v2/bnu/radar.js +7 -1
- package/lib/v2/bnu/router.js +1 -0
- package/lib/v2/bytes/bytes.js +25 -0
- package/lib/v2/bytes/maintainer.js +4 -0
- package/lib/v2/bytes/radar.js +13 -0
- package/lib/v2/bytes/router.js +3 -0
- package/lib/v2/caijing/maintainer.js +3 -0
- package/lib/v2/caijing/radar.js +13 -0
- package/lib/v2/caijing/roll.js +46 -0
- package/lib/v2/caijing/router.js +3 -0
- package/lib/v2/cdzjryb/maintainer.js +3 -0
- package/lib/v2/cdzjryb/projectList.js +49 -0
- package/lib/v2/cdzjryb/radar.js +13 -0
- package/lib/v2/cdzjryb/router.js +3 -0
- package/lib/v2/cdzjryb/templates/projectList.art +23 -0
- package/lib/v2/chsi/kydt.js +51 -0
- package/lib/v2/chsi/maintainer.js +3 -0
- package/lib/v2/chsi/radar.js +13 -0
- package/lib/v2/chsi/router.js +3 -0
- package/lib/v2/cnbc/maintainer.js +3 -0
- package/lib/v2/cnbc/radar.js +21 -0
- package/lib/v2/cnbc/router.js +3 -0
- package/lib/v2/cnbc/rss.js +54 -0
- package/lib/v2/cnbeta/radar.js +6 -6
- package/lib/v2/cnbeta/router.js +1 -1
- package/lib/v2/cnbeta/type.js +6 -12
- package/lib/v2/cnbeta/utils.js +5 -8
- package/lib/v2/cnblogs/common.js +30 -0
- package/lib/v2/cnblogs/maintainer.js +7 -0
- package/lib/v2/cnblogs/radar.js +37 -0
- package/lib/v2/cnblogs/router.js +7 -0
- package/lib/v2/cngal/entry.js +25 -0
- package/lib/v2/cngal/maintainer.js +4 -0
- package/lib/v2/cngal/radar.js +19 -0
- package/lib/v2/cngal/router.js +4 -0
- package/lib/v2/cngal/templates/entry-description.art +4 -0
- package/lib/v2/cngal/templates/weekly-description.art +4 -0
- package/lib/v2/cngal/weekly.js +20 -0
- package/lib/v2/cnki/author.js +45 -0
- package/lib/v2/cnki/journals.js +2 -23
- package/lib/v2/cnki/maintainer.js +1 -0
- package/lib/v2/cnki/radar.js +8 -0
- package/lib/v2/cnki/router.js +1 -0
- package/lib/v2/cnki/utils.js +26 -0
- package/lib/v2/codeforces/maintainer.js +1 -0
- package/lib/v2/codeforces/radar.js +8 -0
- package/lib/v2/codeforces/recent_actions.js +47 -0
- package/lib/v2/codeforces/router.js +1 -0
- package/lib/v2/codeforces/templates/contest.art +5 -10
- package/lib/{routes → v2}/comicskingdom/index.js +18 -19
- package/lib/v2/comicskingdom/maintainer.js +3 -0
- package/lib/v2/comicskingdom/radar.js +13 -0
- package/lib/v2/comicskingdom/router.js +3 -0
- package/lib/v2/comicskingdom/templates/desc.art +1 -0
- package/lib/{routes → v2}/coolapk/dyh.js +2 -6
- package/lib/{routes → v2}/coolapk/hot.js +1 -3
- package/lib/{routes → v2}/coolapk/huati.js +1 -3
- package/lib/v2/coolapk/maintainer.js +9 -0
- package/lib/v2/coolapk/radar.js +31 -0
- package/lib/v2/coolapk/router.js +9 -0
- package/lib/{routes → v2}/coolapk/toutiao.js +1 -3
- package/lib/{routes → v2}/coolapk/tuwen.js +2 -4
- package/lib/{routes → v2}/coolapk/userDynamic.js +1 -3
- package/lib/{routes → v2}/coolapk/utils.js +7 -9
- package/lib/v2/cqwu/index.js +1 -1
- package/lib/v2/creative-comic/book.js +60 -0
- package/lib/v2/creative-comic/maintainer.js +3 -0
- package/lib/v2/creative-comic/radar.js +13 -0
- package/lib/v2/creative-comic/router.js +3 -0
- package/lib/v2/creative-comic/templates/chapter.art +11 -0
- package/lib/v2/creative-comic/utils.js +96 -0
- package/lib/v2/cts/maintainer.js +3 -0
- package/lib/v2/cts/news.js +40 -0
- package/lib/v2/cts/radar.js +13 -0
- package/lib/v2/cts/router.js +3 -0
- package/lib/v2/cuc/maintainer.js +3 -0
- package/lib/v2/cuc/radar.js +13 -0
- package/lib/v2/cuc/router.js +3 -0
- package/lib/{routes/universities → v2}/cuc/yz.js +2 -4
- package/lib/v2/curius/links.js +43 -0
- package/lib/v2/curius/maintainer.js +3 -0
- package/lib/v2/curius/radar.js +13 -0
- package/lib/v2/curius/router.js +3 -0
- package/lib/v2/curius/templates/description.art +16 -0
- package/lib/v2/cw/maintainer.js +5 -0
- package/lib/v2/cw/master.js +31 -0
- package/lib/v2/cw/radar.js +25 -0
- package/lib/v2/cw/router.js +5 -0
- package/lib/v2/cw/sub.js +31 -0
- package/lib/v2/cw/today.js +27 -0
- package/lib/v2/cw/utils.js +75 -0
- package/lib/v2/dcard/maintainer.js +4 -0
- package/lib/v2/dcard/radar.js +31 -0
- package/lib/v2/dcard/router.js +3 -0
- package/lib/v2/dcard/section.js +66 -0
- package/lib/v2/dcard/utils.js +50 -0
- package/lib/{routes → v2}/dedao/index.js +11 -8
- package/lib/v2/dedao/knowledge.js +64 -0
- package/lib/{routes → v2}/dedao/list.js +16 -10
- package/lib/v2/dedao/maintainer.js +8 -0
- package/lib/v2/dedao/radar.js +50 -0
- package/lib/v2/dedao/router.js +6 -0
- package/lib/v2/dedao/templates/knowledge.art +29 -0
- package/lib/v2/dedao/templates/user.art +38 -0
- package/lib/v2/dedao/user.js +79 -0
- package/lib/v2/deepmind/blog.js +32 -0
- package/lib/v2/deepmind/maintainer.js +3 -0
- package/lib/v2/deepmind/radar.js +13 -0
- package/lib/v2/deepmind/router.js +3 -0
- package/lib/v2/diershoubing/maintainer.js +3 -0
- package/lib/v2/diershoubing/news.js +50 -0
- package/lib/v2/diershoubing/radar.js +13 -0
- package/lib/v2/diershoubing/router.js +3 -0
- package/lib/v2/diershoubing/templates/news.art +9 -0
- package/lib/v2/dmzj/maintainer.js +3 -0
- package/lib/v2/dmzj/news.js +26 -0
- package/lib/v2/dmzj/radar.js +67 -0
- package/lib/v2/dmzj/router.js +3 -0
- package/lib/v2/docschina/jsweekly.js +114 -0
- package/lib/v2/docschina/maintainer.js +3 -0
- package/lib/v2/docschina/radar.js +13 -0
- package/lib/v2/docschina/router.js +3 -0
- package/lib/v2/domp4/detail.js +7 -3
- package/lib/v2/domp4/utils.js +14 -0
- package/lib/v2/dongqiudi/player_news.js +2 -3
- package/lib/v2/dongqiudi/result.js +1 -1
- package/lib/v2/dongqiudi/router.js +1 -1
- package/lib/v2/dongqiudi/special.js +21 -27
- package/lib/v2/dongqiudi/team_news.js +2 -3
- package/lib/v2/dongqiudi/top_news.js +18 -24
- package/lib/v2/dongqiudi/utils.js +36 -36
- package/lib/v2/douban/other/weekly_best.js +5 -3
- package/lib/v2/douyin/hashtag.js +20 -19
- package/lib/v2/douyin/live.js +2 -21
- package/lib/v2/douyin/user.js +2 -17
- package/lib/v2/douyin/utils.js +85 -0
- package/lib/v2/{acm-ecnu → ecnu}/contest.js +1 -4
- package/lib/v2/ecnu/maintainer.js +4 -0
- package/lib/v2/ecnu/radar.js +30 -0
- package/lib/v2/ecnu/router.js +4 -0
- package/lib/v2/{acm-ecnu → ecnu}/templates/description.art +0 -0
- package/lib/v2/ecnu/yjs.js +37 -0
- package/lib/v2/economist/full.js +1 -1
- package/lib/v2/ehentai/ehapi.js +54 -10
- package/lib/v2/ehentai/maintainer.js +3 -3
- package/lib/v2/fantia/maintainer.js +4 -0
- package/lib/v2/fantia/radar.js +13 -0
- package/lib/v2/fantia/router.js +4 -0
- package/lib/{routes → v2}/fantia/search.js +8 -3
- package/lib/{routes → v2}/fantia/user.js +10 -5
- package/lib/v2/fastbull/express-news.js +33 -0
- package/lib/v2/fastbull/maintainer.js +5 -0
- package/lib/v2/fastbull/news.js +57 -0
- package/lib/v2/fastbull/radar.js +19 -0
- package/lib/v2/fastbull/router.js +5 -0
- package/lib/v2/fastbull/templates/description.art +7 -0
- package/lib/v2/finviz/maintainer.js +4 -0
- package/lib/v2/finviz/news.js +45 -0
- package/lib/{routes/finviz/news.js → v2/finviz/quote.js} +5 -5
- package/lib/v2/finviz/radar.js +19 -0
- package/lib/v2/finviz/router.js +4 -0
- package/lib/v2/foresightnews/index.js +8 -11
- package/lib/v2/foreverblog/feeds.js +36 -0
- package/lib/v2/foreverblog/maintainer.js +3 -0
- package/lib/v2/foreverblog/radar.js +13 -0
- package/lib/v2/foreverblog/router.js +3 -0
- package/lib/v2/freewechat/maintainer.js +3 -0
- package/lib/v2/freewechat/profile.js +61 -0
- package/lib/v2/freewechat/radar.js +13 -0
- package/lib/v2/freewechat/router.js +3 -0
- package/lib/v2/ft/maintainer.js +2 -2
- package/lib/v2/ft/utils.js +10 -7
- package/lib/v2/gamme/category.js +46 -0
- package/lib/v2/gamme/maintainer.js +6 -0
- package/lib/v2/gamme/radar.js +33 -0
- package/lib/v2/gamme/router.js +4 -0
- package/lib/v2/gamme/tag.js +57 -0
- package/lib/v2/gcores/category.js +16 -6
- package/lib/v2/gelonghui/home.js +31 -0
- package/lib/v2/gelonghui/keyword.js +34 -0
- package/lib/v2/gelonghui/maintainer.js +6 -0
- package/lib/v2/gelonghui/radar.js +31 -0
- package/lib/v2/gelonghui/router.js +6 -0
- package/lib/v2/gelonghui/subject.js +36 -0
- package/lib/v2/gelonghui/user.js +33 -0
- package/lib/v2/gelonghui/utils.js +21 -0
- package/lib/v2/gihyo/group.js +48 -0
- package/lib/v2/gihyo/maintainer.js +3 -0
- package/lib/v2/gihyo/radar.js +13 -0
- package/lib/v2/gihyo/router.js +3 -0
- package/lib/v2/github/pulls.js +7 -8
- package/lib/v2/github/router.js +1 -1
- package/lib/v2/github/topic.js +1 -1
- package/lib/v2/github/trending.js +68 -36
- package/lib/v2/good/index.js +53 -0
- package/lib/v2/good/maintainer.js +3 -0
- package/lib/v2/good/radar.js +13 -0
- package/lib/v2/good/router.js +3 -0
- package/lib/v2/gov/beijing/bphc/index.js +54 -0
- package/lib/v2/gov/ccdi/index.js +18 -0
- package/lib/v2/gov/ccdi/utils.js +94 -0
- package/lib/{routes/sse/sserules.js → v2/gov/cnnic/index.js} +18 -13
- package/lib/v2/gov/customs/list.js +1 -1
- package/lib/v2/gov/dianbai/dianbai.js +18 -0
- package/lib/v2/gov/gaozhou/gaozhou.js +19 -0
- package/lib/v2/gov/general/general.js +250 -0
- package/lib/v2/gov/general/templates/zcjdpt.art +128 -0
- package/lib/v2/gov/gz/index.js +38 -0
- package/lib/v2/gov/huazhou/huazhou.js +19 -0
- package/lib/v2/gov/hunan/changsha/major-email.js +52 -0
- package/lib/v2/gov/maintainer.js +29 -5
- package/lib/v2/gov/maoming/maoming.js +417 -0
- package/lib/v2/gov/maonan/maonan.js +100 -0
- package/lib/v2/gov/mgs/mgs.js +19 -0
- package/lib/v2/gov/mmht/mmht.js +19 -0
- package/lib/v2/gov/mofcom/article.js +68 -0
- package/lib/v2/gov/nmpa/generic.js +1 -1
- package/lib/v2/gov/nopss/index.js +57 -0
- package/lib/v2/gov/nrta/news.js +0 -1
- package/lib/v2/gov/radar.js +272 -1
- package/lib/v2/gov/router.js +28 -5
- package/lib/v2/gov/sasac/generic.js +42 -0
- package/lib/v2/gov/sdb/sdb.js +19 -0
- package/lib/v2/gov/shanghai/yjj/index.js +3 -1
- package/lib/{routes → v2}/gov/shenzhen/xxgk/zfxxgj.js +21 -15
- package/lib/v2/gov/stats/index.js +19 -0
- package/lib/v2/gov/stats/templates/attachments.art +5 -0
- package/lib/v2/gov/stats/utils.js +73 -0
- package/lib/v2/gov/xinyi/xinyi.js +19 -0
- package/lib/v2/gov/zhengce/govall.js +55 -0
- package/lib/v2/gov/zhengce/wenjian.js +47 -0
- package/lib/v2/gov/zhengce/zhengceku.js +22 -0
- package/lib/v2/gov/zhengce/zuixin.js +39 -0
- package/lib/v2/greasyfork/feedback.js +31 -0
- package/lib/v2/greasyfork/maintainer.js +5 -0
- package/lib/v2/greasyfork/radar.js +25 -0
- package/lib/v2/greasyfork/router.js +5 -0
- package/lib/{routes → v2}/greasyfork/scripts.js +4 -4
- package/lib/v2/greasyfork/versions.js +29 -0
- package/lib/v2/guanhai/index.js +47 -0
- package/lib/v2/guanhai/maintainer.js +4 -0
- package/lib/v2/guanhai/radar.js +13 -0
- package/lib/v2/guanhai/router.js +3 -0
- package/lib/v2/hackernews/index.js +16 -7
- package/lib/v2/hellogithub/index.js +102 -0
- package/lib/v2/hellogithub/maintainer.js +7 -3
- package/lib/v2/hellogithub/radar.js +35 -11
- package/lib/v2/hellogithub/report.js +56 -0
- package/lib/v2/hellogithub/router.js +6 -3
- package/lib/v2/hellogithub/templates/description.art +99 -0
- package/lib/v2/hellogithub/templates/report.art +118 -0
- package/lib/v2/hellogithub/templates/volume.art +36 -0
- package/lib/v2/hellogithub/volume.js +49 -0
- package/lib/v2/hit/hitgs.js +46 -0
- package/lib/v2/hit/jwc.js +60 -0
- package/lib/v2/hit/maintainer.js +5 -0
- package/lib/v2/hit/radar.js +29 -0
- package/lib/v2/hit/router.js +6 -0
- package/lib/v2/hit/today.js +59 -0
- package/lib/v2/hitwh/maintainer.js +3 -0
- package/lib/v2/hitwh/radar.js +13 -0
- package/lib/v2/hitwh/router.js +3 -0
- package/lib/v2/hitwh/today.js +52 -0
- package/lib/v2/hjedd/utils.js +2 -2
- package/lib/v2/{heu → hrbeu}/gx/card.js +5 -10
- package/lib/v2/{heu → hrbeu}/gx/list.js +12 -20
- package/lib/v2/hrbeu/job/bigemploy.js +25 -0
- package/lib/v2/{heu → hrbeu}/job/calendar.js +8 -16
- package/lib/v2/{heu → hrbeu}/job/list.js +11 -16
- package/lib/v2/{heu → hrbeu}/maintainer.js +2 -1
- package/lib/v2/{heu → hrbeu}/radar.js +18 -10
- package/lib/v2/{heu → hrbeu}/router.js +3 -2
- package/lib/v2/{heu → hrbeu}/uae/list.js +12 -17
- package/lib/v2/hrbeu/ugs/news.js +98 -0
- package/lib/v2/{heu → hrbeu}/yjsy/list.js +8 -16
- package/lib/v2/huanqiu/index.js +5 -3
- package/lib/v2/hupu/all.js +8 -8
- package/lib/v2/hupu/bbs.js +22 -1
- package/lib/v2/hupu/templates/description.art +11 -0
- package/lib/v2/hupu/templates/match.art +22 -0
- package/lib/v2/huxiu/briefColumn.js +51 -0
- package/lib/v2/huxiu/maintainer.js +1 -0
- package/lib/v2/huxiu/moment.js +40 -0
- package/lib/v2/huxiu/radar.js +12 -0
- package/lib/v2/huxiu/router.js +2 -0
- package/lib/v2/huxiu/templates/moment.art +16 -0
- package/lib/v2/ieee-security/maintainer.js +3 -0
- package/lib/v2/ieee-security/radar.js +13 -0
- package/lib/v2/ieee-security/router.js +3 -0
- package/lib/v2/ieee-security/sp.js +36 -0
- package/lib/v2/ifeng/maintainer.js +1 -0
- package/lib/v2/ifeng/news.js +54 -0
- package/lib/v2/ifeng/radar.js +7 -0
- package/lib/v2/ifeng/router.js +1 -0
- package/lib/v2/ifeng/templates/description.art +16 -0
- package/lib/v2/indiansinkuwait/latest.js +43 -0
- package/lib/v2/indiansinkuwait/maintainer.js +3 -0
- package/lib/v2/indiansinkuwait/radar.js +13 -0
- package/lib/v2/indiansinkuwait/router.js +3 -0
- package/lib/v2/iresearch/maintainer.js +1 -0
- package/lib/v2/iresearch/radar.js +7 -1
- package/lib/v2/iresearch/router.js +1 -0
- package/lib/v2/iresearch/templates/weekly.art +11 -0
- package/lib/v2/iresearch/weekly.js +39 -0
- package/lib/v2/islander/maintainer.js +4 -0
- package/lib/v2/islander/radar.js +19 -0
- package/lib/v2/islander/router.js +4 -0
- package/lib/v2/islander/search.js +33 -0
- package/lib/v2/islander/top30event.js +28 -0
- package/lib/v2/ithome/maintainer.js +1 -0
- package/lib/v2/ithome/radar.js +11 -0
- package/lib/v2/ithome/router.js +1 -0
- package/lib/v2/ithome/tw/feeds.js +38 -0
- package/lib/v2/iwara/subscriptions.js +1 -1
- package/lib/v2/jandan/index.js +17 -51
- package/lib/v2/jandan/maintainer.js +1 -1
- package/lib/v2/jandan/section.js +0 -1
- package/lib/v2/javbus/index.js +8 -2
- package/lib/v2/javbus/templates/description.art +12 -1
- package/lib/v2/jiemian/list.js +2 -2
- package/lib/v2/jike/user.js +1 -0
- package/lib/v2/jornada/index.js +59 -0
- package/lib/v2/jornada/maintainer.js +3 -0
- package/lib/v2/jornada/radar.js +13 -0
- package/lib/v2/jornada/router.js +3 -0
- package/lib/v2/jseea/maintainer.js +3 -0
- package/lib/v2/jseea/news.js +64 -0
- package/lib/v2/jseea/radar.js +13 -0
- package/lib/v2/jseea/router.js +3 -0
- package/lib/v2/kemono/index.js +2 -2
- package/lib/{routes → v2}/kuaidi100/index.js +0 -0
- package/lib/v2/kuaidi100/maintainer.js +4 -0
- package/lib/v2/kuaidi100/radar.js +25 -0
- package/lib/v2/kuaidi100/router.js +4 -0
- package/lib/{routes → v2}/kuaidi100/supported_company.js +0 -1
- package/lib/{routes → v2}/kuaidi100/utils.js +46 -11
- package/lib/v2/kuwaitlocal/index.js +47 -0
- package/lib/v2/kuwaitlocal/maintainer.js +4 -0
- package/lib/v2/kuwaitlocal/radar.js +19 -0
- package/lib/v2/kuwaitlocal/router.js +3 -0
- package/lib/v2/lang/maintainer.js +3 -0
- package/lib/v2/lang/radar.js +13 -0
- package/lib/v2/lang/room.js +40 -0
- package/lib/v2/lang/router.js +3 -0
- package/lib/v2/lang/templates/room.art +1 -0
- package/lib/v2/lianxh/index.js +61 -0
- package/lib/v2/{techflow520 → lianxh}/maintainer.js +0 -1
- package/lib/v2/lianxh/radar.js +13 -0
- package/lib/v2/{techflow520 → lianxh}/router.js +0 -1
- package/lib/{routes → v2}/linkresearcher/index.js +16 -13
- package/lib/v2/linkresearcher/maintainer.js +3 -0
- package/lib/v2/linkresearcher/radar.js +19 -0
- package/lib/v2/linkresearcher/router.js +3 -0
- package/lib/v2/linovelib/maintainer.js +3 -0
- package/lib/v2/linovelib/novel.js +33 -0
- package/lib/v2/linovelib/radar.js +13 -0
- package/lib/v2/linovelib/router.js +3 -0
- package/lib/v2/liulinblog/utils.js +7 -4
- package/lib/v2/lkong/forum.js +3 -2
- package/lib/v2/lofter/user.js +6 -1
- package/lib/v2/loltw/maintainer.js +3 -0
- package/lib/v2/loltw/news.js +36 -0
- package/lib/v2/loltw/radar.js +13 -0
- package/lib/v2/loltw/router.js +3 -0
- package/lib/v2/loltw/templates/news.art +6 -0
- package/lib/v2/lovelive-anime/maintainer.js +2 -0
- package/lib/v2/lovelive-anime/radar.js +21 -3
- package/lib/v2/lovelive-anime/router.js +2 -0
- package/lib/v2/lovelive-anime/schedules.js +56 -0
- package/lib/v2/lovelive-anime/templates/scheduleDesc.art +3 -0
- package/lib/v2/lovelive-anime/topics.js +84 -0
- package/lib/v2/luogu/contest.js +72 -0
- package/lib/v2/luogu/daily.js +33 -0
- package/lib/v2/luogu/maintainer.js +6 -0
- package/lib/v2/luogu/radar.js +31 -0
- package/lib/v2/luogu/router.js +6 -0
- package/lib/v2/luogu/userBlog.js +48 -0
- package/lib/v2/luogu/userFeed.js +30 -0
- package/lib/v2/lxixsxa/discography.js +54 -0
- package/lib/v2/lxixsxa/information.js +48 -0
- package/lib/v2/lxixsxa/jsonpHelper.js +19 -0
- package/lib/v2/lxixsxa/maintainer.js +4 -0
- package/lib/v2/lxixsxa/radar.js +36 -0
- package/lib/v2/lxixsxa/router.js +4 -0
- package/lib/v2/lxixsxa/templates/disco.art +5 -0
- package/lib/v2/lxixsxa/templates/info.art +4 -0
- package/lib/v2/macfilos/blog.js +61 -0
- package/lib/v2/macfilos/maintainer.js +3 -0
- package/lib/v2/macfilos/radar.js +13 -0
- package/lib/v2/macfilos/router.js +3 -0
- package/lib/v2/mangadex/index.js +73 -0
- package/lib/v2/mangadex/maintainer.js +3 -0
- package/lib/v2/mangadex/radar.js +13 -0
- package/lib/v2/mangadex/router.js +3 -0
- package/lib/{routes → v2}/manhuagui/comic.js +27 -12
- package/lib/v2/manhuagui/maintainer.js +6 -0
- package/lib/v2/manhuagui/radar.js +33 -0
- package/lib/v2/manhuagui/router.js +5 -0
- package/lib/v2/manhuagui/subscribe.js +54 -0
- package/lib/v2/manhuagui/templates/manga.art +2 -0
- package/lib/v2/mckinsey/cn/categoryMap.js +79 -0
- package/lib/v2/mckinsey/cn/index.js +37 -0
- package/lib/v2/mckinsey/radar.js +12 -0
- package/lib/v2/mckinsey/router.js +3 -0
- package/lib/v2/meituclub/latest.js +41 -0
- package/lib/v2/meituclub/maintainer.js +3 -0
- package/lib/v2/meituclub/radar.js +13 -0
- package/lib/v2/meituclub/router.js +3 -0
- package/lib/v2/meituclub/templates/description.art +1 -0
- package/lib/v2/meteor/boards.js +11 -0
- package/lib/v2/meteor/index.js +45 -0
- package/lib/v2/meteor/maintainer.js +4 -0
- package/lib/v2/meteor/radar.js +19 -0
- package/lib/v2/meteor/router.js +4 -0
- package/lib/v2/meteor/templates/desc.art +7 -0
- package/lib/v2/meteor/utils.js +90 -0
- package/lib/v2/mihoyo/maintainer.js +1 -0
- package/lib/v2/mihoyo/radar.js +20 -1
- package/lib/v2/mihoyo/router.js +1 -0
- package/lib/v2/mihoyo/ys/news.js +81 -0
- package/lib/v2/mingpao/index.js +28 -33
- package/lib/v2/mingpao/templates/description.art +1 -1
- package/lib/v2/mingpao/templates/fancybox.art +6 -2
- package/lib/v2/mirror/index.js +16 -12
- package/lib/v2/mrdx/daily.js +79 -0
- package/lib/v2/mrdx/maintainer.js +3 -0
- package/lib/v2/mrdx/radar.js +13 -0
- package/lib/v2/mrdx/router.js +3 -0
- package/lib/v2/mrdx/utils.js +17 -0
- package/lib/v2/mtime/maintainer.js +1 -1
- package/lib/v2/mtime/news.js +28 -24
- package/lib/v2/mtime/radar.js +1 -1
- package/lib/v2/nature/maintainer.js +5 -5
- package/lib/v2/nautil/maintainer.js +3 -0
- package/lib/v2/nautil/radar.js +13 -0
- package/lib/v2/nautil/router.js +3 -0
- package/lib/v2/nautil/templates/description.art +6 -0
- package/lib/v2/nautil/topics.js +57 -0
- package/lib/v2/ndss-symposium/maintainer.js +3 -0
- package/lib/v2/ndss-symposium/ndss.js +80 -0
- package/lib/v2/ndss-symposium/radar.js +13 -0
- package/lib/v2/ndss-symposium/router.js +3 -0
- package/lib/v2/nextapple/maintainer.js +3 -0
- package/lib/v2/nextapple/radar.js +13 -0
- package/lib/v2/nextapple/realtime.js +44 -0
- package/lib/v2/nextapple/router.js +3 -0
- package/lib/v2/nga/post.js +64 -9
- package/lib/v2/nga/radar.js +31 -48
- package/lib/v2/nikkei-asia/index.js +1 -1
- package/lib/v2/nintendo/direct.js +31 -0
- package/lib/v2/nintendo/eshop_cn.js +44 -0
- package/lib/v2/nintendo/eshop_hk.js +79 -0
- package/lib/v2/nintendo/eshop_jp.js +34 -0
- package/lib/v2/nintendo/eshop_us.js +32 -0
- package/lib/v2/nintendo/maintainer.js +7 -0
- package/lib/v2/nintendo/news.js +23 -0
- package/lib/v2/nintendo/news_china.js +35 -0
- package/lib/v2/nintendo/radar.js +70 -0
- package/lib/v2/nintendo/router.js +10 -0
- package/lib/{routes → v2}/nintendo/system-update.js +2 -2
- package/lib/v2/nintendo/templates/direct.art +6 -0
- package/lib/v2/nintendo/templates/eshop_cn.art +21 -0
- package/lib/v2/nintendo/templates/eshop_hk.art +61 -0
- package/lib/v2/nintendo/templates/eshop_jp.art +3 -0
- package/lib/v2/nintendo/templates/eshop_us.art +24 -0
- package/lib/{routes → v2}/nintendo/utils.js +35 -51
- package/lib/v2/nju/exchangesys.js +46 -0
- package/lib/v2/nju/hosptial.js +41 -0
- package/lib/v2/nju/itsc.js +46 -0
- package/lib/v2/nju/jw.js +43 -29
- package/lib/v2/nju/maintainer.js +4 -1
- package/lib/v2/nju/radar.js +48 -9
- package/lib/v2/nju/router.js +3 -0
- package/lib/v2/njxzc/home.js +66 -0
- package/lib/v2/njxzc/maintainer.js +3 -0
- package/lib/v2/njxzc/radar.js +13 -0
- package/lib/v2/njxzc/router.js +4 -0
- package/lib/v2/nmbxd1/forum.js +58 -0
- package/lib/v2/nmbxd1/maintainer.js +3 -0
- package/lib/v2/nmbxd1/radar.js +13 -0
- package/lib/v2/nmbxd1/router.js +3 -0
- package/lib/v2/nmbxd1/templates/description.art +65 -0
- package/lib/v2/nmtv/column.js +53 -0
- package/lib/v2/nmtv/maintainer.js +3 -0
- package/lib/v2/nmtv/radar.js +13 -0
- package/lib/v2/nmtv/router.js +3 -0
- package/lib/v2/nmtv/templates/description.art +9 -0
- package/lib/v2/nua/dc.js +63 -0
- package/lib/v2/nua/gra.js +9 -44
- package/lib/v2/nua/index.js +22 -0
- package/lib/v2/nua/lib.js +39 -0
- package/lib/v2/nua/maintainer.js +4 -0
- package/lib/v2/nua/radar.js +32 -0
- package/lib/v2/nua/router.js +4 -0
- package/lib/v2/nua/sxw.js +22 -0
- package/lib/v2/nua/utils.js +75 -0
- package/lib/v2/nuaa/college/cae.js +79 -0
- package/lib/v2/nuaa/college/cs.js +78 -0
- package/lib/v2/nuaa/jwc/jwc.js +21 -27
- package/lib/v2/nuaa/maintainer.js +4 -3
- package/lib/v2/nuaa/radar.js +6 -0
- package/lib/v2/nuaa/router.js +3 -2
- package/lib/v2/nuaa/utils/pypasswaf.js +3 -4
- package/lib/v2/nuaa/yjsy/yjsy.js +60 -41
- package/lib/v2/nyaa/main.js +16 -23
- package/lib/v2/nyaa/maintainer.js +7 -4
- package/lib/v2/nyaa/radar.js +27 -29
- package/lib/v2/nyaa/router.js +4 -2
- package/lib/v2/odaily/post.js +15 -20
- package/lib/v2/odaily/utils.js +1 -1
- package/lib/v2/oreno3d/main.js +104 -41
- package/lib/v2/oreno3d/maintainer.js +5 -5
- package/lib/v2/oreno3d/router.js +5 -5
- package/lib/v2/paradigm/maintainer.js +3 -0
- package/lib/v2/paradigm/radar.js +13 -0
- package/lib/v2/paradigm/router.js +3 -0
- package/lib/v2/paradigm/writing.js +44 -0
- package/lib/v2/picuki/maintainer.js +1 -1
- package/lib/v2/picuki/profile.js +24 -10
- package/lib/v2/picuki/templates/video.art +3 -0
- package/lib/v2/picuki/utils.js +21 -0
- package/lib/{routes → v2}/pixiv/api/getBookmarks.js +1 -3
- package/lib/{routes → v2}/pixiv/api/getIllustFollows.js +1 -3
- package/lib/{routes → v2}/pixiv/api/getIllusts.js +1 -3
- package/lib/{routes → v2}/pixiv/api/getRanking.js +2 -4
- package/lib/{routes → v2}/pixiv/api/getUserDetail.js +1 -3
- package/lib/{routes → v2}/pixiv/api/searchIllust.js +1 -3
- package/lib/{routes → v2}/pixiv/api/searchPopularIllust.js +1 -3
- package/lib/{routes → v2}/pixiv/bookmarks.js +4 -3
- package/lib/{routes → v2}/pixiv/constants.js +0 -0
- package/lib/{routes → v2}/pixiv/illustfollow.js +5 -4
- package/lib/v2/pixiv/maintainer.js +8 -0
- package/lib/v2/pixiv/novels.js +35 -0
- package/lib/{routes → v2}/pixiv/pixiv-got.js +1 -1
- package/lib/v2/pixiv/radar.js +43 -0
- package/lib/{routes → v2}/pixiv/ranking.js +7 -3
- package/lib/v2/pixiv/router.js +8 -0
- package/lib/{routes → v2}/pixiv/search.js +4 -3
- package/lib/v2/pixiv/token.js +86 -0
- package/lib/{routes → v2}/pixiv/user.js +4 -3
- package/lib/{routes → v2}/pixiv/utils.js +0 -0
- package/lib/v2/producthunt/templates/descImg.art +2 -2
- package/lib/v2/producthunt/today.js +8 -5
- package/lib/v2/pts/index.js +4 -1
- package/lib/v2/qianzhan/column.js +50 -0
- package/lib/v2/qianzhan/maintainer.js +4 -0
- package/lib/v2/qianzhan/radar.js +26 -0
- package/lib/v2/qianzhan/rank.js +40 -0
- package/lib/v2/qianzhan/router.js +4 -0
- package/lib/v2/qidian/author.js +41 -0
- package/lib/{routes → v2}/qidian/chapter.js +8 -14
- package/lib/{routes → v2}/qidian/forum.js +1 -3
- package/lib/{routes → v2}/qidian/free-next.js +1 -4
- package/lib/{routes → v2}/qidian/free.js +3 -5
- package/lib/v2/qidian/maintainer.js +7 -0
- package/lib/v2/qidian/radar.js +41 -0
- package/lib/v2/qidian/router.js +7 -0
- package/lib/v2/qidian/templates/description.art +5 -0
- package/lib/{routes → v2}/qingting/channel.js +6 -10
- package/lib/v2/qingting/maintainer.js +4 -0
- package/lib/v2/qingting/podcast.js +77 -0
- package/lib/v2/qingting/radar.js +19 -0
- package/lib/v2/qingting/router.js +4 -0
- package/lib/v2/qipamaijia/index.js +7 -1
- package/lib/v2/qipamaijia/maintainer.js +1 -1
- package/lib/v2/qlu/maintainer.js +3 -0
- package/lib/v2/qlu/notice.js +54 -0
- package/lib/v2/qlu/radar.js +13 -0
- package/lib/v2/qlu/router.js +3 -0
- package/lib/v2/qweather/now.js +1 -2
- package/lib/v2/radio/album.js +106 -0
- package/lib/v2/radio/index.js +25 -18
- package/lib/v2/radio/maintainer.js +2 -0
- package/lib/v2/radio/radar.js +15 -3
- package/lib/v2/radio/router.js +2 -0
- package/lib/v2/radio/templates/description.art +7 -4
- package/lib/v2/radio/zhibo.js +73 -0
- package/lib/v2/rarehistoricalphotos/index.js +28 -0
- package/lib/v2/rarehistoricalphotos/maintainer.js +3 -0
- package/lib/v2/rarehistoricalphotos/radar.js +13 -0
- package/lib/v2/rarehistoricalphotos/router.js +3 -0
- package/lib/v2/reactnewsletter/maintainer.js +4 -0
- package/lib/v2/reactnewsletter/radar.js +13 -0
- package/lib/v2/reactnewsletter/reactnewsletter.js +25 -0
- package/lib/v2/reactnewsletter/router.js +3 -0
- package/lib/v2/remnote/changelog.js +33 -0
- package/lib/v2/remnote/maintainer.js +3 -0
- package/lib/v2/remnote/radar.js +13 -0
- package/lib/v2/remnote/router.js +3 -0
- package/lib/v2/researchgate/maintainer.js +3 -0
- package/lib/v2/researchgate/publications.js +70 -0
- package/lib/v2/researchgate/radar.js +13 -0
- package/lib/v2/researchgate/router.js +3 -0
- package/lib/v2/reuters/common.js +21 -8
- package/lib/v2/reuters/investigates.js +1 -1
- package/lib/v2/reuters/templates/description.art +44 -0
- package/lib/v2/ruancan/index.js +13 -8
- package/lib/v2/saraba1st/digest.js +79 -0
- package/lib/v2/saraba1st/maintainer.js +4 -0
- package/lib/v2/saraba1st/radar.js +25 -0
- package/lib/v2/saraba1st/router.js +4 -0
- package/lib/v2/saraba1st/templates/digest.art +5 -0
- package/lib/v2/saraba1st/thread.js +63 -0
- package/lib/v2/science/cover.js +69 -0
- package/lib/v2/science/current.js +42 -0
- package/lib/v2/science/early.js +33 -0
- package/lib/v2/science/maintainer.js +5 -0
- package/lib/v2/science/radar.js +25 -0
- package/lib/v2/science/router.js +5 -0
- package/lib/v2/science/templates/article.art +2 -0
- package/lib/v2/science/templates/cover.art +2 -0
- package/lib/v2/science/utils.js +64 -0
- package/lib/v2/sciencedirect/journal.js +1 -1
- package/lib/{routes → v2}/scmp/index.js +7 -8
- package/lib/v2/scmp/maintainer.js +3 -0
- package/lib/v2/scmp/radar.js +13 -0
- package/lib/v2/scmp/router.js +3 -0
- package/lib/v2/sctv/maintainer.js +3 -0
- package/lib/v2/sctv/programme.js +80 -0
- package/lib/v2/sctv/radar.js +13 -0
- package/lib/v2/sctv/router.js +3 -0
- package/lib/v2/sctv/templates/description.art +3 -0
- package/lib/{routes → v2}/secrss/author.js +4 -2
- package/lib/{routes → v2}/secrss/category.js +8 -7
- package/lib/v2/secrss/maintainer.js +4 -0
- package/lib/v2/secrss/radar.js +19 -0
- package/lib/v2/secrss/router.js +4 -0
- package/lib/v2/shmtu/jwc.js +57 -0
- package/lib/v2/shmtu/maintainer.js +5 -0
- package/lib/v2/shmtu/portal.js +81 -0
- package/lib/v2/shmtu/radar.js +29 -0
- package/lib/v2/shmtu/router.js +5 -0
- package/lib/v2/shmtu/templates/portal.art +30 -0
- package/lib/v2/shmtu/www.js +58 -0
- package/lib/v2/sigsac/ccs.js +57 -0
- package/lib/v2/sigsac/maintainer.js +3 -0
- package/lib/v2/sigsac/radar.js +13 -0
- package/lib/v2/sigsac/router.js +3 -0
- package/lib/v2/simpleinfo/index.js +50 -0
- package/lib/v2/simpleinfo/maintainer.js +3 -0
- package/lib/v2/simpleinfo/radar.js +19 -0
- package/lib/v2/simpleinfo/router.js +3 -0
- package/lib/v2/simpleinfo/templates/description.art +6 -0
- package/lib/v2/smzdm/article.js +43 -0
- package/lib/v2/smzdm/baoliao.js +43 -0
- package/lib/v2/smzdm/haowen.js +48 -0
- package/lib/v2/smzdm/haowen_fenlei.js +50 -0
- package/lib/v2/smzdm/keyword.js +42 -0
- package/lib/v2/smzdm/maintainer.js +8 -0
- package/lib/v2/smzdm/radar.js +48 -0
- package/lib/{routes → v2}/smzdm/ranking.js +20 -3
- package/lib/v2/smzdm/router.js +8 -0
- package/lib/v2/sputniknews/index.js +2 -1
- package/lib/v2/sse/convert.js +39 -0
- package/lib/v2/sse/disclosure.js +46 -0
- package/lib/v2/sse/inquire.js +45 -0
- package/lib/v2/sse/lawandrules.js +43 -0
- package/lib/v2/sse/maintainer.js +7 -0
- package/lib/v2/sse/radar.js +41 -0
- package/lib/v2/sse/renewal.js +57 -0
- package/lib/v2/sse/router.js +7 -0
- package/lib/v2/sse/templates/inquire.art +7 -0
- package/lib/v2/sse/templates/renewal.art +13 -0
- package/lib/v2/stheadline/maintainer.js +3 -0
- package/lib/v2/stheadline/radar.js +13 -0
- package/lib/v2/stheadline/router.js +3 -0
- package/lib/v2/stheadline/std/realtime.js +46 -0
- package/lib/v2/swpu/cjxy.js +53 -0
- package/lib/v2/swpu/is.js +53 -0
- package/lib/v2/swpu/maintainer.js +2 -0
- package/lib/v2/swpu/radar.js +12 -0
- package/lib/v2/swpu/router.js +2 -0
- package/lib/v2/taoguba/blog.js +28 -3
- package/lib/v2/taoguba/index.js +29 -14
- package/lib/v2/taptap/changelog.js +11 -10
- package/lib/v2/taptap/maintainer.js +3 -1
- package/lib/v2/taptap/radar.js +17 -0
- package/lib/v2/taptap/review.js +83 -21
- package/lib/v2/taptap/router.js +4 -1
- package/lib/v2/taptap/topic.js +4 -4
- package/lib/v2/taptap/utils.js +8 -7
- package/lib/v2/techflowpost/express.js +33 -0
- package/lib/v2/techflowpost/index.js +30 -0
- package/lib/v2/techflowpost/maintainer.js +4 -0
- package/lib/v2/{techflow520 → techflowpost}/radar.js +6 -6
- package/lib/v2/techflowpost/router.js +5 -0
- package/lib/v2/telegram/channel.js +54 -38
- package/lib/v2/tencent/maintainer.js +2 -0
- package/lib/v2/tencent/news/coronavirus/data.js +71 -0
- package/lib/v2/tencent/news/coronavirus/total.js +34 -0
- package/lib/v2/tencent/news/coronavirus/utils.js +17 -0
- package/lib/v2/tencent/radar.js +8 -0
- package/lib/v2/tencent/router.js +2 -0
- package/lib/v2/tencent/templates/coronavirus/chinaTotal.art +6 -0
- package/lib/v2/tencent/templates/coronavirus/data.art +4 -0
- package/lib/v2/tesla/maintainer.js +3 -0
- package/lib/v2/tesla/price/get-price.js +25 -0
- package/lib/v2/tesla/price/index.js +41 -0
- package/lib/v2/tesla/radar.js +13 -0
- package/lib/v2/tesla/router.js +3 -0
- package/lib/v2/test/index.js +48 -0
- package/lib/v2/thecatcity/index.js +48 -0
- package/lib/v2/thecatcity/maintainer.js +3 -0
- package/lib/v2/thecatcity/radar.js +13 -0
- package/lib/v2/thecatcity/router.js +3 -0
- package/lib/v2/thecatcity/termsMap.js +30 -0
- package/lib/v2/theinitium/full.js +169 -0
- package/lib/v2/theinitium/maintainer.js +6 -0
- package/lib/v2/theinitium/radar.js +25 -0
- package/lib/v2/theinitium/router.js +3 -0
- package/lib/v2/thepaper/channel.js +11 -6
- package/lib/v2/thepaper/featured.js +9 -5
- package/lib/v2/thepaper/list.js +12 -6
- package/lib/v2/thepaper/maintainer.js +3 -3
- package/lib/v2/thepaper/radar.js +2 -2
- package/lib/v2/thepaper/templates/image_detail.art +6 -0
- package/lib/v2/thepaper/templates/video_detail.art +13 -0
- package/lib/v2/thepaper/utils.js +79 -42
- package/lib/v2/theverge/index.js +98 -0
- package/lib/v2/theverge/maintainer.js +3 -0
- package/lib/v2/theverge/radar.js +13 -0
- package/lib/v2/theverge/router.js +3 -0
- package/lib/v2/thwiki/index.js +32 -0
- package/lib/v2/thwiki/maintainer.js +3 -0
- package/lib/v2/thwiki/radar.js +13 -0
- package/lib/v2/thwiki/router.js +3 -0
- package/lib/v2/tiktok/user.js +1 -1
- package/lib/v2/tingshuitz/changsha.js +43 -0
- package/lib/v2/tingshuitz/maintainer.js +1 -0
- package/lib/v2/tingshuitz/radar.js +10 -0
- package/lib/v2/tingshuitz/router.js +1 -0
- package/lib/v2/trow/portal.js +13 -3
- package/lib/v2/twitter/web-api/twitter-api.js +19 -15
- package/lib/v2/twitter/web-api/twitter-got.js +2 -2
- package/lib/v2/twreporter/category.js +17 -8
- package/lib/v2/uber/blog.js +59 -0
- package/lib/v2/uber/maintainer.js +3 -0
- package/lib/v2/uber/radar.js +13 -0
- package/lib/v2/uber/router.js +3 -0
- package/lib/v2/udn/breaking-news.js +85 -0
- package/lib/v2/udn/global/index.js +67 -0
- package/lib/v2/udn/global/tag.js +51 -0
- package/lib/v2/udn/maintainer.js +5 -0
- package/lib/v2/udn/radar.js +27 -0
- package/lib/v2/udn/router.js +5 -0
- package/lib/v2/udn/templates/figure.art +4 -0
- package/lib/v2/unusualwhales/maintainer.js +3 -0
- package/lib/v2/unusualwhales/news.js +24 -0
- package/lib/v2/unusualwhales/radar.js +13 -0
- package/lib/v2/unusualwhales/router.js +3 -0
- package/lib/v2/usenix/maintainer.js +3 -0
- package/lib/v2/usenix/radar.js +13 -0
- package/lib/v2/usenix/router.js +3 -0
- package/lib/v2/usenix/usenix.js +63 -0
- package/lib/v2/usepanda/index.js +26 -0
- package/lib/v2/usepanda/maintainer.js +3 -0
- package/lib/v2/usepanda/radar.js +11 -0
- package/lib/v2/usepanda/router.js +3 -0
- package/lib/v2/uw/gix/news.js +67 -0
- package/lib/v2/uw/maintainer.js +3 -0
- package/lib/v2/uw/radar.js +13 -0
- package/lib/v2/uw/router.js +3 -0
- package/lib/v2/verse/articles.js +42 -0
- package/lib/v2/verse/maintainer.js +3 -0
- package/lib/v2/verse/radar.js +13 -0
- package/lib/v2/verse/router.js +3 -0
- package/lib/v2/vom/featured.js +50 -0
- package/lib/v2/vom/maintainer.js +3 -0
- package/lib/v2/vom/radar.js +13 -0
- package/lib/v2/vom/router.js +3 -0
- package/lib/v2/wallstreetcn/live.js +7 -1
- package/lib/v2/wallstreetcn/news.js +8 -6
- package/lib/v2/wallstreetcn/templates/description.art +11 -0
- package/lib/v2/warthunder/news.js +3 -1
- package/lib/v2/web3caff/index.js +63 -0
- package/lib/v2/web3caff/maintainer.js +3 -0
- package/lib/v2/web3caff/radar.js +13 -0
- package/lib/v2/web3caff/router.js +3 -0
- package/lib/v2/wechat/feeddd.js +1 -0
- package/lib/{routes → v2}/weibo/keyword.js +2 -2
- package/lib/v2/weibo/maintainer.js +8 -0
- package/lib/v2/weibo/oasis/user.js +20 -0
- package/lib/v2/weibo/radar.js +48 -0
- package/lib/v2/weibo/router.js +8 -0
- package/lib/{routes → v2}/weibo/search/hot.js +2 -0
- package/lib/{routes → v2}/weibo/super_index.js +2 -2
- package/lib/{routes → v2}/weibo/timeline.js +2 -2
- package/lib/{routes → v2}/weibo/user.js +2 -2
- package/lib/{routes → v2}/weibo/utils.js +50 -14
- package/lib/v2/wise/maintainer.js +3 -0
- package/lib/v2/wise/pair.js +65 -0
- package/lib/v2/wise/radar.js +11 -0
- package/lib/v2/wise/router.js +3 -0
- package/lib/v2/wise/templates/description.art +17 -0
- package/lib/v2/worldjournal/index.js +60 -0
- package/lib/v2/worldjournal/maintainer.js +3 -0
- package/lib/v2/worldjournal/radar.js +13 -0
- package/lib/v2/worldjournal/router.js +3 -0
- package/lib/v2/xjtu/dyyy/index.js +44 -0
- package/lib/v2/xjtu/maintainer.js +1 -0
- package/lib/v2/xjtu/radar.js +8 -0
- package/lib/v2/xjtu/router.js +1 -0
- package/lib/v2/xmnn/epaper.js +85 -0
- package/lib/v2/xmnn/maintainer.js +3 -0
- package/lib/v2/xmnn/radar.js +13 -0
- package/lib/v2/xmnn/router.js +3 -0
- package/lib/v2/xueqiu/maintainer.js +1 -0
- package/lib/v2/xueqiu/radar.js +6 -0
- package/lib/v2/xueqiu/router.js +1 -0
- package/lib/v2/xueqiu/today.js +65 -0
- package/lib/v2/xwlb/index.js +40 -0
- package/lib/v2/xwlb/maintainer.js +4 -0
- package/lib/v2/xwlb/radar.js +13 -0
- package/lib/v2/xwlb/router.js +4 -0
- package/lib/v2/xys/maintainer.js +3 -0
- package/lib/v2/xys/new.js +74 -0
- package/lib/v2/xys/radar.js +13 -0
- package/lib/v2/xys/router.js +3 -0
- package/lib/v2/xys/templates/desc.art +3 -0
- package/lib/v2/ymgal/article.js +61 -0
- package/lib/v2/ymgal/game.js +41 -0
- package/lib/v2/ymgal/maintainer.js +4 -0
- package/lib/v2/ymgal/radar.js +31 -0
- package/lib/v2/ymgal/router.js +4 -0
- package/lib/v2/ymgal/templates/description.art +7 -0
- package/lib/v2/yoasobi-music/info.js +68 -0
- package/lib/v2/yoasobi-music/jsonpHelper.js +19 -0
- package/lib/v2/yoasobi-music/live.js +52 -0
- package/lib/v2/yoasobi-music/maintainer.js +5 -0
- package/lib/v2/yoasobi-music/media.js +59 -0
- package/lib/v2/yoasobi-music/radar.js +31 -0
- package/lib/v2/yoasobi-music/router.js +5 -0
- package/lib/v2/yoasobi-music/templates/info.art +7 -0
- package/lib/v2/yoasobi-music/templates/live.art +12 -0
- package/lib/v2/yoasobi-music/templates/media.art +2 -0
- package/lib/v2/youtube/custom.js +45 -0
- package/lib/v2/youtube/radar.js +6 -0
- package/lib/v2/youtube/router.js +1 -0
- package/lib/v2/yxdown/maintainer.js +4 -0
- package/lib/{routes → v2}/yxdown/news.js +11 -8
- package/lib/v2/yxdown/radar.js +19 -0
- package/lib/{routes → v2}/yxdown/recommend.js +11 -8
- package/lib/v2/yxdown/router.js +4 -0
- package/lib/v2/yxdown/utils.js +17 -0
- package/lib/v2/zaobao/maintainer.js +1 -1
- package/lib/{routes → v2}/zcool/discover.js +29 -17
- package/lib/{routes → v2}/zcool/locations.js +0 -0
- package/lib/v2/zcool/maintainer.js +7 -0
- package/lib/v2/zcool/radar.js +55 -0
- package/lib/v2/zcool/router.js +5 -0
- package/lib/v2/zcool/templates/description.art +8 -0
- package/lib/v2/zcool/templates/work.art +11 -0
- package/lib/v2/zcool/top.js +51 -0
- package/lib/v2/zcool/user.js +48 -0
- package/lib/v2/zcool/utils.js +14 -0
- package/lib/v2/zhihu/activities.js +5 -9
- package/lib/v2/zhihu/daily.js +25 -0
- package/lib/v2/zhihu/execlib/x-zse-96_v3.js +122 -0
- package/lib/v2/zhihu/pin/utils.js +49 -41
- package/lib/v2/zhihu/posts.js +25 -17
- package/lib/v2/zhihu/question.js +3 -3
- package/lib/v2/zhihu/utils.js +10 -1
- package/lib/v2/zhitongcaijing/index.js +118 -0
- package/lib/v2/zhitongcaijing/maintainer.js +3 -0
- package/lib/v2/zhitongcaijing/radar.js +17 -0
- package/lib/v2/zhitongcaijing/router.js +3 -0
- package/lib/v2/zhitongcaijing/templates/description.art +6 -0
- package/lib/v2/zju/grs/index.js +11 -10
- package/lib/v2/zju/radar.js +5 -5
- package/lib/v2/zodgame/forum.js +54 -0
- package/lib/v2/zodgame/maintainer.js +3 -0
- package/lib/v2/zodgame/radar.js +18 -0
- package/lib/v2/zodgame/router.js +3 -0
- package/lib/v2/zodgame/templates/forum.art +1 -0
- package/package.json +45 -33
- package/lib/routes/adnmb/index.js +0 -69
- package/lib/routes/aljazeera/news.js +0 -38
- package/lib/routes/aqk/category.js +0 -22
- package/lib/routes/bangumi/calendar/_base.js +0 -43
- package/lib/routes/bangumi/group/reply.js +0 -36
- package/lib/routes/bangumi/group/topic.js +0 -26
- package/lib/routes/bangumi/subject/ep.js +0 -26
- package/lib/routes/blogs/foreverblog.js +0 -33
- package/lib/routes/ccdi/scdc.js +0 -51
- package/lib/routes/dcard/section.js +0 -47
- package/lib/routes/dcard/utils.js +0 -54
- package/lib/routes/dedao/knowledge.js +0 -78
- package/lib/routes/deepmind/blog.js +0 -43
- package/lib/routes/docschina/jsweekly.js +0 -47
- package/lib/routes/erbingapp/news.js +0 -51
- package/lib/routes/gelonghui/keyword.js +0 -36
- package/lib/routes/gelonghui/subject.js +0 -42
- package/lib/routes/gelonghui/user.js +0 -46
- package/lib/routes/gov/jiangsu/eea.js +0 -84
- package/lib/routes/gov/zhengce/govall.js +0 -59
- package/lib/routes/gov/zhengce/wenjian.js +0 -53
- package/lib/routes/gov/zhengce/zuixin.js +0 -42
- package/lib/routes/initium/full.js +0 -188
- package/lib/routes/kuaibao/index.js +0 -33
- package/lib/routes/langlive/room.js +0 -33
- package/lib/routes/logseq/changelog.js +0 -42
- package/lib/routes/luogu/contest.js +0 -28
- package/lib/routes/luogu/daily.js +0 -53
- package/lib/routes/luogu/userFeed.js +0 -38
- package/lib/routes/mckinsey/index.js +0 -49
- package/lib/routes/mhgui/comic.js +0 -99
- package/lib/routes/mofcom/article.js +0 -54
- package/lib/routes/nautilus/topics.js +0 -45
- package/lib/routes/nintendo/direct.js +0 -34
- package/lib/routes/nintendo/eshop_cn.js +0 -51
- package/lib/routes/nintendo/eshop_hk.js +0 -26
- package/lib/routes/nintendo/eshop_jp.js +0 -20
- package/lib/routes/nintendo/eshop_us.js +0 -36
- package/lib/routes/nintendo/news.js +0 -25
- package/lib/routes/nintendo/news_china.js +0 -41
- package/lib/routes/novel/shuquge.js +0 -63
- package/lib/routes/pixiv/token.js +0 -74
- package/lib/routes/researchgate/publications.js +0 -60
- package/lib/routes/saraba1st/thread.js +0 -45
- package/lib/routes/sciencemag/cover.js +0 -56
- package/lib/routes/sciencemag/current.js +0 -123
- package/lib/routes/sciencemag/early.js +0 -97
- package/lib/routes/smzdm/article.js +0 -57
- package/lib/routes/smzdm/baoliao.js +0 -55
- package/lib/routes/smzdm/haowen.js +0 -60
- package/lib/routes/smzdm/haowen_fenlei.js +0 -63
- package/lib/routes/smzdm/keyword.js +0 -39
- package/lib/routes/sse/convert.js +0 -32
- package/lib/routes/sse/disclosure.js +0 -34
- package/lib/routes/sse/inquire.js +0 -31
- package/lib/routes/sse/renewal.js +0 -61
- package/lib/routes/tieba/forum.js +0 -88
- package/lib/routes/tieba/user.js +0 -36
- package/lib/routes/transferwise/pair.js +0 -64
- package/lib/routes/twmanhuagui/comic.js +0 -99
- package/lib/routes/udn/global.js +0 -61
- package/lib/routes/universities/ecnuyjs/ecnuyjs.js +0 -23
- package/lib/routes/universities/hit/jwc.js +0 -53
- package/lib/routes/universities/hit/today.js +0 -85
- package/lib/routes/universities/hitwh/today.js +0 -46
- package/lib/routes/universities/shmtu/jwc.js +0 -75
- package/lib/routes/universities/shmtu/www.js +0 -61
- package/lib/routes/verge/index.js +0 -88
- package/lib/routes/weibo/oasis/user.js +0 -17
- package/lib/routes/xwlb/index.js +0 -40
- package/lib/routes/yuanshen/index.js +0 -70
- package/lib/routes/zcool/top.js +0 -75
- package/lib/routes/zcool/user.js +0 -58
- package/lib/v2/acm-ecnu/maintainer.js +0 -3
- package/lib/v2/acm-ecnu/radar.js +0 -19
- package/lib/v2/acm-ecnu/router.js +0 -3
- package/lib/v2/bilibili/collection.js +0 -34
- package/lib/v2/cnbeta/index.js +0 -16
- package/lib/v2/dongqiudi/daily.js +0 -47
- package/lib/v2/hellogithub/article.js +0 -47
- package/lib/v2/hellogithub/month.js +0 -42
- package/lib/v2/hellogithub/ranking.js +0 -39
- package/lib/v2/heu/job/bigemploy.js +0 -42
- package/lib/v2/nuaa/cs/index.js +0 -87
- package/lib/v2/radio/radio.js +0 -50
- package/lib/v2/techflow520/index.js +0 -34
- package/lib/v2/techflow520/newsflash.js +0 -32
- package/lib/v2/zhihu/execlib/g_encrypt.js +0 -407
- package/lib/v2/zhihu/execlib/jsencrypt.js +0 -379
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
const got = require('@/utils/got');
|
|
2
|
+
const cheerio = require('cheerio');
|
|
3
|
+
const iconv = require('iconv-lite');
|
|
4
|
+
const timezone = require('@/utils/timezone');
|
|
5
|
+
const { parseDate } = require('@/utils/parse-date');
|
|
6
|
+
|
|
7
|
+
module.exports = async (ctx) => {
|
|
8
|
+
const params = ctx.path === '/nopss' ? '/GB/219469' : ctx.path.replace(/^\/nopss/, '');
|
|
9
|
+
|
|
10
|
+
const rootUrl = 'http://www.nopss.gov.cn';
|
|
11
|
+
const currentUrl = `${rootUrl}${params}`;
|
|
12
|
+
|
|
13
|
+
const response = await got({
|
|
14
|
+
method: 'get',
|
|
15
|
+
url: currentUrl,
|
|
16
|
+
responseType: 'buffer',
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
const $ = cheerio.load(iconv.decode(response.data, 'gbk'));
|
|
20
|
+
|
|
21
|
+
let items = $('.p2j_list_con .clearfix li a')
|
|
22
|
+
.slice(0, ctx.query.limit ? parseInt(ctx.query.limit) : 40)
|
|
23
|
+
.toArray()
|
|
24
|
+
.map((item) => {
|
|
25
|
+
item = $(item);
|
|
26
|
+
|
|
27
|
+
return {
|
|
28
|
+
title: item.text(),
|
|
29
|
+
link: `${rootUrl}${item.attr('href')}`,
|
|
30
|
+
pubDate: timezone(parseDate(item.next().text(), '[YYYY-MM-DD HH:mm]'), +8),
|
|
31
|
+
};
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
items = await Promise.all(
|
|
35
|
+
items.map((item) =>
|
|
36
|
+
ctx.cache.tryGet(item.link, async () => {
|
|
37
|
+
const detailResponse = await got({
|
|
38
|
+
method: 'get',
|
|
39
|
+
url: item.link,
|
|
40
|
+
responseType: 'buffer',
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
const content = cheerio.load(iconv.decode(detailResponse.data, 'gbk'));
|
|
44
|
+
|
|
45
|
+
item.description = content('.text_con').html();
|
|
46
|
+
|
|
47
|
+
return item;
|
|
48
|
+
})
|
|
49
|
+
)
|
|
50
|
+
);
|
|
51
|
+
|
|
52
|
+
ctx.state.data = {
|
|
53
|
+
title: $('title').text(),
|
|
54
|
+
link: currentUrl,
|
|
55
|
+
item: items,
|
|
56
|
+
};
|
|
57
|
+
};
|
package/lib/v2/gov/nrta/news.js
CHANGED
package/lib/v2/gov/radar.js
CHANGED
|
@@ -297,6 +297,39 @@ module.exports = {
|
|
|
297
297
|
},
|
|
298
298
|
],
|
|
299
299
|
},
|
|
300
|
+
'bphc.com.cn': {
|
|
301
|
+
_name: '北京保障房中心有限公司',
|
|
302
|
+
gycpt: [
|
|
303
|
+
{
|
|
304
|
+
title: '北京市共有产权住房租赁服务平台',
|
|
305
|
+
docs: 'https://docs.rsshub.app/government.html#bei-jing-shi-bao-zhang-fang-zhong-xin-you-xian-gong-si',
|
|
306
|
+
source: ['/*'],
|
|
307
|
+
target: (params, url) => `/gov/bphc/${new URL(url).href.match(/gycpt\.bphc\.com\.cn\/(.*)/)[1]}`,
|
|
308
|
+
},
|
|
309
|
+
],
|
|
310
|
+
},
|
|
311
|
+
'ccdi.gov.cn': {
|
|
312
|
+
_name: '中央纪委国家监委',
|
|
313
|
+
www: [
|
|
314
|
+
{
|
|
315
|
+
title: '要闻',
|
|
316
|
+
docs: 'https://docs.rsshub.app/government.html#zhong-yang-ji-wei-guo-jia-jian-wei-yao-wen',
|
|
317
|
+
source: ['/*'],
|
|
318
|
+
target: (params, url) => `/gov/ccdi/${new URL(url).href.match(/ccdi\.gov\.cn\/(.*)/)[1]}`,
|
|
319
|
+
},
|
|
320
|
+
],
|
|
321
|
+
},
|
|
322
|
+
'changsha.gov.cn': {
|
|
323
|
+
_name: '湖南省人民政府',
|
|
324
|
+
wlwz: [
|
|
325
|
+
{
|
|
326
|
+
title: '市长信箱',
|
|
327
|
+
docs: 'https://docs.rsshub.app/government.html#hu-nan-sheng-ren-min-zheng-fu',
|
|
328
|
+
source: ['/webapp/cs2020/email/*'],
|
|
329
|
+
target: '/gov/hunan/changsha/major-email',
|
|
330
|
+
},
|
|
331
|
+
],
|
|
332
|
+
},
|
|
300
333
|
'cmse.gov.cn': {
|
|
301
334
|
_name: '中国载人航天',
|
|
302
335
|
www: [
|
|
@@ -362,6 +395,17 @@ module.exports = {
|
|
|
362
395
|
},
|
|
363
396
|
],
|
|
364
397
|
},
|
|
398
|
+
'cnnic.net.cn': {
|
|
399
|
+
_name: '中国互联网络信息中心',
|
|
400
|
+
www: [
|
|
401
|
+
{
|
|
402
|
+
title: '新闻中心',
|
|
403
|
+
docs: 'https://docs.rsshub.app/government.html#zhong-guo-hu-lian-wang-luo-xin-xi-zhong-xin-xin-wen-zhong-xin',
|
|
404
|
+
source: ['/'],
|
|
405
|
+
target: (params, url) => `/gov/cnnic/${new URL(url).match(/cnnic\.net\.cn\/(.*)/)[1]}`,
|
|
406
|
+
},
|
|
407
|
+
],
|
|
408
|
+
},
|
|
365
409
|
'customs.gov.cn': {
|
|
366
410
|
_name: '中华人民共和国海关总署',
|
|
367
411
|
www: [
|
|
@@ -384,6 +428,39 @@ module.exports = {
|
|
|
384
428
|
},
|
|
385
429
|
],
|
|
386
430
|
},
|
|
431
|
+
'dianbai.gov.cn': {
|
|
432
|
+
_name: '茂名市电白区人民政府',
|
|
433
|
+
www: [
|
|
434
|
+
{
|
|
435
|
+
title: '茂名市电白区人民政府',
|
|
436
|
+
docs: 'https://docs.rsshub.app/government.html#mao-ming-shi-ren-min-zheng-fu-mao-ming-shi-dian-bai-qu-ren-min-zheng-fu',
|
|
437
|
+
source: ['/*'],
|
|
438
|
+
target: (params, url) => `/gov/dianbai/${new URL(url).host.split('.dianbai.gov.cn')[0] + new URL(url).pathname.replace(/(index.*$)/g, '')}`,
|
|
439
|
+
},
|
|
440
|
+
],
|
|
441
|
+
},
|
|
442
|
+
'gaozhou.gov.cn': {
|
|
443
|
+
_name: '高州市人民政府',
|
|
444
|
+
www: [
|
|
445
|
+
{
|
|
446
|
+
title: '高州市人民政府',
|
|
447
|
+
docs: 'https://docs.rsshub.app/government.html#mao-ming-shi-ren-min-zheng-fu-gao-zhou-shi-ren-min-zheng-fu',
|
|
448
|
+
source: ['/*'],
|
|
449
|
+
target: (params, url) => `/gov/gaozhou/${new URL(url).host.split('.gaozhou.gov.cn')[0] + new URL(url).pathname.replace(/(index.*$)/g, '')}`,
|
|
450
|
+
},
|
|
451
|
+
],
|
|
452
|
+
},
|
|
453
|
+
'gz.gov.cn': {
|
|
454
|
+
_name: '广州市人民政府',
|
|
455
|
+
www: [
|
|
456
|
+
{
|
|
457
|
+
title: '新闻',
|
|
458
|
+
docs: 'https://docs.rsshub.app/government.html#guang-zhou-shi-ren-min-zheng-fu',
|
|
459
|
+
source: ['/:channel/:category'],
|
|
460
|
+
target: (params) => `/gov/gz/${params.channel}/${params.category}`,
|
|
461
|
+
},
|
|
462
|
+
],
|
|
463
|
+
},
|
|
387
464
|
'hebei.gov.cn': {
|
|
388
465
|
_name: '河北省人民政府',
|
|
389
466
|
czt: [
|
|
@@ -430,6 +507,17 @@ module.exports = {
|
|
|
430
507
|
},
|
|
431
508
|
],
|
|
432
509
|
},
|
|
510
|
+
'huazhou.gov.cn': {
|
|
511
|
+
_name: '化州市人民政府',
|
|
512
|
+
www: [
|
|
513
|
+
{
|
|
514
|
+
title: '化州市人民政府',
|
|
515
|
+
docs: 'https://docs.rsshub.app/government.html#mao-ming-shi-ren-min-zheng-fu-hua-zhou-shi-ren-min-zheng-fu',
|
|
516
|
+
source: ['/*'],
|
|
517
|
+
target: (params, url) => `/gov/huazhou/${new URL(url).host.split('.huazhou.gov.cn')[0] + new URL(url).pathname.replace(/(index.*$)/g, '')}`,
|
|
518
|
+
},
|
|
519
|
+
],
|
|
520
|
+
},
|
|
433
521
|
'huizhou.gov.cn': {
|
|
434
522
|
_name: '惠州市人民政府',
|
|
435
523
|
www: [
|
|
@@ -465,6 +553,64 @@ module.exports = {
|
|
|
465
553
|
},
|
|
466
554
|
],
|
|
467
555
|
},
|
|
556
|
+
'maoming.gov.cn': {
|
|
557
|
+
_name: '茂名市人民政府门户网站',
|
|
558
|
+
'.': [
|
|
559
|
+
{
|
|
560
|
+
title: '茂名市人民政府',
|
|
561
|
+
docs: 'https://docs.rsshub.app/government.html#mao-ming-shi-ren-min-zheng-fu-mao-ming-shi-ren-min-zheng-fu-men-hu-wang-zhan',
|
|
562
|
+
source: ['/*'],
|
|
563
|
+
target: (params, url) => `/gov/maoming/${new URL(url).host.split('.maoming.gov.cn')[0] + new URL(url).pathname.replace(/(index.*$)/g, '')}`,
|
|
564
|
+
},
|
|
565
|
+
],
|
|
566
|
+
},
|
|
567
|
+
'maonan.gov.cn': {
|
|
568
|
+
_name: '茂名市茂南区人民政府',
|
|
569
|
+
'.': [
|
|
570
|
+
{
|
|
571
|
+
title: '政务公开',
|
|
572
|
+
docs: 'https://docs.rsshub.app/government.html#mao-ming-shi-ren-min-zheng-fu-mao-ming-shi-mao-nan-qu-ren-min-zheng-fu',
|
|
573
|
+
source: ['/zwgk/*'],
|
|
574
|
+
target: '/gov/maonan/zwgk',
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
title: '政务新闻',
|
|
578
|
+
docs: 'https://docs.rsshub.app/government.html#mao-ming-shi-ren-min-zheng-fu-mao-ming-shi-mao-nan-qu-ren-min-zheng-fu',
|
|
579
|
+
source: ['/zwxw/*'],
|
|
580
|
+
target: '/gov/maonan/zwxw',
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
title: '茂南动态',
|
|
584
|
+
docs: 'https://docs.rsshub.app/government.html#mao-ming-shi-ren-min-zheng-fu-mao-ming-shi-mao-nan-qu-ren-min-zheng-fu',
|
|
585
|
+
source: ['/zwxw/mndt/*'],
|
|
586
|
+
target: '/gov/maonan/mndt',
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
title: '重大会议',
|
|
590
|
+
docs: 'https://docs.rsshub.app/government.html#mao-ming-shi-ren-min-zheng-fu-mao-ming-shi-mao-nan-qu-ren-min-zheng-fu',
|
|
591
|
+
source: ['/zwxw/zdhy/*'],
|
|
592
|
+
target: '/gov/maonan/zdhy',
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
title: '公告公示',
|
|
596
|
+
docs: 'https://docs.rsshub.app/government.html#mao-ming-shi-ren-min-zheng-fu-mao-ming-shi-mao-nan-qu-ren-min-zheng-fu',
|
|
597
|
+
source: ['/zwgk/tzgg/*'],
|
|
598
|
+
target: '/gov/maonan/tzgg',
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
title: '招录信息',
|
|
602
|
+
docs: 'https://docs.rsshub.app/government.html#mao-ming-shi-ren-min-zheng-fu-mao-ming-shi-mao-nan-qu-ren-min-zheng-fu',
|
|
603
|
+
source: ['/zwgk/zlxx/*'],
|
|
604
|
+
target: '/gov/maonan/zlxx',
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
title: '政策解读',
|
|
608
|
+
docs: 'https://docs.rsshub.app/government.html#mao-ming-shi-ren-min-zheng-fu-mao-ming-shi-mao-nan-qu-ren-min-zheng-fu',
|
|
609
|
+
source: ['/zwgk/zcjd/*'],
|
|
610
|
+
target: '/gov/maonan/zcjd',
|
|
611
|
+
},
|
|
612
|
+
],
|
|
613
|
+
},
|
|
468
614
|
'mee.gov.cn': {
|
|
469
615
|
_name: '生态环境部',
|
|
470
616
|
www: [
|
|
@@ -487,6 +633,17 @@ module.exports = {
|
|
|
487
633
|
},
|
|
488
634
|
],
|
|
489
635
|
},
|
|
636
|
+
'mgs.gov.cn': {
|
|
637
|
+
_name: '广东茂名滨海新区政务网',
|
|
638
|
+
www: [
|
|
639
|
+
{
|
|
640
|
+
title: '广东茂名滨海新区政务网',
|
|
641
|
+
docs: 'https://docs.rsshub.app/government.html#mao-ming-shi-ren-min-zheng-fu-guang-dong-mao-ming-bin-hai-xin-qu-zheng-wu-wang',
|
|
642
|
+
source: ['/*'],
|
|
643
|
+
target: (params, url) => `/gov/mgs/${new URL(url).host.split('.mgs.gov.cn')[0] + new URL(url).pathname.replace(/(index.*$)/g, '')}`,
|
|
644
|
+
},
|
|
645
|
+
],
|
|
646
|
+
},
|
|
490
647
|
'miit.gov.cn': {
|
|
491
648
|
_name: '工业和信息化部',
|
|
492
649
|
'.': [
|
|
@@ -504,6 +661,17 @@ module.exports = {
|
|
|
504
661
|
},
|
|
505
662
|
],
|
|
506
663
|
},
|
|
664
|
+
'mmht.gov.cn': {
|
|
665
|
+
_name: '广东茂名高新技术产业开发区',
|
|
666
|
+
www: [
|
|
667
|
+
{
|
|
668
|
+
title: '茂名高新技术产业开发区政务网',
|
|
669
|
+
docs: 'https://docs.rsshub.app/government.html#mao-ming-shi-ren-min-zheng-fu-guang-dong-mao-ming-gao-xin-ji-shu-chan-ye-kai-fa-qu',
|
|
670
|
+
source: ['/*'],
|
|
671
|
+
target: (params, url) => `/gov/mmht/${new URL(url).host.split('.mmht.gov.cn')[0] + new URL(url).pathname.replace(/(index.*$)/g, '')}`,
|
|
672
|
+
},
|
|
673
|
+
],
|
|
674
|
+
},
|
|
507
675
|
'moe.gov.cn': {
|
|
508
676
|
_name: '中华人民共和国教育部',
|
|
509
677
|
'.': [
|
|
@@ -515,6 +683,17 @@ module.exports = {
|
|
|
515
683
|
},
|
|
516
684
|
],
|
|
517
685
|
},
|
|
686
|
+
'mofcom.gov.cn': {
|
|
687
|
+
_name: '中华人民共和国商务部',
|
|
688
|
+
'.': [
|
|
689
|
+
{
|
|
690
|
+
title: '新闻发布',
|
|
691
|
+
docs: 'https://docs.rsshub.app/government.html#zhong-hua-ren-min-gong-he-guo-shang-wu-bu',
|
|
692
|
+
source: ['/article/*'],
|
|
693
|
+
target: (_, url) => `/gov/mofcom/article/${new URL(url).pathname.replace('/article/', '')}`,
|
|
694
|
+
},
|
|
695
|
+
],
|
|
696
|
+
},
|
|
518
697
|
'moj.gov.tw': {
|
|
519
698
|
_name: '台灣法務部廉政署',
|
|
520
699
|
'www.aac': [
|
|
@@ -548,6 +727,17 @@ module.exports = {
|
|
|
548
727
|
},
|
|
549
728
|
],
|
|
550
729
|
},
|
|
730
|
+
'nopss.gov.cn': {
|
|
731
|
+
_name: '全国哲学社会科学工作办公室',
|
|
732
|
+
'.': [
|
|
733
|
+
{
|
|
734
|
+
title: '通用',
|
|
735
|
+
docs: 'https://docs.rsshub.app/government.html#quan-guo-zhe-xue-she-hui-ke-xue-gong-zuo-ban-gong-shi',
|
|
736
|
+
source: ['/*path'],
|
|
737
|
+
target: (params) => `/gov/nopss/${params.path.replace('/index.html', '')}`,
|
|
738
|
+
},
|
|
739
|
+
],
|
|
740
|
+
},
|
|
551
741
|
'nrta.gov.cn': {
|
|
552
742
|
_name: '国家广播电视总局',
|
|
553
743
|
'.': [
|
|
@@ -617,6 +807,28 @@ module.exports = {
|
|
|
617
807
|
},
|
|
618
808
|
],
|
|
619
809
|
},
|
|
810
|
+
'sasac.gov.cn': {
|
|
811
|
+
_name: '国务院国有资产监督管理委员会',
|
|
812
|
+
'.': [
|
|
813
|
+
{
|
|
814
|
+
title: '通用',
|
|
815
|
+
docs: 'https://docs.rsshub.app/other.html#guo-wu-yuan-guo-you-zi-chan-jian-du-guan-li-wei-yuan-hui',
|
|
816
|
+
source: ['/*path'],
|
|
817
|
+
target: (params) => `/gov/sasac/${params.path.replace('/index.html', '')}`,
|
|
818
|
+
},
|
|
819
|
+
],
|
|
820
|
+
},
|
|
821
|
+
'sdb.gov.cn': {
|
|
822
|
+
_name: '广东省茂名水东湾新城建设管理委员会',
|
|
823
|
+
www: [
|
|
824
|
+
{
|
|
825
|
+
title: '广东省茂名水东湾新城建设管理委员会',
|
|
826
|
+
docs: 'https://docs.rsshub.app/government.html#mao-ming-shi-ren-min-zheng-fu-guang-dong-sheng-mao-ming-shui-dong-wan-xin-cheng-jian-she-guan-li-wei-yuan-hui',
|
|
827
|
+
source: ['/*'],
|
|
828
|
+
target: (params, url) => `/gov/sdb/${new URL(url).host.split('.sdb.gov.cn')[0] + new URL(url).pathname.replace(/(index.*$)/g, '')}`,
|
|
829
|
+
},
|
|
830
|
+
],
|
|
831
|
+
},
|
|
620
832
|
'sh.gov.cn': {
|
|
621
833
|
_name: '上海市人民政府',
|
|
622
834
|
wsjkw: [
|
|
@@ -649,12 +861,23 @@ module.exports = {
|
|
|
649
861
|
kjt: [
|
|
650
862
|
{
|
|
651
863
|
title: '陕西省科学技术厅',
|
|
652
|
-
docs: 'https://docs.rsshub.app/government.html#shan-xi-ren-min-zheng-fu-
|
|
864
|
+
docs: 'https://docs.rsshub.app/government.html#shan-xi-sheng-sheng-ren-min-zheng-fu-sheng-ke-xue-ji-shu-ting',
|
|
653
865
|
source: ['/view/iList.jsp', '/'],
|
|
654
866
|
target: (params, url) => `/gov/shaanxi/kjt/${new URL(url).searchParams.get('cat_id')}`,
|
|
655
867
|
},
|
|
656
868
|
],
|
|
657
869
|
},
|
|
870
|
+
'stats.gov.cn': {
|
|
871
|
+
_name: '国家统计局',
|
|
872
|
+
www: [
|
|
873
|
+
{
|
|
874
|
+
title: '统计数据 > 最新发布',
|
|
875
|
+
docs: 'https://docs.rsshub.app/government.html#guo-jia-tong-ji-ju-tong-ji-shu-ju-zui-xin-fa-bu',
|
|
876
|
+
source: ['/*'],
|
|
877
|
+
target: (params, url) => `/gov/stats/${new URL(url).href.match(/stats\.gov\.cn\/(.*)/)[1]}`,
|
|
878
|
+
},
|
|
879
|
+
],
|
|
880
|
+
},
|
|
658
881
|
'sz.gov.cn': {
|
|
659
882
|
_name: '深圳政府在线移动门户',
|
|
660
883
|
hrss: [
|
|
@@ -665,6 +888,14 @@ module.exports = {
|
|
|
665
888
|
target: '/gov/shenzhen/hrss/szksy/:caty/:page?',
|
|
666
889
|
},
|
|
667
890
|
],
|
|
891
|
+
xxgk: [
|
|
892
|
+
{
|
|
893
|
+
title: '深圳市人民政府',
|
|
894
|
+
docs: 'https://docs.rsshub.app/government.html#guang-dong-sheng-ren-min-zheng-fu-guang-dong-sheng-shen-zhen-shi-ren-min-zheng-fu',
|
|
895
|
+
source: ['/cn/xxgk/zfxxgj/:caty'],
|
|
896
|
+
target: '/gov/shenzhen/hrss/szksy/:caty/:page?',
|
|
897
|
+
},
|
|
898
|
+
],
|
|
668
899
|
zzb: [
|
|
669
900
|
{
|
|
670
901
|
title: '组工在线公告',
|
|
@@ -702,6 +933,46 @@ module.exports = {
|
|
|
702
933
|
},
|
|
703
934
|
],
|
|
704
935
|
},
|
|
936
|
+
'xinyi.gov.cn': {
|
|
937
|
+
_name: '信宜市人民政府',
|
|
938
|
+
www: [
|
|
939
|
+
{
|
|
940
|
+
title: '信宜市人民政府',
|
|
941
|
+
docs: 'https://docs.rsshub.app/government.html#mao-ming-shi-ren-min-zheng-fu-xin-yi-shi-ren-min-zheng-fu',
|
|
942
|
+
source: ['/*'],
|
|
943
|
+
target: (params, url) => `/gov/xinyi/${new URL(url).host.split('.xinyi.gov.cn')[0] + new URL(url).pathname.replace(/(index.*$)/g, '')}`,
|
|
944
|
+
},
|
|
945
|
+
],
|
|
946
|
+
},
|
|
947
|
+
'www.gov.cn': {
|
|
948
|
+
_name: '中国政府网',
|
|
949
|
+
'.': [
|
|
950
|
+
{
|
|
951
|
+
title: '最新政策',
|
|
952
|
+
docs: 'https://docs.rsshub.app/government.html#zhong-guo-zheng-fu-wang',
|
|
953
|
+
source: ['/zhengce/zuixin.htm', '/'],
|
|
954
|
+
target: '/gov/zhengce/zuixin',
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
title: '最新文件',
|
|
958
|
+
docs: 'https://docs.rsshub.app/government.html#zhong-guo-zheng-fu-wang',
|
|
959
|
+
source: ['/'],
|
|
960
|
+
target: '/gov/zhengce/wenjian',
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
title: '信息稿件',
|
|
964
|
+
docs: 'https://docs.rsshub.app/government.html#zhong-guo-zheng-fu-wang',
|
|
965
|
+
source: ['/'],
|
|
966
|
+
target: '/gov/zhengce/govall',
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
title: '国务院政策文件库',
|
|
970
|
+
docs: 'https://docs.rsshub.app/government.html#zhong-guo-zheng-fu-wang',
|
|
971
|
+
source: ['/zhengce/zhengceku/:lib'],
|
|
972
|
+
target: (params) => `/gov/zhengce/zhengceku/${params.libs}`,
|
|
973
|
+
},
|
|
974
|
+
],
|
|
975
|
+
},
|
|
705
976
|
'xz.gov.cn': {
|
|
706
977
|
_name: '徐州市人民政府',
|
|
707
978
|
hrss: [
|
package/lib/v2/gov/router.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
module.exports = function (router) {
|
|
2
2
|
// ministry
|
|
3
|
+
router.get(/ccdi(\/[\w/-]+)?/, require('./ccdi'));
|
|
3
4
|
router.get('/cmse/fxrw', require('./cmse/fxrw'));
|
|
4
5
|
router.get(/cmse(\/[\w/-]+)?/, require('./cmse'));
|
|
6
|
+
router.get(/cnnic(\/[\w/-]+)?/, require('./cnnic'));
|
|
5
7
|
router.get('/customs/list/:gchannel?', require('./customs/list'));
|
|
6
8
|
router.get('/fmprc/:category?', require('./mfa/wjdt'));
|
|
7
9
|
router.get('/immiau/news', require('./immiau/news'));
|
|
@@ -13,30 +15,51 @@ module.exports = function (router) {
|
|
|
13
15
|
router.get('/miit/wjgs', require('./miit/wjgs'));
|
|
14
16
|
router.get('/miit/zcjd', require('./miit/zcjd'));
|
|
15
17
|
router.get('/moe/:type', require('./moe/moe'));
|
|
18
|
+
router.get('/mofcom/article/:suffix+', require('./mofcom/article'));
|
|
16
19
|
router.get('/moj/aac/news/:type?', require('./moj/aac/news'));
|
|
17
20
|
router.get(/nifdc\/([\w/-]+)?/, require('./nifdc'));
|
|
18
21
|
router.get(/\/nmpa\/([\w][\w/]+)?/, require('./nmpa/generic'));
|
|
22
|
+
router.get(/nopss(\/[\w/-]+)?/, require('./nopss'));
|
|
19
23
|
router.get('/nrta/news/:category?', require('./nrta/news'));
|
|
20
24
|
router.get('/nsfc/news/:type?', require('./nsfc'));
|
|
21
25
|
router.get('/pbc/goutongjiaoliu', require('./pbc/goutongjiaoliu'));
|
|
22
26
|
router.get('/pbc/gzlw', require('./pbc/gzlw'));
|
|
23
27
|
router.get('/pbc/tradeAnnouncement', require('./pbc/tradeAnnouncement'));
|
|
24
28
|
router.get('/pbc/zcyj', require('./pbc/zcyj'));
|
|
29
|
+
router.get('/sasac/:path+', require('./sasac/generic'));
|
|
30
|
+
router.get(/stats(\/[\w/-]+)?/, require('./stats'));
|
|
31
|
+
router.get('/zhengce/govall/:advance?', require('./zhengce/govall'));
|
|
32
|
+
router.get('/zhengce/wenjian/:pcodeJiguan?', require('./zhengce/wenjian'));
|
|
33
|
+
router.get('/zhengce/zhengceku/:department', require('./zhengce/zhengceku'));
|
|
34
|
+
router.get('/zhengce/zuixin', require('./zhengce/zuixin'));
|
|
25
35
|
// province
|
|
26
36
|
router.get(/anhui\/kjt\/([\w\d/-]+)?/, require('./anhui/kjt'));
|
|
37
|
+
router.get(/beijing\/bphc(\/[\w/-]+)?/, require('./beijing/bphc'));
|
|
27
38
|
router.get('/beijing/jw/tzgg', require('./beijing/jw/tzgg'));
|
|
28
39
|
router.get('/beijing/kw/:channel', require('./beijing/kw/index'));
|
|
29
|
-
router.get(
|
|
40
|
+
router.get(/dianbai(\/[\w/-]+)?/, require('./dianbai/dianbai'));
|
|
41
|
+
router.get(/gaozhou(\/[\w/-]+)?/, require('./gaozhou/gaozhou'));
|
|
30
42
|
router.get('/guangdong/tqyb/sncsyjxh', require('./guangdong/tqyb/sncsyjxh'));
|
|
31
|
-
router.get('/
|
|
43
|
+
router.get('/guangdong/tqyb/tfxtq', require('./guangdong/tqyb/tfxtq'));
|
|
44
|
+
router.get('/gz/:channel/:category', require('./gz/index'));
|
|
32
45
|
router.get('/hebei/czt/xwdt/:category?', require('./hebei/czt'));
|
|
46
|
+
router.get(/huazhou(\/[\w/-]+)?/, require('./huazhou/huazhou'));
|
|
47
|
+
router.get('/huizhou/zwgk/:category?', require('./huizhou/zwgk/index'));
|
|
48
|
+
router.get('/hunan/changsha/major-email', require('./hunan/changsha/major-email'));
|
|
49
|
+
router.get(/maoming(\/[\w/-]+)?/, require('./maoming/maoming'));
|
|
50
|
+
router.get('/maonan/:category', require('./maonan/maonan'));
|
|
51
|
+
router.get(/mgs(\/[\w/-]+)?/, require('./mgs/mgs'));
|
|
52
|
+
router.get(/mmht(\/[\w/-]+)?/, require('./mmht/mmht'));
|
|
53
|
+
router.get(/sdb(\/[\w/-]+)?/, require('./sdb/sdb'));
|
|
33
54
|
router.get('/shaanxi/kjt/:id?', require('./shaanxi/kjt'));
|
|
34
|
-
router.get('/shenzhen/hrss/szksy/:caty/:page?', require('./shenzhen/hrss/szksy/index'));
|
|
35
|
-
router.get('/shenzhen/zzb/:caty/:page?', require('./shenzhen/zzb/index'));
|
|
36
55
|
router.get('/shanghai/rsj/ksxm', require('./shanghai/rsj/ksxm'));
|
|
37
|
-
router.get(/shanghai\/yjj\/([\w/-]+)?/, require('./shanghai/yjj'));
|
|
38
56
|
router.get('/shanghai/wsjkw/yqtb', require('./shanghai/wsjkw/yqtb'));
|
|
57
|
+
router.get(/shanghai\/yjj\/([\w/-]+)?/, require('./shanghai/yjj'));
|
|
58
|
+
router.get('/shenzhen/hrss/szksy/:caty/:page?', require('./shenzhen/hrss/szksy/index'));
|
|
59
|
+
router.get('/shenzhen/xxgk/zfxxgj/:caty', require('./shenzhen/xxgk/zfxxgj'));
|
|
60
|
+
router.get('/shenzhen/zzb/:caty/:page?', require('./shenzhen/zzb/index'));
|
|
39
61
|
router.get('/sichuan/deyang/govpulicinfo/:countyName', require('./sichuan/deyang/govpulicinfo'));
|
|
40
62
|
router.get('/taiyuan/rsj/:caty/:page?', require('./taiyuan/rsj'));
|
|
63
|
+
router.get(/xinyi(\/[\w/-]+)?/, require('./xinyi/xinyi'));
|
|
41
64
|
router.get('/xuzhou/hrss/:category?', require('./xuzhou/hrss'));
|
|
42
65
|
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
const got = require('@/utils/got');
|
|
2
|
+
const cheerio = require('cheerio');
|
|
3
|
+
const { parseDate } = require('@/utils/parse-date');
|
|
4
|
+
|
|
5
|
+
module.exports = async (ctx) => {
|
|
6
|
+
const { path } = ctx.params;
|
|
7
|
+
const baseUrl = 'http://www.sasac.gov.cn';
|
|
8
|
+
const url = `${baseUrl}/${path}/index.html`;
|
|
9
|
+
const response = await got(url);
|
|
10
|
+
|
|
11
|
+
const $ = cheerio.load(response.data);
|
|
12
|
+
const list = $('.zsy_conlist li')
|
|
13
|
+
.toArray()
|
|
14
|
+
.filter((item) => !$(item).attr('style'))
|
|
15
|
+
.map((item) => {
|
|
16
|
+
item = $(item);
|
|
17
|
+
return {
|
|
18
|
+
title: item.find('a').attr('title'),
|
|
19
|
+
link: new URL(item.find('a').attr('href'), response.url).href,
|
|
20
|
+
pubDate: parseDate(item.find('span').text().replace('[', '').replace(']', '')),
|
|
21
|
+
};
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const items = await Promise.all(
|
|
25
|
+
list.map((item) =>
|
|
26
|
+
ctx.cache.tryGet(item.link, async () => {
|
|
27
|
+
const response = await got(item.link);
|
|
28
|
+
const $ = cheerio.load(response.data);
|
|
29
|
+
$('style, #qr_container, #div_div, [class^=jiathis]').remove();
|
|
30
|
+
item.description = $('.zsy_comain').html();
|
|
31
|
+
return item;
|
|
32
|
+
})
|
|
33
|
+
)
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
ctx.state.data = {
|
|
37
|
+
title: $('head title').text().trim(),
|
|
38
|
+
link: url,
|
|
39
|
+
image: 'http://www.sasac.gov.cn/dbsource/11869722/11869731.jpg',
|
|
40
|
+
item: items,
|
|
41
|
+
};
|
|
42
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
const { gdgov } = require('../general/general');
|
|
2
|
+
|
|
3
|
+
module.exports = async (ctx) => {
|
|
4
|
+
const info = {
|
|
5
|
+
defaultPath: 'zwgk/zcjd/',
|
|
6
|
+
list_element: '.art-list li a',
|
|
7
|
+
list_include: 'site',
|
|
8
|
+
title_element: '.title',
|
|
9
|
+
title_match: '(.*)',
|
|
10
|
+
description_element: '.text',
|
|
11
|
+
author_element: '.source',
|
|
12
|
+
author_match: '来源:(.*)发布时间',
|
|
13
|
+
authorisme: '广东省茂名水东湾新城建设管理委员会网站',
|
|
14
|
+
pubDate_element: '.source',
|
|
15
|
+
pubDate_match: '发布时间:(.*)',
|
|
16
|
+
pubDate_format: undefined,
|
|
17
|
+
};
|
|
18
|
+
await gdgov(info, ctx);
|
|
19
|
+
};
|
|
@@ -41,8 +41,10 @@ module.exports = async (ctx) => {
|
|
|
41
41
|
|
|
42
42
|
const content = cheerio.load(detailResponse.data);
|
|
43
43
|
|
|
44
|
+
const pubDate = content('meta[name="pubdate"]').attr('content') || content('meta[name="PubDate"]').attr('content');
|
|
45
|
+
|
|
44
46
|
item.description = content('#ivs_content').html();
|
|
45
|
-
item.pubDate = timezone(parseDate(
|
|
47
|
+
item.pubDate = timezone(parseDate(pubDate, ['YYYY-MM-DD HH:mm:ss', 'YYYY-MM-DD HH:mm']), +8);
|
|
46
48
|
} catch (e) {
|
|
47
49
|
// no-empty
|
|
48
50
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
const url = require('url');
|
|
2
1
|
const got = require('@/utils/got');
|
|
3
2
|
const cheerio = require('cheerio');
|
|
4
|
-
|
|
3
|
+
const { parseDate } = require('@/utils/parse-date');
|
|
4
|
+
const timezone = require('@/utils/timezone');
|
|
5
5
|
const rootUrl = 'http://www.sz.gov.cn/cn/xxgk/zfxxgj/';
|
|
6
6
|
|
|
7
7
|
const config = {
|
|
@@ -26,33 +26,39 @@ const config = {
|
|
|
26
26
|
module.exports = async (ctx) => {
|
|
27
27
|
const cfg = config[ctx.params.caty];
|
|
28
28
|
if (!cfg) {
|
|
29
|
-
throw Error('Bad category. See <a href="https://docs.rsshub.app/government.html#guang-dong-sheng-
|
|
29
|
+
throw Error('Bad category. See <a href="https://docs.rsshub.app/government.html#guang-dong-sheng-ren-min-zheng-fu-guang-dong-sheng-shen-zhen-shi-ren-min-zheng-fu">docs</a>');
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
const currentUrl =
|
|
33
|
-
const response = await got(
|
|
32
|
+
const currentUrl = new URL(cfg.link, rootUrl).href;
|
|
33
|
+
const response = await got(currentUrl);
|
|
34
34
|
const $ = cheerio.load(response.data);
|
|
35
35
|
const list = $('div.zx_ml_list ul li span.tit')
|
|
36
|
-
.
|
|
36
|
+
.toArray()
|
|
37
|
+
.map((item) => {
|
|
37
38
|
item = $(item).find('a');
|
|
38
39
|
return {
|
|
39
40
|
title: item.text(),
|
|
40
41
|
link: item.attr('href'),
|
|
41
42
|
};
|
|
42
|
-
})
|
|
43
|
-
.get();
|
|
43
|
+
});
|
|
44
44
|
|
|
45
45
|
const items = await Promise.all(
|
|
46
46
|
list.map((item) =>
|
|
47
47
|
ctx.cache.tryGet(item.link, async () => {
|
|
48
|
-
const detailResponse = await got(
|
|
48
|
+
const detailResponse = await got(item.link);
|
|
49
49
|
const content = cheerio.load(detailResponse.data);
|
|
50
|
-
item.description = content('div.
|
|
51
|
-
|
|
52
|
-
content('
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
50
|
+
item.description = content('div.news_cont_d_wrap').html();
|
|
51
|
+
if (content('div.fjdown').html() !== null) {
|
|
52
|
+
item.description += content('div.fjdown').html();
|
|
53
|
+
}
|
|
54
|
+
item.pubDate = timezone(
|
|
55
|
+
parseDate(
|
|
56
|
+
content('.tit span:nth-child(2)')
|
|
57
|
+
.text()
|
|
58
|
+
.replace(/信息提供日期:/, '')
|
|
59
|
+
),
|
|
60
|
+
8
|
|
61
|
+
);
|
|
56
62
|
return item;
|
|
57
63
|
})
|
|
58
64
|
)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
const { parseContList, parseXilan } = require('./utils');
|
|
2
|
+
|
|
3
|
+
module.exports = async (ctx) => {
|
|
4
|
+
const rootUrl = 'http://www.stats.gov.cn';
|
|
5
|
+
const defaultPath = '/tjsj/zxfb/';
|
|
6
|
+
|
|
7
|
+
let pathname = ctx.path.replace(/(^\/stats|\/$)/g, '');
|
|
8
|
+
pathname = pathname === '' ? defaultPath : pathname.endsWith('/') ? pathname : pathname + '/';
|
|
9
|
+
const currentUrl = `${rootUrl}${pathname}`;
|
|
10
|
+
|
|
11
|
+
const { list, title } = await parseContList(currentUrl, 'ul.center_list_contlist li a:not([id])', ctx);
|
|
12
|
+
const items = await Promise.all(list.map((item) => parseXilan(item, ctx)));
|
|
13
|
+
|
|
14
|
+
ctx.state.data = {
|
|
15
|
+
title,
|
|
16
|
+
link: currentUrl,
|
|
17
|
+
item: items,
|
|
18
|
+
};
|
|
19
|
+
};
|