rsshub 1.0.0-master.fe99193 → 1.0.0-master.fe9c82a

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.
Files changed (1314) hide show
  1. package/README.md +3 -3
  2. package/lib/config.js +9 -4
  3. package/lib/middleware/parameter.js +12 -5
  4. package/lib/middleware/template.js +29 -11
  5. package/lib/radar-rules.js +0 -214
  6. package/lib/router.js +107 -114
  7. package/lib/routes/bandisoft/index.js +4 -0
  8. package/lib/routes/biobio/others.js +5 -0
  9. package/lib/routes/blogs/hedwig.js +4 -0
  10. package/lib/routes/blogs/wordpress.js +5 -0
  11. package/lib/routes/booth-pm/shop.js +4 -1
  12. package/lib/routes/craigslist/search.js +5 -0
  13. package/lib/routes/engadget/home.js +4 -0
  14. package/lib/routes/fanbox/main.js +4 -1
  15. package/lib/routes/fanxinzhui/latest.js +12 -13
  16. package/lib/routes/fashionnetwork/headline.js +15 -12
  17. package/lib/routes/fashionnetwork/news.js +16 -12
  18. package/lib/routes/gitlab/common.js +5 -0
  19. package/lib/routes/gitlab/explore.js +5 -0
  20. package/lib/routes/gitlab/release.js +5 -0
  21. package/lib/routes/gitlab/tag.js +5 -0
  22. package/lib/routes/hexo/fluid.js +4 -0
  23. package/lib/routes/hexo/next.js +4 -0
  24. package/lib/routes/hexo/yilia.js +4 -0
  25. package/lib/routes/mastodon/account_id.js +4 -0
  26. package/lib/routes/mastodon/timeline_local.js +4 -0
  27. package/lib/routes/mastodon/timeline_remote.js +4 -0
  28. package/lib/routes/mastodon/utils.js +3 -0
  29. package/lib/routes/pornhub/category_url.js +4 -0
  30. package/lib/routes/pornhub/model.js +4 -0
  31. package/lib/routes/pornhub/pornstar.js +4 -0
  32. package/lib/routes/pornhub/users.js +4 -0
  33. package/lib/routes/questmobile/report.js +13 -14
  34. package/lib/routes/rss3/blog.js +11 -12
  35. package/lib/routes/touhougarakuta/index.js +3 -0
  36. package/lib/routes/v2ex/post.js +3 -0
  37. package/lib/routes/weforum/report.js +10 -6
  38. package/lib/routes/ziroom/room.js +5 -0
  39. package/lib/utils/puppeteer-utils.js +63 -0
  40. package/lib/utils/puppeteer.js +13 -8
  41. package/lib/utils/render.js +2 -0
  42. package/lib/utils/request-wrapper.js +38 -100
  43. package/lib/utils/unify-proxy.js +116 -0
  44. package/lib/utils/valid-host.js +16 -0
  45. package/lib/utils/wechat-mp.js +5 -3
  46. package/lib/v2/163/ds.js +33 -0
  47. package/lib/v2/163/dy.js +29 -0
  48. package/lib/v2/163/dy2.js +42 -0
  49. package/lib/v2/163/maintainer.js +20 -0
  50. package/lib/v2/163/music/artist-songs.js +39 -0
  51. package/lib/{routes/ncm → v2/163/music}/artist.js +10 -4
  52. package/lib/{routes/ncm → v2/163/music}/djradio.js +3 -5
  53. package/lib/v2/163/music/maintainer.js +3 -0
  54. package/lib/v2/163/music/playlist.js +55 -0
  55. package/lib/v2/163/music/userevents.js +52 -0
  56. package/lib/{routes/ncm → v2/163/music}/userplaylist.js +10 -12
  57. package/lib/{routes/ncm → v2/163/music}/userplayrecords.js +11 -13
  58. package/lib/v2/{netease → 163/news}/rank.js +20 -19
  59. package/lib/{routes/netease → v2/163}/news/special.js +11 -18
  60. package/lib/v2/163/open/vip.js +63 -0
  61. package/lib/v2/163/radar.js +155 -0
  62. package/lib/v2/{netease → 163}/renjian.js +11 -8
  63. package/lib/v2/163/router.js +20 -0
  64. package/lib/v2/163/templates/ds.art +7 -0
  65. package/lib/v2/163/templates/dy.art +6 -0
  66. package/lib/v2/163/templates/music/playlist.art +4 -0
  67. package/lib/v2/163/templates/music/userevents.art +7 -0
  68. package/lib/v2/163/templates/music/userplaylist.art +16 -0
  69. package/lib/v2/163/templates/music/userplayrecords.art +7 -0
  70. package/lib/v2/163/templates/open.art +12 -0
  71. package/lib/v2/{netease → 163}/today.js +2 -2
  72. package/lib/v2/163/utils.js +40 -0
  73. package/lib/v2/18comic/album.js +2 -1
  74. package/lib/v2/18comic/blogs.js +2 -1
  75. package/lib/v2/18comic/radar.js +39 -29
  76. package/lib/v2/18comic/utils.js +8 -12
  77. package/lib/v2/19lou/index.js +4 -0
  78. package/lib/v2/36kr/index.js +29 -24
  79. package/lib/v2/500px/maintainer.js +4 -0
  80. package/lib/v2/500px/radar.js +19 -0
  81. package/lib/v2/500px/router.js +4 -0
  82. package/lib/v2/500px/templates/tribeSet.art +6 -0
  83. package/lib/v2/500px/templates/user.art +3 -0
  84. package/lib/v2/500px/tribeSet.js +29 -0
  85. package/lib/v2/500px/user.js +32 -0
  86. package/lib/v2/500px/utils.js +122 -0
  87. package/lib/v2/50forum/radar.js +1 -1
  88. package/lib/v2/50forum/zhuanjia.js +1 -1
  89. package/lib/v2/52hrtt/index.js +12 -13
  90. package/lib/v2/52hrtt/symposium.js +12 -13
  91. package/lib/v2/591/list.js +144 -0
  92. package/lib/v2/591/radar.js +16 -0
  93. package/lib/v2/591/router.js +3 -0
  94. package/lib/v2/591/templates/house.art +52 -0
  95. package/lib/v2/6v123/latestMovies.js +14 -0
  96. package/lib/v2/6v123/latestTVSeries.js +14 -0
  97. package/lib/v2/6v123/maintainer.js +4 -0
  98. package/lib/v2/6v123/radar.js +23 -0
  99. package/lib/v2/6v123/router.js +4 -0
  100. package/lib/v2/6v123/utils.js +81 -0
  101. package/lib/v2/7mmtv/index.js +15 -23
  102. package/lib/v2/7mmtv/templates/description.art +5 -1
  103. package/lib/v2/91porn/author.js +2 -0
  104. package/lib/v2/91porn/index.js +2 -0
  105. package/lib/v2/91porn/utils.js +12 -0
  106. package/lib/v2/abmedia/category.js +1 -1
  107. package/lib/v2/acg17/maintainer.js +3 -0
  108. package/lib/v2/acg17/post.js +20 -0
  109. package/lib/v2/acg17/radar.js +13 -0
  110. package/lib/v2/acg17/router.js +3 -0
  111. package/lib/v2/aeaweb/index.js +81 -0
  112. package/lib/v2/aeaweb/maintainer.js +3 -0
  113. package/lib/v2/aeaweb/radar.js +13 -0
  114. package/lib/v2/aeaweb/router.js +3 -0
  115. package/lib/v2/aeaweb/templates/description.art +3 -0
  116. package/lib/v2/agora0/maintainer.js +1 -0
  117. package/lib/v2/agora0/pen0.js +43 -0
  118. package/lib/v2/agora0/radar.js +12 -1
  119. package/lib/v2/agora0/router.js +1 -0
  120. package/lib/v2/aiea/index.js +39 -0
  121. package/lib/v2/aiea/maintainer.js +3 -0
  122. package/lib/v2/aiea/radar.js +13 -0
  123. package/lib/v2/aiea/router.js +3 -0
  124. package/lib/v2/aijishu/index.js +26 -0
  125. package/lib/v2/aijishu/maintainer.js +5 -0
  126. package/lib/v2/aijishu/radar.js +25 -0
  127. package/lib/v2/aijishu/router.js +3 -0
  128. package/lib/v2/aijishu/utils.js +36 -0
  129. package/lib/v2/aliyundrive/files.js +10 -14
  130. package/lib/v2/ally/rail.js +41 -42
  131. package/lib/v2/annualreviews/index.js +68 -0
  132. package/lib/v2/annualreviews/maintainer.js +3 -0
  133. package/lib/v2/annualreviews/radar.js +13 -0
  134. package/lib/v2/annualreviews/router.js +3 -0
  135. package/lib/v2/apkpure/maintainer.js +3 -0
  136. package/lib/v2/apkpure/radar.js +13 -0
  137. package/lib/v2/apkpure/router.js +3 -0
  138. package/lib/v2/apkpure/versions.js +48 -0
  139. package/lib/v2/apple/exchange_repair.js +28 -21
  140. package/lib/v2/baai/comments.js +35 -0
  141. package/lib/v2/baai/events.js +35 -0
  142. package/lib/v2/baai/hub.js +60 -0
  143. package/lib/v2/baai/maintainer.js +5 -0
  144. package/lib/v2/baai/radar.js +31 -0
  145. package/lib/v2/baai/router.js +7 -0
  146. package/lib/v2/baai/utils.js +33 -0
  147. package/lib/v2/baidu/maintainer.js +1 -0
  148. package/lib/v2/baidu/radar.js +14 -6
  149. package/lib/v2/baidu/router.js +1 -0
  150. package/lib/v2/baidu/templates/top.art +9 -0
  151. package/lib/v2/baidu/top.js +34 -0
  152. package/lib/v2/bangumi/online/online.js +4 -2
  153. package/lib/v2/bangumi/tv/group/reply.js +13 -1
  154. package/lib/v2/bangumi/tv/group/topic.js +22 -9
  155. package/lib/v2/bdys/index.js +98 -0
  156. package/lib/v2/bdys/maintainer.js +3 -0
  157. package/lib/v2/bdys/radar.js +20 -0
  158. package/lib/v2/bdys/router.js +3 -0
  159. package/lib/v2/bdys/templates/desc.art +21 -0
  160. package/lib/v2/bendibao/news.js +4 -0
  161. package/lib/v2/bilibili/cache.js +34 -1
  162. package/lib/v2/bilibili/hotSearch.js +25 -0
  163. package/lib/v2/bilibili/maintainer.js +1 -0
  164. package/lib/v2/bilibili/radar.js +6 -0
  165. package/lib/v2/bilibili/router.js +1 -0
  166. package/lib/v2/bilibili/userCollection.js +1 -2
  167. package/lib/v2/bilibili/utils.js +10 -0
  168. package/lib/v2/bilibili/video-all.js +5 -2
  169. package/lib/v2/bilibili/video.js +3 -1
  170. package/lib/v2/bioone/featured.js +10 -8
  171. package/lib/v2/bioone/journal.js +28 -26
  172. package/lib/v2/biquge/index.js +21 -0
  173. package/lib/v2/bitmovin/blog.js +15 -21
  174. package/lib/v2/bjfu/it/utils.js +3 -3
  175. package/lib/v2/bjp/apod.js +43 -0
  176. package/lib/v2/bjp/maintainer.js +3 -0
  177. package/lib/v2/bjp/radar.js +13 -0
  178. package/lib/v2/bjp/router.js +3 -0
  179. package/lib/v2/bjsk/index.js +52 -0
  180. package/lib/v2/bjsk/maintainer.js +3 -0
  181. package/lib/v2/bjsk/radar.js +13 -0
  182. package/lib/v2/bjsk/router.js +3 -0
  183. package/lib/v2/bjwxdxh/index.js +52 -0
  184. package/lib/v2/bjwxdxh/maintainer.js +3 -0
  185. package/lib/v2/bjwxdxh/radar.js +13 -0
  186. package/lib/v2/bjwxdxh/router.js +3 -0
  187. package/lib/v2/blockbeats/index.js +28 -35
  188. package/lib/v2/blockbeats/maintainer.js +1 -1
  189. package/lib/v2/blockbeats/radar.js +3 -3
  190. package/lib/v2/bloomberg/authors.js +52 -0
  191. package/lib/v2/bloomberg/index.js +28 -0
  192. package/lib/v2/bloomberg/maintainer.js +5 -0
  193. package/lib/v2/bloomberg/radar.js +19 -0
  194. package/lib/v2/bloomberg/router.js +5 -0
  195. package/lib/v2/bloomberg/templates/audio_media.art +13 -0
  196. package/lib/v2/bloomberg/templates/image_figure.art +9 -0
  197. package/lib/v2/bloomberg/templates/lede_media.art +14 -0
  198. package/lib/v2/bloomberg/templates/video_media.art +25 -0
  199. package/lib/v2/bloomberg/utils.js +407 -0
  200. package/lib/v2/bnu/fdy.js +41 -0
  201. package/lib/v2/bnu/lib.js +40 -0
  202. package/lib/v2/bnu/maintainer.js +3 -0
  203. package/lib/v2/bnu/radar.js +23 -5
  204. package/lib/v2/bnu/router.js +2 -0
  205. package/lib/v2/btzj/index.js +6 -1
  206. package/lib/v2/byteclicks/index.js +22 -0
  207. package/lib/v2/byteclicks/maintainer.js +4 -0
  208. package/lib/v2/byteclicks/radar.js +19 -0
  209. package/lib/v2/byteclicks/router.js +4 -0
  210. package/lib/v2/byteclicks/tag.js +30 -0
  211. package/lib/v2/byteclicks/utils.js +13 -0
  212. package/lib/v2/bytes/bytes.js +25 -0
  213. package/lib/v2/bytes/maintainer.js +4 -0
  214. package/lib/v2/bytes/radar.js +13 -0
  215. package/lib/v2/bytes/router.js +3 -0
  216. package/lib/v2/caai/index.js +22 -0
  217. package/lib/v2/caai/maintainer.js +3 -0
  218. package/lib/v2/caai/radar.js +13 -0
  219. package/lib/v2/caai/router.js +3 -0
  220. package/lib/v2/caai/utils.js +46 -0
  221. package/lib/v2/caareviews/utils.js +2 -2
  222. package/lib/v2/caijing/maintainer.js +3 -0
  223. package/lib/v2/caijing/radar.js +13 -0
  224. package/lib/v2/caijing/roll.js +46 -0
  225. package/lib/v2/caijing/router.js +3 -0
  226. package/lib/v2/caixin/article.js +27 -0
  227. package/lib/v2/caixin/blog.js +58 -0
  228. package/lib/v2/caixin/category.js +56 -0
  229. package/lib/{routes → v2}/caixin/database.js +14 -14
  230. package/lib/v2/caixin/k.js +40 -0
  231. package/lib/v2/caixin/latest.js +50 -0
  232. package/lib/v2/caixin/maintainer.js +8 -0
  233. package/lib/v2/caixin/radar.js +43 -0
  234. package/lib/v2/caixin/router.js +8 -0
  235. package/lib/v2/caixin/templates/article.art +38 -0
  236. package/lib/v2/caixin/utils.js +52 -0
  237. package/lib/v2/cartoonmad/comic.js +70 -0
  238. package/lib/v2/cartoonmad/maintainer.js +3 -0
  239. package/lib/v2/cartoonmad/radar.js +13 -0
  240. package/lib/v2/cartoonmad/router.js +3 -0
  241. package/lib/v2/cartoonmad/templates/chapter.art +1 -0
  242. package/lib/{routes/universities → v2}/cas/cg/index.js +4 -2
  243. package/lib/{routes/universities → v2}/cas/iee/kydt.js +7 -5
  244. package/lib/v2/cas/maintainer.js +6 -0
  245. package/lib/v2/cas/mesalab/kb.js +41 -0
  246. package/lib/v2/cas/radar.js +40 -0
  247. package/lib/v2/cas/router.js +6 -0
  248. package/lib/v2/cas/sim/kyjz.js +47 -0
  249. package/lib/v2/cast/index.js +74 -0
  250. package/lib/v2/cast/maintainer.js +3 -0
  251. package/lib/v2/cast/radar.js +13 -0
  252. package/lib/v2/cast/router.js +3 -0
  253. package/lib/v2/{ccfcv → ccf/ccfcv}/index.js +2 -2
  254. package/lib/v2/ccf/maintainer.js +5 -0
  255. package/lib/{routes → v2}/ccf/news.js +8 -14
  256. package/lib/v2/ccf/radar.js +41 -0
  257. package/lib/v2/ccf/router.js +5 -0
  258. package/lib/v2/ccf/tfbd/index.js +22 -0
  259. package/lib/v2/ccf/tfbd/utils.js +47 -0
  260. package/lib/v2/cctv/lm.js +22 -23
  261. package/lib/v2/cdzjryb/maintainer.js +3 -0
  262. package/lib/v2/cdzjryb/projectList.js +49 -0
  263. package/lib/v2/cdzjryb/radar.js +13 -0
  264. package/lib/v2/cdzjryb/router.js +3 -0
  265. package/lib/v2/cdzjryb/templates/projectList.art +23 -0
  266. package/lib/v2/chaincatcher/home.js +50 -0
  267. package/lib/v2/chaincatcher/maintainer.js +4 -0
  268. package/lib/v2/chaincatcher/news.js +40 -0
  269. package/lib/v2/chaincatcher/radar.js +19 -0
  270. package/lib/v2/chaincatcher/router.js +4 -0
  271. package/lib/v2/chaincatcher/templates/home.art +4 -0
  272. package/lib/v2/chinacef/experts.js +1 -1
  273. package/lib/v2/chinacef/hot.js +1 -1
  274. package/lib/v2/chinacef/index.js +1 -1
  275. package/lib/v2/chinafactcheck/index.js +1 -1
  276. package/lib/v2/chinathinktanks/viewpoint.js +12 -13
  277. package/lib/v2/chsi/kydt.js +51 -0
  278. package/lib/v2/chsi/maintainer.js +3 -0
  279. package/lib/v2/chsi/radar.js +13 -0
  280. package/lib/v2/chsi/router.js +3 -0
  281. package/lib/v2/ciidbnu/index.js +14 -15
  282. package/lib/v2/clickme/index.js +56 -0
  283. package/lib/v2/clickme/maintainer.js +3 -0
  284. package/lib/v2/clickme/radar.js +21 -0
  285. package/lib/v2/clickme/router.js +3 -0
  286. package/lib/v2/cnbc/rss.js +1 -1
  287. package/lib/v2/cnbeta/radar.js +6 -6
  288. package/lib/v2/cnbeta/router.js +1 -1
  289. package/lib/v2/cnbeta/type.js +6 -12
  290. package/lib/v2/cnbeta/utils.js +5 -8
  291. package/lib/v2/cnblogs/common.js +30 -0
  292. package/lib/v2/cnblogs/maintainer.js +7 -0
  293. package/lib/v2/cnblogs/radar.js +37 -0
  294. package/lib/v2/cnblogs/router.js +7 -0
  295. package/lib/v2/cngal/entry.js +25 -0
  296. package/lib/v2/cngal/maintainer.js +4 -0
  297. package/lib/v2/cngal/radar.js +19 -0
  298. package/lib/v2/cngal/router.js +4 -0
  299. package/lib/v2/cngal/templates/entry-description.art +4 -0
  300. package/lib/v2/cngal/templates/weekly-description.art +4 -0
  301. package/lib/v2/cngal/weekly.js +20 -0
  302. package/lib/v2/cnjxol/index.js +3 -0
  303. package/lib/v2/cnki/author.js +45 -0
  304. package/lib/v2/cnki/journals.js +2 -23
  305. package/lib/v2/cnki/maintainer.js +1 -0
  306. package/lib/v2/cnki/radar.js +8 -0
  307. package/lib/v2/cnki/router.js +1 -0
  308. package/lib/v2/cnki/utils.js +26 -0
  309. package/lib/v2/codeforces/contests.js +13 -5
  310. package/lib/v2/codeforces/maintainer.js +1 -0
  311. package/lib/v2/codeforces/radar.js +8 -0
  312. package/lib/v2/codeforces/recent_actions.js +47 -0
  313. package/lib/v2/codeforces/router.js +1 -0
  314. package/lib/v2/codeforces/templates/contest.art +5 -11
  315. package/lib/v2/coindesk/index.js +36 -0
  316. package/lib/v2/coindesk/maintainer.js +3 -0
  317. package/lib/v2/coindesk/radar.js +13 -0
  318. package/lib/v2/coindesk/router.js +3 -0
  319. package/lib/{routes → v2}/comicskingdom/index.js +18 -19
  320. package/lib/v2/comicskingdom/maintainer.js +3 -0
  321. package/lib/v2/comicskingdom/radar.js +13 -0
  322. package/lib/v2/comicskingdom/router.js +3 -0
  323. package/lib/v2/comicskingdom/templates/desc.art +1 -0
  324. package/lib/v2/coolapk/utils.js +3 -2
  325. package/lib/v2/copymanga/comic.js +110 -0
  326. package/lib/v2/copymanga/maintainer.js +3 -0
  327. package/lib/v2/copymanga/radar.js +19 -0
  328. package/lib/v2/copymanga/router.js +3 -0
  329. package/lib/v2/copymanga/templates/comic.art +4 -0
  330. package/lib/v2/crac/index.js +46 -0
  331. package/lib/v2/crac/maintainer.js +3 -0
  332. package/lib/v2/crac/radar.js +13 -0
  333. package/lib/v2/crac/router.js +3 -0
  334. package/lib/v2/crossbell/feeds/following.js +29 -0
  335. package/lib/v2/crossbell/maintainer.js +6 -0
  336. package/lib/v2/crossbell/notes/character.js +22 -0
  337. package/lib/v2/crossbell/notes/index.js +16 -0
  338. package/lib/v2/crossbell/notes/source.js +19 -0
  339. package/lib/v2/crossbell/notes/utils.js +18 -0
  340. package/lib/v2/crossbell/radar.js +24 -0
  341. package/lib/v2/crossbell/router.js +6 -0
  342. package/lib/v2/csu/career.js +51 -0
  343. package/lib/v2/csu/mail.js +30 -26
  344. package/lib/v2/csu/maintainer.js +2 -0
  345. package/lib/v2/csu/radar.js +10 -2
  346. package/lib/v2/csu/router.js +1 -1
  347. package/lib/v2/csu/utils.js +17 -0
  348. package/lib/v2/curius/links.js +43 -0
  349. package/lib/v2/curius/maintainer.js +3 -0
  350. package/lib/v2/curius/radar.js +13 -0
  351. package/lib/v2/curius/router.js +3 -0
  352. package/lib/v2/curius/templates/description.art +16 -0
  353. package/lib/v2/cw/author.js +18 -0
  354. package/lib/v2/cw/maintainer.js +1 -0
  355. package/lib/v2/cw/master.js +6 -19
  356. package/lib/v2/cw/radar.js +6 -0
  357. package/lib/v2/cw/router.js +1 -0
  358. package/lib/v2/cw/sub.js +6 -19
  359. package/lib/v2/cw/today.js +6 -15
  360. package/lib/v2/cw/utils.js +78 -20
  361. package/lib/v2/dcard/section.js +1 -1
  362. package/lib/v2/dcfever/maintainer.js +6 -0
  363. package/lib/v2/dcfever/news.js +36 -0
  364. package/lib/v2/dcfever/radar.js +37 -0
  365. package/lib/v2/dcfever/reviews.js +29 -0
  366. package/lib/v2/dcfever/router.js +6 -0
  367. package/lib/v2/dcfever/templates/trading.art +14 -0
  368. package/lib/v2/dcfever/trading-search.js +39 -0
  369. package/lib/v2/dcfever/trading.js +39 -0
  370. package/lib/v2/dcfever/utils.js +78 -0
  371. package/lib/v2/discord/channel.js +38 -0
  372. package/lib/v2/discord/discord-api.js +61 -0
  373. package/lib/v2/discord/maintainer.js +3 -0
  374. package/lib/v2/discord/radar.js +13 -0
  375. package/lib/v2/discord/router.js +3 -0
  376. package/lib/v2/discord/templates/message.art +47 -0
  377. package/lib/v2/disinformationindex/blog.js +12 -13
  378. package/lib/{routes → v2}/dlsite/campaign.js +22 -24
  379. package/lib/v2/dlsite/maintainer.js +4 -0
  380. package/lib/{routes → v2}/dlsite/new.js +27 -28
  381. package/lib/v2/dlsite/radar.js +15 -0
  382. package/lib/v2/dlsite/router.js +4 -0
  383. package/lib/v2/dmzj/maintainer.js +3 -0
  384. package/lib/v2/dmzj/news.js +26 -0
  385. package/lib/v2/dmzj/radar.js +67 -0
  386. package/lib/v2/dmzj/router.js +3 -0
  387. package/lib/v2/douban/other/weekly_best.js +11 -4
  388. package/lib/v2/douban/templates/weekly_best.art +10 -0
  389. package/lib/v2/douyin/hashtag.js +20 -19
  390. package/lib/v2/douyin/live.js +2 -21
  391. package/lib/v2/douyin/user.js +2 -17
  392. package/lib/v2/douyin/utils.js +85 -0
  393. package/lib/v2/dtcj/datainsight.js +13 -14
  394. package/lib/v2/dut/index.js +4 -0
  395. package/lib/v2/eagle/blog.js +6 -2
  396. package/lib/v2/eastday/24.js +14 -15
  397. package/lib/v2/{acm-ecnu → ecnu}/contest.js +1 -4
  398. package/lib/v2/ecnu/maintainer.js +4 -0
  399. package/lib/v2/ecnu/radar.js +30 -0
  400. package/lib/v2/ecnu/router.js +4 -0
  401. package/lib/v2/ecnu/yjs.js +37 -0
  402. package/lib/v2/economist/espresso.js +55 -25
  403. package/lib/v2/economist/full.js +2 -2
  404. package/lib/v2/economist/global-business-review.js +86 -0
  405. package/lib/v2/economist/maintainer.js +1 -0
  406. package/lib/v2/economist/radar.js +11 -0
  407. package/lib/v2/economist/router.js +1 -0
  408. package/lib/v2/ehentai/ehapi.js +33 -17
  409. package/lib/v2/ehentai/favorites.js +2 -2
  410. package/lib/v2/ehentai/search.js +2 -2
  411. package/lib/v2/ehentai/tag.js +1 -1
  412. package/lib/v2/eleduck/jobs.js +38 -0
  413. package/lib/v2/eleduck/maintainer.js +4 -0
  414. package/lib/v2/eleduck/posts.js +41 -0
  415. package/lib/v2/eleduck/radar.js +25 -0
  416. package/lib/v2/eleduck/router.js +4 -0
  417. package/lib/v2/eprice/rss.js +8 -16
  418. package/lib/v2/eprice/templates/image.art +4 -1
  419. package/lib/v2/famitsu/category.js +62 -0
  420. package/lib/v2/famitsu/maintainer.js +3 -0
  421. package/lib/v2/famitsu/radar.js +13 -0
  422. package/lib/v2/famitsu/router.js +3 -0
  423. package/lib/v2/ff14/ff14_global.js +5 -0
  424. package/lib/v2/fffdm/maintainer.js +3 -0
  425. package/lib/v2/fffdm/manhua/manhua.js +55 -0
  426. package/lib/v2/fffdm/radar.js +14 -0
  427. package/lib/v2/fffdm/router.js +3 -0
  428. package/lib/v2/fffdm/templates/manhua.art +5 -0
  429. package/lib/v2/fjksbm/index.js +53 -0
  430. package/lib/v2/fjksbm/maintainer.js +3 -0
  431. package/lib/v2/fjksbm/radar.js +13 -0
  432. package/lib/v2/fjksbm/router.js +3 -0
  433. package/lib/v2/flyert/utils.js +3 -3
  434. package/lib/v2/foresightnews/index.js +8 -11
  435. package/lib/v2/foreverblog/feeds.js +36 -0
  436. package/lib/v2/foreverblog/maintainer.js +3 -0
  437. package/lib/v2/foreverblog/radar.js +13 -0
  438. package/lib/v2/foreverblog/router.js +3 -0
  439. package/lib/v2/freewechat/maintainer.js +3 -0
  440. package/lib/v2/freewechat/profile.js +61 -0
  441. package/lib/v2/freewechat/radar.js +13 -0
  442. package/lib/v2/freewechat/router.js +3 -0
  443. package/lib/v2/furstar/templates/description.art +1 -1
  444. package/lib/v2/gameapps/index.js +32 -13
  445. package/lib/v2/gamme/category.js +4 -0
  446. package/lib/v2/gamme/tag.js +4 -0
  447. package/lib/v2/gcores/category.js +16 -6
  448. package/lib/v2/gelonghui/hot-article.js +33 -0
  449. package/lib/v2/gelonghui/live.js +31 -0
  450. package/lib/v2/gelonghui/radar.js +12 -0
  451. package/lib/v2/gelonghui/router.js +2 -0
  452. package/lib/v2/gelonghui/templates/live.art +7 -0
  453. package/lib/v2/gelonghui/utils.js +6 -0
  454. package/lib/v2/gettr/maintainer.js +3 -0
  455. package/lib/v2/gettr/radar.js +13 -0
  456. package/lib/v2/gettr/router.js +3 -0
  457. package/lib/v2/gettr/templates/post.art +13 -0
  458. package/lib/v2/gettr/user.js +56 -0
  459. package/lib/v2/github/maintainer.js +1 -0
  460. package/lib/v2/github/radar.js +35 -29
  461. package/lib/v2/github/router.js +1 -0
  462. package/lib/v2/github/trending.js +68 -36
  463. package/lib/v2/github/wiki.js +32 -0
  464. package/lib/v2/gocn/topics.js +1 -1
  465. package/lib/v2/good/index.js +15 -14
  466. package/lib/v2/google/maintainer.js +1 -0
  467. package/lib/v2/google/news.js +48 -66
  468. package/lib/v2/google/router.js +1 -0
  469. package/lib/v2/google/sitesRecentChanges.js +12 -13
  470. package/lib/v2/google/templates/news.art +5 -0
  471. package/lib/v2/gov/beijing/bphc/index.js +1 -1
  472. package/lib/v2/gov/ccdi/utils.js +1 -1
  473. package/lib/v2/gov/csrc/auditstatus.js +54 -0
  474. package/lib/v2/gov/csrc/news.js +69 -0
  475. package/lib/v2/gov/csrc/templates/attachment.art +3 -0
  476. package/lib/v2/gov/customs/list.js +1 -1
  477. package/lib/v2/gov/dianbai/dianbai.js +18 -0
  478. package/lib/v2/gov/gaozhou/gaozhou.js +19 -0
  479. package/lib/v2/gov/general/general.js +250 -0
  480. package/lib/v2/gov/general/templates/zcjdpt.art +128 -0
  481. package/lib/v2/gov/gz/index.js +38 -0
  482. package/lib/v2/gov/huazhou/huazhou.js +19 -0
  483. package/lib/v2/gov/hunan/changsha/major-email.js +52 -0
  484. package/lib/v2/gov/maintainer.js +23 -2
  485. package/lib/v2/gov/maoming/maoming.js +417 -0
  486. package/lib/v2/gov/maonan/maonan.js +100 -0
  487. package/lib/v2/gov/mgs/mgs.js +19 -0
  488. package/lib/v2/gov/mmht/mmht.js +19 -0
  489. package/lib/v2/gov/moe/moe.js +4 -4
  490. package/lib/v2/gov/moe/s78.js +44 -0
  491. package/lib/v2/gov/nmpa/generic.js +1 -1
  492. package/lib/v2/gov/pbc/utils.js +2 -2
  493. package/lib/v2/gov/radar.js +233 -0
  494. package/lib/v2/gov/router.js +22 -2
  495. package/lib/v2/gov/sasac/generic.js +42 -0
  496. package/lib/v2/gov/sdb/sdb.js +19 -0
  497. package/lib/v2/gov/shanghai/yjj/index.js +3 -1
  498. package/lib/v2/gov/sichuan/deyang/govpulicinfo.js +3 -3
  499. package/lib/v2/gov/stats/index.js +1 -1
  500. package/lib/v2/gov/stats/utils.js +6 -4
  501. package/lib/v2/gov/wuhan/whyw.js +44 -0
  502. package/lib/v2/gov/xinyi/xinyi.js +19 -0
  503. package/lib/v2/gov/zhengce/govall.js +55 -0
  504. package/lib/v2/gov/zhengce/wenjian.js +47 -0
  505. package/lib/v2/gov/zhengce/zhengceku.js +22 -0
  506. package/lib/v2/gov/zhengce/zuixin.js +39 -0
  507. package/lib/v2/gq/maintainer.js +3 -0
  508. package/lib/v2/gq/radar.js +13 -0
  509. package/lib/v2/gq/router.js +3 -0
  510. package/lib/v2/gq/templates/embed-article.art +1 -0
  511. package/lib/v2/gq/templates/embed-product.art +4 -0
  512. package/lib/v2/gq/templates/img.art +6 -0
  513. package/lib/v2/gq/templates/tw.art +3 -0
  514. package/lib/v2/gq/templates/videoObject.art +6 -0
  515. package/lib/v2/gq/templates/youtube.art +3 -0
  516. package/lib/v2/gq/tw/index.js +165 -0
  517. package/lib/v2/guandian/index.js +37 -0
  518. package/lib/v2/guandian/maintainer.js +3 -0
  519. package/lib/v2/guandian/radar.js +13 -0
  520. package/lib/v2/guandian/router.js +3 -0
  521. package/lib/v2/guanhai/index.js +47 -0
  522. package/lib/v2/guanhai/maintainer.js +4 -0
  523. package/lib/v2/guanhai/radar.js +13 -0
  524. package/lib/v2/guanhai/router.js +3 -0
  525. package/lib/v2/gumroad/index.js +4 -0
  526. package/lib/v2/gzh360/universal.js +3 -3
  527. package/lib/v2/gzh360/utils.js +2 -2
  528. package/lib/v2/hackernews/index.js +6 -0
  529. package/lib/v2/hackmd/maintainer.js +3 -0
  530. package/lib/v2/hackmd/profile.js +24 -0
  531. package/lib/v2/hackmd/radar.js +13 -0
  532. package/lib/v2/hackmd/router.js +3 -0
  533. package/lib/v2/hellogithub/maintainer.js +1 -1
  534. package/lib/v2/hellogithub/volume.js +24 -40
  535. package/lib/{routes/universities → v2}/hitsz/article.js +13 -15
  536. package/lib/v2/hitsz/maintainer.js +3 -0
  537. package/lib/v2/hitsz/radar.js +13 -0
  538. package/lib/v2/hitsz/router.js +3 -0
  539. package/lib/v2/hk01/utils.js +2 -2
  540. package/lib/v2/hkepc/data.js +62 -0
  541. package/lib/v2/hkepc/index.js +55 -164
  542. package/lib/v2/hljucm/maintainer.js +3 -0
  543. package/lib/v2/hljucm/radar.js +13 -0
  544. package/lib/v2/hljucm/router.js +3 -0
  545. package/lib/v2/hljucm/yjsy.js +56 -0
  546. package/lib/v2/hotukdeals/hottest.js +25 -0
  547. package/lib/v2/hotukdeals/maintainer.js +1 -0
  548. package/lib/v2/hotukdeals/radar.js +6 -0
  549. package/lib/v2/hotukdeals/router.js +1 -0
  550. package/lib/v2/{heu → hrbeu}/gx/card.js +5 -10
  551. package/lib/v2/{heu → hrbeu}/gx/list.js +12 -20
  552. package/lib/v2/hrbeu/job/bigemploy.js +25 -0
  553. package/lib/v2/{heu → hrbeu}/job/calendar.js +8 -16
  554. package/lib/v2/{heu → hrbeu}/job/list.js +11 -16
  555. package/lib/v2/{heu → hrbeu}/maintainer.js +2 -1
  556. package/lib/v2/{heu → hrbeu}/radar.js +18 -10
  557. package/lib/v2/{heu → hrbeu}/router.js +3 -2
  558. package/lib/v2/{heu → hrbeu}/uae/list.js +12 -17
  559. package/lib/v2/hrbeu/ugs/news.js +98 -0
  560. package/lib/v2/{heu → hrbeu}/yjsy/list.js +8 -16
  561. package/lib/v2/hrbust/jwzx.js +36 -0
  562. package/lib/v2/hrbust/maintainer.js +3 -0
  563. package/lib/v2/hrbust/radar.js +13 -0
  564. package/lib/v2/hrbust/router.js +3 -0
  565. package/lib/v2/hrbust/templates/description.art +1 -0
  566. package/lib/v2/hrbust/utils.js +71 -0
  567. package/lib/v2/huanqiu/index.js +5 -0
  568. package/lib/v2/hunanpea/maintainer.js +3 -0
  569. package/lib/v2/hunanpea/radar.js +13 -0
  570. package/lib/v2/hunanpea/router.js +3 -0
  571. package/lib/v2/hunanpea/rsks.js +42 -0
  572. package/lib/v2/huxiu/article.js +14 -11
  573. package/lib/v2/huxiu/author.js +11 -20
  574. package/lib/v2/huxiu/briefColumn.js +28 -38
  575. package/lib/v2/huxiu/collection.js +20 -15
  576. package/lib/v2/huxiu/moment.js +1 -2
  577. package/lib/v2/huxiu/search.js +19 -7
  578. package/lib/v2/huxiu/tag.js +17 -10
  579. package/lib/v2/huxiu/templates/brief.art +22 -0
  580. package/lib/v2/huxiu/templates/img.art +3 -0
  581. package/lib/v2/huxiu/templates/video.art +7 -0
  582. package/lib/v2/huxiu/utils.js +137 -52
  583. package/lib/v2/ieee-security/maintainer.js +3 -0
  584. package/lib/v2/ieee-security/radar.js +13 -0
  585. package/lib/v2/ieee-security/router.js +3 -0
  586. package/lib/v2/ieee-security/sp.js +36 -0
  587. package/lib/v2/iiilab/index.js +24 -0
  588. package/lib/v2/iiilab/maintainer.js +3 -0
  589. package/lib/v2/iiilab/radar.js +13 -0
  590. package/lib/v2/iiilab/router.js +3 -0
  591. package/lib/v2/ikea/cn/family_offers.js +70 -0
  592. package/lib/v2/ikea/cn/low_price.js +22 -0
  593. package/lib/v2/ikea/cn/new.js +39 -0
  594. package/lib/v2/ikea/cn/utils.js +42 -0
  595. package/lib/v2/ikea/gb/new.js +54 -0
  596. package/lib/v2/ikea/gb/offer.js +69 -0
  597. package/lib/v2/ikea/maintainer.js +7 -0
  598. package/lib/v2/ikea/radar.js +42 -0
  599. package/lib/v2/ikea/router.js +7 -0
  600. package/lib/v2/ikea/templates/cn/product.art +14 -0
  601. package/lib/v2/ikea/templates/new.art +7 -0
  602. package/lib/v2/ikea/templates/offer.art +3 -0
  603. package/lib/v2/inewsweek/index.js +53 -0
  604. package/lib/v2/inewsweek/maintainer.js +3 -0
  605. package/lib/v2/inewsweek/radar.js +13 -0
  606. package/lib/v2/inewsweek/router.js +3 -0
  607. package/lib/v2/inoreader/index.js +46 -0
  608. package/lib/v2/inoreader/maintainer.js +3 -0
  609. package/lib/v2/inoreader/radar.js +17 -0
  610. package/lib/v2/inoreader/router.js +3 -0
  611. package/lib/v2/instagram/common-utils.js +59 -0
  612. package/lib/v2/instagram/maintainer.js +4 -0
  613. package/lib/v2/instagram/private-api/index.js +94 -0
  614. package/lib/v2/instagram/private-api/utils.js +37 -0
  615. package/lib/v2/instagram/radar.js +19 -0
  616. package/lib/v2/instagram/router.js +4 -0
  617. package/lib/v2/instagram/templates/images.art +5 -0
  618. package/lib/v2/instagram/templates/video.art +5 -0
  619. package/lib/v2/instagram/web-api/index.js +70 -0
  620. package/lib/v2/instagram/web-api/utils.js +99 -0
  621. package/lib/v2/iqiyi/album.js +62 -0
  622. package/lib/v2/iqiyi/maintainer.js +4 -0
  623. package/lib/v2/iqiyi/radar.js +24 -0
  624. package/lib/v2/iqiyi/router.js +4 -0
  625. package/lib/v2/iqiyi/templates/album.art +1 -0
  626. package/lib/v2/issuehunt/funded.js +28 -0
  627. package/lib/v2/issuehunt/maintainer.js +3 -0
  628. package/lib/v2/issuehunt/radar.js +13 -0
  629. package/lib/v2/issuehunt/router.js +3 -0
  630. package/lib/v2/itch/devlog.js +4 -0
  631. package/lib/v2/iwara/index.js +1 -0
  632. package/lib/v2/javbus/index.js +20 -4
  633. package/lib/v2/javbus/templates/description.art +12 -1
  634. package/lib/v2/javdb/utils.js +6 -0
  635. package/lib/v2/jiaoliudao/index.js +35 -0
  636. package/lib/v2/jiaoliudao/maintainer.js +3 -0
  637. package/lib/v2/jiaoliudao/radar.js +13 -0
  638. package/lib/v2/jiaoliudao/router.js +3 -0
  639. package/lib/v2/jike/maintainer.js +1 -1
  640. package/lib/v2/jike/router.js +1 -1
  641. package/lib/v2/jike/topic.js +1 -1
  642. package/lib/v2/jike/user.js +23 -12
  643. package/lib/v2/jike/utils.js +4 -2
  644. package/lib/v2/jin10/index.js +58 -0
  645. package/lib/v2/jin10/maintainer.js +3 -0
  646. package/lib/v2/jin10/radar.js +13 -0
  647. package/lib/v2/jin10/router.js +3 -0
  648. package/lib/v2/jin10/templates/description.art +2 -0
  649. package/lib/v2/ke/maintainer.js +3 -0
  650. package/lib/v2/ke/radar.js +13 -0
  651. package/lib/v2/ke/results.js +36 -0
  652. package/lib/v2/ke/router.js +3 -0
  653. package/lib/v2/kemono/index.js +23 -19
  654. package/lib/v2/kemono/templates/discord.art +22 -0
  655. package/lib/v2/kimlaw/maintainer.js +3 -0
  656. package/lib/v2/kimlaw/radar.js +13 -0
  657. package/lib/v2/kimlaw/router.js +3 -0
  658. package/lib/v2/kimlaw/thesis.js +44 -0
  659. package/lib/v2/lang/maintainer.js +3 -0
  660. package/lib/v2/lang/radar.js +13 -0
  661. package/lib/v2/lang/room.js +40 -0
  662. package/lib/v2/lang/router.js +3 -0
  663. package/lib/v2/lang/templates/room.art +1 -0
  664. package/lib/v2/layoffs/index.js +134 -0
  665. package/lib/v2/layoffs/maintainer.js +3 -0
  666. package/lib/v2/layoffs/radar.js +13 -0
  667. package/lib/v2/layoffs/router.js +3 -0
  668. package/lib/v2/learnblockchain/maintainer.js +3 -0
  669. package/lib/v2/learnblockchain/posts.js +43 -0
  670. package/lib/v2/learnblockchain/radar.js +19 -0
  671. package/lib/v2/learnblockchain/router.js +3 -0
  672. package/lib/v2/linkedin/cn/index.js +13 -0
  673. package/lib/v2/linkedin/cn/renderer.js +179 -0
  674. package/lib/v2/linkedin/cn/utils.js +122 -0
  675. package/lib/v2/linkedin/jobs.js +44 -0
  676. package/lib/v2/linkedin/maintainer.js +4 -0
  677. package/lib/v2/linkedin/models.js +15 -0
  678. package/lib/v2/linkedin/radar.js +36 -0
  679. package/lib/v2/linkedin/router.js +4 -0
  680. package/lib/v2/linkedin/templates/cn/posting.art +25 -0
  681. package/lib/v2/linkedin/utils.js +121 -0
  682. package/lib/v2/liulinblog/utils.js +7 -4
  683. package/lib/v2/lofter/user.js +6 -2
  684. package/lib/v2/lovelive-anime/maintainer.js +2 -1
  685. package/lib/v2/lovelive-anime/radar.js +9 -0
  686. package/lib/v2/lovelive-anime/router.js +1 -0
  687. package/lib/v2/lovelive-anime/schedules.js +56 -0
  688. package/lib/v2/lovelive-anime/templates/scheduleDesc.art +3 -0
  689. package/lib/v2/luogu/daily.js +1 -1
  690. package/lib/v2/luogu/maintainer.js +1 -0
  691. package/lib/v2/luogu/radar.js +6 -0
  692. package/lib/v2/luogu/router.js +1 -0
  693. package/lib/v2/luogu/userBlog.js +48 -0
  694. package/lib/v2/mangadex/index.js +73 -0
  695. package/lib/v2/mangadex/maintainer.js +3 -0
  696. package/lib/v2/mangadex/radar.js +13 -0
  697. package/lib/v2/mangadex/router.js +3 -0
  698. package/lib/v2/mclaren/index.js +96 -0
  699. package/lib/v2/mclaren/maintainer.js +3 -0
  700. package/lib/v2/mclaren/radar.js +29 -0
  701. package/lib/v2/mclaren/router.js +3 -0
  702. package/lib/v2/mclaren/templates/desc.art +6 -0
  703. package/lib/v2/mihoyo/maintainer.js +1 -0
  704. package/lib/v2/mihoyo/radar.js +20 -1
  705. package/lib/v2/mihoyo/router.js +1 -0
  706. package/lib/v2/mihoyo/ys/news.js +81 -0
  707. package/lib/v2/minecraft/maintainer.js +3 -0
  708. package/lib/v2/minecraft/radar.js +13 -0
  709. package/lib/v2/minecraft/router.js +3 -0
  710. package/lib/{routes → v2}/minecraft/version.js +1 -1
  711. package/lib/v2/mingpao/index.js +28 -33
  712. package/lib/v2/mingpao/templates/description.art +1 -1
  713. package/lib/v2/mingpao/templates/fancybox.art +6 -2
  714. package/lib/v2/mirror/index.js +19 -9
  715. package/lib/v2/misskey/featured-notes.js +29 -0
  716. package/lib/v2/misskey/maintainer.js +3 -0
  717. package/lib/v2/misskey/radar.js +35 -0
  718. package/lib/v2/misskey/router.js +3 -0
  719. package/lib/v2/misskey/templates/note.art +23 -0
  720. package/lib/v2/misskey/utils.js +31 -0
  721. package/lib/v2/mixcloud/index.js +130 -0
  722. package/lib/v2/mixcloud/maintainer.js +3 -0
  723. package/lib/v2/mixcloud/queries.js +1520 -0
  724. package/lib/v2/mixcloud/radar.js +37 -0
  725. package/lib/v2/mixcloud/router.js +3 -0
  726. package/lib/v2/mrdx/daily.js +79 -0
  727. package/lib/v2/mrdx/maintainer.js +3 -0
  728. package/lib/v2/mrdx/radar.js +13 -0
  729. package/lib/v2/mrdx/router.js +3 -0
  730. package/lib/v2/mrdx/utils.js +17 -0
  731. package/lib/v2/mtime/news.js +1 -1
  732. package/lib/v2/myfigurecollection/activity.js +5 -0
  733. package/lib/v2/myfigurecollection/index.js +4 -0
  734. package/lib/v2/mysql/release.js +9 -2
  735. package/lib/v2/nautil/maintainer.js +3 -0
  736. package/lib/v2/nautil/radar.js +13 -0
  737. package/lib/v2/nautil/router.js +3 -0
  738. package/lib/v2/nautil/templates/description.art +6 -0
  739. package/lib/v2/nautil/topics.js +57 -0
  740. package/lib/v2/nbd/index.js +6 -6
  741. package/lib/v2/nber/index.js +48 -0
  742. package/lib/v2/nber/maintainer.js +4 -0
  743. package/lib/v2/nber/radar.js +19 -0
  744. package/lib/v2/nber/router.js +4 -0
  745. package/lib/v2/nber/template/description.art +6 -0
  746. package/lib/v2/ndss-symposium/maintainer.js +3 -0
  747. package/lib/v2/ndss-symposium/ndss.js +80 -0
  748. package/lib/v2/ndss-symposium/radar.js +13 -0
  749. package/lib/v2/ndss-symposium/router.js +3 -0
  750. package/lib/v2/nextapple/realtime.js +1 -1
  751. package/lib/v2/nikkei-cn/index.js +4 -0
  752. package/lib/v2/nintendo/direct.js +31 -0
  753. package/lib/v2/nintendo/eshop_cn.js +44 -0
  754. package/lib/v2/nintendo/eshop_hk.js +79 -0
  755. package/lib/v2/nintendo/eshop_jp.js +34 -0
  756. package/lib/v2/nintendo/eshop_us.js +32 -0
  757. package/lib/v2/nintendo/maintainer.js +7 -0
  758. package/lib/v2/nintendo/news.js +23 -0
  759. package/lib/v2/nintendo/news_china.js +35 -0
  760. package/lib/v2/nintendo/radar.js +70 -0
  761. package/lib/v2/nintendo/router.js +10 -0
  762. package/lib/{routes → v2}/nintendo/system-update.js +2 -2
  763. package/lib/v2/nintendo/templates/direct.art +6 -0
  764. package/lib/v2/nintendo/templates/eshop_cn.art +21 -0
  765. package/lib/v2/nintendo/templates/eshop_hk.art +61 -0
  766. package/lib/v2/nintendo/templates/eshop_jp.art +3 -0
  767. package/lib/v2/nintendo/templates/eshop_us.art +24 -0
  768. package/lib/{routes → v2}/nintendo/utils.js +34 -50
  769. package/lib/v2/njnu/ceai/utils.js +3 -3
  770. package/lib/v2/njnu/jwc/utils.js +3 -3
  771. package/lib/v2/nju/hosptial.js +41 -0
  772. package/lib/v2/nju/itsc.js +46 -0
  773. package/lib/v2/nju/maintainer.js +2 -0
  774. package/lib/v2/nju/radar.js +16 -0
  775. package/lib/v2/nju/router.js +2 -0
  776. package/lib/v2/njxzc/home.js +66 -0
  777. package/lib/v2/njxzc/maintainer.js +3 -0
  778. package/lib/v2/njxzc/radar.js +13 -0
  779. package/lib/v2/njxzc/router.js +4 -0
  780. package/lib/v2/nmtv/column.js +53 -0
  781. package/lib/v2/nmtv/maintainer.js +3 -0
  782. package/lib/v2/nmtv/radar.js +13 -0
  783. package/lib/v2/nmtv/router.js +3 -0
  784. package/lib/v2/nmtv/templates/description.art +9 -0
  785. package/lib/v2/nua/lib.js +39 -0
  786. package/lib/v2/nua/maintainer.js +1 -0
  787. package/lib/v2/nua/radar.js +8 -0
  788. package/lib/v2/nua/router.js +1 -0
  789. package/lib/v2/nua/utils.js +9 -14
  790. package/lib/v2/nuaa/utils/pypasswaf.js +3 -2
  791. package/lib/v2/nyaa/main.js +16 -23
  792. package/lib/v2/nyaa/maintainer.js +7 -4
  793. package/lib/v2/nyaa/radar.js +27 -29
  794. package/lib/v2/nyaa/router.js +4 -2
  795. package/lib/v2/odaily/activity.js +13 -14
  796. package/lib/v2/odaily/post.js +15 -20
  797. package/lib/v2/odaily/user.js +14 -15
  798. package/lib/v2/odaily/utils.js +1 -1
  799. package/lib/v2/oilchem/index.js +20 -21
  800. package/lib/v2/oncc/maintainer.js +1 -0
  801. package/lib/v2/oncc/money18.js +115 -0
  802. package/lib/v2/oncc/radar.js +13 -5
  803. package/lib/v2/oncc/router.js +1 -0
  804. package/lib/v2/oncc/templates/money18.art +6 -0
  805. package/lib/v2/paradigm/maintainer.js +3 -0
  806. package/lib/v2/paradigm/radar.js +13 -0
  807. package/lib/v2/paradigm/router.js +3 -0
  808. package/lib/v2/paradigm/writing.js +44 -0
  809. package/lib/v2/people/index.js +4 -0
  810. package/lib/{routes → v2}/phoronix/index.js +42 -46
  811. package/lib/v2/phoronix/maintainer.js +3 -0
  812. package/lib/v2/phoronix/radar.js +13 -0
  813. package/lib/v2/phoronix/router.js +3 -0
  814. package/lib/v2/picnob/maintainer.js +3 -0
  815. package/lib/v2/picnob/radar.js +13 -0
  816. package/lib/v2/picnob/router.js +3 -0
  817. package/lib/v2/picnob/templates/desc.art +13 -0
  818. package/lib/v2/picnob/user.js +61 -0
  819. package/lib/v2/picuki/maintainer.js +1 -1
  820. package/lib/v2/picuki/profile.js +10 -8
  821. package/lib/v2/picuki/utils.js +21 -0
  822. package/lib/v2/pikabu/community.js +37 -0
  823. package/lib/v2/pikabu/maintainer.js +5 -0
  824. package/lib/v2/pikabu/radar.js +25 -0
  825. package/lib/v2/pikabu/router.js +4 -0
  826. package/lib/v2/pikabu/templates/video.art +8 -0
  827. package/lib/v2/pikabu/user.js +46 -0
  828. package/lib/v2/pikabu/utils.js +43 -0
  829. package/lib/v2/pixabay/maintainer.js +3 -0
  830. package/lib/v2/pixabay/radar.js +13 -0
  831. package/lib/v2/pixabay/router.js +3 -0
  832. package/lib/v2/pixabay/search.js +50 -0
  833. package/lib/v2/pixabay/templates/img.art +1 -0
  834. package/lib/v2/pixiv/api/getRanking.js +1 -1
  835. package/lib/v2/pixiv/novels.js +32 -23
  836. package/lib/v2/pixiv/ranking.js +6 -0
  837. package/lib/v2/piyao/jrpy.js +39 -0
  838. package/lib/v2/piyao/maintainer.js +3 -0
  839. package/lib/v2/piyao/radar.js +13 -0
  840. package/lib/v2/piyao/router.js +3 -0
  841. package/lib/v2/pku/ss/admission.js +4 -42
  842. package/lib/v2/pku/ss/common.js +37 -0
  843. package/lib/v2/pku/ss/notice.js +4 -42
  844. package/lib/v2/pku/ss/pg_admin.js +4 -42
  845. package/lib/v2/pnas/index.js +101 -0
  846. package/lib/v2/pnas/maintainer.js +3 -0
  847. package/lib/v2/pnas/radar.js +13 -0
  848. package/lib/v2/pnas/router.js +3 -0
  849. package/lib/v2/pnas/templates/article.art +8 -0
  850. package/lib/v2/producthunt/templates/descImg.art +2 -2
  851. package/lib/v2/pts/index.js +4 -1
  852. package/lib/v2/qdaily/index.js +87 -0
  853. package/lib/v2/qdaily/maintainer.js +3 -0
  854. package/lib/v2/qdaily/router.js +3 -0
  855. package/lib/v2/qdaily/templates/article.art +5 -0
  856. package/lib/v2/qdaily/templates/radar.js +25 -0
  857. package/lib/v2/qiyoujiage/maintainer.js +3 -0
  858. package/lib/v2/qiyoujiage/price.js +28 -0
  859. package/lib/v2/qiyoujiage/radar.js +13 -0
  860. package/lib/v2/qiyoujiage/router.js +3 -0
  861. package/lib/v2/qlu/maintainer.js +3 -0
  862. package/lib/v2/qlu/notice.js +54 -0
  863. package/lib/v2/qlu/radar.js +13 -0
  864. package/lib/v2/qlu/router.js +3 -0
  865. package/lib/v2/qoo-app/apps/card.js +38 -0
  866. package/lib/v2/qoo-app/apps/comment.js +43 -0
  867. package/lib/v2/qoo-app/apps/note.js +47 -0
  868. package/lib/v2/qoo-app/apps/post.js +51 -0
  869. package/lib/v2/qoo-app/maintainer.js +11 -0
  870. package/lib/v2/qoo-app/news.js +41 -0
  871. package/lib/v2/qoo-app/notes/note.js +43 -0
  872. package/lib/v2/qoo-app/notes/topic.js +20 -0
  873. package/lib/v2/qoo-app/notes/user.js +20 -0
  874. package/lib/v2/qoo-app/radar.js +73 -0
  875. package/lib/v2/qoo-app/router.js +11 -0
  876. package/lib/v2/qoo-app/templates/comment.art +3 -0
  877. package/lib/v2/qoo-app/templates/note.art +5 -0
  878. package/lib/v2/qoo-app/user/appComment.js +41 -0
  879. package/lib/v2/qoo-app/utils.js +57 -0
  880. package/lib/v2/qq/fact/index.js +61 -0
  881. package/lib/v2/qq/maintainer.js +1 -0
  882. package/lib/v2/qq/radar.js +8 -0
  883. package/lib/v2/qq/router.js +1 -0
  884. package/lib/v2/qq/templates/article.art +19 -0
  885. package/lib/v2/reactnewsletter/maintainer.js +4 -0
  886. package/lib/v2/reactnewsletter/radar.js +13 -0
  887. package/lib/v2/reactnewsletter/reactnewsletter.js +25 -0
  888. package/lib/v2/reactnewsletter/router.js +3 -0
  889. package/lib/v2/researchgate/maintainer.js +3 -0
  890. package/lib/v2/researchgate/publications.js +70 -0
  891. package/lib/v2/researchgate/radar.js +13 -0
  892. package/lib/v2/researchgate/router.js +3 -0
  893. package/lib/v2/rodong/maintainer.js +3 -0
  894. package/lib/v2/rodong/news.js +45 -0
  895. package/lib/v2/rodong/radar.js +13 -0
  896. package/lib/v2/rodong/router.js +3 -0
  897. package/lib/v2/ruancan/category.js +8 -0
  898. package/lib/v2/ruancan/index.js +3 -55
  899. package/lib/v2/ruancan/maintainer.js +3 -3
  900. package/lib/v2/ruancan/radar.js +12 -6
  901. package/lib/v2/ruancan/router.js +4 -1
  902. package/lib/v2/ruancan/search.js +8 -0
  903. package/lib/v2/ruancan/user.js +8 -0
  904. package/lib/v2/ruancan/utils.js +66 -0
  905. package/lib/v2/saraba1st/digest.js +79 -0
  906. package/lib/v2/saraba1st/maintainer.js +1 -0
  907. package/lib/v2/saraba1st/radar.js +12 -3
  908. package/lib/v2/saraba1st/router.js +1 -0
  909. package/lib/v2/saraba1st/templates/digest.art +5 -0
  910. package/lib/v2/sciencedirect/journal.js +1 -1
  911. package/lib/v2/scitation/journal.js +4 -0
  912. package/lib/v2/scitation/section.js +4 -0
  913. package/lib/{routes → v2}/scmp/index.js +7 -8
  914. package/lib/v2/scmp/maintainer.js +3 -0
  915. package/lib/v2/scmp/radar.js +13 -0
  916. package/lib/v2/scmp/router.js +3 -0
  917. package/lib/v2/sctv/maintainer.js +3 -0
  918. package/lib/v2/sctv/programme.js +80 -0
  919. package/lib/v2/sctv/radar.js +13 -0
  920. package/lib/v2/sctv/router.js +3 -0
  921. package/lib/v2/sctv/templates/description.art +3 -0
  922. package/lib/v2/sdu/extractor/index.js +5 -5
  923. package/lib/v2/sdu/extractor/sdrj.js +2 -2
  924. package/lib/v2/sdu/extractor/view.js +2 -2
  925. package/lib/v2/sdu/extractor/wh/jwc.js +2 -2
  926. package/lib/v2/sdu/extractor/wh/news.js +2 -2
  927. package/lib/v2/sdu/wh/jwc.js +1 -1
  928. package/lib/v2/sdu/wh/news.js +1 -1
  929. package/lib/v2/sehuatang/index.js +129 -0
  930. package/lib/v2/{dsndsht23 → sehuatang}/radar.js +2 -2
  931. package/lib/v2/shiep/index.js +91 -0
  932. package/lib/v2/shiep/maintainer.js +3 -0
  933. package/lib/v2/shiep/radar.js +181 -0
  934. package/lib/v2/shiep/router.js +3 -0
  935. package/lib/v2/shiep/templates/description.art +1 -0
  936. package/lib/v2/shmeea/self-study.js +4 -4
  937. package/lib/v2/shmtu/jwc.js +57 -0
  938. package/lib/v2/shmtu/maintainer.js +5 -0
  939. package/lib/v2/shmtu/portal.js +81 -0
  940. package/lib/v2/shmtu/radar.js +29 -0
  941. package/lib/v2/shmtu/router.js +5 -0
  942. package/lib/v2/shmtu/templates/portal.art +30 -0
  943. package/lib/v2/shmtu/www.js +58 -0
  944. package/lib/v2/shoppingdesign/maintainer.js +3 -0
  945. package/lib/v2/shoppingdesign/posts.js +43 -0
  946. package/lib/v2/shoppingdesign/radar.js +13 -0
  947. package/lib/v2/shoppingdesign/router.js +3 -0
  948. package/lib/v2/sicau/dky.js +12 -13
  949. package/lib/v2/sicau/yan.js +13 -14
  950. package/lib/v2/sigsac/ccs.js +57 -0
  951. package/lib/v2/sigsac/maintainer.js +3 -0
  952. package/lib/v2/sigsac/radar.js +13 -0
  953. package/lib/v2/sigsac/router.js +3 -0
  954. package/lib/v2/simpleinfo/index.js +50 -0
  955. package/lib/v2/simpleinfo/maintainer.js +3 -0
  956. package/lib/v2/simpleinfo/radar.js +19 -0
  957. package/lib/v2/simpleinfo/router.js +3 -0
  958. package/lib/v2/simpleinfo/templates/description.art +6 -0
  959. package/lib/v2/skysports/maintainer.js +3 -0
  960. package/lib/{routes → v2}/skysports/news.js +10 -8
  961. package/lib/v2/skysports/radar.js +13 -0
  962. package/lib/v2/skysports/router.js +3 -0
  963. package/lib/v2/smzdm/article.js +43 -0
  964. package/lib/v2/smzdm/baoliao.js +43 -0
  965. package/lib/v2/smzdm/haowen.js +48 -0
  966. package/lib/v2/smzdm/haowen_fenlei.js +56 -0
  967. package/lib/v2/smzdm/keyword.js +42 -0
  968. package/lib/v2/smzdm/maintainer.js +8 -0
  969. package/lib/v2/smzdm/radar.js +48 -0
  970. package/lib/{routes → v2}/smzdm/ranking.js +20 -3
  971. package/lib/v2/smzdm/router.js +8 -0
  972. package/lib/v2/solidot/main.js +5 -0
  973. package/lib/v2/sse/maintainer.js +1 -1
  974. package/lib/v2/sspai/bookmarks.js +41 -0
  975. package/lib/v2/sspai/maintainer.js +1 -0
  976. package/lib/v2/sspai/radar.js +6 -0
  977. package/lib/v2/sspai/router.js +1 -0
  978. package/lib/v2/stcn/index.js +25 -32
  979. package/lib/v2/stcn/maintainer.js +0 -3
  980. package/lib/v2/stcn/radar.js +4 -22
  981. package/lib/v2/stcn/router.js +1 -1
  982. package/lib/v2/swjtu/jtys/yjs.js +55 -0
  983. package/lib/v2/swjtu/jyzpxx.js +28 -0
  984. package/lib/v2/swjtu/maintainer.js +4 -0
  985. package/lib/v2/swjtu/radar.js +21 -0
  986. package/lib/v2/swjtu/router.js +4 -0
  987. package/lib/v2/swjtu/templates/job_desc.art +19 -0
  988. package/lib/v2/swjtu/templates/job_detail.art +21 -0
  989. package/lib/v2/swjtu/utils.js +33 -0
  990. package/lib/v2/telegram/channel.js +78 -42
  991. package/lib/v2/tencent/maintainer.js +2 -0
  992. package/lib/v2/tencent/news/coronavirus/data.js +71 -0
  993. package/lib/v2/tencent/news/coronavirus/total.js +34 -0
  994. package/lib/v2/tencent/news/coronavirus/utils.js +17 -0
  995. package/lib/v2/tencent/radar.js +8 -0
  996. package/lib/v2/tencent/router.js +2 -0
  997. package/lib/v2/tencent/templates/coronavirus/chinaTotal.art +6 -0
  998. package/lib/v2/tencent/templates/coronavirus/data.art +4 -0
  999. package/lib/v2/test/index.js +54 -0
  1000. package/lib/v2/thepaper/channel.js +11 -5
  1001. package/lib/v2/thepaper/list.js +11 -5
  1002. package/lib/v2/thepaper/maintainer.js +2 -1
  1003. package/lib/v2/thepaper/radar.js +6 -0
  1004. package/lib/v2/thepaper/router.js +2 -1
  1005. package/lib/v2/thepaper/sidebar.js +24 -0
  1006. package/lib/v2/thepaper/utils.js +60 -70
  1007. package/lib/v2/theverge/index.js +9 -1
  1008. package/lib/v2/theverge/maintainer.js +1 -1
  1009. package/lib/v2/theverge/radar.js +2 -2
  1010. package/lib/v2/theverge/router.js +1 -1
  1011. package/lib/v2/tingshuitz/changsha.js +43 -0
  1012. package/lib/v2/tingshuitz/maintainer.js +1 -0
  1013. package/lib/v2/tingshuitz/radar.js +10 -0
  1014. package/lib/v2/tingshuitz/router.js +1 -0
  1015. package/lib/v2/twitter/utils.js +38 -31
  1016. package/lib/v2/twitter/web-api/twitter-api.js +24 -20
  1017. package/lib/v2/twreporter/category.js +17 -8
  1018. package/lib/v2/typora/changelog-dev.js +31 -0
  1019. package/lib/v2/typora/changelog.js +40 -0
  1020. package/lib/v2/typora/maintainer.js +4 -0
  1021. package/lib/v2/typora/radar.js +21 -0
  1022. package/lib/v2/typora/router.js +4 -0
  1023. package/lib/v2/u9a9/index.js +66 -0
  1024. package/lib/v2/u9a9/maintainer.js +4 -0
  1025. package/lib/v2/u9a9/radar.js +19 -0
  1026. package/lib/v2/u9a9/router.js +4 -0
  1027. package/lib/v2/uber/blog.js +58 -0
  1028. package/lib/v2/uber/maintainer.js +3 -0
  1029. package/lib/v2/uber/radar.js +13 -0
  1030. package/lib/v2/uber/router.js +3 -0
  1031. package/lib/v2/uchicago/current.js +80 -0
  1032. package/lib/v2/uchicago/maintainer.js +3 -0
  1033. package/lib/v2/uchicago/radar.js +13 -0
  1034. package/lib/v2/uchicago/router.js +3 -0
  1035. package/lib/v2/uptimerobot/maintainer.js +3 -0
  1036. package/lib/v2/uptimerobot/radar.js +13 -0
  1037. package/lib/v2/uptimerobot/router.js +3 -0
  1038. package/lib/v2/uptimerobot/rss.js +126 -0
  1039. package/lib/v2/uptimerobot/templates/rss.art +20 -0
  1040. package/lib/v2/urbandictionary/maintainer.js +3 -0
  1041. package/lib/v2/urbandictionary/radar.js +13 -0
  1042. package/lib/v2/urbandictionary/random.js +24 -0
  1043. package/lib/v2/urbandictionary/router.js +3 -0
  1044. package/lib/v2/urbandictionary/templates/definition.art +11 -0
  1045. package/lib/v2/usenix/maintainer.js +3 -0
  1046. package/lib/v2/usenix/radar.js +13 -0
  1047. package/lib/v2/usenix/router.js +3 -0
  1048. package/lib/v2/usenix/usenix.js +63 -0
  1049. package/lib/v2/usepanda/index.js +26 -0
  1050. package/lib/v2/usepanda/maintainer.js +3 -0
  1051. package/lib/v2/usepanda/radar.js +11 -0
  1052. package/lib/v2/usepanda/router.js +3 -0
  1053. package/lib/v2/uw/gix/news.js +67 -0
  1054. package/lib/v2/uw/maintainer.js +3 -0
  1055. package/lib/v2/uw/radar.js +13 -0
  1056. package/lib/v2/uw/router.js +3 -0
  1057. package/lib/v2/v1tx/index.js +36 -0
  1058. package/lib/v2/v1tx/maintainer.js +4 -0
  1059. package/lib/v2/v1tx/radar.js +13 -0
  1060. package/lib/v2/v1tx/router.js +3 -0
  1061. package/lib/v2/verse/articles.js +42 -0
  1062. package/lib/v2/verse/maintainer.js +3 -0
  1063. package/lib/v2/verse/radar.js +13 -0
  1064. package/lib/v2/verse/router.js +3 -0
  1065. package/lib/v2/vocus/maintainer.js +4 -0
  1066. package/lib/v2/vocus/publication.js +42 -0
  1067. package/lib/v2/vocus/radar.js +19 -0
  1068. package/lib/v2/vocus/router.js +4 -0
  1069. package/lib/v2/vocus/user.js +43 -0
  1070. package/lib/v2/vocus/utils.js +51 -0
  1071. package/lib/v2/wechat/ce.js +2 -2
  1072. package/lib/v2/wechat/data258.js +1 -1
  1073. package/lib/v2/wechat/ershcimi.js +1 -1
  1074. package/lib/v2/wechat/feeddd.js +1 -1
  1075. package/lib/v2/wechat/feeds.js +1 -1
  1076. package/lib/v2/wechat/maintainer.js +1 -1
  1077. package/lib/v2/wechat/mp.js +2 -2
  1078. package/lib/v2/wechat/msgalbum.js +2 -2
  1079. package/lib/v2/wechat/radar.js +9 -9
  1080. package/lib/v2/wechat/router.js +1 -1
  1081. package/lib/v2/wechat/wechat2rss.js +28 -0
  1082. package/lib/v2/weekendhk/maintainer.js +4 -0
  1083. package/lib/v2/weekendhk/posts.js +29 -0
  1084. package/lib/v2/weekendhk/radar.js +13 -0
  1085. package/lib/v2/weekendhk/router.js +3 -0
  1086. package/lib/{routes → v2}/weibo/keyword.js +2 -2
  1087. package/lib/v2/weibo/maintainer.js +8 -0
  1088. package/lib/v2/weibo/oasis/user.js +20 -0
  1089. package/lib/v2/weibo/radar.js +48 -0
  1090. package/lib/v2/weibo/router.js +8 -0
  1091. package/lib/{routes → v2}/weibo/search/hot.js +2 -0
  1092. package/lib/{routes → v2}/weibo/super_index.js +2 -2
  1093. package/lib/{routes → v2}/weibo/timeline.js +2 -2
  1094. package/lib/{routes → v2}/weibo/user.js +2 -2
  1095. package/lib/{routes → v2}/weibo/utils.js +50 -14
  1096. package/lib/v2/wfu/news.js +1 -1
  1097. package/lib/v2/who/news-room.js +17 -18
  1098. package/lib/v2/who/news.js +11 -12
  1099. package/lib/v2/wnacg/index.js +110 -0
  1100. package/lib/v2/wnacg/maintainer.js +5 -0
  1101. package/lib/v2/wnacg/radar.js +25 -0
  1102. package/lib/v2/wnacg/router.js +5 -0
  1103. package/lib/v2/wnacg/templates/manga.art +9 -0
  1104. package/lib/v2/woshipm/bookmarks.js +34 -0
  1105. package/lib/v2/woshipm/latest.js +27 -0
  1106. package/lib/v2/woshipm/maintainer.js +7 -0
  1107. package/lib/v2/woshipm/popular.js +33 -0
  1108. package/lib/v2/woshipm/radar.js +39 -0
  1109. package/lib/v2/woshipm/router.js +7 -0
  1110. package/lib/{routes → v2}/woshipm/user_article.js +9 -15
  1111. package/lib/v2/woshipm/utils.js +21 -0
  1112. package/lib/v2/woshipm/wen.js +36 -0
  1113. package/lib/v2/wp-china/news.js +12 -13
  1114. package/lib/v2/wxkol/maintainer.js +3 -0
  1115. package/lib/v2/wxkol/radar.js +13 -0
  1116. package/lib/v2/wxkol/router.js +3 -0
  1117. package/lib/v2/wxkol/show.js +80 -0
  1118. package/lib/v2/wyzxwk/article.js +20 -21
  1119. package/lib/v2/x6d/index.js +59 -0
  1120. package/lib/v2/x6d/maintainer.js +3 -0
  1121. package/lib/v2/x6d/radar.js +13 -0
  1122. package/lib/v2/x6d/router.js +3 -0
  1123. package/lib/v2/xaufe/jiaowu.js +72 -0
  1124. package/lib/v2/xaufe/maintainer.js +3 -0
  1125. package/lib/v2/xaufe/radar.js +11 -0
  1126. package/lib/v2/xaufe/router.js +3 -0
  1127. package/lib/v2/xiaohongshu/board.js +4 -2
  1128. package/lib/v2/xiaohongshu/maintainer.js +2 -1
  1129. package/lib/v2/xiaohongshu/radar.js +2 -2
  1130. package/lib/v2/xiaohongshu/user.js +20 -41
  1131. package/lib/v2/xiaohongshu/util.js +44 -7
  1132. package/lib/v2/xiaomiyoupin/crowdfunding.js +43 -0
  1133. package/lib/v2/xiaomiyoupin/latest.js +15 -0
  1134. package/lib/v2/xiaomiyoupin/maintainer.js +4 -0
  1135. package/lib/v2/xiaomiyoupin/radar.js +19 -0
  1136. package/lib/v2/xiaomiyoupin/router.js +4 -0
  1137. package/lib/v2/xiaomiyoupin/templates/goods.art +27 -0
  1138. package/lib/v2/xiaomiyoupin/utils.js +21 -0
  1139. package/lib/v2/xunhupay/index.js +24 -0
  1140. package/lib/v2/xunhupay/maintainer.js +3 -0
  1141. package/lib/v2/xunhupay/radar.js +13 -0
  1142. package/lib/v2/xunhupay/router.js +3 -0
  1143. package/lib/v2/xys/maintainer.js +3 -0
  1144. package/lib/v2/xys/new.js +74 -0
  1145. package/lib/v2/xys/radar.js +13 -0
  1146. package/lib/v2/xys/router.js +3 -0
  1147. package/lib/v2/xys/templates/desc.art +3 -0
  1148. package/lib/v2/yahoo/maintainer.js +3 -0
  1149. package/lib/{routes/yahoo-news → v2/yahoo/news}/index.js +10 -8
  1150. package/lib/v2/yahoo/radar.js +13 -0
  1151. package/lib/v2/yahoo/router.js +3 -0
  1152. package/lib/v2/ycwb/index.js +82 -0
  1153. package/lib/v2/ycwb/maintainer.js +3 -0
  1154. package/lib/v2/ycwb/radar.js +12 -0
  1155. package/lib/v2/ycwb/router.js +3 -0
  1156. package/lib/v2/ycwb/templates/description.art +7 -0
  1157. package/lib/v2/yicai/utils.js +1 -1
  1158. package/lib/v2/ymgal/article.js +61 -0
  1159. package/lib/v2/ymgal/game.js +41 -0
  1160. package/lib/v2/ymgal/maintainer.js +4 -0
  1161. package/lib/v2/ymgal/radar.js +31 -0
  1162. package/lib/v2/ymgal/router.js +4 -0
  1163. package/lib/v2/ymgal/templates/description.art +7 -0
  1164. package/lib/v2/youtube/channel.js +3 -4
  1165. package/lib/v2/youtube/charts.js +97 -0
  1166. package/lib/v2/youtube/community.js +56 -0
  1167. package/lib/v2/youtube/maintainer.js +2 -0
  1168. package/lib/v2/youtube/radar.js +14 -0
  1169. package/lib/v2/youtube/router.js +2 -0
  1170. package/lib/v2/youtube/templates/community.art +17 -0
  1171. package/lib/v2/youtube/user.js +16 -4
  1172. package/lib/v2/youtube/utils.js +3 -1
  1173. package/lib/v2/yuque/book.js +79 -0
  1174. package/lib/v2/yuque/maintainer.js +3 -0
  1175. package/lib/v2/yuque/radar.js +13 -0
  1176. package/lib/v2/yuque/router.js +3 -0
  1177. package/lib/v2/yuque/utils.js +46 -0
  1178. package/lib/v2/yxrb/home.js +61 -0
  1179. package/lib/v2/yxrb/maintainer.js +3 -0
  1180. package/lib/v2/yxrb/radar.js +13 -0
  1181. package/lib/v2/yxrb/router.js +3 -0
  1182. package/lib/v2/zaozao/article.js +36 -0
  1183. package/lib/v2/zaozao/maintainer.js +3 -0
  1184. package/lib/v2/zaozao/radar.js +13 -0
  1185. package/lib/v2/zaozao/router.js +3 -0
  1186. package/lib/v2/zcmu/jwc/index.js +41 -0
  1187. package/lib/v2/zcmu/maintainer.js +4 -0
  1188. package/lib/v2/zcmu/radar.js +87 -0
  1189. package/lib/v2/zcmu/router.js +4 -0
  1190. package/lib/v2/zcmu/yxy/index.js +42 -0
  1191. package/lib/v2/zcool/user.js +4 -0
  1192. package/lib/v2/zhibo8/forum.js +15 -16
  1193. package/lib/v2/zhibo8/luxiang.js +38 -0
  1194. package/lib/v2/zhibo8/maintainer.js +1 -0
  1195. package/lib/v2/zhibo8/more.js +12 -17
  1196. package/lib/v2/zhibo8/post.js +28 -18
  1197. package/lib/v2/zhibo8/radar.js +8 -0
  1198. package/lib/v2/zhibo8/router.js +1 -0
  1199. package/lib/v2/zhihu/pin/utils.js +49 -41
  1200. package/lib/v2/zhiy/letter.js +34 -0
  1201. package/lib/v2/zhiy/maintainer.js +4 -0
  1202. package/lib/v2/zhiy/post.js +69 -0
  1203. package/lib/v2/zhiy/radar.js +19 -0
  1204. package/lib/v2/zhiy/router.js +4 -0
  1205. package/lib/v2/zhiy/templates/post.art +12 -0
  1206. package/lib/v2/zhiy/utils.js +13 -0
  1207. package/lib/v2/zhubai/index.js +4 -0
  1208. package/lib/views/json.js +46 -0
  1209. package/package.json +42 -42
  1210. package/lib/routes/apkpure/versions.js +0 -23
  1211. package/lib/routes/baidu/topwords.js +0 -38
  1212. package/lib/routes/bjp/apod.js +0 -48
  1213. package/lib/routes/blogs/foreverblog.js +0 -33
  1214. package/lib/routes/caixin/article.js +0 -46
  1215. package/lib/routes/caixin/blog.js +0 -58
  1216. package/lib/routes/caixin/category.js +0 -44
  1217. package/lib/routes/caixin/latest.js +0 -75
  1218. package/lib/routes/caixin/yxnews.js +0 -30
  1219. package/lib/routes/cartoonmad/comic.js +0 -69
  1220. package/lib/routes/clickme/index.js +0 -76
  1221. package/lib/routes/copymanga/comic.js +0 -74
  1222. package/lib/routes/csrc/auditstatus.js +0 -61
  1223. package/lib/routes/csrc/fashenwei.js +0 -42
  1224. package/lib/routes/csrc/news.js +0 -45
  1225. package/lib/routes/eleduck/jobs.js +0 -38
  1226. package/lib/routes/fzdm/manhua.js +0 -62
  1227. package/lib/routes/gov/zhengce/govall.js +0 -59
  1228. package/lib/routes/gov/zhengce/wenjian.js +0 -53
  1229. package/lib/routes/gov/zhengce/zuixin.js +0 -42
  1230. package/lib/routes/gq/tw/index.js +0 -66
  1231. package/lib/routes/ikea/uk/new.js +0 -20
  1232. package/lib/routes/ikea/uk/offer.js +0 -64
  1233. package/lib/routes/instagram/index.js +0 -131
  1234. package/lib/routes/instagram/utils.js +0 -28
  1235. package/lib/routes/iqiyi/dongman.js +0 -42
  1236. package/lib/routes/jinshi/index.js +0 -35
  1237. package/lib/routes/langlive/room.js +0 -33
  1238. package/lib/routes/mi/youpin/crowdfunding.js +0 -39
  1239. package/lib/routes/mi/youpin/new.js +0 -26
  1240. package/lib/routes/nautilus/topics.js +0 -45
  1241. package/lib/routes/ncm/playlist.js +0 -45
  1242. package/lib/routes/netease/ds.js +0 -41
  1243. package/lib/routes/netease/dy.js +0 -54
  1244. package/lib/routes/netease/dy2.js +0 -62
  1245. package/lib/routes/netease/open/latest.js +0 -68
  1246. package/lib/routes/netease/open/vip.js +0 -39
  1247. package/lib/routes/nintendo/direct.js +0 -34
  1248. package/lib/routes/nintendo/eshop_cn.js +0 -51
  1249. package/lib/routes/nintendo/eshop_hk.js +0 -26
  1250. package/lib/routes/nintendo/eshop_jp.js +0 -20
  1251. package/lib/routes/nintendo/eshop_us.js +0 -36
  1252. package/lib/routes/nintendo/news.js +0 -25
  1253. package/lib/routes/nintendo/news_china.js +0 -41
  1254. package/lib/routes/novel/shuquge.js +0 -63
  1255. package/lib/routes/oilprice/index.js +0 -66
  1256. package/lib/routes/pnas/index.js +0 -66
  1257. package/lib/routes/qdaily/index.js +0 -88
  1258. package/lib/routes/researchgate/publications.js +0 -60
  1259. package/lib/routes/smzdm/article.js +0 -57
  1260. package/lib/routes/smzdm/baoliao.js +0 -55
  1261. package/lib/routes/smzdm/haowen.js +0 -60
  1262. package/lib/routes/smzdm/haowen_fenlei.js +0 -63
  1263. package/lib/routes/smzdm/keyword.js +0 -39
  1264. package/lib/routes/ssmh/category.js +0 -50
  1265. package/lib/routes/ssmh/index.js +0 -32
  1266. package/lib/routes/swjtu/tl/news.js +0 -35
  1267. package/lib/routes/tencent/factcheck/index.js +0 -51
  1268. package/lib/routes/typora/changelog-dev.js +0 -35
  1269. package/lib/routes/typora/changelog.js +0 -60
  1270. package/lib/routes/universities/cas/mesalab/kb.js +0 -45
  1271. package/lib/routes/universities/cas/sim/academic.js +0 -59
  1272. package/lib/routes/universities/ecnuyjs/ecnuyjs.js +0 -23
  1273. package/lib/routes/universities/shiep/index.js +0 -95
  1274. package/lib/routes/universities/shmtu/jwc.js +0 -75
  1275. package/lib/routes/universities/shmtu/www.js +0 -61
  1276. package/lib/routes/vocus/publication.js +0 -19
  1277. package/lib/routes/vocus/utils.js +0 -29
  1278. package/lib/routes/weibo/oasis/user.js +0 -17
  1279. package/lib/routes/woshipm/bookmarks.js +0 -45
  1280. package/lib/routes/woshipm/latest.js +0 -45
  1281. package/lib/routes/woshipm/popular.js +0 -38
  1282. package/lib/routes/woshipm/wen.js +0 -39
  1283. package/lib/routes/x6d/index.js +0 -64
  1284. package/lib/routes/yuanshen/index.js +0 -70
  1285. package/lib/routes/yuque/doc.js +0 -60
  1286. package/lib/v2/acm-ecnu/maintainer.js +0 -3
  1287. package/lib/v2/acm-ecnu/radar.js +0 -19
  1288. package/lib/v2/acm-ecnu/router.js +0 -3
  1289. package/lib/v2/ccfcv/maintainer.js +0 -3
  1290. package/lib/v2/ccfcv/radar.js +0 -25
  1291. package/lib/v2/ccfcv/router.js +0 -3
  1292. package/lib/v2/cnbeta/index.js +0 -16
  1293. package/lib/v2/csu/job.js +0 -34
  1294. package/lib/v2/dsndsht23/index.js +0 -121
  1295. package/lib/v2/heu/job/bigemploy.js +0 -42
  1296. package/lib/v2/hkepc/templates/image.art +0 -1
  1297. package/lib/v2/mp4er/index.js +0 -83
  1298. package/lib/v2/mp4er/maintainer.js +0 -3
  1299. package/lib/v2/mp4er/radar.js +0 -13
  1300. package/lib/v2/mp4er/router.js +0 -3
  1301. package/lib/v2/netease/maintainer.js +0 -6
  1302. package/lib/v2/netease/radar.js +0 -37
  1303. package/lib/v2/netease/router.js +0 -6
  1304. package/lib/v2/wechat/wemp.js +0 -58
  1305. /package/lib/v2/{netease → 163}/exclusive.js +0 -0
  1306. /package/lib/v2/{netease → 163}/templates/exclusive.art +0 -0
  1307. /package/lib/{routes/ncm/templates → v2/163/templates/music}/djradio-content.art +0 -0
  1308. /package/lib/v2/{eprice → caai}/templates/description.art +0 -0
  1309. /package/lib/v2/{ccfcv/templates → ccf/templates/ccfcv}/description.art +0 -0
  1310. /package/lib/v2/{hkepc/templates → ccf/templates/tfbd}/description.art +0 -0
  1311. /package/lib/v2/{acm-ecnu → ecnu}/templates/description.art +0 -0
  1312. /package/lib/{routes → v2}/iqiyi/video.js +0 -0
  1313. /package/lib/v2/{dsndsht23 → sehuatang}/maintainer.js +0 -0
  1314. /package/lib/v2/{dsndsht23 → sehuatang}/router.js +0 -0
@@ -1,24 +1,19 @@
1
1
  const got = require('@/utils/got');
2
2
  const cheerio = require('cheerio');
3
-
3
+ const { parseDate } = require('@/utils/parse-date');
4
4
  const rootUrl = 'http://news.hrbeu.edu.cn';
5
5
 
6
6
  module.exports = async (ctx) => {
7
- const date = new Date();
8
- const hour = date.getHours();
9
- const minute = date.getMinutes();
10
7
  const column = ctx.params.column;
11
8
  const id = ctx.params.id || '';
12
9
  let toUrl;
13
10
  if (id !== '') {
14
- toUrl = rootUrl.concat('/', column, '/', id, '.htm');
11
+ toUrl = `${rootUrl}/${column}/${id}.htm`;
15
12
  } else {
16
- toUrl = rootUrl.concat('/', column, '.htm');
13
+ toUrl = `${rootUrl}/${column}.htm`;
17
14
  }
18
15
 
19
- const response = await got({
20
- method: 'get',
21
- url: toUrl,
16
+ const response = await got(toUrl, {
22
17
  headers: {
23
18
  Referer: rootUrl,
24
19
  },
@@ -33,7 +28,7 @@ module.exports = async (ctx) => {
33
28
  const card = $('li.clearfix')
34
29
  .map((_, item) => ({
35
30
  title: $(item).find('div.list-right-tt').text(),
36
- pubDate: $(item).find('span').text() + ' ' + hour + ':' + minute,
31
+ pubDate: parseDate($(item).find('.news-date-li').text(), 'DDYYYY-MM'),
37
32
  link: $(item).find('a').attr('href'),
38
33
  description: $(item).find('div.list-right-p').text(),
39
34
  }))
@@ -1,24 +1,19 @@
1
1
  const got = require('@/utils/got');
2
2
  const cheerio = require('cheerio');
3
-
3
+ const { parseDate } = require('@/utils/parse-date');
4
4
  const rootUrl = 'http://news.hrbeu.edu.cn';
5
5
 
6
6
  module.exports = async (ctx) => {
7
- const date = new Date();
8
- const hour = date.getHours();
9
- const minute = date.getMinutes();
10
7
  const column = ctx.params.column;
11
8
  const id = ctx.params.id || '';
12
9
  let toUrl;
13
10
  if (id !== '') {
14
- toUrl = rootUrl.concat('/', column, '/', id, '.htm');
11
+ toUrl = `${rootUrl}/${column}/${id}.htm`;
15
12
  } else {
16
- toUrl = rootUrl.concat('/', column, '.htm');
13
+ toUrl = `${rootUrl}/${column}.htm`;
17
14
  }
18
15
 
19
- const response = await got({
20
- method: 'get',
21
- url: toUrl,
16
+ const response = await got(toUrl, {
22
17
  headers: {
23
18
  Referer: rootUrl,
24
19
  },
@@ -33,15 +28,15 @@ module.exports = async (ctx) => {
33
28
  const list = $('li.txt-elise')
34
29
  .map((_, item) => {
35
30
  let link = $(item).find('a').attr('href');
36
- if (link.indexOf('info') !== -1 && id !== '') {
37
- link = rootUrl.concat(link.substring(2));
31
+ if (link.includes('info') && id !== '') {
32
+ link = new URL(link, rootUrl).href;
38
33
  }
39
- if (link.indexOf('info') !== -1 && id === '') {
40
- link = rootUrl.concat('/', link);
34
+ if (link.includes('info') && id === '') {
35
+ link = `${rootUrl}/${link}`;
41
36
  }
42
37
  return {
43
38
  title: $(item).find('a').attr('title'),
44
- pubDate: $(item).find('span').text() + ' ' + hour + ':' + minute,
39
+ pubDate: parseDate($(item).find('span').text()),
45
40
  link,
46
41
  };
47
42
  })
@@ -50,15 +45,12 @@ module.exports = async (ctx) => {
50
45
  const items = await Promise.all(
51
46
  list.map((item) =>
52
47
  ctx.cache.tryGet(item.link, async () => {
53
- if (item.link.indexOf('info') !== -1) {
54
- const detailResponse = await got({
55
- method: 'get',
56
- url: item.link,
57
- });
48
+ if (item.link.includes('info')) {
49
+ const detailResponse = await got(item.link);
58
50
  const content = cheerio.load(detailResponse.data);
59
51
  item.description = content('div.v_news_content').html();
60
52
  } else {
61
- item.description = item.title + '<br><br>' + '本文需跳转,请点击标题后阅读';
53
+ item.description = '本文需跳转,请点击标题后阅读';
62
54
  }
63
55
  return item;
64
56
  })
@@ -0,0 +1,25 @@
1
+ const got = require('@/utils/got');
2
+ const cheerio = require('cheerio');
3
+ const { parseDate } = require('@/utils/parse-date');
4
+
5
+ module.exports = async (ctx) => {
6
+ const response = await got('http://job.hrbeu.edu.cn/HrbeuJY/web');
7
+
8
+ const $ = cheerio.load(response.data);
9
+
10
+ const list = $('div.articlecontent')
11
+ .map((_, item) => ({
12
+ title: $(item).find('a.bigTitle').text(),
13
+ pubDate: parseDate($(item).find('p').eq(1).text().replace('时间:', '').trim()),
14
+ description: '点击标题,登录查看招聘详情',
15
+ link: $(item).find('a.bigTitle').attr('href'),
16
+ }))
17
+ .get();
18
+
19
+ ctx.state.data = {
20
+ title: '大型招聘会',
21
+ link: 'http://job.hrbeu.edu.cn/HrbeuJY/web',
22
+ item: list,
23
+ allowEmpty: true,
24
+ };
25
+ };
@@ -11,10 +11,8 @@ module.exports = async (ctx) => {
11
11
  month < 10 ? (strmMonth = '0' + month) : (strmMonth = month);
12
12
  const day = date.getDate();
13
13
 
14
- const response = await got({
15
- method: 'post',
16
- url: 'http://job.hrbeu.edu.cn/HrbeuJY/Web/Employ/QueryCalendar',
17
- json: {
14
+ const response = await got('http://job.hrbeu.edu.cn/HrbeuJY/Web/Employ/QueryCalendar', {
15
+ searchParams: {
18
16
  yearMonth: year + '-' + strmMonth,
19
17
  },
20
18
  }).json();
@@ -27,22 +25,16 @@ module.exports = async (ctx) => {
27
25
  }
28
26
  }
29
27
 
30
- const todayResponse = await got({
31
- method: 'get',
32
- url: rootUrl.concat(link),
33
- });
28
+ const todayResponse = await got(`${rootUrl}${link}`);
34
29
 
35
30
  const $ = cheerio.load(todayResponse.data);
36
31
 
37
32
  const list = $('li.clearfix')
38
- .map((_, item) => {
39
- const link = $(item).find('span.news_tit.news_tit_s').find('a').attr('href');
40
- return {
41
- title: $(item).find('span.news_tit.news_tit_s').find('a').attr('title'),
42
- description: $(item).find('span.news_tit.news_tit_s').find('a').attr('title') + '<br><br>' + '点击标题,登录查看招聘详情',
43
- link,
44
- };
45
- })
33
+ .map((_, item) => ({
34
+ title: $(item).find('span.news_tit.news_tit_s').find('a').attr('title'),
35
+ description: '点击标题,登录查看招聘详情',
36
+ link: $(item).find('span.news_tit.news_tit_s').find('a').attr('href'),
37
+ }))
46
38
  .get();
47
39
 
48
40
  ctx.state.data = {
@@ -1,6 +1,7 @@
1
1
  const got = require('@/utils/got');
2
2
  const cheerio = require('cheerio');
3
-
3
+ const { parseDate } = require('@/utils/parse-date');
4
+ const { finishArticleItem } = require('@/utils/wechat-mp');
4
5
  const rootUrl = 'http://job.hrbeu.edu.cn';
5
6
 
6
7
  const idMap = {
@@ -15,14 +16,9 @@ const idMap = {
15
16
  };
16
17
 
17
18
  module.exports = async (ctx) => {
18
- const date = new Date();
19
- const hour = date.getHours();
20
- const minute = date.getMinutes();
21
19
  const id = ctx.params.id;
22
20
 
23
- const response = await got({
24
- method: 'get',
25
- url: idMap[id].url,
21
+ const response = await got(idMap[id].url, {
26
22
  headers: {
27
23
  Referer: rootUrl,
28
24
  },
@@ -33,12 +29,12 @@ module.exports = async (ctx) => {
33
29
  const list = $('li.list_item.i1')
34
30
  .map((_, item) => {
35
31
  let link = $(item).find('a').attr('href');
36
- if (link.indexOf('HrbeuJY') !== -1) {
37
- link = rootUrl.concat(link);
32
+ if (link.includes('HrbeuJY')) {
33
+ link = `${rootUrl}${link}`;
38
34
  }
39
35
  return {
40
36
  title: $(item).find('a').attr('title'),
41
- pubDate: $(item).find('.Article_PublishDate').text() + ' ' + hour + ':' + minute,
37
+ pubDate: parseDate($(item).find('.Article_PublishDate').text()),
42
38
  link,
43
39
  };
44
40
  })
@@ -47,15 +43,14 @@ module.exports = async (ctx) => {
47
43
  const items = await Promise.all(
48
44
  list.map((item) =>
49
45
  ctx.cache.tryGet(item.link, async () => {
50
- if (item.link.indexOf('HrbeuJY') !== -1) {
51
- const detailResponse = await got({
52
- method: 'get',
53
- url: item.link,
54
- });
46
+ if (item.link.includes('HrbeuJY')) {
47
+ const detailResponse = await got(item.link);
55
48
  const content = cheerio.load(detailResponse.data);
56
49
  item.description = content('.article').html();
50
+ } else if (new URL(item.link).hostname === 'mp.weixin.qq.com') {
51
+ await finishArticleItem(ctx, item);
57
52
  } else {
58
- item.description = item.title + '<br><br>' + '本文需跳转,请点击标题后阅读';
53
+ item.description = '本文需跳转,请点击标题后阅读';
59
54
  }
60
55
  return item;
61
56
  })
@@ -1,8 +1,9 @@
1
1
  module.exports = {
2
- '/yjsy/list/:id': ['Derekmini'],
3
2
  '/job/bigemploy': ['Derekmini'],
4
3
  '/job/calendar': ['Derekmini'],
5
4
  '/job/list/:id': ['Derekmini'],
6
5
  '/gx/:type/:colume/:id?': ['Derekmini'],
7
6
  '/uae/list/:id': ['Derekmini'],
7
+ '/ugs/news/:author?/:category?': ['XYenon'],
8
+ '/yjsy/list/:id': ['Derekmini'],
8
9
  };
@@ -6,7 +6,7 @@ module.exports = {
6
6
  title: '研究生院',
7
7
  docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
8
8
  source: '/:id/list.htm',
9
- target: '/heu/yjsy/list/:id',
9
+ target: '/hrbeu/yjsy/list/:id',
10
10
  },
11
11
  ],
12
12
  job: [
@@ -14,25 +14,25 @@ module.exports = {
14
14
  title: '大型招聘会',
15
15
  docs: 'https://docs.rsshub.app/journal.html#ha-er-bin-gong-cheng-da-xue',
16
16
  source: '/*',
17
- target: '/heu/job/bigemploy',
17
+ target: '/hrbeu/job/bigemploy',
18
18
  },
19
19
  {
20
20
  title: '今日招聘会',
21
21
  docs: 'https://docs.rsshub.app/journal.html#ha-er-bin-gong-cheng-da-xue',
22
22
  source: '/*',
23
- target: '/heu/job/calendar',
23
+ target: '/hrbeu/job/calendar',
24
24
  },
25
25
  {
26
26
  title: '就业服务平台-通知公告',
27
27
  docs: 'https://docs.rsshub.app/journal.html#ha-er-bin-gong-cheng-da-xue',
28
28
  source: '/*',
29
- target: '/heu/job/list/tzgg',
29
+ target: '/hrbeu/job/list/tzgg',
30
30
  },
31
31
  {
32
32
  title: '就业服务平台-热点新闻',
33
33
  docs: 'https://docs.rsshub.app/journal.html#ha-er-bin-gong-cheng-da-xue',
34
34
  source: '/*',
35
- target: '/heu/job/list/rdxw',
35
+ target: '/hrbeu/job/list/rdxw',
36
36
  },
37
37
  ],
38
38
  news: [
@@ -40,25 +40,25 @@ module.exports = {
40
40
  title: '工学',
41
41
  docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
42
42
  source: '/:column',
43
- target: (params) => `/heu/gx/list/${params.column.replace('.htm', '')}`,
43
+ target: (params) => `/hrbeu/gx/list/${params.column.replace('.htm', '')}`,
44
44
  },
45
45
  {
46
46
  title: '工学',
47
47
  docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
48
48
  source: '/:column/:id',
49
- target: (params) => `/heu/gx/list/${params.column}/${params.id.replace('.htm', '')}`,
49
+ target: (params) => `/hrbeu/gx/list/${params.column}/${params.id.replace('.htm', '')}`,
50
50
  },
51
51
  {
52
52
  title: '工学-card',
53
53
  docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
54
54
  source: '/:column',
55
- target: (params) => `/heu/gx/card/${params.column.replace('.htm', '')}`,
55
+ target: (params) => `/hrbeu/gx/card/${params.column.replace('.htm', '')}`,
56
56
  },
57
57
  {
58
58
  title: '工学-card',
59
59
  docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
60
60
  source: '/:column/:id',
61
- target: (params) => `/heu/gx/card/${params.column}/${params.id.replace('.htm', '')}`,
61
+ target: (params) => `/hrbeu/gx/card/${params.column}/${params.id.replace('.htm', '')}`,
62
62
  },
63
63
  ],
64
64
  uae: [
@@ -66,7 +66,15 @@ module.exports = {
66
66
  title: '水声学院',
67
67
  docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
68
68
  source: '/:id/list.htm',
69
- target: '/heu/uae/list/:id',
69
+ target: '/hrbeu/uae/list/:id',
70
+ },
71
+ ],
72
+ ugs: [
73
+ {
74
+ title: '本科生院工作通知',
75
+ docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
76
+ source: '/:author/list.htm',
77
+ target: '/hrbeu/ugs/news/:author',
70
78
  },
71
79
  ],
72
80
  },
@@ -1,9 +1,10 @@
1
1
  module.exports = function (router) {
2
- router.get('/yjsy/list/:id', require('./yjsy/list'));
3
2
  router.get('/job/bigemploy', require('./job/bigemploy'));
4
3
  router.get('/job/calendar', require('./job/calendar'));
5
4
  router.get('/job/list/:id', require('./job/list'));
6
- router.get('/gx/list/:column/:id?', require('./gx/list'));
7
5
  router.get('/gx/card/:column/:id?', require('./gx/card'));
6
+ router.get('/gx/list/:column/:id?', require('./gx/list'));
8
7
  router.get('/uae/list/:id', require('./uae/list'));
8
+ router.get('/ugs/news/:author?/:category?', require('./ugs/news'));
9
+ router.get('/yjsy/list/:id', require('./yjsy/list'));
9
10
  };
@@ -1,17 +1,13 @@
1
1
  const got = require('@/utils/got');
2
2
  const cheerio = require('cheerio');
3
-
3
+ const { parseDate } = require('@/utils/parse-date');
4
+ const { finishArticleItem } = require('@/utils/wechat-mp');
4
5
  const rootUrl = 'http://uae.hrbeu.edu.cn';
5
6
 
6
7
  module.exports = async (ctx) => {
7
- const date = new Date();
8
- const hour = date.getHours();
9
- const minute = date.getMinutes();
10
8
  const id = ctx.params.id;
11
9
 
12
- const response = await got({
13
- method: 'get',
14
- url: rootUrl.concat('/', id, '/list.htm'),
10
+ const response = await got(`${rootUrl}/${id}/list.htm`, {
15
11
  headers: {
16
12
  Referer: rootUrl,
17
13
  },
@@ -24,12 +20,12 @@ module.exports = async (ctx) => {
24
20
  const list = $('a.column-news-item')
25
21
  .map((_, item) => {
26
22
  let link = $(item).attr('href');
27
- if (link.indexOf('page.htm') !== -1) {
28
- link = rootUrl.concat(link);
23
+ if (link.includes('page.htm')) {
24
+ link = `${rootUrl}${link}`;
29
25
  }
30
26
  return {
31
27
  title: $(item).find('span.column-news-title').text(),
32
- pubDate: $(item).find('span.column-news-date').text() + ' ' + hour + ':' + minute,
28
+ pubDate: parseDate($(item).find('span.column-news-date').text()),
33
29
  link,
34
30
  };
35
31
  })
@@ -38,16 +34,15 @@ module.exports = async (ctx) => {
38
34
  const items = await Promise.all(
39
35
  list.map((item) =>
40
36
  ctx.cache.tryGet(item.link, async () => {
41
- if (item.link.indexOf('page.htm') !== -1) {
42
- const detailResponse = await got({
43
- method: 'get',
44
- url: item.link,
45
- });
37
+ if (item.link.includes('page.htm')) {
38
+ const detailResponse = await got(item.link);
46
39
  const content = cheerio.load(detailResponse.data);
47
40
  item.description = content('div.wp_articlecontent').html();
48
41
  item.title = content('h1.arti-title').text();
42
+ } else if (new URL(item.link).hostname === 'mp.weixin.qq.com') {
43
+ await finishArticleItem(ctx, item);
49
44
  } else {
50
- item.description = item.title + '<br><br>' + '本文需跳转,请点击标题后阅读';
45
+ item.description = '本文需跳转,请点击标题后阅读';
51
46
  }
52
47
  return item;
53
48
  })
@@ -56,7 +51,7 @@ module.exports = async (ctx) => {
56
51
 
57
52
  ctx.state.data = {
58
53
  title: '水声学院-' + bigTitle,
59
- link: rootUrl.concat('/', id, '/list.htm'),
54
+ link: `${rootUrl}/${id}/list.htm`,
60
55
  item: items,
61
56
  };
62
57
  };
@@ -0,0 +1,98 @@
1
+ const got = require('@/utils/got');
2
+ const cheerio = require('cheerio');
3
+ const { parseDate } = require('@/utils/parse-date');
4
+
5
+ const baseUrl = 'http://ugs.hrbeu.edu.cn';
6
+
7
+ const authorMap = {
8
+ gztz: {
9
+ all: '/2821',
10
+ },
11
+ jwc: {
12
+ all: '/jwc',
13
+ jxap: '/2847',
14
+ ksgl: '/2895',
15
+ xjgl: '/2902',
16
+ wytk: '/2897',
17
+ cjgl: '/2901',
18
+ },
19
+ sjjxyjlc: {
20
+ all: '/3206',
21
+ syjx: '/2847',
22
+ sysjs: '/sysjs',
23
+ xwsx: '/2909',
24
+ xwlw: '/2910',
25
+ kcsj: '/2911',
26
+ cxcy: '/2913',
27
+ xjjl: '/xjjl',
28
+ },
29
+ jypgc: {
30
+ all: '/3207',
31
+ jxyjyjxcg: '/2916',
32
+ zljk: '/2917',
33
+ },
34
+ zyjsc: {
35
+ all: '/3208',
36
+ zyyjcjs: '/2914',
37
+ cgsyb: '/2925',
38
+ jxmsyyxzjjs: '/2918',
39
+ ktjs: '/2919',
40
+ syjx: '/2920',
41
+ },
42
+ gjdxswhszjd: {
43
+ all: '/3209',
44
+ },
45
+ jsjxfzzx: {
46
+ all: '/3210',
47
+ jspx: '/2915',
48
+ },
49
+ zhbgs: {
50
+ all: '/3211',
51
+ lxkc: '/lxkc',
52
+ },
53
+ };
54
+
55
+ module.exports = async (ctx) => {
56
+ const author = ctx.params.author || 'gztz';
57
+ const category = ctx.params.category || 'all';
58
+ const link = baseUrl + authorMap[author][category] + '/list.htm';
59
+ const response = await got(link, {
60
+ headers: {
61
+ Referer: baseUrl,
62
+ },
63
+ });
64
+ const $ = cheerio.load(response.data);
65
+
66
+ const list = $('.wp_article_list_table .border9')
67
+ .toArray()
68
+ .map((e) => {
69
+ e = $(e);
70
+ return {
71
+ title: e.find('a').attr('title'),
72
+ link: new URL(e.find('a').attr('href'), baseUrl).href,
73
+ pubDate: parseDate(e.find('.date').text()),
74
+ };
75
+ });
76
+
77
+ const out = await Promise.all(
78
+ list.map((item) =>
79
+ ctx.cache.tryGet(item.link, async () => {
80
+ if (item.link.includes('.htm')) {
81
+ const response = await got(item.link);
82
+ const $ = cheerio.load(response.data);
83
+
84
+ item.description = $('.wp_articlecontent').html().trim();
85
+ } else {
86
+ item.description = '此链接为文件,请点击下载';
87
+ }
88
+ return item;
89
+ })
90
+ )
91
+ );
92
+
93
+ ctx.state.data = {
94
+ title: '哈尔滨工程大学本科生院工作通知',
95
+ link,
96
+ item: out,
97
+ };
98
+ };
@@ -1,17 +1,12 @@
1
1
  const got = require('@/utils/got');
2
2
  const cheerio = require('cheerio');
3
-
3
+ const { parseDate } = require('@/utils/parse-date');
4
4
  const rootUrl = 'http://yjsy.hrbeu.edu.cn';
5
5
 
6
6
  module.exports = async (ctx) => {
7
- const date = new Date();
8
- const hour = date.getHours();
9
- const minute = date.getMinutes();
10
7
  const id = ctx.params.id;
11
8
 
12
- const response = await got({
13
- method: 'get',
14
- url: rootUrl.concat('/', id, '/list.htm'),
9
+ const response = await got(`${rootUrl}/${id}/list.htm`, {
15
10
  headers: {
16
11
  Referer: rootUrl,
17
12
  },
@@ -28,12 +23,12 @@ module.exports = async (ctx) => {
28
23
  const list = $('li.list_item')
29
24
  .map((_, item) => {
30
25
  let link = $(item).find('a').attr('href');
31
- if (link.indexOf('page.htm') !== -1) {
32
- link = rootUrl.concat(link);
26
+ if (link.includes('page.htm')) {
27
+ link = `${rootUrl}${link}`;
33
28
  }
34
29
  return {
35
30
  title: $(item).find('a').attr('title'),
36
- pubDate: $(item).find('span.Article_PublishDate').text() + ' ' + hour + ':' + minute,
31
+ pubDate: parseDate($(item).find('span.Article_PublishDate').text()),
37
32
  link,
38
33
  };
39
34
  })
@@ -42,15 +37,12 @@ module.exports = async (ctx) => {
42
37
  const items = await Promise.all(
43
38
  list.map((item) =>
44
39
  ctx.cache.tryGet(item.link, async () => {
45
- if (item.link.indexOf('page.htm') !== -1) {
46
- const detailResponse = await got({
47
- method: 'get',
48
- url: item.link,
49
- });
40
+ if (item.link.includes('page.htm')) {
41
+ const detailResponse = await got(item.link);
50
42
  const content = cheerio.load(detailResponse.data);
51
43
  item.description = content('div.wp_articlecontent').html();
52
44
  } else {
53
- item.description = item.title + '<br><br>' + '本文需跳转,请点击标题后阅读';
45
+ item.description = '本文需跳转,请点击标题后阅读';
54
46
  }
55
47
  return item;
56
48
  })
@@ -0,0 +1,36 @@
1
+ const got = require('@/utils/got');
2
+ const utils = require('./utils');
3
+
4
+ const typeMap = {
5
+ 351: {
6
+ name: '名师风采',
7
+ },
8
+ 353: {
9
+ name: '热点新闻',
10
+ },
11
+ 354: {
12
+ name: '教务公告',
13
+ },
14
+ 355: {
15
+ name: '教学新闻',
16
+ },
17
+ };
18
+
19
+ module.exports = async (ctx) => {
20
+ const page = ctx.params.page || '12';
21
+ const base = utils.columnIdBase(ctx.params.type) + '&pagingNumberPer=' + page;
22
+ const res = await got(base);
23
+ const info = utils.fetchAllArticle(res.data, utils.JWZXBASE);
24
+
25
+ const details = await Promise.all(info.map((e) => utils.detailPage(e, ctx.cache)));
26
+
27
+ // ctx.state.json = {
28
+ // info,
29
+ // };
30
+
31
+ ctx.state.data = {
32
+ title: '哈理工教务处' + typeMap[ctx.params.type || 354].name,
33
+ link: base,
34
+ item: details,
35
+ };
36
+ };
@@ -0,0 +1,3 @@
1
+ module.exports = {
2
+ '/jwzx/:type?/:page?': ['LenaNouzen'],
3
+ };
@@ -0,0 +1,13 @@
1
+ module.exports = {
2
+ 'hrbust.edu.cn': {
3
+ _name: '哈尔滨理工大学',
4
+ jwzx: [
5
+ {
6
+ title: '教务处',
7
+ docs: 'https://docs.rsshub.app/university.html#ha-er-bin-li-gong-da-xue',
8
+ source: '/homepage/*',
9
+ target: (params, url) => `/hrbust/jwzx/${new URL(url).searchParams.get('columnId')}`,
10
+ },
11
+ ],
12
+ },
13
+ };
@@ -0,0 +1,3 @@
1
+ module.exports = function (router) {
2
+ router.get('/jwzx/:type?/:page?', require('./jwzx'));
3
+ };
@@ -0,0 +1 @@
1
+ {{@ desc }}