rsshub 1.0.0-master.f8b1c8d → 1.0.0-master.f91e29d
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 +8 -10
- package/lib/config.js +9 -4
- package/lib/middleware/parameter.js +12 -5
- package/lib/middleware/template.js +29 -11
- package/lib/radar-rules.js +0 -248
- package/lib/router.js +151 -164
- package/lib/routes/bandisoft/index.js +4 -0
- package/lib/routes/biobio/others.js +5 -0
- package/lib/routes/blogs/hedwig.js +4 -0
- package/lib/routes/blogs/wordpress.js +5 -0
- package/lib/routes/booth-pm/shop.js +4 -1
- package/lib/routes/cell/cover.js +1 -1
- package/lib/routes/craigslist/search.js +5 -0
- package/lib/routes/engadget/home.js +4 -0
- package/lib/routes/everything/changes.js +1 -1
- package/lib/routes/fanbox/main.js +4 -1
- package/lib/routes/fanxinzhui/latest.js +12 -13
- package/lib/routes/fashionnetwork/headline.js +15 -12
- package/lib/routes/fashionnetwork/news.js +16 -12
- package/lib/routes/gitlab/common.js +5 -0
- package/lib/routes/gitlab/explore.js +5 -0
- package/lib/routes/gitlab/release.js +5 -0
- package/lib/routes/gitlab/tag.js +5 -0
- package/lib/routes/hexo/fluid.js +4 -0
- package/lib/routes/hexo/next.js +4 -0
- package/lib/routes/hexo/yilia.js +4 -0
- package/lib/routes/mastodon/account_id.js +4 -0
- package/lib/routes/mastodon/timeline_local.js +4 -0
- package/lib/routes/mastodon/timeline_remote.js +4 -0
- package/lib/routes/mastodon/utils.js +3 -0
- package/lib/routes/pornhub/category_url.js +4 -0
- package/lib/routes/pornhub/model.js +4 -0
- package/lib/routes/pornhub/pornstar.js +4 -0
- package/lib/routes/pornhub/users.js +4 -0
- package/lib/routes/questmobile/report.js +13 -14
- package/lib/routes/rss3/blog.js +11 -12
- package/lib/routes/touhougarakuta/index.js +3 -0
- package/lib/routes/v2ex/post.js +3 -0
- package/lib/routes/weforum/report.js +10 -6
- package/lib/routes/ziroom/room.js +5 -0
- package/lib/utils/puppeteer-utils.js +63 -0
- package/lib/utils/puppeteer.js +13 -8
- package/lib/utils/render.js +2 -0
- package/lib/utils/request-wrapper.js +38 -100
- package/lib/utils/unify-proxy.js +116 -0
- package/lib/utils/valid-host.js +16 -0
- package/lib/utils/wechat-mp.js +6 -3
- package/lib/v2/0818tuan/index.js +47 -0
- package/lib/v2/0818tuan/maintainer.js +3 -0
- package/lib/v2/0818tuan/radar.js +13 -0
- package/lib/v2/0818tuan/router.js +3 -0
- package/lib/v2/163/ds.js +33 -0
- package/lib/v2/163/dy.js +29 -0
- package/lib/v2/163/dy2.js +42 -0
- package/lib/v2/163/maintainer.js +20 -0
- package/lib/v2/163/music/artist-songs.js +39 -0
- package/lib/v2/163/music/artist.js +39 -0
- package/lib/v2/163/music/djradio.js +78 -0
- package/lib/v2/163/music/maintainer.js +3 -0
- package/lib/v2/163/music/playlist.js +55 -0
- package/lib/v2/163/music/userevents.js +52 -0
- package/lib/v2/163/music/userplaylist.js +56 -0
- package/lib/v2/163/music/userplayrecords.js +55 -0
- package/lib/v2/163/news/rank.js +155 -0
- package/lib/v2/163/news/special.js +114 -0
- package/lib/v2/163/open/vip.js +63 -0
- package/lib/v2/163/radar.js +155 -0
- package/lib/v2/163/renjian.js +77 -0
- package/lib/v2/163/router.js +20 -0
- package/lib/v2/163/templates/ds.art +7 -0
- package/lib/v2/163/templates/dy.art +6 -0
- package/lib/v2/163/templates/music/playlist.art +4 -0
- package/lib/v2/163/templates/music/userevents.art +7 -0
- package/lib/v2/163/templates/music/userplaylist.art +16 -0
- package/lib/v2/163/templates/music/userplayrecords.art +7 -0
- package/lib/v2/163/templates/open.art +12 -0
- package/lib/v2/163/today.js +55 -0
- package/lib/v2/163/utils.js +40 -0
- package/lib/v2/18comic/album.js +2 -1
- package/lib/v2/18comic/blogs.js +2 -1
- package/lib/v2/18comic/radar.js +39 -29
- package/lib/v2/18comic/templates/description.art +4 -0
- package/lib/v2/18comic/utils.js +15 -15
- package/lib/v2/19lou/index.js +4 -0
- package/lib/v2/36kr/index.js +29 -24
- package/lib/v2/500px/maintainer.js +4 -0
- package/lib/v2/500px/radar.js +19 -0
- package/lib/v2/500px/router.js +4 -0
- package/lib/v2/500px/templates/tribeSet.art +6 -0
- package/lib/v2/500px/templates/user.art +3 -0
- package/lib/v2/500px/tribeSet.js +29 -0
- package/lib/v2/500px/user.js +32 -0
- package/lib/v2/500px/utils.js +122 -0
- package/lib/v2/50forum/radar.js +1 -1
- package/lib/v2/50forum/zhuanjia.js +1 -1
- package/lib/v2/52hrtt/index.js +12 -13
- package/lib/v2/52hrtt/symposium.js +12 -13
- package/lib/v2/591/list.js +144 -0
- package/lib/v2/591/radar.js +16 -0
- package/lib/v2/591/router.js +3 -0
- package/lib/v2/591/templates/house.art +52 -0
- package/lib/v2/6v123/latestMovies.js +14 -0
- package/lib/v2/6v123/latestTVSeries.js +14 -0
- package/lib/v2/6v123/maintainer.js +4 -0
- package/lib/v2/6v123/radar.js +23 -0
- package/lib/v2/6v123/router.js +4 -0
- package/lib/v2/6v123/utils.js +81 -0
- package/lib/v2/7mmtv/index.js +15 -23
- package/lib/v2/7mmtv/templates/description.art +5 -1
- 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/91porn/author.js +2 -0
- package/lib/v2/91porn/index.js +2 -0
- package/lib/v2/91porn/utils.js +12 -0
- package/lib/v2/abmedia/category.js +1 -1
- package/lib/v2/acg17/maintainer.js +3 -0
- package/lib/v2/acg17/post.js +20 -0
- package/lib/v2/acg17/radar.js +13 -0
- package/lib/v2/acg17/router.js +3 -0
- package/lib/v2/aeaweb/index.js +81 -0
- package/lib/v2/aeaweb/maintainer.js +3 -0
- package/lib/v2/aeaweb/radar.js +13 -0
- package/lib/v2/aeaweb/router.js +3 -0
- package/lib/v2/aeaweb/templates/description.art +3 -0
- 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/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/aijishu/index.js +26 -0
- package/lib/v2/aijishu/maintainer.js +5 -0
- package/lib/v2/aijishu/radar.js +25 -0
- package/lib/v2/aijishu/router.js +3 -0
- package/lib/v2/aijishu/utils.js +36 -0
- package/lib/v2/aliyundrive/files.js +10 -14
- 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/ally/rail.js +41 -42
- package/lib/v2/amazon/awsblogs.js +27 -0
- package/lib/v2/amazon/kindle-software-updates.js +47 -0
- package/lib/v2/amazon/maintainer.js +4 -0
- package/lib/v2/amazon/radar.js +24 -0
- package/lib/v2/amazon/router.js +4 -0
- package/lib/v2/amazon/templates/software-description.art +4 -0
- package/lib/v2/annualreviews/index.js +68 -0
- package/lib/v2/annualreviews/maintainer.js +3 -0
- package/lib/v2/annualreviews/radar.js +13 -0
- package/lib/v2/annualreviews/router.js +3 -0
- package/lib/v2/anquanke/category.js +21 -7
- package/lib/v2/anquanke/maintainer.js +1 -1
- package/lib/v2/anquanke/router.js +1 -1
- package/lib/v2/apkpure/maintainer.js +3 -0
- package/lib/v2/apkpure/radar.js +13 -0
- package/lib/v2/apkpure/router.js +3 -0
- package/lib/v2/apkpure/versions.js +48 -0
- package/lib/v2/apnews/topics.js +2 -1
- package/lib/v2/apple/exchange_repair.js +28 -21
- package/lib/v2/arcteryx/maintainer.js +4 -0
- package/lib/v2/arcteryx/new-arrivals.js +49 -0
- package/lib/v2/arcteryx/radar.js +21 -0
- package/lib/v2/arcteryx/regear-new-arrivals.js +53 -0
- package/lib/v2/arcteryx/router.js +4 -0
- package/lib/v2/arcteryx/templates/product-description.art +6 -0
- package/lib/v2/arcteryx/templates/regear-product-description.art +16 -0
- package/lib/v2/baai/comments.js +35 -0
- package/lib/v2/baai/events.js +35 -0
- package/lib/v2/baai/hub.js +60 -0
- package/lib/v2/baai/maintainer.js +5 -0
- package/lib/v2/baai/radar.js +31 -0
- package/lib/v2/baai/router.js +7 -0
- package/lib/v2/baai/utils.js +33 -0
- package/lib/v2/baidu/maintainer.js +1 -0
- package/lib/v2/baidu/radar.js +14 -6
- package/lib/v2/baidu/router.js +1 -0
- package/lib/v2/baidu/templates/top.art +9 -0
- package/lib/v2/baidu/tieba/forum.js +1 -1
- package/lib/v2/baidu/top.js +34 -0
- package/lib/v2/bangumi/online/online.js +4 -2
- package/lib/v2/bangumi/tv/group/reply.js +13 -1
- package/lib/v2/bangumi/tv/group/topic.js +22 -9
- package/lib/v2/bdys/index.js +98 -0
- package/lib/v2/bdys/maintainer.js +3 -0
- package/lib/v2/bdys/radar.js +20 -0
- package/lib/v2/bdys/router.js +3 -0
- package/lib/v2/bdys/templates/desc.art +21 -0
- package/lib/v2/bellroy/maintainer.js +3 -0
- package/lib/v2/bellroy/new-releases.js +26 -0
- package/lib/v2/bellroy/radar.js +13 -0
- package/lib/v2/bellroy/router.js +3 -0
- package/lib/v2/bendibao/news.js +4 -0
- package/lib/v2/bilibili/bangumi.js +4 -4
- package/lib/v2/bilibili/cache.js +63 -7
- package/lib/v2/bilibili/dynamic.js +2 -2
- package/lib/v2/bilibili/followings_dynamic.js +3 -3
- package/lib/v2/bilibili/hotSearch.js +25 -0
- package/lib/v2/bilibili/maintainer.js +1 -0
- package/lib/v2/bilibili/radar.js +6 -0
- package/lib/v2/bilibili/router.js +1 -0
- package/lib/v2/bilibili/topic.js +2 -2
- package/lib/v2/bilibili/userCollection.js +1 -2
- 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/bioone/featured.js +10 -8
- package/lib/v2/bioone/journal.js +28 -26
- package/lib/v2/biquge/index.js +21 -0
- package/lib/v2/bitmovin/blog.js +15 -21
- package/lib/v2/bjfu/it/utils.js +3 -3
- package/lib/v2/bjp/apod.js +43 -0
- package/lib/v2/bjp/maintainer.js +3 -0
- package/lib/v2/bjp/radar.js +13 -0
- package/lib/v2/bjp/router.js +3 -0
- package/lib/v2/bjsk/index.js +52 -0
- package/lib/v2/bjsk/maintainer.js +3 -0
- package/lib/v2/bjsk/radar.js +13 -0
- package/lib/v2/bjsk/router.js +3 -0
- package/lib/v2/bjwxdxh/index.js +52 -0
- package/lib/v2/bjwxdxh/maintainer.js +3 -0
- package/lib/v2/bjwxdxh/radar.js +13 -0
- package/lib/v2/bjwxdxh/router.js +3 -0
- package/lib/v2/blockbeats/index.js +28 -35
- package/lib/v2/blockbeats/maintainer.js +1 -1
- package/lib/v2/blockbeats/radar.js +3 -3
- package/lib/v2/bloomberg/authors.js +52 -0
- package/lib/v2/bloomberg/index.js +28 -0
- package/lib/v2/bloomberg/maintainer.js +5 -0
- package/lib/v2/bloomberg/radar.js +19 -0
- package/lib/v2/bloomberg/router.js +5 -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 +407 -0
- package/lib/v2/bnu/fdy.js +41 -0
- package/lib/v2/bnu/lib.js +40 -0
- package/lib/v2/bnu/maintainer.js +3 -0
- package/lib/v2/bnu/radar.js +23 -5
- package/lib/v2/bnu/router.js +2 -0
- package/lib/v2/btzj/index.js +6 -1
- package/lib/v2/byteclicks/index.js +22 -0
- package/lib/v2/byteclicks/maintainer.js +4 -0
- package/lib/v2/byteclicks/radar.js +19 -0
- package/lib/v2/byteclicks/router.js +4 -0
- package/lib/v2/byteclicks/tag.js +30 -0
- package/lib/v2/byteclicks/utils.js +13 -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/caai/index.js +22 -0
- package/lib/v2/caai/maintainer.js +3 -0
- package/lib/v2/caai/radar.js +13 -0
- package/lib/v2/caai/router.js +3 -0
- package/lib/v2/caai/utils.js +46 -0
- package/lib/v2/caareviews/utils.js +2 -2
- 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/caixin/article.js +27 -0
- package/lib/v2/caixin/blog.js +58 -0
- package/lib/v2/caixin/category.js +56 -0
- package/lib/v2/caixin/database.js +48 -0
- package/lib/v2/caixin/k.js +40 -0
- package/lib/v2/caixin/latest.js +50 -0
- package/lib/v2/caixin/maintainer.js +8 -0
- package/lib/v2/caixin/radar.js +43 -0
- package/lib/v2/caixin/router.js +8 -0
- package/lib/v2/caixin/templates/article.art +38 -0
- package/lib/v2/caixin/utils.js +52 -0
- package/lib/v2/cankaoxiaoxi/index.js +44 -57
- package/lib/v2/cankaoxiaoxi/maintainer.js +2 -1
- package/lib/v2/cankaoxiaoxi/radar.js +7 -52
- package/lib/v2/cankaoxiaoxi/router.js +2 -1
- package/lib/v2/cankaoxiaoxi/templates/description.art +5 -0
- package/lib/v2/cartoonmad/comic.js +70 -0
- package/lib/v2/cartoonmad/maintainer.js +3 -0
- package/lib/v2/cartoonmad/radar.js +13 -0
- package/lib/v2/cartoonmad/router.js +3 -0
- package/lib/v2/cartoonmad/templates/chapter.art +1 -0
- package/lib/v2/cas/cg/index.js +52 -0
- package/lib/v2/cas/iee/kydt.js +48 -0
- package/lib/v2/cas/maintainer.js +6 -0
- package/lib/v2/cas/mesalab/kb.js +41 -0
- package/lib/v2/cas/radar.js +40 -0
- package/lib/v2/cas/router.js +6 -0
- package/lib/v2/cas/sim/kyjz.js +47 -0
- package/lib/v2/cast/index.js +74 -0
- package/lib/v2/cast/maintainer.js +3 -0
- package/lib/v2/cast/radar.js +13 -0
- package/lib/v2/cast/router.js +3 -0
- package/lib/v2/ccf/ccfcv/index.js +68 -0
- package/lib/v2/ccf/maintainer.js +5 -0
- package/lib/v2/ccf/news.js +45 -0
- package/lib/v2/ccf/radar.js +41 -0
- package/lib/v2/ccf/router.js +5 -0
- package/lib/v2/ccf/tfbd/index.js +22 -0
- package/lib/v2/ccf/tfbd/utils.js +47 -0
- package/lib/v2/cctv/lm.js +22 -23
- 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/cgtn/maintainer.js +3 -0
- package/lib/v2/cgtn/podcast.js +35 -0
- package/lib/v2/cgtn/radar.js +13 -0
- package/lib/v2/cgtn/router.js +3 -0
- package/lib/v2/chaincatcher/home.js +50 -0
- package/lib/v2/chaincatcher/maintainer.js +4 -0
- package/lib/v2/chaincatcher/news.js +40 -0
- package/lib/v2/chaincatcher/radar.js +19 -0
- package/lib/v2/chaincatcher/router.js +4 -0
- package/lib/v2/chaincatcher/templates/home.art +4 -0
- package/lib/v2/chiculture/maintainer.js +3 -0
- package/lib/v2/chiculture/radar.js +16 -0
- package/lib/v2/chiculture/router.js +3 -0
- package/lib/v2/chiculture/topic.js +61 -0
- package/lib/v2/chinacef/experts.js +1 -1
- package/lib/v2/chinacef/hot.js +1 -1
- package/lib/v2/chinacef/index.js +1 -1
- package/lib/v2/chinafactcheck/index.js +1 -1
- package/lib/v2/chinathinktanks/viewpoint.js +12 -13
- package/lib/v2/chsi/hotnews.js +56 -0
- package/lib/v2/chsi/kydt.js +51 -0
- package/lib/v2/chsi/kyzx.js +51 -0
- package/lib/v2/chsi/maintainer.js +5 -0
- package/lib/v2/chsi/radar.js +25 -0
- package/lib/v2/chsi/router.js +5 -0
- package/lib/v2/ciidbnu/index.js +14 -15
- package/lib/v2/clickme/index.js +56 -0
- package/lib/v2/clickme/maintainer.js +3 -0
- package/lib/v2/clickme/radar.js +21 -0
- package/lib/v2/clickme/router.js +3 -0
- package/lib/v2/cls/depth.js +82 -0
- package/lib/v2/cls/hot.js +45 -0
- package/lib/v2/cls/maintainer.js +5 -0
- package/lib/v2/cls/radar.js +25 -0
- package/lib/v2/cls/router.js +5 -0
- package/lib/v2/cls/telegraph.js +52 -0
- package/lib/v2/cls/templates/depth.art +10 -0
- package/lib/v2/cls/templates/telegraph.art +10 -0
- package/lib/v2/cls/utils.js +15 -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/cnjxol/index.js +3 -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/cntheory/paper.js +25 -29
- package/lib/v2/codeforces/contests.js +13 -5
- 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 -11
- package/lib/v2/coindesk/index.js +34 -0
- package/lib/v2/coindesk/maintainer.js +3 -0
- package/lib/v2/coindesk/radar.js +13 -0
- package/lib/v2/coindesk/router.js +3 -0
- package/lib/v2/comicskingdom/index.js +60 -0
- 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/v2/coolapk/dyh.js +37 -0
- package/lib/v2/coolapk/hot.js +97 -0
- package/lib/v2/coolapk/huati.js +24 -0
- 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/v2/coolapk/toutiao.js +29 -0
- package/lib/v2/coolapk/tuwen.js +31 -0
- package/lib/v2/coolapk/userDynamic.js +35 -0
- package/lib/v2/coolapk/utils.js +150 -0
- package/lib/v2/copymanga/comic.js +110 -0
- package/lib/v2/copymanga/maintainer.js +3 -0
- package/lib/v2/copymanga/radar.js +19 -0
- package/lib/v2/copymanga/router.js +3 -0
- package/lib/v2/copymanga/templates/comic.art +4 -0
- package/lib/v2/crac/index.js +46 -0
- package/lib/v2/crac/maintainer.js +3 -0
- package/lib/v2/crac/radar.js +13 -0
- package/lib/v2/crac/router.js +3 -0
- 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/crossbell/feeds/following.js +29 -0
- package/lib/v2/crossbell/maintainer.js +6 -0
- package/lib/v2/crossbell/notes/character.js +22 -0
- package/lib/v2/crossbell/notes/index.js +16 -0
- package/lib/v2/crossbell/notes/source.js +19 -0
- package/lib/v2/crossbell/notes/utils.js +18 -0
- package/lib/v2/crossbell/radar.js +24 -0
- package/lib/v2/crossbell/router.js +6 -0
- package/lib/v2/csu/career.js +51 -0
- package/lib/v2/csu/mail.js +30 -26
- package/lib/v2/csu/maintainer.js +2 -0
- package/lib/v2/csu/radar.js +10 -2
- package/lib/v2/csu/router.js +1 -1
- package/lib/v2/csu/utils.js +17 -0
- 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/author.js +18 -0
- package/lib/v2/cw/maintainer.js +1 -0
- package/lib/v2/cw/master.js +6 -16
- package/lib/v2/cw/radar.js +6 -0
- package/lib/v2/cw/router.js +1 -0
- package/lib/v2/cw/sub.js +6 -16
- package/lib/v2/cw/today.js +6 -12
- package/lib/v2/cw/utils.js +82 -12
- package/lib/v2/cztv/daily.js +41 -0
- package/lib/v2/cztv/maintainer.js +4 -0
- package/lib/v2/cztv/radar.js +19 -0
- package/lib/v2/cztv/router.js +4 -0
- package/lib/v2/cztv/templates/daily.art +4 -0
- package/lib/v2/cztv/templates/zjxwlb.art +3 -0
- package/lib/v2/cztv/zjxwlb.js +38 -0
- package/lib/v2/dcard/section.js +1 -1
- package/lib/v2/dcfever/maintainer.js +6 -0
- package/lib/v2/dcfever/news.js +36 -0
- package/lib/v2/dcfever/radar.js +37 -0
- package/lib/v2/dcfever/reviews.js +29 -0
- package/lib/v2/dcfever/router.js +6 -0
- package/lib/v2/dcfever/templates/trading.art +14 -0
- package/lib/v2/dcfever/trading-search.js +39 -0
- package/lib/v2/dcfever/trading.js +39 -0
- package/lib/v2/dcfever/utils.js +78 -0
- package/lib/v2/dedao/index.js +46 -0
- package/lib/v2/dedao/knowledge.js +64 -0
- package/lib/v2/dedao/list.js +66 -0
- 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/discord/channel.js +38 -0
- package/lib/v2/discord/discord-api.js +61 -0
- package/lib/v2/discord/maintainer.js +3 -0
- package/lib/v2/discord/radar.js +13 -0
- package/lib/v2/discord/router.js +3 -0
- package/lib/v2/discord/templates/message.art +47 -0
- package/lib/v2/disinformationindex/blog.js +12 -13
- package/lib/v2/dlsite/campaign.js +174 -0
- package/lib/v2/dlsite/maintainer.js +4 -0
- package/lib/v2/dlsite/new.js +108 -0
- package/lib/v2/dlsite/radar.js +15 -0
- package/lib/v2/dlsite/router.js +4 -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/douban/maintainer.js +1 -0
- package/lib/v2/douban/other/list.js +40 -0
- package/lib/v2/douban/other/weekly_best.js +11 -4
- package/lib/v2/douban/people/wish.js +3 -24
- package/lib/v2/douban/radar.js +6 -0
- package/lib/v2/douban/router.js +1 -0
- package/lib/v2/douban/templates/list_description.art +25 -0
- package/lib/v2/douban/templates/weekly_best.art +10 -0
- 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/dtcj/datainsight.js +13 -14
- package/lib/v2/dut/index.js +4 -0
- package/lib/v2/eagle/blog.js +6 -2
- package/lib/v2/eastday/24.js +14 -15
- package/lib/v2/ecnu/contest.js +41 -0
- 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/ecnu/yjs.js +37 -0
- package/lib/v2/economist/espresso.js +55 -25
- package/lib/v2/economist/full.js +2 -2
- package/lib/v2/economist/global-business-review.js +86 -0
- package/lib/v2/economist/maintainer.js +1 -0
- package/lib/v2/economist/radar.js +11 -0
- package/lib/v2/economist/router.js +1 -0
- package/lib/v2/ehentai/ehapi.js +33 -17
- package/lib/v2/ehentai/favorites.js +2 -2
- package/lib/v2/ehentai/search.js +2 -2
- package/lib/v2/ehentai/tag.js +1 -1
- package/lib/v2/eleduck/jobs.js +38 -0
- package/lib/v2/eleduck/maintainer.js +4 -0
- package/lib/v2/eleduck/posts.js +41 -0
- package/lib/v2/eleduck/radar.js +25 -0
- package/lib/v2/eleduck/router.js +4 -0
- package/lib/v2/eprice/rss.js +8 -16
- package/lib/v2/eprice/templates/image.art +4 -1
- package/lib/v2/famitsu/category.js +62 -0
- package/lib/v2/famitsu/maintainer.js +3 -0
- package/lib/v2/famitsu/radar.js +13 -0
- package/lib/v2/famitsu/router.js +3 -0
- package/lib/v2/ff14/ff14_global.js +5 -0
- package/lib/v2/fffdm/maintainer.js +3 -0
- package/lib/v2/fffdm/manhua/manhua.js +55 -0
- package/lib/v2/fffdm/radar.js +14 -0
- package/lib/v2/fffdm/router.js +3 -0
- package/lib/v2/fffdm/templates/manhua.art +5 -0
- package/lib/v2/fishshell/index.js +27 -0
- package/lib/v2/fishshell/maintainer.js +3 -0
- package/lib/v2/fishshell/radar.js +13 -0
- package/lib/v2/fjksbm/index.js +53 -0
- package/lib/v2/fjksbm/maintainer.js +3 -0
- package/lib/v2/fjksbm/radar.js +13 -0
- package/lib/v2/fjksbm/router.js +3 -0
- package/lib/v2/flyert/utils.js +3 -3
- 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/furstar/templates/description.art +1 -1
- package/lib/v2/gameapps/index.js +32 -13
- package/lib/v2/gamebase/maintainer.js +3 -0
- package/lib/v2/gamebase/news.js +74 -0
- package/lib/v2/gamebase/radar.js +13 -0
- package/lib/v2/gamebase/router.js +3 -0
- package/lib/v2/gamme/category.js +4 -0
- package/lib/v2/gamme/tag.js +4 -0
- package/lib/v2/gcores/category.js +16 -6
- package/lib/v2/gcores/maintainer.js +1 -0
- package/lib/v2/gcores/radar.js +12 -0
- package/lib/v2/gcores/radio.js +90 -0
- package/lib/v2/gcores/router.js +1 -0
- package/lib/v2/gcores/templates/content.art +16 -0
- package/lib/v2/gelonghui/hot-article.js +33 -0
- package/lib/v2/gelonghui/live.js +31 -0
- package/lib/v2/gelonghui/radar.js +12 -0
- package/lib/v2/gelonghui/router.js +2 -0
- package/lib/v2/gelonghui/templates/live.art +7 -0
- package/lib/v2/gelonghui/utils.js +6 -0
- package/lib/v2/gettr/maintainer.js +3 -0
- package/lib/v2/gettr/radar.js +13 -0
- package/lib/v2/gettr/router.js +3 -0
- package/lib/v2/gettr/templates/post.art +13 -0
- package/lib/v2/gettr/user.js +56 -0
- package/lib/v2/github/comments.js +14 -15
- package/lib/v2/github/maintainer.js +2 -1
- package/lib/v2/github/radar.js +35 -29
- package/lib/v2/github/router.js +1 -0
- package/lib/v2/github/trending.js +68 -36
- package/lib/v2/github/wiki.js +32 -0
- package/lib/v2/gocn/topics.js +1 -1
- 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/google/maintainer.js +1 -0
- package/lib/v2/google/news.js +48 -66
- package/lib/v2/google/router.js +1 -0
- package/lib/v2/google/sitesRecentChanges.js +12 -13
- package/lib/v2/google/templates/news.art +5 -0
- package/lib/v2/gov/beijing/bphc/index.js +54 -0
- package/lib/v2/gov/ccdi/utils.js +33 -9
- package/lib/v2/gov/csrc/auditstatus.js +54 -0
- package/lib/v2/gov/csrc/news.js +69 -0
- package/lib/v2/gov/csrc/templates/attachment.art +3 -0
- 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 +24 -2
- 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/moe/moe.js +4 -4
- package/lib/v2/gov/moe/s78.js +44 -0
- package/lib/v2/gov/nmpa/generic.js +1 -1
- package/lib/v2/gov/pbc/utils.js +2 -2
- package/lib/v2/gov/radar.js +245 -1
- package/lib/v2/gov/router.js +23 -2
- 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/v2/gov/sichuan/deyang/govpulicinfo.js +3 -3
- package/lib/v2/gov/stats/index.js +1 -1
- package/lib/v2/gov/stats/utils.js +6 -4
- package/lib/v2/gov/wuhan/whyw.js +44 -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/gq/maintainer.js +3 -0
- package/lib/v2/gq/radar.js +13 -0
- package/lib/v2/gq/router.js +3 -0
- package/lib/v2/gq/templates/embed-article.art +1 -0
- package/lib/v2/gq/templates/embed-product.art +4 -0
- package/lib/v2/gq/templates/img.art +6 -0
- package/lib/v2/gq/templates/tw.art +3 -0
- package/lib/v2/gq/templates/videoObject.art +6 -0
- package/lib/v2/gq/templates/youtube.art +3 -0
- package/lib/v2/gq/tw/index.js +165 -0
- package/lib/v2/guandian/index.js +37 -0
- package/lib/v2/guandian/maintainer.js +3 -0
- package/lib/v2/guandian/radar.js +13 -0
- package/lib/v2/guandian/router.js +3 -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/gumroad/index.js +4 -0
- package/lib/v2/gzdaily/app.js +53 -0
- package/lib/v2/gzdaily/cmc.js +60 -0
- package/lib/v2/gzdaily/maintainer.js +4 -0
- package/lib/v2/gzdaily/radar.js +22 -0
- package/lib/v2/gzdaily/router.js +4 -0
- package/lib/v2/gzdaily/templates/description.art +3 -0
- package/lib/v2/gzh360/universal.js +3 -3
- package/lib/v2/gzh360/utils.js +2 -2
- package/lib/v2/hackernews/index.js +16 -7
- package/lib/v2/hackmd/maintainer.js +3 -0
- package/lib/v2/hackmd/profile.js +24 -0
- package/lib/v2/hackmd/radar.js +13 -0
- package/lib/v2/hackmd/router.js +3 -0
- 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 +50 -0
- package/lib/v2/hitsz/article.js +41 -0
- package/lib/v2/hitsz/maintainer.js +3 -0
- package/lib/v2/hitsz/radar.js +13 -0
- package/lib/v2/hitsz/router.js +3 -0
- package/lib/v2/hk01/utils.js +2 -2
- package/lib/v2/hkepc/data.js +62 -0
- package/lib/v2/hkepc/index.js +55 -164
- package/lib/v2/hljucm/maintainer.js +3 -0
- package/lib/v2/hljucm/radar.js +13 -0
- package/lib/v2/hljucm/router.js +3 -0
- package/lib/v2/hljucm/yjsy.js +56 -0
- package/lib/v2/hotukdeals/hottest.js +25 -0
- package/lib/v2/hotukdeals/maintainer.js +1 -0
- package/lib/v2/hotukdeals/radar.js +6 -0
- package/lib/v2/hotukdeals/router.js +1 -0
- package/lib/v2/hrbeu/gx/card.js +42 -0
- package/lib/v2/hrbeu/gx/list.js +65 -0
- package/lib/v2/hrbeu/job/bigemploy.js +25 -0
- package/lib/v2/hrbeu/job/calendar.js +46 -0
- package/lib/v2/hrbeu/job/list.js +65 -0
- package/lib/v2/hrbeu/maintainer.js +9 -0
- package/lib/v2/hrbeu/radar.js +81 -0
- package/lib/v2/hrbeu/router.js +10 -0
- package/lib/v2/hrbeu/uae/list.js +57 -0
- package/lib/v2/hrbeu/ugs/news.js +98 -0
- package/lib/v2/hrbeu/yjsy/list.js +57 -0
- package/lib/v2/hrbust/jwzx.js +36 -0
- package/lib/v2/hrbust/maintainer.js +3 -0
- package/lib/v2/hrbust/radar.js +13 -0
- package/lib/v2/hrbust/router.js +3 -0
- package/lib/v2/hrbust/templates/description.art +1 -0
- package/lib/v2/hrbust/utils.js +71 -0
- package/lib/v2/huanqiu/index.js +5 -0
- package/lib/v2/hunanpea/maintainer.js +3 -0
- package/lib/v2/hunanpea/radar.js +13 -0
- package/lib/v2/hunanpea/router.js +3 -0
- package/lib/v2/hunanpea/rsks.js +42 -0
- package/lib/v2/hupu/all.js +8 -8
- package/lib/v2/hupu/bbs.js +1 -1
- package/lib/v2/hupu/templates/description.art +7 -18
- package/lib/v2/hupu/templates/match.art +22 -0
- package/lib/v2/huxiu/article.js +14 -11
- package/lib/v2/huxiu/author.js +11 -20
- package/lib/v2/huxiu/briefColumn.js +28 -38
- package/lib/v2/huxiu/collection.js +20 -15
- package/lib/v2/huxiu/moment.js +1 -2
- package/lib/v2/huxiu/search.js +19 -7
- package/lib/v2/huxiu/tag.js +17 -10
- package/lib/v2/huxiu/templates/brief.art +22 -0
- package/lib/v2/huxiu/templates/img.art +3 -0
- package/lib/v2/huxiu/templates/video.art +7 -0
- package/lib/v2/huxiu/utils.js +137 -52
- package/lib/v2/idolypride/maintainer.js +3 -0
- package/lib/v2/idolypride/news.js +29 -0
- package/lib/v2/idolypride/radar.js +13 -0
- package/lib/v2/idolypride/router.js +3 -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/iiilab/index.js +24 -0
- package/lib/v2/iiilab/maintainer.js +3 -0
- package/lib/v2/iiilab/radar.js +13 -0
- package/lib/v2/iiilab/router.js +3 -0
- package/lib/v2/ikea/cn/family_offers.js +70 -0
- package/lib/v2/ikea/cn/low_price.js +22 -0
- package/lib/v2/ikea/cn/new.js +39 -0
- package/lib/v2/ikea/cn/utils.js +42 -0
- package/lib/v2/ikea/gb/new.js +54 -0
- package/lib/v2/ikea/gb/offer.js +69 -0
- package/lib/v2/ikea/maintainer.js +7 -0
- package/lib/v2/ikea/radar.js +42 -0
- package/lib/v2/ikea/router.js +7 -0
- package/lib/v2/ikea/templates/cn/product.art +14 -0
- package/lib/v2/ikea/templates/new.art +7 -0
- package/lib/v2/ikea/templates/offer.art +3 -0
- package/lib/v2/inewsweek/index.js +53 -0
- package/lib/v2/inewsweek/maintainer.js +3 -0
- package/lib/v2/inewsweek/radar.js +13 -0
- package/lib/v2/inewsweek/router.js +3 -0
- package/lib/v2/infoq/utils.js +2 -1
- package/lib/v2/inoreader/index.js +46 -0
- package/lib/v2/inoreader/maintainer.js +3 -0
- package/lib/v2/inoreader/radar.js +17 -0
- package/lib/v2/inoreader/router.js +3 -0
- package/lib/v2/instagram/common-utils.js +59 -0
- package/lib/v2/instagram/maintainer.js +4 -0
- package/lib/v2/instagram/private-api/index.js +94 -0
- package/lib/v2/instagram/private-api/utils.js +37 -0
- package/lib/v2/instagram/radar.js +19 -0
- package/lib/v2/instagram/router.js +4 -0
- package/lib/v2/instagram/templates/images.art +5 -0
- package/lib/v2/instagram/templates/video.art +5 -0
- package/lib/v2/instagram/web-api/index.js +70 -0
- package/lib/v2/instagram/web-api/utils.js +99 -0
- package/lib/v2/instructables/maintainer.js +3 -0
- package/lib/v2/instructables/projects.js +55 -0
- package/lib/v2/instructables/radar.js +19 -0
- package/lib/v2/instructables/router.js +3 -0
- package/lib/v2/iqiyi/album.js +62 -0
- package/lib/v2/iqiyi/maintainer.js +4 -0
- package/lib/v2/iqiyi/radar.js +24 -0
- package/lib/v2/iqiyi/router.js +4 -0
- package/lib/v2/iqiyi/templates/album.art +1 -0
- package/lib/v2/issuehunt/funded.js +28 -0
- package/lib/v2/issuehunt/maintainer.js +3 -0
- package/lib/v2/issuehunt/radar.js +13 -0
- package/lib/v2/issuehunt/router.js +3 -0
- package/lib/v2/itch/devlog.js +4 -0
- package/lib/v2/iwara/index.js +1 -0
- package/lib/v2/jandan/index.js +17 -51
- package/lib/v2/jandan/maintainer.js +1 -1
- package/lib/v2/javbus/index.js +20 -4
- package/lib/v2/javbus/templates/description.art +12 -1
- package/lib/v2/javdb/utils.js +6 -0
- package/lib/v2/jiaoliudao/index.js +35 -0
- package/lib/v2/jiaoliudao/maintainer.js +3 -0
- package/lib/v2/jiaoliudao/radar.js +13 -0
- package/lib/v2/jiaoliudao/router.js +3 -0
- package/lib/v2/jike/maintainer.js +1 -1
- package/lib/v2/jike/router.js +1 -1
- package/lib/v2/jike/topic.js +1 -1
- package/lib/v2/jike/user.js +23 -12
- package/lib/v2/jike/utils.js +4 -2
- package/lib/v2/jin10/index.js +58 -0
- package/lib/v2/jin10/maintainer.js +3 -0
- package/lib/v2/jin10/radar.js +13 -0
- package/lib/v2/jin10/router.js +3 -0
- package/lib/v2/jin10/templates/description.art +2 -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/jou/home.js +18 -0
- package/lib/v2/jou/maintainer.js +4 -0
- package/lib/v2/jou/radar.js +21 -0
- package/lib/v2/jou/router.js +6 -0
- package/lib/v2/jou/utils/index.js +60 -0
- package/lib/v2/jou/yz.js +18 -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/ke/maintainer.js +3 -0
- package/lib/v2/ke/radar.js +13 -0
- package/lib/v2/ke/results.js +36 -0
- package/lib/v2/ke/router.js +3 -0
- package/lib/v2/kemono/index.js +23 -19
- package/lib/v2/kemono/templates/discord.art +22 -0
- package/lib/v2/kimlaw/maintainer.js +3 -0
- package/lib/v2/kimlaw/radar.js +13 -0
- package/lib/v2/kimlaw/router.js +3 -0
- package/lib/v2/kimlaw/thesis.js +44 -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/v2/kuaidi100/supported_company.js +16 -0
- package/lib/v2/kuaidi100/utils.js +258 -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/layoffs/index.js +134 -0
- package/lib/v2/layoffs/maintainer.js +3 -0
- package/lib/v2/layoffs/radar.js +13 -0
- package/lib/v2/layoffs/router.js +3 -0
- package/lib/v2/learnblockchain/maintainer.js +3 -0
- package/lib/v2/learnblockchain/posts.js +43 -0
- package/lib/v2/learnblockchain/radar.js +19 -0
- package/lib/v2/learnblockchain/router.js +3 -0
- package/lib/v2/lianxh/index.js +61 -0
- package/lib/v2/lianxh/maintainer.js +3 -0
- package/lib/v2/lianxh/radar.js +13 -0
- package/lib/v2/lianxh/router.js +3 -0
- package/lib/v2/line/today.js +13 -19
- package/lib/v2/linkedin/cn/index.js +13 -0
- package/lib/v2/linkedin/cn/renderer.js +179 -0
- package/lib/v2/linkedin/cn/utils.js +122 -0
- package/lib/v2/linkedin/jobs.js +44 -0
- package/lib/v2/linkedin/maintainer.js +4 -0
- package/lib/v2/linkedin/models.js +15 -0
- package/lib/v2/linkedin/radar.js +36 -0
- package/lib/v2/linkedin/router.js +4 -0
- package/lib/v2/linkedin/templates/cn/posting.art +25 -0
- package/lib/v2/linkedin/utils.js +121 -0
- package/lib/v2/linkresearcher/index.js +68 -0
- 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/liulinblog/utils.js +7 -4
- package/lib/v2/lkong/forum.js +3 -2
- package/lib/v2/lofter/user.js +10 -1
- package/lib/v2/logonews/router.js +1 -1
- package/lib/v2/lovelive-anime/maintainer.js +2 -1
- package/lib/v2/lovelive-anime/radar.js +9 -0
- package/lib/v2/lovelive-anime/router.js +1 -0
- package/lib/v2/lovelive-anime/schedules.js +56 -0
- package/lib/v2/lovelive-anime/templates/scheduleDesc.art +3 -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/magazinelib/latest-magazine.js +55 -0
- package/lib/v2/magazinelib/maintainer.js +3 -0
- package/lib/v2/magazinelib/radar.js +19 -0
- package/lib/v2/magazinelib/router.js +3 -0
- package/lib/v2/magazinelib/templates/magazine-description.art +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/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/mclaren/index.js +96 -0
- package/lib/v2/mclaren/maintainer.js +3 -0
- package/lib/v2/mclaren/radar.js +29 -0
- package/lib/v2/mclaren/router.js +3 -0
- package/lib/v2/mclaren/templates/desc.art +6 -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/minecraft/maintainer.js +3 -0
- package/lib/v2/minecraft/radar.js +13 -0
- package/lib/v2/minecraft/router.js +3 -0
- package/lib/v2/minecraft/version.js +34 -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 +19 -9
- package/lib/v2/misskey/featured-notes.js +29 -0
- package/lib/v2/misskey/maintainer.js +3 -0
- package/lib/v2/misskey/radar.js +35 -0
- package/lib/v2/misskey/router.js +3 -0
- package/lib/v2/misskey/templates/note.art +23 -0
- package/lib/v2/misskey/utils.js +31 -0
- package/lib/v2/mixcloud/index.js +130 -0
- package/lib/v2/mixcloud/maintainer.js +3 -0
- package/lib/v2/mixcloud/queries.js +1520 -0
- package/lib/v2/mixcloud/radar.js +37 -0
- package/lib/v2/mixcloud/router.js +3 -0
- package/lib/v2/modelscope/community.js +55 -0
- package/lib/v2/modelscope/datasets.js +55 -0
- package/lib/v2/modelscope/maintainer.js +6 -0
- package/lib/v2/modelscope/models.js +45 -0
- package/lib/v2/modelscope/radar.js +33 -0
- package/lib/v2/modelscope/router.js +6 -0
- package/lib/v2/modelscope/studios.js +57 -0
- package/lib/v2/modelscope/templates/community.art +11 -0
- package/lib/v2/modelscope/templates/desc.art +9 -0
- 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/myfigurecollection/activity.js +5 -0
- package/lib/v2/myfigurecollection/index.js +4 -0
- package/lib/v2/mysql/release.js +9 -2
- 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/nbd/index.js +6 -6
- package/lib/v2/nber/index.js +48 -0
- package/lib/v2/nber/maintainer.js +4 -0
- package/lib/v2/nber/radar.js +19 -0
- package/lib/v2/nber/router.js +4 -0
- package/lib/v2/nber/template/description.art +6 -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/newzmz/index.js +79 -0
- package/lib/v2/newzmz/maintainer.js +4 -0
- package/lib/v2/newzmz/radar.js +19 -0
- package/lib/v2/newzmz/router.js +4 -0
- package/lib/v2/newzmz/view.js +42 -0
- package/lib/v2/nextapple/realtime.js +1 -1
- package/lib/v2/nhentai/maintainer.js +4 -0
- package/lib/v2/nhentai/other.js +30 -0
- package/lib/v2/nhentai/radar.js +19 -0
- package/lib/v2/nhentai/router.js +4 -0
- package/lib/v2/nhentai/search.js +23 -0
- package/lib/v2/nhentai/templates/desc.art +4 -0
- package/lib/v2/nhentai/util.js +146 -0
- package/lib/v2/nikkei/asia/index.js +53 -0
- package/lib/v2/nikkei/cn/index.js +91 -0
- package/lib/v2/nikkei/index.js +36 -0
- package/lib/v2/nikkei/maintainer.js +6 -0
- package/lib/v2/nikkei/news.js +90 -0
- package/lib/v2/nikkei/radar.js +59 -0
- package/lib/v2/nikkei/router.js +7 -0
- package/lib/v2/nikkei/templates/news.art +4 -0
- 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/v2/nintendo/system-update.js +38 -0
- 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/v2/nintendo/utils.js +170 -0
- package/lib/v2/njnu/ceai/utils.js +3 -3
- package/lib/v2/njnu/jwc/utils.js +3 -3
- package/lib/v2/nju/hosptial.js +41 -0
- package/lib/v2/nju/itsc.js +46 -0
- package/lib/v2/nju/maintainer.js +2 -0
- package/lib/v2/nju/radar.js +16 -0
- package/lib/v2/nju/router.js +2 -0
- package/lib/v2/njxzc/home.js +26 -0
- package/lib/v2/njxzc/lib.js +26 -0
- package/lib/v2/njxzc/maintainer.js +4 -0
- package/lib/v2/njxzc/radar.js +21 -0
- package/lib/v2/njxzc/router.js +6 -0
- package/lib/v2/njxzc/utils/index.js +48 -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 +14 -4
- package/lib/v2/nua/gra.js +1 -1
- package/lib/v2/nua/index.js +1 -1
- package/lib/v2/nua/lib.js +39 -0
- package/lib/v2/nua/maintainer.js +1 -0
- package/lib/v2/nua/radar.js +8 -0
- package/lib/v2/nua/router.js +1 -0
- package/lib/v2/nua/sxw.js +1 -1
- package/lib/v2/nua/utils.js +46 -31
- package/lib/v2/nuaa/utils/pypasswaf.js +3 -2
- 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/activity.js +13 -14
- package/lib/v2/odaily/post.js +15 -20
- package/lib/v2/odaily/user.js +14 -15
- package/lib/v2/odaily/utils.js +1 -1
- package/lib/v2/oilchem/index.js +20 -21
- package/lib/v2/oncc/maintainer.js +1 -0
- package/lib/v2/oncc/money18.js +115 -0
- package/lib/v2/oncc/radar.js +13 -5
- package/lib/v2/oncc/router.js +1 -0
- package/lib/v2/oncc/templates/money18.art +6 -0
- package/lib/v2/openai/blog.js +97 -0
- package/lib/v2/openai/maintainer.js +3 -0
- package/lib/v2/openai/radar.js +19 -0
- package/lib/v2/openai/router.js +3 -0
- package/lib/v2/openai/templates/article.art +2 -0
- package/lib/v2/oshwhub/explore.js +116 -0
- package/lib/v2/oshwhub/maintainer.js +3 -0
- package/lib/v2/oshwhub/radar.js +16 -0
- package/lib/v2/oshwhub/router.js +3 -0
- package/lib/v2/oshwhub/templates/description.art +58 -0
- 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/patagonia/maintainer.js +3 -0
- package/lib/v2/patagonia/new-arrivals.js +61 -0
- package/lib/v2/patagonia/radar.js +23 -0
- package/lib/v2/patagonia/router.js +3 -0
- package/lib/v2/patagonia/templates/product-description.art +4 -0
- package/lib/v2/people/index.js +4 -0
- package/lib/v2/people/router.js +1 -1
- package/lib/v2/phoronix/index.js +107 -0
- package/lib/v2/phoronix/maintainer.js +3 -0
- package/lib/v2/phoronix/radar.js +13 -0
- package/lib/v2/phoronix/router.js +3 -0
- package/lib/v2/picnob/maintainer.js +3 -0
- package/lib/v2/picnob/radar.js +13 -0
- package/lib/v2/picnob/router.js +3 -0
- package/lib/v2/picnob/templates/desc.art +13 -0
- package/lib/v2/picnob/user.js +61 -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/v2/pikabu/community.js +37 -0
- package/lib/v2/pikabu/maintainer.js +5 -0
- package/lib/v2/pikabu/radar.js +25 -0
- package/lib/v2/pikabu/router.js +4 -0
- package/lib/v2/pikabu/templates/video.art +8 -0
- package/lib/v2/pikabu/user.js +46 -0
- package/lib/v2/pikabu/utils.js +43 -0
- package/lib/v2/pixabay/maintainer.js +3 -0
- package/lib/v2/pixabay/radar.js +13 -0
- package/lib/v2/pixabay/router.js +3 -0
- package/lib/v2/pixabay/search.js +50 -0
- package/lib/v2/pixabay/templates/img.art +1 -0
- package/lib/v2/pixiv/api/getRanking.js +1 -1
- package/lib/v2/pixiv/novels.js +32 -23
- package/lib/v2/pixiv/ranking.js +6 -0
- package/lib/v2/piyao/jrpy.js +39 -0
- package/lib/v2/piyao/maintainer.js +3 -0
- package/lib/v2/piyao/radar.js +13 -0
- package/lib/v2/piyao/router.js +3 -0
- package/lib/v2/pku/ss/admission.js +4 -42
- package/lib/v2/pku/ss/common.js +37 -0
- package/lib/v2/pku/ss/notice.js +4 -42
- package/lib/v2/pku/ss/pg_admin.js +4 -42
- package/lib/v2/pnas/index.js +101 -0
- package/lib/v2/pnas/maintainer.js +3 -0
- package/lib/v2/pnas/radar.js +13 -0
- package/lib/v2/pnas/router.js +3 -0
- package/lib/v2/pnas/templates/article.art +8 -0
- package/lib/v2/producthunt/templates/descImg.art +2 -2
- package/lib/v2/pts/index.js +4 -1
- package/lib/v2/qdaily/index.js +87 -0
- package/lib/v2/qdaily/maintainer.js +3 -0
- package/lib/v2/qdaily/radar.js +25 -0
- package/lib/v2/qdaily/router.js +3 -0
- package/lib/v2/qdaily/templates/article.art +5 -0
- package/lib/v2/qianp/maintainer.js +3 -0
- package/lib/v2/qianp/news.js +48 -0
- package/lib/v2/qianp/radar.js +13 -0
- package/lib/v2/qianp/router.js +3 -0
- package/lib/v2/qingting/channel.js +32 -0
- 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/qiyoujiage/maintainer.js +3 -0
- package/lib/v2/qiyoujiage/price.js +28 -0
- package/lib/v2/qiyoujiage/radar.js +13 -0
- package/lib/v2/qiyoujiage/router.js +3 -0
- 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/qoo-app/apps/card.js +38 -0
- package/lib/v2/qoo-app/apps/comment.js +43 -0
- package/lib/v2/qoo-app/apps/note.js +47 -0
- package/lib/v2/qoo-app/apps/post.js +51 -0
- package/lib/v2/qoo-app/maintainer.js +11 -0
- package/lib/v2/qoo-app/news.js +41 -0
- package/lib/v2/qoo-app/notes/note.js +43 -0
- package/lib/v2/qoo-app/notes/topic.js +20 -0
- package/lib/v2/qoo-app/notes/user.js +20 -0
- package/lib/v2/qoo-app/radar.js +73 -0
- package/lib/v2/qoo-app/router.js +11 -0
- package/lib/v2/qoo-app/templates/comment.art +3 -0
- package/lib/v2/qoo-app/templates/note.art +5 -0
- package/lib/v2/qoo-app/user/appComment.js +41 -0
- package/lib/v2/qoo-app/utils.js +57 -0
- package/lib/v2/qq/fact/index.js +61 -0
- package/lib/v2/qq/maintainer.js +1 -0
- package/lib/v2/qq/radar.js +8 -0
- package/lib/v2/qq/router.js +1 -0
- package/lib/v2/qq/templates/article.art +19 -0
- 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/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/readhub/index.js +3 -3
- 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/rodong/maintainer.js +3 -0
- package/lib/v2/rodong/news.js +45 -0
- package/lib/v2/rodong/radar.js +13 -0
- package/lib/v2/rodong/router.js +3 -0
- package/lib/v2/ruancan/category.js +8 -0
- package/lib/v2/ruancan/index.js +3 -55
- package/lib/v2/ruancan/maintainer.js +3 -3
- package/lib/v2/ruancan/radar.js +12 -6
- package/lib/v2/ruancan/router.js +4 -1
- package/lib/v2/ruancan/search.js +8 -0
- package/lib/v2/ruancan/user.js +8 -0
- package/lib/v2/ruancan/utils.js +66 -0
- package/lib/v2/saraba1st/digest.js +79 -0
- package/lib/v2/saraba1st/maintainer.js +1 -0
- package/lib/v2/saraba1st/radar.js +12 -3
- package/lib/v2/saraba1st/router.js +1 -0
- package/lib/v2/saraba1st/templates/digest.art +5 -0
- package/lib/v2/science/current.js +1 -0
- package/lib/v2/science/maintainer.js +3 -3
- package/lib/v2/science/utils.js +2 -2
- package/lib/v2/sciencedirect/journal.js +1 -1
- package/lib/v2/scitation/journal.js +4 -0
- package/lib/v2/scitation/section.js +4 -0
- package/lib/v2/scmp/index.js +114 -0
- 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/v2/sdu/extractor/index.js +5 -5
- package/lib/v2/sdu/extractor/sdrj.js +2 -2
- package/lib/v2/sdu/extractor/view.js +2 -2
- package/lib/v2/sdu/extractor/wh/jwc.js +2 -2
- package/lib/v2/sdu/extractor/wh/news.js +2 -2
- package/lib/v2/sdu/wh/jwc.js +1 -1
- package/lib/v2/sdu/wh/news.js +1 -1
- package/lib/v2/sehuatang/index.js +131 -0
- package/lib/v2/sehuatang/radar.js +19 -0
- package/lib/v2/shiep/index.js +91 -0
- package/lib/v2/shiep/maintainer.js +3 -0
- package/lib/v2/shiep/radar.js +181 -0
- package/lib/v2/shiep/router.js +3 -0
- package/lib/v2/shiep/templates/description.art +1 -0
- package/lib/v2/shmeea/self-study.js +4 -4
- 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/shoppingdesign/maintainer.js +3 -0
- package/lib/v2/shoppingdesign/posts.js +43 -0
- package/lib/v2/shoppingdesign/radar.js +13 -0
- package/lib/v2/shoppingdesign/router.js +3 -0
- package/lib/v2/sicau/dky.js +12 -13
- package/lib/v2/sicau/yan.js +13 -14
- 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/skysports/maintainer.js +3 -0
- package/lib/v2/skysports/news.js +55 -0
- package/lib/v2/skysports/radar.js +13 -0
- package/lib/v2/skysports/router.js +3 -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 +56 -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/v2/smzdm/ranking.js +56 -0
- package/lib/v2/smzdm/router.js +8 -0
- package/lib/v2/snowpeak/maintainer.js +3 -0
- package/lib/v2/snowpeak/radar.js +13 -0
- package/lib/v2/snowpeak/router.js +3 -0
- package/lib/v2/snowpeak/templates/new-arrivals.art +11 -0
- package/lib/v2/snowpeak/us-new-arrivals.js +45 -0
- package/lib/v2/solidot/main.js +5 -0
- package/lib/v2/sony/downloads.js +47 -0
- package/lib/v2/sony/maintainer.js +3 -0
- package/lib/v2/sony/radar.js +13 -0
- package/lib/v2/sony/router.js +3 -0
- package/lib/v2/sony/templates/software-description.art +4 -0
- package/lib/v2/sse/maintainer.js +1 -1
- package/lib/v2/sspai/bookmarks.js +41 -0
- package/lib/v2/sspai/maintainer.js +1 -0
- package/lib/v2/sspai/radar.js +6 -0
- package/lib/v2/sspai/router.js +1 -0
- package/lib/v2/stcn/index.js +25 -32
- package/lib/v2/stcn/maintainer.js +0 -3
- package/lib/v2/stcn/radar.js +4 -22
- package/lib/v2/stcn/router.js +1 -1
- package/lib/v2/swjtu/jtys/yjs.js +55 -0
- package/lib/v2/swjtu/jwc.js +67 -0
- package/lib/v2/swjtu/jyzpxx.js +28 -0
- package/lib/v2/swjtu/maintainer.js +6 -0
- package/lib/v2/swjtu/radar.js +37 -0
- package/lib/v2/swjtu/router.js +6 -0
- package/lib/v2/swjtu/templates/job_desc.art +19 -0
- package/lib/v2/swjtu/templates/job_detail.art +21 -0
- package/lib/v2/swjtu/utils.js +33 -0
- package/lib/v2/swjtu/xg.js +79 -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/techcrunch/maintainer.js +3 -0
- package/lib/v2/techcrunch/news.js +38 -0
- package/lib/v2/techcrunch/radar.js +13 -0
- package/lib/v2/techcrunch/router.js +3 -0
- package/lib/v2/telegram/channel.js +78 -42
- package/lib/v2/tencent/maintainer.js +3 -0
- package/lib/v2/tencent/news/author.js +44 -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 +14 -0
- package/lib/v2/tencent/router.js +3 -0
- package/lib/v2/tencent/templates/coronavirus/chinaTotal.art +6 -0
- package/lib/v2/tencent/templates/coronavirus/data.art +4 -0
- package/lib/v2/test/index.js +54 -0
- package/lib/v2/theatlantic/maintainer.js +3 -0
- package/lib/v2/theatlantic/news.js +32 -0
- package/lib/v2/theatlantic/radar.js +13 -0
- package/lib/v2/theatlantic/router.js +3 -0
- package/lib/v2/theatlantic/templates/article-description.art +19 -0
- package/lib/v2/theatlantic/utils.js +54 -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/thepaper/channel.js +11 -5
- package/lib/v2/thepaper/list.js +11 -5
- package/lib/v2/thepaper/maintainer.js +2 -1
- package/lib/v2/thepaper/radar.js +6 -0
- package/lib/v2/thepaper/router.js +2 -1
- package/lib/v2/thepaper/sidebar.js +24 -0
- package/lib/v2/thepaper/utils.js +60 -70
- 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/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/tingshuitz/xiaoshan.js +3 -3
- package/lib/v2/twitter/utils.js +46 -37
- package/lib/v2/twitter/web-api/twitter-api.js +24 -20
- package/lib/v2/twreporter/category.js +17 -8
- package/lib/v2/typora/changelog-dev.js +31 -0
- package/lib/v2/typora/changelog.js +40 -0
- package/lib/v2/typora/maintainer.js +4 -0
- package/lib/v2/typora/radar.js +21 -0
- package/lib/v2/typora/router.js +4 -0
- package/lib/v2/u9a9/index.js +66 -0
- package/lib/v2/u9a9/maintainer.js +4 -0
- package/lib/v2/u9a9/radar.js +19 -0
- package/lib/v2/u9a9/router.js +4 -0
- package/lib/v2/uber/blog.js +58 -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/uchicago/current.js +80 -0
- package/lib/v2/uchicago/maintainer.js +3 -0
- package/lib/v2/uchicago/radar.js +13 -0
- package/lib/v2/uchicago/router.js +3 -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 +2 -0
- package/lib/v2/udn/radar.js +15 -1
- package/lib/v2/udn/router.js +2 -0
- package/lib/v2/uestc/auto.js +45 -0
- package/lib/v2/uestc/cqe.js +60 -0
- package/lib/v2/uestc/gr.js +48 -0
- package/lib/v2/uestc/jwc.js +52 -0
- package/lib/v2/uestc/maintainer.js +12 -0
- package/lib/v2/uestc/news.js +51 -0
- package/lib/v2/uestc/radar.js +69 -0
- package/lib/v2/uestc/router.js +12 -0
- package/lib/v2/uestc/scse.js +90 -0
- package/lib/v2/uestc/sice.js +46 -0
- package/lib/v2/uestc/sise.js +80 -0
- package/lib/v2/uptimerobot/maintainer.js +3 -0
- package/lib/v2/uptimerobot/radar.js +13 -0
- package/lib/v2/uptimerobot/router.js +3 -0
- package/lib/v2/uptimerobot/rss.js +126 -0
- package/lib/v2/uptimerobot/templates/rss.art +20 -0
- package/lib/v2/urbandictionary/maintainer.js +3 -0
- package/lib/v2/urbandictionary/radar.js +13 -0
- package/lib/v2/urbandictionary/random.js +24 -0
- package/lib/v2/urbandictionary/router.js +3 -0
- package/lib/v2/urbandictionary/templates/definition.art +11 -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/v1tx/index.js +36 -0
- package/lib/v2/v1tx/maintainer.js +4 -0
- package/lib/v2/v1tx/radar.js +13 -0
- package/lib/v2/v1tx/router.js +3 -0
- package/lib/v2/vcb-s/category.js +51 -0
- package/lib/v2/vcb-s/index.js +39 -0
- package/lib/v2/vcb-s/maintainer.js +4 -0
- package/lib/v2/vcb-s/radar.js +19 -0
- package/lib/v2/vcb-s/router.js +4 -0
- package/lib/v2/vcb-s/templates/post.art +9 -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/vocus/maintainer.js +4 -0
- package/lib/v2/vocus/publication.js +42 -0
- package/lib/v2/vocus/radar.js +19 -0
- package/lib/v2/vocus/router.js +4 -0
- package/lib/v2/vocus/user.js +43 -0
- package/lib/v2/vocus/utils.js +51 -0
- package/lib/v2/wallstreetcn/live.js +7 -1
- package/lib/v2/wallstreetcn/templates/description.art +11 -0
- package/lib/v2/wanqu/maintainer.js +3 -0
- package/lib/v2/wanqu/news.js +26 -0
- package/lib/v2/wanqu/radar.js +13 -0
- package/lib/v2/wanqu/router.js +3 -0
- package/lib/v2/warthunder/news.js +1 -1
- package/lib/v2/wechat/ce.js +2 -2
- package/lib/v2/wechat/data258.js +1 -1
- package/lib/v2/wechat/ershcimi.js +1 -1
- package/lib/v2/wechat/feeddd.js +1 -1
- package/lib/v2/wechat/feeds.js +1 -1
- package/lib/v2/wechat/maintainer.js +1 -1
- package/lib/v2/wechat/mp.js +2 -2
- package/lib/v2/wechat/msgalbum.js +2 -2
- package/lib/v2/wechat/radar.js +9 -9
- package/lib/v2/wechat/router.js +1 -1
- package/lib/v2/wechat/tgchannel.js +5 -5
- package/lib/v2/wechat/wechat2rss.js +28 -0
- package/lib/v2/weekendhk/maintainer.js +4 -0
- package/lib/v2/weekendhk/posts.js +29 -0
- package/lib/v2/weekendhk/radar.js +13 -0
- package/lib/v2/weekendhk/router.js +3 -0
- package/lib/v2/weibo/keyword.js +55 -0
- 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/v2/weibo/search/hot.js +35 -0
- package/lib/v2/weibo/super_index.js +62 -0
- package/lib/v2/weibo/timeline.js +162 -0
- package/lib/v2/weibo/user.js +155 -0
- package/lib/v2/weibo/utils.js +458 -0
- package/lib/v2/wfu/news.js +1 -1
- package/lib/v2/who/news-room.js +17 -18
- package/lib/v2/who/news.js +11 -12
- 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/wnacg/index.js +110 -0
- package/lib/v2/wnacg/maintainer.js +5 -0
- package/lib/v2/wnacg/radar.js +25 -0
- package/lib/v2/wnacg/router.js +5 -0
- package/lib/v2/wnacg/templates/manga.art +9 -0
- package/lib/v2/woshipm/bookmarks.js +34 -0
- package/lib/v2/woshipm/latest.js +27 -0
- package/lib/v2/woshipm/maintainer.js +7 -0
- package/lib/v2/woshipm/popular.js +33 -0
- package/lib/v2/woshipm/radar.js +39 -0
- package/lib/v2/woshipm/router.js +7 -0
- package/lib/v2/woshipm/user_article.js +37 -0
- package/lib/v2/woshipm/utils.js +21 -0
- package/lib/v2/woshipm/wen.js +36 -0
- package/lib/v2/wp-china/news.js +12 -13
- package/lib/v2/wsj/news.js +51 -0
- package/lib/v2/wsj/radar.js +2 -2
- package/lib/v2/wsj/router.js +1 -1
- package/lib/v2/wsj/templates/article-description.art +6 -0
- package/lib/v2/wsj/utils.js +121 -0
- package/lib/v2/wxkol/maintainer.js +3 -0
- package/lib/v2/wxkol/radar.js +13 -0
- package/lib/v2/wxkol/router.js +3 -0
- package/lib/v2/wxkol/show.js +80 -0
- package/lib/v2/wyzxwk/article.js +20 -21
- package/lib/v2/x6d/index.js +59 -0
- package/lib/v2/x6d/maintainer.js +3 -0
- package/lib/v2/x6d/radar.js +13 -0
- package/lib/v2/x6d/router.js +3 -0
- package/lib/v2/xaufe/jiaowu.js +72 -0
- package/lib/v2/xaufe/maintainer.js +3 -0
- package/lib/v2/xaufe/radar.js +11 -0
- package/lib/v2/xaufe/router.js +3 -0
- package/lib/v2/xiaohongshu/board.js +4 -2
- package/lib/v2/xiaohongshu/maintainer.js +2 -1
- package/lib/v2/xiaohongshu/radar.js +2 -2
- package/lib/v2/xiaohongshu/user.js +20 -41
- package/lib/v2/xiaohongshu/util.js +44 -7
- package/lib/v2/xiaomiyoupin/crowdfunding.js +43 -0
- package/lib/v2/xiaomiyoupin/latest.js +15 -0
- package/lib/v2/xiaomiyoupin/maintainer.js +4 -0
- package/lib/v2/xiaomiyoupin/radar.js +19 -0
- package/lib/v2/xiaomiyoupin/router.js +4 -0
- package/lib/v2/xiaomiyoupin/templates/goods.art +27 -0
- package/lib/v2/xiaomiyoupin/utils.js +21 -0
- package/lib/v2/xkb/index.js +54 -0
- package/lib/v2/xkb/maintainer.js +3 -0
- package/lib/v2/xkb/radar.js +13 -0
- package/lib/v2/xkb/router.js +3 -0
- package/lib/v2/xkb/templates/description.art +3 -0
- package/lib/v2/xsijishe/forum.js +61 -0
- package/lib/v2/xsijishe/maintainer.js +3 -0
- package/lib/v2/xsijishe/radar.js +19 -0
- package/lib/v2/xsijishe/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/xunhupay/index.js +24 -0
- package/lib/v2/xunhupay/maintainer.js +3 -0
- package/lib/v2/xunhupay/radar.js +13 -0
- package/lib/v2/xunhupay/router.js +3 -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/yahoo/maintainer.js +3 -0
- package/lib/v2/yahoo/news/index.js +46 -0
- package/lib/v2/yahoo/radar.js +13 -0
- package/lib/v2/yahoo/router.js +3 -0
- package/lib/v2/ycwb/index.js +82 -0
- package/lib/v2/ycwb/maintainer.js +3 -0
- package/lib/v2/ycwb/radar.js +12 -0
- package/lib/v2/ycwb/router.js +3 -0
- package/lib/v2/ycwb/templates/description.art +7 -0
- package/lib/v2/yicai/utils.js +1 -1
- 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 +2 -1
- package/lib/v2/youtube/channel.js +3 -4
- package/lib/v2/youtube/charts.js +97 -0
- package/lib/v2/youtube/community.js +56 -0
- package/lib/v2/youtube/custom.js +45 -0
- package/lib/v2/youtube/maintainer.js +3 -0
- package/lib/v2/youtube/radar.js +20 -0
- package/lib/v2/youtube/router.js +3 -0
- package/lib/v2/youtube/templates/community.art +17 -0
- package/lib/v2/youtube/user.js +16 -4
- package/lib/v2/youtube/utils.js +3 -1
- package/lib/v2/yuque/book.js +93 -0
- package/lib/v2/yuque/maintainer.js +3 -0
- package/lib/v2/yuque/radar.js +13 -0
- package/lib/v2/yuque/router.js +3 -0
- package/lib/v2/yuque/utils.js +50 -0
- package/lib/v2/yxrb/home.js +61 -0
- package/lib/v2/yxrb/maintainer.js +3 -0
- package/lib/v2/yxrb/radar.js +13 -0
- package/lib/v2/yxrb/router.js +3 -0
- package/lib/v2/zagg/maintainer.js +3 -0
- package/lib/v2/zagg/new-arrivals.js +52 -0
- package/lib/v2/zagg/radar.js +16 -0
- package/lib/v2/zagg/router.js +3 -0
- package/lib/v2/zagg/templates/new-arrivals.art +3 -0
- package/lib/v2/zaozao/article.js +36 -0
- package/lib/v2/zaozao/maintainer.js +3 -0
- package/lib/v2/zaozao/radar.js +13 -0
- package/lib/v2/zaozao/router.js +3 -0
- package/lib/v2/zcmu/jwc/index.js +41 -0
- package/lib/v2/zcmu/maintainer.js +4 -0
- package/lib/v2/zcmu/radar.js +87 -0
- package/lib/v2/zcmu/router.js +4 -0
- package/lib/v2/zcmu/yxy/index.js +42 -0
- package/lib/v2/zcool/user.js +4 -0
- package/lib/v2/zhibo8/forum.js +15 -16
- package/lib/v2/zhibo8/luxiang.js +38 -0
- package/lib/v2/zhibo8/maintainer.js +1 -0
- package/lib/v2/zhibo8/more.js +12 -17
- package/lib/v2/zhibo8/post.js +28 -18
- package/lib/v2/zhibo8/radar.js +8 -0
- package/lib/v2/zhibo8/router.js +1 -0
- package/lib/v2/zhihu/activities.js +6 -10
- 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 +21 -16
- package/lib/v2/zhihu/question.js +3 -3
- package/lib/v2/zhihu/utils.js +1 -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/zhiy/letter.js +34 -0
- package/lib/v2/zhiy/maintainer.js +4 -0
- package/lib/v2/zhiy/post.js +69 -0
- package/lib/v2/zhiy/radar.js +19 -0
- package/lib/v2/zhiy/router.js +4 -0
- package/lib/v2/zhiy/templates/post.art +12 -0
- package/lib/v2/zhiy/utils.js +13 -0
- package/lib/v2/zhubai/index.js +4 -0
- package/lib/v2/zjol/maintainer.js +3 -0
- package/lib/v2/zjol/paper.js +88 -0
- package/lib/v2/zjol/radar.js +61 -0
- package/lib/v2/zjol/router.js +3 -0
- package/lib/v2/zuzhirenshi/index.js +87 -0
- package/lib/v2/zuzhirenshi/maintainer.js +3 -0
- package/lib/v2/zuzhirenshi/radar.js +13 -0
- package/lib/v2/zuzhirenshi/router.js +3 -0
- package/lib/views/json.js +46 -0
- package/package.json +55 -49
- package/lib/routes/aljazeera/news.js +0 -38
- package/lib/routes/apkpure/versions.js +0 -23
- package/lib/routes/baidu/topwords.js +0 -38
- package/lib/routes/bjp/apod.js +0 -48
- package/lib/routes/blogs/foreverblog.js +0 -33
- package/lib/routes/caixin/article.js +0 -46
- package/lib/routes/caixin/blog.js +0 -58
- package/lib/routes/caixin/category.js +0 -44
- package/lib/routes/caixin/database.js +0 -48
- package/lib/routes/caixin/latest.js +0 -75
- package/lib/routes/caixin/yxnews.js +0 -30
- package/lib/routes/cartoonmad/comic.js +0 -69
- package/lib/routes/ccf/news.js +0 -51
- package/lib/routes/chiculture/topic.js +0 -59
- package/lib/routes/clickme/index.js +0 -76
- package/lib/routes/cls/depth.js +0 -63
- package/lib/routes/cls/telegraph.js +0 -34
- package/lib/routes/comicskingdom/index.js +0 -61
- package/lib/routes/coolapk/dyh.js +0 -41
- package/lib/routes/coolapk/hot.js +0 -99
- package/lib/routes/coolapk/huati.js +0 -26
- package/lib/routes/coolapk/toutiao.js +0 -31
- package/lib/routes/coolapk/tuwen.js +0 -33
- package/lib/routes/coolapk/userDynamic.js +0 -37
- package/lib/routes/coolapk/utils.js +0 -151
- package/lib/routes/copymanga/comic.js +0 -74
- package/lib/routes/csrc/auditstatus.js +0 -61
- package/lib/routes/csrc/fashenwei.js +0 -42
- package/lib/routes/csrc/news.js +0 -45
- package/lib/routes/dedao/index.js +0 -43
- package/lib/routes/dedao/knowledge.js +0 -78
- package/lib/routes/dedao/list.js +0 -60
- package/lib/routes/dlsite/campaign.js +0 -176
- package/lib/routes/dlsite/new.js +0 -109
- package/lib/routes/docschina/jsweekly.js +0 -47
- package/lib/routes/eleduck/jobs.js +0 -38
- package/lib/routes/fzdm/manhua.js +0 -62
- 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/gq/tw/index.js +0 -66
- package/lib/routes/ikea/uk/new.js +0 -20
- package/lib/routes/ikea/uk/offer.js +0 -64
- package/lib/routes/instagram/index.js +0 -131
- package/lib/routes/instagram/utils.js +0 -28
- package/lib/routes/iqiyi/dongman.js +0 -42
- package/lib/routes/jinshi/index.js +0 -35
- package/lib/routes/kuaidi100/supported_company.js +0 -17
- package/lib/routes/kuaidi100/utils.js +0 -223
- package/lib/routes/langlive/room.js +0 -33
- package/lib/routes/linkresearcher/index.js +0 -65
- 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/mi/youpin/crowdfunding.js +0 -39
- package/lib/routes/mi/youpin/new.js +0 -26
- package/lib/routes/minecraft/version.js +0 -34
- package/lib/routes/nautilus/topics.js +0 -45
- package/lib/routes/ncm/artist.js +0 -33
- package/lib/routes/ncm/djradio.js +0 -80
- package/lib/routes/ncm/playlist.js +0 -45
- package/lib/routes/ncm/userplaylist.js +0 -58
- package/lib/routes/ncm/userplayrecords.js +0 -57
- package/lib/routes/netease/ds.js +0 -41
- package/lib/routes/netease/dy.js +0 -54
- package/lib/routes/netease/dy2.js +0 -62
- package/lib/routes/netease/news/special.js +0 -121
- package/lib/routes/netease/open/latest.js +0 -68
- package/lib/routes/netease/open/vip.js +0 -39
- package/lib/routes/newzmz/index.js +0 -78
- package/lib/routes/newzmz/view.js +0 -42
- package/lib/routes/nhentai/other.js +0 -25
- package/lib/routes/nhentai/search.js +0 -16
- package/lib/routes/nhentai/util.js +0 -136
- package/lib/routes/nikkei/index.js +0 -34
- package/lib/routes/nikkei/news.js +0 -155
- 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/nintendo/system-update.js +0 -38
- package/lib/routes/nintendo/utils.js +0 -186
- package/lib/routes/novel/shuquge.js +0 -63
- package/lib/routes/oilprice/index.js +0 -66
- package/lib/routes/openai/blog.js +0 -52
- package/lib/routes/phoronix/index.js +0 -111
- package/lib/routes/pnas/index.js +0 -66
- package/lib/routes/qdaily/index.js +0 -88
- package/lib/routes/qingting/channel.js +0 -36
- package/lib/routes/researchgate/publications.js +0 -60
- package/lib/routes/scmp/index.js +0 -115
- package/lib/routes/skysports/news.js +0 -53
- 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/smzdm/ranking.js +0 -39
- package/lib/routes/ssmh/category.js +0 -50
- package/lib/routes/ssmh/index.js +0 -32
- package/lib/routes/swjtu/tl/news.js +0 -35
- package/lib/routes/tencent/factcheck/index.js +0 -51
- package/lib/routes/tencent/news/author.js +0 -59
- package/lib/routes/transferwise/pair.js +0 -64
- package/lib/routes/typora/changelog-dev.js +0 -35
- package/lib/routes/typora/changelog.js +0 -60
- package/lib/routes/udn/global.js +0 -61
- package/lib/routes/universities/cas/cg/index.js +0 -50
- package/lib/routes/universities/cas/iee/kydt.js +0 -46
- package/lib/routes/universities/cas/mesalab/kb.js +0 -45
- package/lib/routes/universities/cas/sim/academic.js +0 -59
- package/lib/routes/universities/ecnuyjs/ecnuyjs.js +0 -23
- package/lib/routes/universities/hitsz/article.js +0 -43
- package/lib/routes/universities/shiep/index.js +0 -95
- package/lib/routes/universities/shmtu/jwc.js +0 -75
- package/lib/routes/universities/shmtu/www.js +0 -61
- package/lib/routes/universities/uestc/auto.js +0 -113
- package/lib/routes/universities/uestc/cqe.js +0 -40
- package/lib/routes/universities/uestc/cs.js +0 -119
- package/lib/routes/universities/uestc/gr.js +0 -46
- package/lib/routes/universities/uestc/is.js +0 -102
- package/lib/routes/universities/uestc/jwc.js +0 -38
- package/lib/routes/universities/uestc/news.js +0 -33
- package/lib/routes/universities/uestc/sice.js +0 -43
- package/lib/routes/verge/index.js +0 -88
- package/lib/routes/vocus/publication.js +0 -19
- package/lib/routes/vocus/utils.js +0 -29
- package/lib/routes/weibo/keyword.js +0 -55
- package/lib/routes/weibo/oasis/user.js +0 -17
- package/lib/routes/weibo/search/hot.js +0 -33
- package/lib/routes/weibo/super_index.js +0 -62
- package/lib/routes/weibo/timeline.js +0 -162
- package/lib/routes/weibo/user.js +0 -155
- package/lib/routes/weibo/utils.js +0 -422
- package/lib/routes/woshipm/bookmarks.js +0 -45
- package/lib/routes/woshipm/latest.js +0 -45
- package/lib/routes/woshipm/popular.js +0 -38
- package/lib/routes/woshipm/user_article.js +0 -43
- package/lib/routes/woshipm/wen.js +0 -39
- package/lib/routes/x6d/index.js +0 -64
- package/lib/routes/yahoo-news/index.js +0 -44
- package/lib/routes/yuanshen/index.js +0 -70
- package/lib/routes/yuque/doc.js +0 -60
- package/lib/utils/torrent.js +0 -163
- package/lib/v2/acm-ecnu/contest.js +0 -44
- 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/cbnc/rss.js +0 -54
- package/lib/v2/ccfcv/index.js +0 -68
- package/lib/v2/ccfcv/maintainer.js +0 -3
- package/lib/v2/ccfcv/radar.js +0 -25
- package/lib/v2/ccfcv/router.js +0 -3
- package/lib/v2/cnbeta/index.js +0 -16
- package/lib/v2/csu/job.js +0 -34
- package/lib/v2/dsndsht23/index.js +0 -121
- package/lib/v2/dsndsht23/radar.js +0 -19
- 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/gx/card.js +0 -47
- package/lib/v2/heu/gx/list.js +0 -73
- package/lib/v2/heu/job/bigemploy.js +0 -42
- package/lib/v2/heu/job/calendar.js +0 -54
- package/lib/v2/heu/job/list.js +0 -70
- package/lib/v2/heu/maintainer.js +0 -8
- package/lib/v2/heu/radar.js +0 -73
- package/lib/v2/heu/router.js +0 -9
- package/lib/v2/heu/uae/list.js +0 -62
- package/lib/v2/heu/yjsy/list.js +0 -65
- package/lib/v2/hkepc/templates/image.art +0 -1
- package/lib/v2/mp4er/index.js +0 -83
- package/lib/v2/mp4er/maintainer.js +0 -3
- package/lib/v2/mp4er/radar.js +0 -13
- package/lib/v2/mp4er/router.js +0 -3
- package/lib/v2/netease/maintainer.js +0 -6
- package/lib/v2/netease/radar.js +0 -37
- package/lib/v2/netease/rank.js +0 -154
- package/lib/v2/netease/renjian.js +0 -74
- package/lib/v2/netease/router.js +0 -6
- package/lib/v2/netease/today.js +0 -55
- package/lib/v2/nikkei-asia/index.js +0 -40
- package/lib/v2/nikkei-asia/maintainer.js +0 -3
- package/lib/v2/nikkei-asia/radar.js +0 -13
- package/lib/v2/nikkei-cn/index.js +0 -85
- package/lib/v2/nikkei-cn/maintainer.js +0 -3
- package/lib/v2/nikkei-cn/radar.js +0 -21
- package/lib/v2/nikkei-cn/router.js +0 -3
- package/lib/v2/radio/radio.js +0 -50
- package/lib/v2/wechat/wemp.js +0 -58
- package/lib/v2/wsj/index.js +0 -141
- package/lib/v2/zhihu/execlib/g_encrypt.js +0 -407
- package/lib/v2/zhihu/execlib/jsencrypt.js +0 -379
- /package/lib/v2/{netease → 163}/exclusive.js +0 -0
- /package/lib/v2/{netease → 163}/templates/exclusive.art +0 -0
- /package/lib/{routes/ncm/templates → v2/163/templates/music}/djradio-content.art +0 -0
- /package/lib/v2/{eprice → caai}/templates/description.art +0 -0
- /package/lib/v2/{ccfcv/templates → ccf/templates/ccfcv}/description.art +0 -0
- /package/lib/v2/{hkepc/templates → ccf/templates/tfbd}/description.art +0 -0
- /package/lib/v2/{cbnc → cnbc}/maintainer.js +0 -0
- /package/lib/v2/{cbnc → cnbc}/radar.js +0 -0
- /package/lib/v2/{cbnc → cnbc}/router.js +0 -0
- /package/lib/v2/{acm-ecnu → ecnu}/templates/description.art +0 -0
- /package/lib/v2/{nikkei-asia → fishshell}/router.js +0 -0
- /package/lib/{routes → v2}/iqiyi/video.js +0 -0
- /package/lib/{routes → v2}/kuaidi100/index.js +0 -0
- /package/lib/v2/{dsndsht23 → sehuatang}/maintainer.js +0 -0
- /package/lib/v2/{dsndsht23 → sehuatang}/router.js +0 -0
- /package/lib/v2/tesla/{price/maintainer.js → maintainer.js} +0 -0
- /package/lib/v2/tesla/{price/radar.js → radar.js} +0 -0
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
const got = require('@/utils/got');
|
|
2
|
-
const cheerio = require('cheerio');
|
|
3
|
-
const qs = require('querystring');
|
|
4
|
-
|
|
5
|
-
const baseURL = 'https://www.linkresearcher.com';
|
|
6
|
-
|
|
7
|
-
module.exports = async (ctx) => {
|
|
8
|
-
// parse params
|
|
9
|
-
const { params } = ctx.params;
|
|
10
|
-
const query = qs.parse(params);
|
|
11
|
-
|
|
12
|
-
const categoryMap = { theses: '论文', information: '新闻', careers: '职业' };
|
|
13
|
-
const category = query.category;
|
|
14
|
-
let title = categoryMap[category];
|
|
15
|
-
|
|
16
|
-
// get XSRF token from main page
|
|
17
|
-
const metaURL = `${baseURL}/${category}`;
|
|
18
|
-
const metaResponse = await got.get(metaURL);
|
|
19
|
-
const metaCapture = cheerio.load(metaResponse.data);
|
|
20
|
-
const xsrf_token = metaCapture('meta[name="_csrf"]').prop('content');
|
|
21
|
-
|
|
22
|
-
let data = { filters: { status: false } };
|
|
23
|
-
if (typeof query.subject !== 'undefined' && typeof query.columns !== 'undefined') {
|
|
24
|
-
data = { filters: { status: true, subject: query.subject, columns: query.columns } };
|
|
25
|
-
title = `${title}「${query.subject} & ${query.columns}」`;
|
|
26
|
-
} else if (typeof query.subject !== 'undefined' && typeof query.columns === 'undefined') {
|
|
27
|
-
data = { filters: { status: true, subject: query.subject } };
|
|
28
|
-
title = `${title}「${query.subject}」`;
|
|
29
|
-
} else if (typeof query.subject === 'undefined' && typeof query.columns !== 'undefined') {
|
|
30
|
-
data = { filters: { status: true, columns: query.columns } };
|
|
31
|
-
title = `${title}「${query.columns}」`;
|
|
32
|
-
}
|
|
33
|
-
data.query = query.query;
|
|
34
|
-
const dataURL = `${baseURL}/api/${category}/search?from=0&size=20&type=SEARCH`;
|
|
35
|
-
const pageResponse = await got({
|
|
36
|
-
method: 'post',
|
|
37
|
-
url: dataURL,
|
|
38
|
-
headers: {
|
|
39
|
-
'content-type': 'application/json; charset=UTF-8',
|
|
40
|
-
'x-xsrf-token': xsrf_token,
|
|
41
|
-
cookie: `XSRF-TOKEN=${xsrf_token}`,
|
|
42
|
-
},
|
|
43
|
-
data: JSON.stringify(data),
|
|
44
|
-
});
|
|
45
|
-
|
|
46
|
-
const list = pageResponse.data.hits;
|
|
47
|
-
|
|
48
|
-
const out = list.map((item) => ({
|
|
49
|
-
title: item.title,
|
|
50
|
-
description: item.content,
|
|
51
|
-
pubDate: new Date(item.createdAt).toUTCString(),
|
|
52
|
-
link: `${metaURL}/${item.id}`,
|
|
53
|
-
guid: `${metaURL}/${item.id}`,
|
|
54
|
-
doi: typeof item.identCode !== 'undefined' ? item.identCode : '',
|
|
55
|
-
author: typeof item.authors !== 'undefined' ? item.authors.join(', ') : '',
|
|
56
|
-
}));
|
|
57
|
-
|
|
58
|
-
ctx.state.data = {
|
|
59
|
-
title: `领研 | ${title}`,
|
|
60
|
-
description:
|
|
61
|
-
'领研是链接华人学者的人才及成果平台。领研为国内外高校、科研机构及科技企业提供科研人才招聘服务,也是青年研究者的职业发展指导及线上培训平台;研究者还可将自己的研究论文上传至领研,与超过五十万华人学者分享工作的最新进展。',
|
|
62
|
-
link: baseURL,
|
|
63
|
-
item: out,
|
|
64
|
-
};
|
|
65
|
-
};
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
const got = require('@/utils/got');
|
|
2
|
-
|
|
3
|
-
module.exports = async (ctx) => {
|
|
4
|
-
const rootUrl = 'https://logseq.com';
|
|
5
|
-
const currentUrl = `${rootUrl}/blog/changelog`;
|
|
6
|
-
const response = await got({
|
|
7
|
-
method: 'get',
|
|
8
|
-
url: currentUrl,
|
|
9
|
-
});
|
|
10
|
-
|
|
11
|
-
const data = response.data.split('<p class="footer">')[0];
|
|
12
|
-
|
|
13
|
-
const list = [],
|
|
14
|
-
versionsIndices = [];
|
|
15
|
-
const versions = data.match(
|
|
16
|
-
/<div class="block"><div id=""><span class="page-reference"><a class="page-ref" href="[a-z]{3}%20\d+[a-z]{2}%2C%20\d{4}">[a-zA-Z]{3} \d+[a-z]{2}, \d{4}<\/a><\/span><\/div><p><b>Version \d\.\d\.\d\.\d/g
|
|
17
|
-
);
|
|
18
|
-
|
|
19
|
-
for (const version of versions) {
|
|
20
|
-
versionsIndices.push(data.indexOf(version));
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
for (let i = 0; i < versionsIndices.length; i++) {
|
|
24
|
-
list.push(data.slice(versionsIndices[i], versionsIndices[i + 1]));
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
const items = list.map((item, index) => {
|
|
28
|
-
const version = versions[index];
|
|
29
|
-
return {
|
|
30
|
-
link: currentUrl,
|
|
31
|
-
description: item,
|
|
32
|
-
title: version.match(/Version \d\.\d\.\d\.\d/)[0],
|
|
33
|
-
pubDate: new Date(version.match(/[a-zA-Z]{3} \d+[a-z]{2}, \d{4}/)[0].replace(/st|nd|rd|th/, '')).toUTCString(),
|
|
34
|
-
};
|
|
35
|
-
});
|
|
36
|
-
|
|
37
|
-
ctx.state.data = {
|
|
38
|
-
title: 'Changelog - Logseq',
|
|
39
|
-
link: currentUrl,
|
|
40
|
-
item: items,
|
|
41
|
-
};
|
|
42
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
const got = require('@/utils/got');
|
|
2
|
-
const cheerio = require('cheerio');
|
|
3
|
-
const resolve_url = require('url').resolve;
|
|
4
|
-
|
|
5
|
-
module.exports = async (ctx) => {
|
|
6
|
-
const link = 'https://www.luogu.com.cn/';
|
|
7
|
-
const response = await got.get(link);
|
|
8
|
-
const $ = cheerio.load(response.data);
|
|
9
|
-
const title = '洛谷近期比赛';
|
|
10
|
-
|
|
11
|
-
const out = $('.am-panel-hd ')
|
|
12
|
-
.slice(0, 10)
|
|
13
|
-
.map(function () {
|
|
14
|
-
const info = {
|
|
15
|
-
title: $(this).find('a').text() || $(this).text(),
|
|
16
|
-
description: $(this).html() + $(this).parent().find('.am-panel-bd').html(),
|
|
17
|
-
link: resolve_url('https://www.luogu.com.cn', $(this).find('a').attr('href')),
|
|
18
|
-
};
|
|
19
|
-
return info;
|
|
20
|
-
})
|
|
21
|
-
.get();
|
|
22
|
-
|
|
23
|
-
ctx.state.data = {
|
|
24
|
-
title,
|
|
25
|
-
link,
|
|
26
|
-
item: out,
|
|
27
|
-
};
|
|
28
|
-
};
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
const got = require('@/utils/got');
|
|
2
|
-
const cheerio = require('cheerio');
|
|
3
|
-
|
|
4
|
-
module.exports = async (ctx) => {
|
|
5
|
-
const id = ctx.params.id || 179788;
|
|
6
|
-
const link = `https://www.luogu.org/discuss/show/${id}`;
|
|
7
|
-
const response = await got.get(link);
|
|
8
|
-
const $ = cheerio.load(response.data);
|
|
9
|
-
const title = $('title').text();
|
|
10
|
-
|
|
11
|
-
const out = $('div.am-comment-main > div > p')
|
|
12
|
-
.slice(0, 10)
|
|
13
|
-
.map(function () {
|
|
14
|
-
const info = {
|
|
15
|
-
title: $(this).find('strong').text() || $(this).text(),
|
|
16
|
-
link: $(this).find('a').attr('href'),
|
|
17
|
-
};
|
|
18
|
-
return info;
|
|
19
|
-
})
|
|
20
|
-
.get();
|
|
21
|
-
|
|
22
|
-
const items = await Promise.all(
|
|
23
|
-
out.map((item) =>
|
|
24
|
-
ctx.cache.tryGet(item.link, async () => {
|
|
25
|
-
const detailResponse = await got({
|
|
26
|
-
method: 'get',
|
|
27
|
-
url: item.link,
|
|
28
|
-
});
|
|
29
|
-
const content = cheerio.load(detailResponse.data);
|
|
30
|
-
const timeRegExp = new RegExp(/(?<=([1-9]\d{3}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])\s+(20|21|22|23|[0-1]\d):[0-5]\d:[0-5]\d))/);
|
|
31
|
-
|
|
32
|
-
item.description = content('#article-content').html();
|
|
33
|
-
|
|
34
|
-
content('#article-content').remove();
|
|
35
|
-
|
|
36
|
-
const line = content
|
|
37
|
-
.html()
|
|
38
|
-
.split('\n')
|
|
39
|
-
.find((line) => timeRegExp.test(line));
|
|
40
|
-
|
|
41
|
-
item.pubDate = new Date(line.match(timeRegExp)[1] + ' GMT+8').toUTCString();
|
|
42
|
-
|
|
43
|
-
return item;
|
|
44
|
-
})
|
|
45
|
-
)
|
|
46
|
-
);
|
|
47
|
-
|
|
48
|
-
ctx.state.data = {
|
|
49
|
-
title,
|
|
50
|
-
link,
|
|
51
|
-
item: items,
|
|
52
|
-
};
|
|
53
|
-
};
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
const got = require('@/utils/got');
|
|
2
|
-
|
|
3
|
-
module.exports = async (ctx) => {
|
|
4
|
-
const getUsernameFromUID = async (uid) => {
|
|
5
|
-
const key = 'luogu-username-from-uid-' + uid;
|
|
6
|
-
let name = await ctx.cache.get(key);
|
|
7
|
-
if (!name) {
|
|
8
|
-
const nameResponse = await got({
|
|
9
|
-
method: 'get',
|
|
10
|
-
url: `https://www.luogu.com.cn/user/${uid}?_contentOnly=1`,
|
|
11
|
-
});
|
|
12
|
-
name = nameResponse.data.currentData.user.name;
|
|
13
|
-
ctx.cache.set(key, name);
|
|
14
|
-
}
|
|
15
|
-
return name;
|
|
16
|
-
};
|
|
17
|
-
|
|
18
|
-
const uid = ctx.params.uid;
|
|
19
|
-
const name = await getUsernameFromUID(uid);
|
|
20
|
-
const response = await got({
|
|
21
|
-
method: 'get',
|
|
22
|
-
url: `https://www.luogu.com.cn/api/feed/list?user=${uid}`,
|
|
23
|
-
});
|
|
24
|
-
const data = response.data.feeds.result;
|
|
25
|
-
|
|
26
|
-
ctx.state.data = {
|
|
27
|
-
title: `${name} 的洛谷动态`,
|
|
28
|
-
link: `https://www.luogu.com.cn/user/${uid}#activity`,
|
|
29
|
-
allowEmpty: true,
|
|
30
|
-
item: data.map((item) => ({
|
|
31
|
-
title: item.content,
|
|
32
|
-
description: item.content,
|
|
33
|
-
pubDate: new Date(item.time * 1000).toUTCString(),
|
|
34
|
-
link: `https://www.luogu.com.cn/user/${uid}#activity`,
|
|
35
|
-
guid: item.id,
|
|
36
|
-
})),
|
|
37
|
-
};
|
|
38
|
-
};
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
const got = require('@/utils/got');
|
|
2
|
-
const cheerio = require('cheerio');
|
|
3
|
-
|
|
4
|
-
module.exports = async (ctx) => {
|
|
5
|
-
const category = ctx.params.category || '';
|
|
6
|
-
const title = {
|
|
7
|
-
autos: '汽车',
|
|
8
|
-
'banking-insurance': '金融服务',
|
|
9
|
-
'business-technology': '数字化',
|
|
10
|
-
consumers: '消费者',
|
|
11
|
-
'healthcare-pharmaceuticals': '医药与医疗',
|
|
12
|
-
'mckinsey-global-institute': '麦肯锡全球研究院',
|
|
13
|
-
全球基础材料: '全球基础材料',
|
|
14
|
-
innovation: '创新',
|
|
15
|
-
macroeconomy: '宏观经济',
|
|
16
|
-
manufacturing: '制造业',
|
|
17
|
-
'talent-leadership': '人才与领导力',
|
|
18
|
-
'technology-media-and-telecom': '技术,媒体与通信',
|
|
19
|
-
'urbanization-sustainability': '城市化与可持续发展',
|
|
20
|
-
'capital-projects-infrastructure': '资本项目和基础设施',
|
|
21
|
-
交通运输与物流: '旅游、运输和物流',
|
|
22
|
-
};
|
|
23
|
-
const response = await got.get(`https://www.mckinsey.com.cn/insights/${category}`);
|
|
24
|
-
const $ = cheerio.load(response.data);
|
|
25
|
-
|
|
26
|
-
const articles = $('.fusion-column h4 a')
|
|
27
|
-
.map((index, ele) => ({
|
|
28
|
-
title: $(ele).text(),
|
|
29
|
-
link: $(ele).attr('href'),
|
|
30
|
-
}))
|
|
31
|
-
.get();
|
|
32
|
-
|
|
33
|
-
const item = await Promise.all(
|
|
34
|
-
articles.map((item) =>
|
|
35
|
-
ctx.cache.tryGet(item.link, async () => {
|
|
36
|
-
const res = await got.get(item.link);
|
|
37
|
-
const doc = cheerio.load(res.data);
|
|
38
|
-
item.description = doc('#content').html();
|
|
39
|
-
return item;
|
|
40
|
-
})
|
|
41
|
-
)
|
|
42
|
-
);
|
|
43
|
-
|
|
44
|
-
ctx.state.data = {
|
|
45
|
-
title: category ? `McKinsey Greater China - ${title[category]}` : `McKinsey Greater China`,
|
|
46
|
-
link: 'https://www.mckinsey.com.cn/',
|
|
47
|
-
item,
|
|
48
|
-
};
|
|
49
|
-
};
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
const got = require('@/utils/got');
|
|
2
|
-
|
|
3
|
-
module.exports = async (ctx) => {
|
|
4
|
-
const response = await got({
|
|
5
|
-
method: 'get',
|
|
6
|
-
url: 'https://home.mi.com/lasagne/page/5',
|
|
7
|
-
});
|
|
8
|
-
|
|
9
|
-
const data = response.data.floors.filter((floor) => floor.floor_id === 99 || floor.floor_id === 100);
|
|
10
|
-
const item = data.reduce((acc, item) => {
|
|
11
|
-
if (!item.data) {
|
|
12
|
-
return acc;
|
|
13
|
-
}
|
|
14
|
-
let goodsList = [];
|
|
15
|
-
|
|
16
|
-
if (item.data.result) {
|
|
17
|
-
goodsList = item.data.result.goods_list;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
goodsList.forEach((goods) => {
|
|
21
|
-
const img = goods.pic_url;
|
|
22
|
-
acc.push({
|
|
23
|
-
title: goods.name,
|
|
24
|
-
description: `<img src="${img}"><br>${goods.summary}<br>价格:${goods.market_price / 100}元`,
|
|
25
|
-
link: goods.jump_url,
|
|
26
|
-
pubDate: new Date(goods.first_release_time * 1000).toUTCString(),
|
|
27
|
-
});
|
|
28
|
-
});
|
|
29
|
-
|
|
30
|
-
return acc;
|
|
31
|
-
}, []);
|
|
32
|
-
|
|
33
|
-
ctx.state.data = {
|
|
34
|
-
title: '小米有品众筹',
|
|
35
|
-
link: 'https://m.xiaomiyoupin.com/w/crowdfunding?pageid=5',
|
|
36
|
-
description: '小米有品众筹',
|
|
37
|
-
item,
|
|
38
|
-
};
|
|
39
|
-
};
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
const got = require('@/utils/got');
|
|
2
|
-
|
|
3
|
-
module.exports = async (ctx) => {
|
|
4
|
-
const response = await got({
|
|
5
|
-
method: 'post',
|
|
6
|
-
url: 'https://m.xiaomiyoupin.com/homepage/main/v1005',
|
|
7
|
-
});
|
|
8
|
-
|
|
9
|
-
const items = response.data.data.homepage.floors
|
|
10
|
-
.filter((floor) => floor.module_key === 'product_hot')[0]
|
|
11
|
-
.data.items.map((item) => {
|
|
12
|
-
const i = item.item;
|
|
13
|
-
return {
|
|
14
|
-
title: i.name,
|
|
15
|
-
description: `<img src="${i.pic_url}"><br>${i.summary}<br>价格:${i.market_price / 100}元`,
|
|
16
|
-
link: i.jump_url,
|
|
17
|
-
};
|
|
18
|
-
});
|
|
19
|
-
|
|
20
|
-
ctx.state.data = {
|
|
21
|
-
title: '小米有品每日上新',
|
|
22
|
-
link: 'https://m.xiaomiyoupin.com/w/newproduct?pageid=1605',
|
|
23
|
-
description: '小米有品每日上新',
|
|
24
|
-
item: items,
|
|
25
|
-
};
|
|
26
|
-
};
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
const got = require('@/utils/got');
|
|
2
|
-
|
|
3
|
-
module.exports = async (ctx) => {
|
|
4
|
-
const url = 'https://launchermeta.mojang.com/mc/game/version_manifest.json';
|
|
5
|
-
|
|
6
|
-
const response = await got({
|
|
7
|
-
method: 'get',
|
|
8
|
-
url,
|
|
9
|
-
});
|
|
10
|
-
|
|
11
|
-
const typeMap = {
|
|
12
|
-
release: '正式版',
|
|
13
|
-
snapshot: '快照',
|
|
14
|
-
old_alpha: '过时的预览版',
|
|
15
|
-
old_beta: '过时的测试版',
|
|
16
|
-
};
|
|
17
|
-
|
|
18
|
-
const data = response.data.versions;
|
|
19
|
-
|
|
20
|
-
const title = `Minecraft Java版游戏更新`;
|
|
21
|
-
|
|
22
|
-
ctx.state.data = {
|
|
23
|
-
title,
|
|
24
|
-
link: `https://www.minecraft.net/`,
|
|
25
|
-
description: title,
|
|
26
|
-
item: data.map((item) => ({
|
|
27
|
-
title: `${item.id} ${typeMap[item.type] || ''}更新`,
|
|
28
|
-
description: `${item.id} ${typeMap[item.type] || ''}更新`,
|
|
29
|
-
pubDate: new Date(item.releaseTime).toUTCString(),
|
|
30
|
-
link: `https://www.minecraft.net`,
|
|
31
|
-
guid: item.url,
|
|
32
|
-
})),
|
|
33
|
-
};
|
|
34
|
-
};
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
const cheerio = require('cheerio');
|
|
2
|
-
const got = require('@/utils/got');
|
|
3
|
-
|
|
4
|
-
module.exports = async (ctx) => {
|
|
5
|
-
const url = `http://nautil.us/term/f/${ctx.params.tid}`;
|
|
6
|
-
|
|
7
|
-
const res = await got.get(url);
|
|
8
|
-
const $ = cheerio.load(res.data);
|
|
9
|
-
const list = $('article.search-result').get();
|
|
10
|
-
|
|
11
|
-
const out = await Promise.all(
|
|
12
|
-
list.map(async (item) => {
|
|
13
|
-
const $ = cheerio.load(item);
|
|
14
|
-
const title = $('h3 > a').text();
|
|
15
|
-
const partial = $('h3 > a').attr('href');
|
|
16
|
-
const address = `http://nautil.us${partial}`;
|
|
17
|
-
const cache = await ctx.cache.get(address);
|
|
18
|
-
if (cache) {
|
|
19
|
-
return Promise.resolve(JSON.parse(cache));
|
|
20
|
-
}
|
|
21
|
-
const res = await got.get(address);
|
|
22
|
-
const capture = cheerio.load(res.data);
|
|
23
|
-
capture('div.reco').remove();
|
|
24
|
-
const banner = capture('div.banner').html();
|
|
25
|
-
const textWithTime = capture('div.byline').text();
|
|
26
|
-
const author = capture('div.byline > span:nth-child(2)').text();
|
|
27
|
-
const contents = banner + capture('div.page-content').html();
|
|
28
|
-
const single = {
|
|
29
|
-
title,
|
|
30
|
-
author,
|
|
31
|
-
description: contents,
|
|
32
|
-
link: address,
|
|
33
|
-
guid: address,
|
|
34
|
-
pubDate: new Date(textWithTime).toUTCString(),
|
|
35
|
-
};
|
|
36
|
-
ctx.cache.set(address, JSON.stringify(single));
|
|
37
|
-
return Promise.resolve(single);
|
|
38
|
-
})
|
|
39
|
-
);
|
|
40
|
-
ctx.state.data = {
|
|
41
|
-
title: 'Nautilus | ' + $('title').text(),
|
|
42
|
-
link: url,
|
|
43
|
-
item: out,
|
|
44
|
-
};
|
|
45
|
-
};
|
package/lib/routes/ncm/artist.js
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
const got = require('@/utils/got');
|
|
2
|
-
|
|
3
|
-
module.exports = async (ctx) => {
|
|
4
|
-
const id = ctx.params.id;
|
|
5
|
-
|
|
6
|
-
const response = await got({
|
|
7
|
-
method: 'get',
|
|
8
|
-
url: `https://music.163.com/api/artist/albums/${id}`,
|
|
9
|
-
headers: {
|
|
10
|
-
Referer: 'https://music.163.com/',
|
|
11
|
-
},
|
|
12
|
-
});
|
|
13
|
-
|
|
14
|
-
const data = response.data;
|
|
15
|
-
|
|
16
|
-
ctx.state.data = {
|
|
17
|
-
title: data.artist.name,
|
|
18
|
-
link: `https://music.163.com/#/artist/album?id=${id}`,
|
|
19
|
-
description: `网易云音乐歌手专辑 - ${data.artist.name}`,
|
|
20
|
-
item: data.hotAlbums.map((item) => {
|
|
21
|
-
const singer = item.artists.length === 1 ? item.artists[0].name : item.artists.reduce((prev, cur) => (prev.name || prev) + '/' + cur.name);
|
|
22
|
-
return {
|
|
23
|
-
title: `${item.name} - ${singer}`,
|
|
24
|
-
description: `歌手:${singer}<br>专辑:${item.name}<br>日期:${new Date(item.publishTime).toLocaleDateString()}<br><img src="${item.picUrl}">`,
|
|
25
|
-
link: `https://music.163.com/#/album?id=${item.id}`,
|
|
26
|
-
pubDate: new Date(item.publishTime),
|
|
27
|
-
published: new Date(item.publishTime),
|
|
28
|
-
category: item.subType,
|
|
29
|
-
author: singer,
|
|
30
|
-
};
|
|
31
|
-
}),
|
|
32
|
-
};
|
|
33
|
-
};
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
const got = require('@/utils/got');
|
|
2
|
-
const { parseDate } = require('@/utils/parse-date');
|
|
3
|
-
const { art } = require('@/utils/render');
|
|
4
|
-
const path = require('path');
|
|
5
|
-
|
|
6
|
-
module.exports = async (ctx) => {
|
|
7
|
-
const id = ctx.params.id;
|
|
8
|
-
|
|
9
|
-
const ProcessFeed = async (limit, offset) =>
|
|
10
|
-
await got({
|
|
11
|
-
method: 'post',
|
|
12
|
-
url: 'https://music.163.com/api/dj/program/byradio',
|
|
13
|
-
headers: {
|
|
14
|
-
Referer: 'https://music.163.com/',
|
|
15
|
-
},
|
|
16
|
-
form: {
|
|
17
|
-
radioId: id,
|
|
18
|
-
limit,
|
|
19
|
-
offset,
|
|
20
|
-
},
|
|
21
|
-
});
|
|
22
|
-
|
|
23
|
-
const response = await ProcessFeed(1, 0);
|
|
24
|
-
|
|
25
|
-
const programs = response.data.programs || [];
|
|
26
|
-
const { radio, dj } = programs[0] || { radio: {}, dj: {} };
|
|
27
|
-
const count = response.data.count || 0;
|
|
28
|
-
|
|
29
|
-
const countPage = [];
|
|
30
|
-
for (let i = 0; i < Math.ceil(count / 500); i++) {
|
|
31
|
-
countPage.push(i);
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
const items = await Promise.all(
|
|
35
|
-
countPage.map(async (item) => {
|
|
36
|
-
const response = await ProcessFeed(500, item * 500);
|
|
37
|
-
const programs = response.data.programs || [];
|
|
38
|
-
const list = programs.map((pg) => {
|
|
39
|
-
const description = (pg.description || '').split('\n').map((p) => p);
|
|
40
|
-
const duration = ~~(pg.duration / 1000);
|
|
41
|
-
const mm_ss_duration = `${(duration / 60).toFixed(0).padStart(2, '0')}:${(duration % 60).toFixed(0).padStart(2, '0')}`;
|
|
42
|
-
|
|
43
|
-
const html = art(path.join(__dirname, 'templates/djradio-content.art'), {
|
|
44
|
-
pg,
|
|
45
|
-
description,
|
|
46
|
-
itunes_duration: mm_ss_duration,
|
|
47
|
-
});
|
|
48
|
-
|
|
49
|
-
return {
|
|
50
|
-
title: pg.name,
|
|
51
|
-
link: 'https://music.163.com/program/' + pg.id,
|
|
52
|
-
pubDate: parseDate(pg.createTime),
|
|
53
|
-
published: parseDate(pg.createTime),
|
|
54
|
-
author: pg.dj.nickname,
|
|
55
|
-
description: html,
|
|
56
|
-
content: { html },
|
|
57
|
-
itunes_item_image: pg.coverUrl,
|
|
58
|
-
enclosure_url: `https://music.163.com/song/media/outer/url?id=${pg.mainTrackId}.mp3`,
|
|
59
|
-
enclosure_type: 'audio/mpeg',
|
|
60
|
-
itunes_duration: duration,
|
|
61
|
-
};
|
|
62
|
-
});
|
|
63
|
-
return list;
|
|
64
|
-
})
|
|
65
|
-
);
|
|
66
|
-
|
|
67
|
-
ctx.state.data = {
|
|
68
|
-
title: radio.name,
|
|
69
|
-
link: `https://music.163.com/djradio?id=${id}`,
|
|
70
|
-
subtitle: radio.desc,
|
|
71
|
-
description: radio.desc,
|
|
72
|
-
author: dj.nickname,
|
|
73
|
-
updated: radio.lastProgramCreateTime,
|
|
74
|
-
icon: radio.picUrl,
|
|
75
|
-
image: radio.picUrl,
|
|
76
|
-
itunes_author: dj.nickname,
|
|
77
|
-
itunes_category: radio.category,
|
|
78
|
-
item: items.flat(),
|
|
79
|
-
};
|
|
80
|
-
};
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
const got = require('@/utils/got');
|
|
2
|
-
const config = require('@/config').value;
|
|
3
|
-
|
|
4
|
-
module.exports = async (ctx) => {
|
|
5
|
-
const id = ctx.params.id;
|
|
6
|
-
|
|
7
|
-
const response = await got({
|
|
8
|
-
method: 'post',
|
|
9
|
-
url: 'https://music.163.com/api/v3/playlist/detail',
|
|
10
|
-
headers: {
|
|
11
|
-
Referer: 'https://music.163.com/',
|
|
12
|
-
Cookie: config.ncm.cookies,
|
|
13
|
-
},
|
|
14
|
-
form: {
|
|
15
|
-
id,
|
|
16
|
-
},
|
|
17
|
-
});
|
|
18
|
-
|
|
19
|
-
const data = response.data.playlist;
|
|
20
|
-
const songinfo = await got({
|
|
21
|
-
method: 'get',
|
|
22
|
-
url: `https://music.163.com/api/song/detail?ids=[${data.trackIds.slice(0, 201).map((item) => item.id)}]`,
|
|
23
|
-
headers: {
|
|
24
|
-
Referer: 'https://music.163.com',
|
|
25
|
-
},
|
|
26
|
-
});
|
|
27
|
-
const songs = songinfo.data.songs;
|
|
28
|
-
|
|
29
|
-
ctx.state.data = {
|
|
30
|
-
title: data.name,
|
|
31
|
-
link: `https://music.163.com/#/playlist?id=${id}`,
|
|
32
|
-
description: `网易云音乐歌单 - ${data.name}`,
|
|
33
|
-
item: data.trackIds.slice(0, 201).map((item) => {
|
|
34
|
-
const thissong = songs.find((element) => element.id === item.id);
|
|
35
|
-
const singer = thissong.artists.length === 1 ? thissong.artists[0].name : thissong.artists.reduce((prev, cur) => (prev.name || prev) + '/' + cur.name);
|
|
36
|
-
return {
|
|
37
|
-
title: `${thissong.name} - ${singer}`,
|
|
38
|
-
description: `歌手:${singer}<br>专辑:${thissong.album.name}<br>发行日期:${new Date(thissong.album.publishTime).toLocaleDateString()}<br><img src="${thissong.album.picUrl}">`,
|
|
39
|
-
link: `https://music.163.com/#/song?id=${item.id}`,
|
|
40
|
-
pubDate: new Date(item.at),
|
|
41
|
-
author: singer,
|
|
42
|
-
};
|
|
43
|
-
}),
|
|
44
|
-
};
|
|
45
|
-
};
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
const got = require('@/utils/got');
|
|
2
|
-
|
|
3
|
-
module.exports = async (ctx) => {
|
|
4
|
-
const uid = ctx.params.uid;
|
|
5
|
-
|
|
6
|
-
const response = await got({
|
|
7
|
-
method: 'post',
|
|
8
|
-
url: 'http://music.163.com/api/user/playlist',
|
|
9
|
-
headers: {
|
|
10
|
-
Referer: 'https://music.163.com/',
|
|
11
|
-
},
|
|
12
|
-
form: {
|
|
13
|
-
uid,
|
|
14
|
-
limit: 1000,
|
|
15
|
-
offset: 0,
|
|
16
|
-
},
|
|
17
|
-
});
|
|
18
|
-
|
|
19
|
-
const playlist = response.data.playlist || [];
|
|
20
|
-
|
|
21
|
-
const creator = (playlist[0] || {}).creator;
|
|
22
|
-
|
|
23
|
-
const { nickname, signature, avatarUrl } = creator;
|
|
24
|
-
|
|
25
|
-
ctx.state.data = {
|
|
26
|
-
title: `${nickname} 的所有歌单`,
|
|
27
|
-
link: `http://music.163.com/user/home?id=${uid}`,
|
|
28
|
-
subtitle: signature,
|
|
29
|
-
description: signature,
|
|
30
|
-
author: nickname,
|
|
31
|
-
updated: response.headers.date,
|
|
32
|
-
icon: avatarUrl,
|
|
33
|
-
item: playlist.map((pl) => {
|
|
34
|
-
const image = `<img src=${pl.coverImgUrl} />`;
|
|
35
|
-
|
|
36
|
-
const description = `<div>${(pl.description || '')
|
|
37
|
-
.split('\n')
|
|
38
|
-
.map((p) => `<p>${p}</p>`)
|
|
39
|
-
.join('')}</div>`;
|
|
40
|
-
|
|
41
|
-
const src = `http://music.163.com/playlist/${pl.id}`;
|
|
42
|
-
|
|
43
|
-
const html = image + description + `<div><a href="${src}">查看歌单</a></div>`;
|
|
44
|
-
|
|
45
|
-
return {
|
|
46
|
-
title: pl.name,
|
|
47
|
-
link: src,
|
|
48
|
-
pubDate: new Date(pl.createTime).toUTCString(),
|
|
49
|
-
published: new Date(pl.createTime).toISOString(),
|
|
50
|
-
updated: new Date(pl.updateTime).toISOString(),
|
|
51
|
-
author: pl.creator.nickname,
|
|
52
|
-
description: html,
|
|
53
|
-
content: { html },
|
|
54
|
-
category: pl.tags,
|
|
55
|
-
};
|
|
56
|
-
}),
|
|
57
|
-
};
|
|
58
|
-
};
|