rsshub 1.0.0-master.f60609e → 1.0.0-master.f607442

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 (2759) hide show
  1. package/README.md +9 -10
  2. package/lib/config.js +31 -7
  3. package/lib/middleware/cache/index.js +3 -0
  4. package/lib/middleware/parameter.js +25 -12
  5. package/lib/middleware/template.js +29 -11
  6. package/lib/radar-rules.js +113 -697
  7. package/lib/router.js +273 -291
  8. package/lib/routes/bandisoft/index.js +4 -0
  9. package/lib/routes/bbc/index.js +1 -0
  10. package/lib/routes/biobio/others.js +5 -0
  11. package/lib/routes/blogs/hedwig.js +4 -0
  12. package/lib/routes/blogs/wordpress.js +5 -0
  13. package/lib/routes/booth-pm/shop.js +4 -1
  14. package/lib/routes/cell/cover.js +1 -1
  15. package/lib/routes/craigslist/search.js +5 -0
  16. package/lib/routes/engadget/home.js +4 -0
  17. package/lib/routes/everything/changes.js +1 -1
  18. package/lib/routes/fanbox/main.js +4 -1
  19. package/lib/routes/fanxinzhui/latest.js +12 -13
  20. package/lib/routes/fashionnetwork/headline.js +15 -12
  21. package/lib/routes/fashionnetwork/news.js +16 -12
  22. package/lib/routes/gitlab/common.js +5 -0
  23. package/lib/routes/gitlab/explore.js +5 -0
  24. package/lib/routes/gitlab/release.js +5 -0
  25. package/lib/routes/gitlab/tag.js +5 -0
  26. package/lib/routes/hexo/fluid.js +4 -0
  27. package/lib/routes/hexo/next.js +4 -0
  28. package/lib/routes/hexo/yilia.js +4 -0
  29. package/lib/routes/mastodon/account_id.js +4 -0
  30. package/lib/routes/mastodon/timeline_local.js +4 -0
  31. package/lib/routes/mastodon/timeline_remote.js +4 -0
  32. package/lib/routes/mastodon/utils.js +3 -0
  33. package/lib/routes/pornhub/category_url.js +4 -0
  34. package/lib/routes/pornhub/model.js +4 -0
  35. package/lib/routes/pornhub/pornstar.js +4 -0
  36. package/lib/routes/pornhub/users.js +4 -0
  37. package/lib/routes/questmobile/report.js +13 -14
  38. package/lib/routes/rss3/blog.js +11 -12
  39. package/lib/routes/sankakucomplex/post.js +1 -4
  40. package/lib/routes/touhougarakuta/index.js +3 -0
  41. package/lib/routes/v2ex/post.js +3 -0
  42. package/lib/routes/v2ex/topics.js +4 -8
  43. package/lib/routes/weforum/report.js +10 -6
  44. package/lib/routes/ziroom/room.js +5 -0
  45. package/lib/utils/parse-date.js +4 -4
  46. package/lib/utils/puppeteer-utils.js +63 -0
  47. package/lib/utils/puppeteer.js +16 -0
  48. package/lib/utils/render.js +2 -0
  49. package/lib/utils/request-wrapper.js +38 -94
  50. package/lib/utils/unify-proxy.js +116 -0
  51. package/lib/utils/valid-host.js +16 -0
  52. package/lib/utils/wechat-mp.js +15 -5
  53. package/lib/v2/0818tuan/index.js +47 -0
  54. package/lib/v2/0818tuan/maintainer.js +3 -0
  55. package/lib/v2/0818tuan/radar.js +13 -0
  56. package/lib/v2/0818tuan/router.js +3 -0
  57. package/lib/v2/163/ds.js +33 -0
  58. package/lib/v2/163/dy.js +29 -0
  59. package/lib/v2/163/dy2.js +42 -0
  60. package/lib/v2/163/exclusive.js +148 -0
  61. package/lib/v2/163/maintainer.js +20 -0
  62. package/lib/v2/163/music/artist-songs.js +39 -0
  63. package/lib/v2/163/music/artist.js +39 -0
  64. package/lib/v2/163/music/djradio.js +78 -0
  65. package/lib/v2/163/music/maintainer.js +3 -0
  66. package/lib/v2/163/music/playlist.js +55 -0
  67. package/lib/v2/163/music/userevents.js +52 -0
  68. package/lib/v2/163/music/userplaylist.js +56 -0
  69. package/lib/v2/163/music/userplayrecords.js +55 -0
  70. package/lib/v2/163/news/rank.js +155 -0
  71. package/lib/v2/163/news/special.js +114 -0
  72. package/lib/v2/163/open/vip.js +63 -0
  73. package/lib/v2/163/radar.js +155 -0
  74. package/lib/v2/163/renjian.js +77 -0
  75. package/lib/v2/163/router.js +20 -0
  76. package/lib/v2/163/templates/ds.art +7 -0
  77. package/lib/v2/163/templates/dy.art +6 -0
  78. package/lib/v2/163/templates/exclusive.art +11 -0
  79. package/lib/v2/163/templates/music/playlist.art +4 -0
  80. package/lib/v2/163/templates/music/userevents.art +7 -0
  81. package/lib/v2/163/templates/music/userplaylist.art +16 -0
  82. package/lib/v2/163/templates/music/userplayrecords.art +7 -0
  83. package/lib/v2/163/templates/open.art +12 -0
  84. package/lib/v2/163/today.js +55 -0
  85. package/lib/v2/163/utils.js +40 -0
  86. package/lib/v2/18comic/album.js +2 -1
  87. package/lib/v2/18comic/blogs.js +2 -1
  88. package/lib/v2/18comic/radar.js +39 -29
  89. package/lib/v2/18comic/templates/description.art +4 -0
  90. package/lib/v2/18comic/utils.js +15 -15
  91. package/lib/v2/19lou/index.js +4 -0
  92. package/lib/v2/2cycd/index.js +57 -0
  93. package/lib/v2/2cycd/maintainer.js +3 -0
  94. package/lib/v2/2cycd/radar.js +25 -0
  95. package/lib/v2/2cycd/router.js +3 -0
  96. package/lib/v2/35photo/genre.js +2 -1
  97. package/lib/v2/35photo/utils.js +19 -4
  98. package/lib/v2/36kr/index.js +80 -0
  99. package/lib/v2/36kr/maintainer.js +7 -5
  100. package/lib/v2/36kr/radar.js +27 -15
  101. package/lib/v2/36kr/router.js +1 -5
  102. package/lib/v2/500px/maintainer.js +4 -0
  103. package/lib/v2/500px/radar.js +19 -0
  104. package/lib/v2/500px/router.js +4 -0
  105. package/lib/v2/500px/templates/tribeSet.art +6 -0
  106. package/lib/v2/500px/templates/user.art +3 -0
  107. package/lib/v2/500px/tribeSet.js +29 -0
  108. package/lib/v2/500px/user.js +32 -0
  109. package/lib/v2/500px/utils.js +122 -0
  110. package/lib/v2/50forum/radar.js +1 -1
  111. package/lib/v2/50forum/zhuanjia.js +1 -1
  112. package/lib/v2/52hrtt/index.js +12 -13
  113. package/lib/v2/52hrtt/symposium.js +12 -13
  114. package/lib/v2/591/list.js +144 -0
  115. package/lib/v2/591/radar.js +16 -0
  116. package/lib/v2/591/router.js +3 -0
  117. package/lib/v2/591/templates/house.art +52 -0
  118. package/lib/v2/6v123/latestMovies.js +14 -0
  119. package/lib/v2/6v123/latestTVSeries.js +14 -0
  120. package/lib/v2/6v123/maintainer.js +4 -0
  121. package/lib/v2/6v123/radar.js +23 -0
  122. package/lib/v2/6v123/router.js +4 -0
  123. package/lib/v2/6v123/utils.js +81 -0
  124. package/lib/v2/78dm/index.js +74 -0
  125. package/lib/v2/78dm/maintainer.js +5 -0
  126. package/lib/v2/78dm/radar.js +37 -0
  127. package/lib/v2/78dm/router.js +3 -0
  128. package/lib/v2/78dm/templates/image.art +1 -0
  129. package/lib/v2/7mmtv/index.js +15 -23
  130. package/lib/v2/7mmtv/templates/description.art +5 -1
  131. package/lib/v2/8world/index.js +8 -8
  132. package/lib/v2/8world/maintainer.js +1 -0
  133. package/lib/v2/8world/radar.js +6 -0
  134. package/lib/v2/8world/router.js +1 -1
  135. package/lib/v2/91porn/author.js +60 -0
  136. package/lib/v2/91porn/index.js +2 -0
  137. package/lib/v2/91porn/maintainer.js +1 -0
  138. package/lib/v2/91porn/radar.js +7 -1
  139. package/lib/v2/91porn/router.js +1 -0
  140. package/lib/v2/91porn/utils.js +12 -0
  141. package/lib/v2/abmedia/category.js +1 -1
  142. package/lib/v2/acfun/article.js +100 -0
  143. package/lib/v2/acfun/bangumi.js +28 -0
  144. package/lib/v2/acfun/maintainer.js +5 -0
  145. package/lib/v2/acfun/radar.js +25 -0
  146. package/lib/v2/acfun/router.js +5 -0
  147. package/lib/v2/acfun/video.js +45 -0
  148. package/lib/v2/acg17/maintainer.js +3 -0
  149. package/lib/v2/acg17/post.js +20 -0
  150. package/lib/v2/acg17/radar.js +13 -0
  151. package/lib/v2/acg17/router.js +3 -0
  152. package/lib/v2/acs/journal.js +73 -0
  153. package/lib/v2/acs/maintainer.js +3 -0
  154. package/lib/v2/acs/radar.js +13 -0
  155. package/lib/v2/acs/router.js +3 -0
  156. package/lib/v2/acs/templates/description.art +2 -0
  157. package/lib/v2/aeaweb/index.js +81 -0
  158. package/lib/v2/aeaweb/maintainer.js +3 -0
  159. package/lib/v2/aeaweb/radar.js +13 -0
  160. package/lib/v2/aeaweb/router.js +3 -0
  161. package/lib/v2/aeaweb/templates/description.art +3 -0
  162. package/lib/v2/agefans/detail.js +26 -0
  163. package/lib/v2/agefans/maintainer.js +4 -0
  164. package/lib/v2/agefans/radar.js +19 -0
  165. package/lib/v2/agefans/router.js +4 -0
  166. package/lib/v2/agefans/update.js +40 -0
  167. package/lib/v2/agora0/maintainer.js +1 -0
  168. package/lib/v2/agora0/pen0.js +43 -0
  169. package/lib/v2/agora0/radar.js +12 -1
  170. package/lib/v2/agora0/router.js +1 -0
  171. package/lib/v2/aicaijing/index.js +73 -0
  172. package/lib/v2/aicaijing/maintainer.js +6 -0
  173. package/lib/v2/aicaijing/radar.js +31 -0
  174. package/lib/v2/aicaijing/router.js +3 -0
  175. package/lib/v2/aicaijing/templates/description.art +4 -0
  176. package/lib/v2/aiea/index.js +39 -0
  177. package/lib/v2/aiea/maintainer.js +3 -0
  178. package/lib/v2/aiea/radar.js +13 -0
  179. package/lib/v2/aiea/router.js +3 -0
  180. package/lib/v2/aijishu/index.js +26 -0
  181. package/lib/v2/aijishu/maintainer.js +5 -0
  182. package/lib/v2/aijishu/radar.js +25 -0
  183. package/lib/v2/aijishu/router.js +3 -0
  184. package/lib/v2/aijishu/utils.js +36 -0
  185. package/lib/v2/airchina/index.js +36 -0
  186. package/lib/v2/airchina/maintainer.js +3 -0
  187. package/lib/v2/airchina/radar.js +13 -0
  188. package/lib/v2/airchina/router.js +3 -0
  189. package/lib/v2/aliyundrive/files.js +59 -0
  190. package/lib/v2/aliyundrive/maintainer.js +3 -0
  191. package/lib/v2/aliyundrive/radar.js +13 -0
  192. package/lib/v2/aliyundrive/router.js +3 -0
  193. package/lib/v2/aljazeera/index.js +87 -0
  194. package/lib/v2/aljazeera/maintainer.js +5 -0
  195. package/lib/v2/aljazeera/radar.js +62 -0
  196. package/lib/v2/aljazeera/router.js +3 -0
  197. package/lib/v2/aljazeera/templates/description.art +8 -0
  198. package/lib/v2/allrecode/index.js +65 -0
  199. package/lib/v2/allrecode/maintainer.js +5 -0
  200. package/lib/v2/allrecode/news.js +35 -0
  201. package/lib/v2/allrecode/radar.js +25 -0
  202. package/lib/v2/allrecode/router.js +4 -0
  203. package/lib/v2/ally/rail.js +41 -42
  204. package/lib/v2/amazon/awsblogs.js +27 -0
  205. package/lib/v2/amazon/kindle-software-updates.js +47 -0
  206. package/lib/v2/amazon/maintainer.js +4 -0
  207. package/lib/v2/amazon/radar.js +24 -0
  208. package/lib/v2/amazon/router.js +4 -0
  209. package/lib/v2/amazon/templates/software-description.art +4 -0
  210. package/lib/v2/android/maintainer.js +3 -0
  211. package/lib/v2/android/platform-tools-releases.js +47 -0
  212. package/lib/v2/android/radar.js +13 -0
  213. package/lib/v2/android/router.js +3 -0
  214. package/lib/v2/annualreviews/index.js +68 -0
  215. package/lib/v2/annualreviews/maintainer.js +3 -0
  216. package/lib/v2/annualreviews/radar.js +13 -0
  217. package/lib/v2/annualreviews/router.js +3 -0
  218. package/lib/v2/anquanke/category.js +39 -0
  219. package/lib/v2/anquanke/maintainer.js +4 -0
  220. package/lib/v2/anquanke/radar.js +13 -0
  221. package/lib/v2/anquanke/router.js +4 -0
  222. package/lib/v2/anquanke/vul.js +34 -0
  223. package/lib/v2/apkpure/maintainer.js +3 -0
  224. package/lib/v2/apkpure/radar.js +13 -0
  225. package/lib/v2/apkpure/router.js +3 -0
  226. package/lib/v2/apkpure/versions.js +48 -0
  227. package/lib/v2/apnews/topics.js +21 -18
  228. package/lib/v2/apple/exchange_repair.js +28 -21
  229. package/lib/v2/appledaily/index.js +7 -11
  230. package/lib/v2/arcteryx/maintainer.js +4 -0
  231. package/lib/v2/arcteryx/new-arrivals.js +49 -0
  232. package/lib/v2/arcteryx/radar.js +21 -0
  233. package/lib/v2/arcteryx/regear-new-arrivals.js +53 -0
  234. package/lib/v2/arcteryx/router.js +4 -0
  235. package/lib/v2/arcteryx/templates/product-description.art +6 -0
  236. package/lib/v2/arcteryx/templates/regear-product-description.art +16 -0
  237. package/lib/v2/asus/bios.js +1 -0
  238. package/lib/v2/asus/gpu-tweak.js +31 -0
  239. package/lib/v2/asus/maintainer.js +1 -0
  240. package/lib/v2/asus/radar.js +12 -1
  241. package/lib/v2/asus/router.js +1 -0
  242. package/lib/v2/baai/comments.js +35 -0
  243. package/lib/v2/baai/events.js +35 -0
  244. package/lib/v2/baai/hub.js +60 -0
  245. package/lib/v2/baai/maintainer.js +5 -0
  246. package/lib/v2/baai/radar.js +31 -0
  247. package/lib/v2/baai/router.js +7 -0
  248. package/lib/v2/baai/utils.js +33 -0
  249. package/lib/v2/baidu/gushitong/index.js +28 -0
  250. package/lib/v2/baidu/maintainer.js +9 -0
  251. package/lib/v2/baidu/radar.js +68 -0
  252. package/lib/v2/baidu/router.js +9 -0
  253. package/lib/v2/baidu/templates/forum.art +1 -0
  254. package/lib/v2/baidu/templates/gushitong.art +9 -0
  255. package/lib/v2/baidu/templates/post.art +4 -0
  256. package/lib/v2/baidu/templates/top.art +9 -0
  257. package/lib/v2/baidu/tieba/forum.js +64 -0
  258. package/lib/v2/baidu/tieba/post.js +80 -0
  259. package/lib/v2/baidu/tieba/user.js +33 -0
  260. package/lib/v2/baidu/top.js +34 -0
  261. package/lib/v2/baijing/index.js +54 -0
  262. package/lib/v2/baijing/maintainer.js +3 -0
  263. package/lib/v2/baijing/radar.js +22 -0
  264. package/lib/v2/baijing/router.js +3 -0
  265. package/lib/v2/bangumi/maintainer.js +17 -0
  266. package/lib/v2/bangumi/moe/index.js +92 -0
  267. package/lib/v2/bangumi/online/online.js +28 -0
  268. package/lib/v2/bangumi/radar.js +92 -0
  269. package/lib/v2/bangumi/router.js +14 -0
  270. package/lib/v2/bangumi/templates/tv/ep.art +2 -0
  271. package/lib/v2/bangumi/templates/tv/today.art +12 -0
  272. package/lib/v2/bangumi/tv/calendar/_base.js +37 -0
  273. package/lib/v2/bangumi/tv/calendar/today.js +63 -0
  274. package/lib/v2/bangumi/tv/group/reply.js +59 -0
  275. package/lib/v2/bangumi/tv/group/topic.js +39 -0
  276. package/lib/v2/bangumi/tv/person/index.js +38 -0
  277. package/lib/v2/bangumi/tv/subject/comments.js +52 -0
  278. package/lib/v2/bangumi/tv/subject/ep.js +31 -0
  279. package/lib/v2/bangumi/tv/subject/index.js +26 -0
  280. package/lib/v2/bangumi/tv/subject/offcial-subject-api.js +32 -0
  281. package/lib/v2/bangumi/tv/user/blog.js +43 -0
  282. package/lib/v2/bdys/index.js +98 -0
  283. package/lib/v2/bdys/maintainer.js +3 -0
  284. package/lib/v2/bdys/radar.js +20 -0
  285. package/lib/v2/bdys/router.js +3 -0
  286. package/lib/v2/bdys/templates/desc.art +21 -0
  287. package/lib/v2/bellroy/maintainer.js +3 -0
  288. package/lib/v2/bellroy/new-releases.js +26 -0
  289. package/lib/v2/bellroy/radar.js +13 -0
  290. package/lib/v2/bellroy/router.js +3 -0
  291. package/lib/v2/bendibao/news.js +4 -0
  292. package/lib/v2/bilibili/bangumi.js +4 -4
  293. package/lib/v2/bilibili/cache.js +98 -70
  294. package/lib/v2/bilibili/dynamic.js +6 -3
  295. package/lib/v2/bilibili/followings_dynamic.js +3 -3
  296. package/lib/v2/bilibili/hotSearch.js +25 -0
  297. package/lib/v2/bilibili/maintainer.js +43 -0
  298. package/lib/v2/bilibili/popular.js +29 -0
  299. package/lib/v2/bilibili/radar.js +30 -0
  300. package/lib/v2/bilibili/router.js +6 -2
  301. package/lib/v2/bilibili/topic.js +2 -2
  302. package/lib/v2/bilibili/userChannel.js +31 -35
  303. package/lib/v2/bilibili/userCollection.js +51 -0
  304. package/lib/v2/bilibili/utils.js +10 -0
  305. package/lib/v2/bilibili/video-all.js +73 -0
  306. package/lib/v2/bilibili/video.js +11 -3
  307. package/lib/v2/bilibili/vsearch.js +29 -9
  308. package/lib/v2/bioone/featured.js +10 -8
  309. package/lib/v2/bioone/journal.js +28 -26
  310. package/lib/v2/biquge/index.js +99 -0
  311. package/lib/v2/biquge/maintainer.js +3 -0
  312. package/lib/v2/biquge/radar.js +29 -0
  313. package/lib/v2/biquge/router.js +3 -0
  314. package/lib/v2/bitmovin/blog.js +15 -21
  315. package/lib/v2/bjfu/it/utils.js +3 -3
  316. package/lib/v2/bjp/apod.js +43 -0
  317. package/lib/v2/bjp/maintainer.js +3 -0
  318. package/lib/v2/bjp/radar.js +13 -0
  319. package/lib/v2/bjp/router.js +3 -0
  320. package/lib/v2/bjsk/index.js +52 -0
  321. package/lib/v2/bjsk/maintainer.js +3 -0
  322. package/lib/v2/bjsk/radar.js +13 -0
  323. package/lib/v2/bjsk/router.js +3 -0
  324. package/lib/v2/bjwxdxh/index.js +52 -0
  325. package/lib/v2/bjwxdxh/maintainer.js +3 -0
  326. package/lib/v2/bjwxdxh/radar.js +13 -0
  327. package/lib/v2/bjwxdxh/router.js +3 -0
  328. package/lib/v2/blockbeats/index.js +28 -35
  329. package/lib/v2/blockbeats/maintainer.js +1 -1
  330. package/lib/v2/blockbeats/radar.js +3 -3
  331. package/lib/v2/bloomberg/authors.js +52 -0
  332. package/lib/v2/bloomberg/index.js +28 -0
  333. package/lib/v2/bloomberg/maintainer.js +5 -0
  334. package/lib/v2/bloomberg/radar.js +19 -0
  335. package/lib/v2/bloomberg/router.js +5 -0
  336. package/lib/v2/bloomberg/templates/audio_media.art +13 -0
  337. package/lib/v2/bloomberg/templates/image_figure.art +9 -0
  338. package/lib/v2/bloomberg/templates/lede_media.art +14 -0
  339. package/lib/v2/bloomberg/templates/video_media.art +25 -0
  340. package/lib/v2/bloomberg/utils.js +407 -0
  341. package/lib/v2/bluestacks/maintainer.js +3 -0
  342. package/lib/v2/bluestacks/radar.js +13 -0
  343. package/lib/v2/bluestacks/release.js +63 -0
  344. package/lib/v2/bluestacks/router.js +3 -0
  345. package/lib/v2/bnu/dwxgb.js +57 -0
  346. package/lib/v2/bnu/fdy.js +41 -0
  347. package/lib/v2/bnu/lib.js +40 -0
  348. package/lib/v2/bnu/maintainer.js +3 -0
  349. package/lib/v2/bnu/radar.js +27 -3
  350. package/lib/v2/bnu/router.js +3 -0
  351. package/lib/v2/brave/latest.js +38 -0
  352. package/lib/v2/brave/maintainer.js +3 -0
  353. package/lib/v2/brave/radar.js +13 -0
  354. package/lib/v2/brave/router.js +3 -0
  355. package/lib/v2/btzj/index.js +6 -1
  356. package/lib/v2/byteclicks/index.js +22 -0
  357. package/lib/v2/byteclicks/maintainer.js +4 -0
  358. package/lib/v2/byteclicks/radar.js +19 -0
  359. package/lib/v2/byteclicks/router.js +4 -0
  360. package/lib/v2/byteclicks/tag.js +30 -0
  361. package/lib/v2/byteclicks/utils.js +13 -0
  362. package/lib/v2/bytes/bytes.js +25 -0
  363. package/lib/v2/bytes/maintainer.js +4 -0
  364. package/lib/v2/bytes/radar.js +13 -0
  365. package/lib/v2/bytes/router.js +3 -0
  366. package/lib/v2/caai/index.js +22 -0
  367. package/lib/v2/caai/maintainer.js +3 -0
  368. package/lib/v2/caai/radar.js +13 -0
  369. package/lib/v2/caai/router.js +3 -0
  370. package/lib/v2/caai/utils.js +46 -0
  371. package/lib/v2/caareviews/utils.js +2 -2
  372. package/lib/v2/caijing/maintainer.js +3 -0
  373. package/lib/v2/caijing/radar.js +13 -0
  374. package/lib/v2/caijing/roll.js +46 -0
  375. package/lib/v2/caijing/router.js +3 -0
  376. package/lib/v2/caixin/article.js +27 -0
  377. package/lib/v2/caixin/blog.js +58 -0
  378. package/lib/v2/caixin/category.js +56 -0
  379. package/lib/v2/caixin/database.js +48 -0
  380. package/lib/v2/caixin/k.js +40 -0
  381. package/lib/v2/caixin/latest.js +50 -0
  382. package/lib/v2/caixin/maintainer.js +8 -0
  383. package/lib/v2/caixin/radar.js +43 -0
  384. package/lib/v2/caixin/router.js +8 -0
  385. package/lib/v2/caixin/templates/article.art +38 -0
  386. package/lib/v2/caixin/utils.js +52 -0
  387. package/lib/v2/cartoonmad/comic.js +70 -0
  388. package/lib/v2/cartoonmad/maintainer.js +3 -0
  389. package/lib/v2/cartoonmad/radar.js +13 -0
  390. package/lib/v2/cartoonmad/router.js +3 -0
  391. package/lib/v2/cartoonmad/templates/chapter.art +1 -0
  392. package/lib/v2/cas/cg/index.js +52 -0
  393. package/lib/v2/cas/iee/kydt.js +48 -0
  394. package/lib/v2/cas/maintainer.js +6 -0
  395. package/lib/v2/cas/mesalab/kb.js +41 -0
  396. package/lib/v2/cas/radar.js +40 -0
  397. package/lib/v2/cas/router.js +6 -0
  398. package/lib/v2/cas/sim/kyjz.js +47 -0
  399. package/lib/v2/cast/index.js +74 -0
  400. package/lib/v2/cast/maintainer.js +3 -0
  401. package/lib/v2/cast/radar.js +13 -0
  402. package/lib/v2/cast/router.js +3 -0
  403. package/lib/v2/ccf/ccfcv/index.js +68 -0
  404. package/lib/v2/ccf/maintainer.js +5 -0
  405. package/lib/v2/ccf/news.js +45 -0
  406. package/lib/v2/ccf/radar.js +41 -0
  407. package/lib/v2/ccf/router.js +5 -0
  408. package/lib/v2/ccf/templates/ccfcv/description.art +1 -0
  409. package/lib/v2/ccf/tfbd/index.js +22 -0
  410. package/lib/v2/ccf/tfbd/utils.js +47 -0
  411. package/lib/v2/cctv/lm.js +22 -23
  412. package/lib/v2/cde/index.js +2 -2
  413. package/lib/v2/cde/maintainer.js +2 -0
  414. package/lib/v2/cde/radar.js +34 -4
  415. package/lib/v2/cde/router.js +2 -0
  416. package/lib/v2/cde/templates/xxgk/breakthroughCure.art +18 -0
  417. package/lib/v2/cde/templates/xxgk/cliniCal.art +16 -0
  418. package/lib/v2/cde/templates/xxgk/priorityApproval.art +18 -0
  419. package/lib/v2/cde/utils.js +2 -2
  420. package/lib/v2/cde/xxgk.js +73 -0
  421. package/lib/v2/cde/zdyz.js +77 -0
  422. package/lib/v2/cdzjryb/maintainer.js +3 -0
  423. package/lib/v2/cdzjryb/projectList.js +49 -0
  424. package/lib/v2/cdzjryb/radar.js +13 -0
  425. package/lib/v2/cdzjryb/router.js +3 -0
  426. package/lib/v2/cdzjryb/templates/projectList.art +23 -0
  427. package/lib/v2/cgtn/maintainer.js +3 -0
  428. package/lib/v2/cgtn/podcast.js +35 -0
  429. package/lib/v2/cgtn/radar.js +13 -0
  430. package/lib/v2/cgtn/router.js +3 -0
  431. package/lib/v2/chaincatcher/home.js +50 -0
  432. package/lib/v2/chaincatcher/maintainer.js +4 -0
  433. package/lib/v2/chaincatcher/news.js +40 -0
  434. package/lib/v2/chaincatcher/radar.js +19 -0
  435. package/lib/v2/chaincatcher/router.js +4 -0
  436. package/lib/v2/chaincatcher/templates/home.art +4 -0
  437. package/lib/v2/china/maintainer.js +4 -0
  438. package/lib/v2/china/news/highlights/news.js +40 -0
  439. package/lib/v2/china/news/military/news.js +31 -0
  440. package/lib/v2/china/radar.js +21 -0
  441. package/lib/v2/china/router.js +4 -0
  442. package/lib/v2/chinacef/experts.js +1 -1
  443. package/lib/v2/chinacef/hot.js +1 -1
  444. package/lib/v2/chinacef/index.js +1 -1
  445. package/lib/v2/chinadegrees/maintainer.js +3 -0
  446. package/lib/v2/chinadegrees/province.js +66 -0
  447. package/lib/v2/chinadegrees/radar.js +13 -0
  448. package/lib/v2/chinadegrees/router.js +3 -0
  449. package/lib/v2/chinadegrees/templates/description.art +4 -0
  450. package/lib/v2/chinafactcheck/index.js +1 -1
  451. package/lib/v2/chinathinktanks/viewpoint.js +12 -13
  452. package/lib/v2/chsi/kydt.js +51 -0
  453. package/lib/v2/chsi/maintainer.js +3 -0
  454. package/lib/v2/chsi/radar.js +13 -0
  455. package/lib/v2/chsi/router.js +3 -0
  456. package/lib/v2/ciidbnu/index.js +14 -15
  457. package/lib/v2/clash/maintainer.js +3 -0
  458. package/lib/v2/clash/premium.js +23 -0
  459. package/lib/v2/clash/radar.js +13 -0
  460. package/lib/v2/clash/router.js +3 -0
  461. package/lib/v2/clickme/index.js +56 -0
  462. package/lib/v2/clickme/maintainer.js +3 -0
  463. package/lib/v2/clickme/radar.js +21 -0
  464. package/lib/v2/clickme/router.js +3 -0
  465. package/lib/v2/cls/depth.js +82 -0
  466. package/lib/v2/cls/hot.js +45 -0
  467. package/lib/v2/cls/maintainer.js +5 -0
  468. package/lib/v2/cls/radar.js +25 -0
  469. package/lib/v2/cls/router.js +5 -0
  470. package/lib/v2/cls/telegraph.js +52 -0
  471. package/lib/v2/cls/templates/depth.art +10 -0
  472. package/lib/v2/cls/templates/telegraph.art +10 -0
  473. package/lib/v2/cls/utils.js +15 -0
  474. package/lib/v2/cmde/index.js +72 -0
  475. package/lib/v2/cmde/maintainer.js +3 -0
  476. package/lib/v2/cmde/radar.js +13 -0
  477. package/lib/v2/cmde/router.js +3 -0
  478. package/lib/v2/cnbc/maintainer.js +3 -0
  479. package/lib/v2/cnbc/radar.js +21 -0
  480. package/lib/v2/cnbc/router.js +3 -0
  481. package/lib/v2/cnbc/rss.js +54 -0
  482. package/lib/v2/cnbeta/radar.js +6 -6
  483. package/lib/v2/cnbeta/router.js +1 -1
  484. package/lib/v2/cnbeta/type.js +6 -12
  485. package/lib/v2/cnbeta/utils.js +5 -8
  486. package/lib/v2/cnblogs/common.js +30 -0
  487. package/lib/v2/cnblogs/maintainer.js +7 -0
  488. package/lib/v2/cnblogs/radar.js +37 -0
  489. package/lib/v2/cnblogs/router.js +7 -0
  490. package/lib/v2/cngal/entry.js +25 -0
  491. package/lib/v2/cngal/maintainer.js +4 -0
  492. package/lib/v2/cngal/radar.js +19 -0
  493. package/lib/v2/cngal/router.js +4 -0
  494. package/lib/v2/cngal/templates/entry-description.art +4 -0
  495. package/lib/v2/cngal/templates/weekly-description.art +4 -0
  496. package/lib/v2/cngal/weekly.js +20 -0
  497. package/lib/v2/cnjxol/index.js +3 -0
  498. package/lib/v2/cnki/author.js +45 -0
  499. package/lib/v2/cnki/journals.js +2 -23
  500. package/lib/v2/cnki/maintainer.js +1 -0
  501. package/lib/v2/cnki/radar.js +8 -0
  502. package/lib/v2/cnki/router.js +1 -0
  503. package/lib/v2/cnki/utils.js +26 -0
  504. package/lib/v2/cntheory/paper.js +25 -29
  505. package/lib/v2/codeforces/contests.js +13 -5
  506. package/lib/v2/codeforces/maintainer.js +1 -0
  507. package/lib/v2/codeforces/radar.js +8 -0
  508. package/lib/v2/codeforces/recent_actions.js +47 -0
  509. package/lib/v2/codeforces/router.js +1 -0
  510. package/lib/v2/codeforces/templates/contest.art +5 -11
  511. package/lib/v2/coindesk/index.js +34 -0
  512. package/lib/v2/coindesk/maintainer.js +3 -0
  513. package/lib/v2/coindesk/radar.js +13 -0
  514. package/lib/v2/coindesk/router.js +3 -0
  515. package/lib/v2/comicskingdom/index.js +60 -0
  516. package/lib/v2/comicskingdom/maintainer.js +3 -0
  517. package/lib/v2/comicskingdom/radar.js +13 -0
  518. package/lib/v2/comicskingdom/router.js +3 -0
  519. package/lib/v2/comicskingdom/templates/desc.art +1 -0
  520. package/lib/v2/coolapk/dyh.js +37 -0
  521. package/lib/v2/coolapk/hot.js +97 -0
  522. package/lib/v2/coolapk/huati.js +24 -0
  523. package/lib/v2/coolapk/maintainer.js +9 -0
  524. package/lib/v2/coolapk/radar.js +31 -0
  525. package/lib/v2/coolapk/router.js +9 -0
  526. package/lib/v2/coolapk/toutiao.js +29 -0
  527. package/lib/v2/coolapk/tuwen.js +31 -0
  528. package/lib/v2/coolapk/userDynamic.js +35 -0
  529. package/lib/v2/coolapk/utils.js +150 -0
  530. package/lib/v2/copymanga/comic.js +110 -0
  531. package/lib/v2/copymanga/maintainer.js +3 -0
  532. package/lib/v2/copymanga/radar.js +19 -0
  533. package/lib/v2/copymanga/router.js +3 -0
  534. package/lib/v2/copymanga/templates/comic.art +4 -0
  535. package/lib/v2/cpuid/news.js +30 -0
  536. package/lib/v2/cpuid/radar.js +13 -0
  537. package/lib/v2/cpuid/router.js +3 -0
  538. package/lib/v2/cqwu/index.js +1 -1
  539. package/lib/v2/crac/index.js +46 -0
  540. package/lib/v2/crac/maintainer.js +3 -0
  541. package/lib/v2/crac/radar.js +13 -0
  542. package/lib/v2/crac/router.js +3 -0
  543. package/lib/v2/creative-comic/book.js +60 -0
  544. package/lib/v2/creative-comic/maintainer.js +3 -0
  545. package/lib/v2/creative-comic/radar.js +13 -0
  546. package/lib/v2/creative-comic/router.js +3 -0
  547. package/lib/v2/creative-comic/templates/chapter.art +11 -0
  548. package/lib/v2/creative-comic/utils.js +96 -0
  549. package/lib/v2/crossbell/feeds/following.js +29 -0
  550. package/lib/v2/crossbell/maintainer.js +6 -0
  551. package/lib/v2/crossbell/notes/character.js +22 -0
  552. package/lib/v2/crossbell/notes/index.js +16 -0
  553. package/lib/v2/crossbell/notes/source.js +19 -0
  554. package/lib/v2/crossbell/notes/utils.js +18 -0
  555. package/lib/v2/crossbell/radar.js +24 -0
  556. package/lib/v2/crossbell/router.js +6 -0
  557. package/lib/v2/csdn/blog.js +39 -0
  558. package/lib/v2/csdn/maintainer.js +3 -0
  559. package/lib/v2/csdn/radar.js +13 -0
  560. package/lib/v2/csdn/router.js +3 -0
  561. package/lib/v2/csu/career.js +51 -0
  562. package/lib/v2/csu/cse.js +10 -2
  563. package/lib/v2/csu/mail.js +47 -0
  564. package/lib/v2/csu/maintainer.js +2 -0
  565. package/lib/v2/csu/radar.js +16 -0
  566. package/lib/v2/csu/router.js +2 -1
  567. package/lib/v2/csu/utils.js +17 -0
  568. package/lib/v2/cts/maintainer.js +3 -0
  569. package/lib/v2/cts/news.js +40 -0
  570. package/lib/v2/cts/radar.js +13 -0
  571. package/lib/v2/cts/router.js +3 -0
  572. package/lib/v2/cuc/maintainer.js +3 -0
  573. package/lib/v2/cuc/radar.js +13 -0
  574. package/lib/v2/cuc/router.js +3 -0
  575. package/lib/v2/cuc/yz.js +37 -0
  576. package/lib/v2/curius/links.js +43 -0
  577. package/lib/v2/curius/maintainer.js +3 -0
  578. package/lib/v2/curius/radar.js +13 -0
  579. package/lib/v2/curius/router.js +3 -0
  580. package/lib/v2/curius/templates/description.art +16 -0
  581. package/lib/v2/cw/author.js +18 -0
  582. package/lib/v2/cw/maintainer.js +6 -0
  583. package/lib/v2/cw/master.js +18 -0
  584. package/lib/v2/cw/radar.js +31 -0
  585. package/lib/v2/cw/router.js +6 -0
  586. package/lib/v2/cw/sub.js +18 -0
  587. package/lib/v2/cw/today.js +18 -0
  588. package/lib/v2/cw/utils.js +133 -0
  589. package/lib/v2/cztv/daily.js +41 -0
  590. package/lib/v2/cztv/maintainer.js +4 -0
  591. package/lib/v2/cztv/radar.js +19 -0
  592. package/lib/v2/cztv/router.js +4 -0
  593. package/lib/v2/cztv/templates/daily.art +4 -0
  594. package/lib/v2/cztv/templates/zjxwlb.art +3 -0
  595. package/lib/v2/cztv/zjxwlb.js +38 -0
  596. package/lib/v2/darwinawards/index.js +56 -0
  597. package/lib/v2/darwinawards/maintainer.js +4 -0
  598. package/lib/v2/darwinawards/radar.js +13 -0
  599. package/lib/v2/darwinawards/router.js +4 -0
  600. package/lib/v2/dcard/maintainer.js +4 -0
  601. package/lib/v2/dcard/radar.js +31 -0
  602. package/lib/v2/dcard/router.js +3 -0
  603. package/lib/v2/dcard/section.js +66 -0
  604. package/lib/v2/dcard/utils.js +50 -0
  605. package/lib/v2/dcfever/maintainer.js +6 -0
  606. package/lib/v2/dcfever/news.js +36 -0
  607. package/lib/v2/dcfever/radar.js +37 -0
  608. package/lib/v2/dcfever/reviews.js +29 -0
  609. package/lib/v2/dcfever/router.js +6 -0
  610. package/lib/v2/dcfever/templates/trading.art +14 -0
  611. package/lib/v2/dcfever/trading-search.js +39 -0
  612. package/lib/v2/dcfever/trading.js +39 -0
  613. package/lib/v2/dcfever/utils.js +78 -0
  614. package/lib/v2/dedao/index.js +46 -0
  615. package/lib/v2/dedao/knowledge.js +64 -0
  616. package/lib/v2/dedao/list.js +66 -0
  617. package/lib/v2/dedao/maintainer.js +8 -0
  618. package/lib/v2/dedao/radar.js +50 -0
  619. package/lib/v2/dedao/router.js +6 -0
  620. package/lib/v2/dedao/templates/knowledge.art +29 -0
  621. package/lib/v2/dedao/templates/user.art +38 -0
  622. package/lib/v2/dedao/user.js +79 -0
  623. package/lib/v2/deepmind/blog.js +32 -0
  624. package/lib/v2/deepmind/maintainer.js +3 -0
  625. package/lib/v2/deepmind/radar.js +13 -0
  626. package/lib/v2/deepmind/router.js +3 -0
  627. package/lib/v2/dgjyw/index.js +67 -0
  628. package/lib/v2/dgjyw/maintainer.js +3 -0
  629. package/lib/v2/dgjyw/radar.js +13 -0
  630. package/lib/v2/dgjyw/router.js +3 -0
  631. package/lib/v2/diershoubing/maintainer.js +3 -0
  632. package/lib/v2/diershoubing/news.js +50 -0
  633. package/lib/v2/diershoubing/radar.js +13 -0
  634. package/lib/v2/diershoubing/router.js +3 -0
  635. package/lib/v2/diershoubing/templates/news.art +9 -0
  636. package/lib/v2/discord/channel.js +38 -0
  637. package/lib/v2/discord/discord-api.js +61 -0
  638. package/lib/v2/discord/maintainer.js +3 -0
  639. package/lib/v2/discord/radar.js +13 -0
  640. package/lib/v2/discord/router.js +3 -0
  641. package/lib/v2/discord/templates/message.art +47 -0
  642. package/lib/v2/disinformationindex/blog.js +12 -13
  643. package/lib/v2/diskanalyzer/maintainer.js +3 -0
  644. package/lib/v2/diskanalyzer/radar.js +13 -0
  645. package/lib/v2/diskanalyzer/router.js +3 -0
  646. package/lib/v2/diskanalyzer/whats-new.js +49 -0
  647. package/lib/v2/dlsite/campaign.js +174 -0
  648. package/lib/v2/dlsite/maintainer.js +4 -0
  649. package/lib/v2/dlsite/new.js +108 -0
  650. package/lib/v2/dlsite/radar.js +15 -0
  651. package/lib/v2/dlsite/router.js +4 -0
  652. package/lib/v2/dmzj/maintainer.js +3 -0
  653. package/lib/v2/dmzj/news.js +26 -0
  654. package/lib/v2/dmzj/radar.js +67 -0
  655. package/lib/v2/dmzj/router.js +3 -0
  656. package/lib/v2/docschina/jsweekly.js +114 -0
  657. package/lib/v2/docschina/maintainer.js +3 -0
  658. package/lib/v2/docschina/radar.js +13 -0
  659. package/lib/v2/docschina/router.js +3 -0
  660. package/lib/v2/domp4/detail.js +7 -3
  661. package/lib/v2/domp4/utils.js +14 -0
  662. package/lib/v2/dongqiudi/player_news.js +2 -3
  663. package/lib/v2/dongqiudi/result.js +1 -1
  664. package/lib/v2/dongqiudi/router.js +1 -1
  665. package/lib/v2/dongqiudi/special.js +21 -27
  666. package/lib/v2/dongqiudi/team_news.js +2 -3
  667. package/lib/v2/dongqiudi/top_news.js +18 -24
  668. package/lib/v2/dongqiudi/utils.js +36 -36
  669. package/lib/v2/douban/maintainer.js +1 -0
  670. package/lib/v2/douban/other/list.js +40 -0
  671. package/lib/v2/douban/other/weekly_best.js +14 -5
  672. package/lib/v2/douban/people/wish.js +3 -24
  673. package/lib/v2/douban/radar.js +6 -0
  674. package/lib/v2/douban/router.js +1 -0
  675. package/lib/v2/douban/templates/list_description.art +25 -0
  676. package/lib/v2/douban/templates/weekly_best.art +10 -0
  677. package/lib/v2/douyin/hashtag.js +21 -18
  678. package/lib/v2/douyin/live.js +5 -24
  679. package/lib/v2/douyin/maintainer.js +2 -0
  680. package/lib/v2/douyin/user.js +2 -17
  681. package/lib/v2/douyin/utils.js +85 -0
  682. package/lib/v2/douyu/group.js +45 -0
  683. package/lib/v2/douyu/maintainer.js +5 -0
  684. package/lib/v2/douyu/post.js +58 -0
  685. package/lib/v2/douyu/radar.js +27 -0
  686. package/lib/v2/douyu/router.js +5 -0
  687. package/lib/v2/douyu/templates/description.art +14 -0
  688. package/lib/v2/dtcj/datainsight.js +13 -14
  689. package/lib/v2/dut/index.js +4 -0
  690. package/lib/v2/eagle/blog.js +6 -2
  691. package/lib/v2/eastday/24.js +14 -15
  692. package/lib/v2/ecnu/contest.js +41 -0
  693. package/lib/v2/ecnu/maintainer.js +4 -0
  694. package/lib/v2/ecnu/radar.js +30 -0
  695. package/lib/v2/ecnu/router.js +4 -0
  696. package/lib/v2/ecnu/yjs.js +37 -0
  697. package/lib/v2/economist/espresso.js +55 -25
  698. package/lib/v2/economist/full.js +4 -4
  699. package/lib/v2/economist/global-business-review.js +86 -0
  700. package/lib/v2/economist/maintainer.js +1 -0
  701. package/lib/v2/economist/radar.js +11 -0
  702. package/lib/v2/economist/router.js +1 -0
  703. package/lib/v2/ehentai/ehapi.js +64 -15
  704. package/lib/v2/ehentai/favorites.js +2 -2
  705. package/lib/v2/ehentai/maintainer.js +3 -3
  706. package/lib/v2/ehentai/search.js +2 -2
  707. package/lib/v2/ehentai/tag.js +1 -1
  708. package/lib/v2/eleduck/jobs.js +38 -0
  709. package/lib/v2/eleduck/maintainer.js +4 -0
  710. package/lib/v2/eleduck/posts.js +41 -0
  711. package/lib/v2/eleduck/radar.js +25 -0
  712. package/lib/v2/eleduck/router.js +4 -0
  713. package/lib/v2/eprice/rss.js +8 -16
  714. package/lib/v2/eprice/templates/image.art +4 -1
  715. package/lib/v2/ezone/index.js +5 -3
  716. package/lib/v2/famitsu/category.js +62 -0
  717. package/lib/v2/famitsu/maintainer.js +3 -0
  718. package/lib/v2/famitsu/radar.js +13 -0
  719. package/lib/v2/famitsu/router.js +3 -0
  720. package/lib/v2/fantia/maintainer.js +4 -0
  721. package/lib/v2/fantia/radar.js +13 -0
  722. package/lib/v2/fantia/router.js +4 -0
  723. package/lib/v2/fantia/search.js +71 -0
  724. package/lib/v2/fantia/user.js +44 -0
  725. package/lib/v2/fastbull/express-news.js +33 -0
  726. package/lib/v2/fastbull/maintainer.js +5 -0
  727. package/lib/v2/fastbull/news.js +57 -0
  728. package/lib/v2/fastbull/radar.js +19 -0
  729. package/lib/v2/fastbull/router.js +5 -0
  730. package/lib/v2/fastbull/templates/description.art +7 -0
  731. package/lib/v2/fda/cdrh.js +62 -0
  732. package/lib/v2/fda/maintainer.js +3 -0
  733. package/lib/v2/fda/radar.js +13 -0
  734. package/lib/v2/fda/router.js +3 -0
  735. package/lib/v2/ff14/ff14_global.js +5 -0
  736. package/lib/v2/fffdm/maintainer.js +3 -0
  737. package/lib/v2/fffdm/manhua/manhua.js +55 -0
  738. package/lib/v2/fffdm/radar.js +14 -0
  739. package/lib/v2/fffdm/router.js +3 -0
  740. package/lib/v2/fffdm/templates/manhua.art +5 -0
  741. package/lib/v2/finviz/maintainer.js +4 -0
  742. package/lib/v2/finviz/news.js +45 -0
  743. package/lib/v2/finviz/quote.js +40 -0
  744. package/lib/v2/finviz/radar.js +19 -0
  745. package/lib/v2/finviz/router.js +4 -0
  746. package/lib/v2/fjksbm/index.js +53 -0
  747. package/lib/v2/fjksbm/maintainer.js +3 -0
  748. package/lib/v2/fjksbm/radar.js +13 -0
  749. package/lib/v2/fjksbm/router.js +3 -0
  750. package/lib/v2/flyert/utils.js +3 -3
  751. package/lib/v2/foresightnews/index.js +8 -11
  752. package/lib/v2/foreverblog/feeds.js +36 -0
  753. package/lib/v2/foreverblog/maintainer.js +3 -0
  754. package/lib/v2/foreverblog/radar.js +13 -0
  755. package/lib/v2/foreverblog/router.js +3 -0
  756. package/lib/v2/fosshub/index.js +49 -0
  757. package/lib/v2/fosshub/maintainer.js +3 -0
  758. package/lib/v2/fosshub/radar.js +13 -0
  759. package/lib/v2/fosshub/router.js +3 -0
  760. package/lib/v2/fosshub/templates/description.art +20 -0
  761. package/lib/v2/freewechat/maintainer.js +3 -0
  762. package/lib/v2/freewechat/profile.js +61 -0
  763. package/lib/v2/freewechat/radar.js +13 -0
  764. package/lib/v2/freewechat/router.js +3 -0
  765. package/lib/v2/ft/maintainer.js +2 -2
  766. package/lib/v2/ft/utils.js +10 -7
  767. package/lib/v2/furstar/templates/description.art +1 -1
  768. package/lib/v2/gameapps/index.js +32 -13
  769. package/lib/v2/gamebase/maintainer.js +3 -0
  770. package/lib/v2/gamebase/news.js +74 -0
  771. package/lib/v2/gamebase/radar.js +13 -0
  772. package/lib/v2/gamebase/router.js +3 -0
  773. package/lib/v2/gamme/category.js +50 -0
  774. package/lib/v2/gamme/maintainer.js +6 -0
  775. package/lib/v2/gamme/radar.js +33 -0
  776. package/lib/v2/gamme/router.js +4 -0
  777. package/lib/v2/gamme/tag.js +61 -0
  778. package/lib/v2/gcores/category.js +16 -6
  779. package/lib/v2/gdut/maintainer.js +3 -0
  780. package/lib/v2/gdut/news.js +166 -0
  781. package/lib/v2/gdut/oa_news.js +214 -0
  782. package/lib/v2/gdut/radar.js +13 -0
  783. package/lib/v2/gdut/router.js +3 -0
  784. package/lib/v2/gelonghui/home.js +31 -0
  785. package/lib/v2/gelonghui/hot-article.js +33 -0
  786. package/lib/v2/gelonghui/keyword.js +34 -0
  787. package/lib/v2/gelonghui/live.js +31 -0
  788. package/lib/v2/gelonghui/maintainer.js +6 -0
  789. package/lib/v2/gelonghui/radar.js +43 -0
  790. package/lib/v2/gelonghui/router.js +8 -0
  791. package/lib/v2/gelonghui/subject.js +36 -0
  792. package/lib/v2/gelonghui/templates/live.art +7 -0
  793. package/lib/v2/gelonghui/user.js +33 -0
  794. package/lib/v2/gelonghui/utils.js +27 -0
  795. package/lib/v2/gettr/maintainer.js +3 -0
  796. package/lib/v2/gettr/radar.js +13 -0
  797. package/lib/v2/gettr/router.js +3 -0
  798. package/lib/v2/gettr/templates/post.art +13 -0
  799. package/lib/v2/gettr/user.js +56 -0
  800. package/lib/v2/gihyo/group.js +48 -0
  801. package/lib/v2/gihyo/maintainer.js +3 -0
  802. package/lib/v2/gihyo/radar.js +13 -0
  803. package/lib/v2/gihyo/router.js +3 -0
  804. package/lib/v2/github/comments.js +17 -19
  805. package/lib/v2/github/maintainer.js +3 -2
  806. package/lib/v2/github/pulls.js +7 -8
  807. package/lib/v2/github/radar.js +35 -29
  808. package/lib/v2/github/router.js +2 -1
  809. package/lib/v2/github/templates/trending-description.art +5 -0
  810. package/lib/v2/github/topic.js +1 -1
  811. package/lib/v2/github/trending.js +72 -24
  812. package/lib/v2/github/wiki.js +32 -0
  813. package/lib/v2/gocn/jobs.js +23 -0
  814. package/lib/v2/gocn/maintainer.js +2 -1
  815. package/lib/v2/gocn/radar.js +6 -0
  816. package/lib/v2/gocn/router.js +1 -0
  817. package/lib/v2/gocn/topics.js +7 -12
  818. package/lib/v2/gocn/util.js +17 -0
  819. package/lib/v2/good/index.js +53 -0
  820. package/lib/v2/good/maintainer.js +3 -0
  821. package/lib/v2/good/radar.js +13 -0
  822. package/lib/v2/google/maintainer.js +1 -0
  823. package/lib/v2/google/news.js +48 -66
  824. package/lib/v2/google/router.js +1 -0
  825. package/lib/v2/google/sitesRecentChanges.js +12 -13
  826. package/lib/v2/google/templates/news.art +5 -0
  827. package/lib/v2/gov/beijing/bphc/index.js +54 -0
  828. package/lib/v2/gov/ccdi/index.js +18 -0
  829. package/lib/v2/gov/ccdi/utils.js +94 -0
  830. package/lib/v2/gov/cmse/fxrw.js +40 -0
  831. package/lib/v2/gov/cmse/index.js +67 -0
  832. package/lib/v2/gov/cmse/templates/description.art +11 -0
  833. package/lib/v2/gov/cnnic/index.js +54 -0
  834. package/lib/v2/gov/csrc/auditstatus.js +54 -0
  835. package/lib/v2/gov/csrc/news.js +69 -0
  836. package/lib/v2/gov/csrc/templates/attachment.art +3 -0
  837. package/lib/v2/gov/customs/list.js +1 -1
  838. package/lib/v2/gov/dianbai/dianbai.js +18 -0
  839. package/lib/v2/gov/gaozhou/gaozhou.js +19 -0
  840. package/lib/v2/gov/general/general.js +250 -0
  841. package/lib/v2/gov/general/templates/zcjdpt.art +128 -0
  842. package/lib/v2/gov/gz/index.js +38 -0
  843. package/lib/v2/gov/huazhou/huazhou.js +19 -0
  844. package/lib/v2/gov/hunan/changsha/major-email.js +52 -0
  845. package/lib/v2/gov/maintainer.js +51 -6
  846. package/lib/v2/gov/maoming/maoming.js +417 -0
  847. package/lib/v2/gov/maonan/maonan.js +100 -0
  848. package/lib/v2/gov/mgs/mgs.js +19 -0
  849. package/lib/v2/gov/mmht/mmht.js +19 -0
  850. package/lib/v2/gov/moe/moe.js +4 -4
  851. package/lib/v2/gov/moe/s78.js +44 -0
  852. package/lib/v2/gov/mofcom/article.js +68 -0
  853. package/lib/v2/gov/moj/aac/news.js +49 -0
  854. package/lib/v2/gov/nifdc/index.js +86 -0
  855. package/lib/v2/gov/nmpa/generic.js +83 -0
  856. package/lib/v2/gov/nopss/index.js +57 -0
  857. package/lib/v2/gov/nrta/news.js +0 -1
  858. package/lib/v2/gov/nsfc/index.js +83 -0
  859. package/lib/v2/gov/pbc/utils.js +2 -2
  860. package/lib/v2/gov/radar.js +466 -2
  861. package/lib/v2/gov/router.js +41 -5
  862. package/lib/v2/gov/sasac/generic.js +42 -0
  863. package/lib/v2/gov/sdb/sdb.js +19 -0
  864. package/lib/v2/gov/shaanxi/kjt.js +55 -0
  865. package/lib/v2/gov/shanghai/yjj/index.js +62 -0
  866. package/lib/v2/gov/shenzhen/xxgk/zfxxgj.js +72 -0
  867. package/lib/v2/gov/sichuan/deyang/govpulicinfo.js +3 -3
  868. package/lib/v2/gov/stats/index.js +19 -0
  869. package/lib/v2/gov/stats/templates/attachments.art +5 -0
  870. package/lib/v2/gov/stats/utils.js +75 -0
  871. package/lib/v2/gov/taiyuan/rsj.js +41 -0
  872. package/lib/v2/gov/wuhan/whyw.js +44 -0
  873. package/lib/v2/gov/xinyi/xinyi.js +19 -0
  874. package/lib/v2/gov/zhengce/govall.js +55 -0
  875. package/lib/v2/gov/zhengce/wenjian.js +47 -0
  876. package/lib/v2/gov/zhengce/zhengceku.js +22 -0
  877. package/lib/v2/gov/zhengce/zuixin.js +39 -0
  878. package/lib/v2/gq/maintainer.js +3 -0
  879. package/lib/v2/gq/radar.js +13 -0
  880. package/lib/v2/gq/router.js +3 -0
  881. package/lib/v2/gq/templates/embed-article.art +1 -0
  882. package/lib/v2/gq/templates/embed-product.art +4 -0
  883. package/lib/v2/gq/templates/img.art +6 -0
  884. package/lib/v2/gq/templates/tw.art +3 -0
  885. package/lib/v2/gq/templates/videoObject.art +6 -0
  886. package/lib/v2/gq/templates/youtube.art +3 -0
  887. package/lib/v2/gq/tw/index.js +165 -0
  888. package/lib/v2/greasyfork/feedback.js +31 -0
  889. package/lib/v2/greasyfork/maintainer.js +5 -0
  890. package/lib/v2/greasyfork/radar.js +25 -0
  891. package/lib/v2/greasyfork/router.js +5 -0
  892. package/lib/v2/greasyfork/scripts.js +39 -0
  893. package/lib/v2/greasyfork/versions.js +29 -0
  894. package/lib/v2/guandian/index.js +37 -0
  895. package/lib/v2/guandian/maintainer.js +3 -0
  896. package/lib/v2/guandian/radar.js +13 -0
  897. package/lib/v2/guandian/router.js +3 -0
  898. package/lib/v2/guanhai/index.js +47 -0
  899. package/lib/v2/guanhai/maintainer.js +4 -0
  900. package/lib/v2/guanhai/radar.js +13 -0
  901. package/lib/v2/guanhai/router.js +3 -0
  902. package/lib/v2/gumroad/index.js +4 -0
  903. package/lib/v2/gzh360/universal.js +3 -3
  904. package/lib/v2/gzh360/utils.js +2 -2
  905. package/lib/v2/hackernews/index.js +16 -7
  906. package/lib/v2/hackmd/maintainer.js +3 -0
  907. package/lib/v2/hackmd/profile.js +24 -0
  908. package/lib/v2/hackmd/radar.js +13 -0
  909. package/lib/v2/hackmd/router.js +3 -0
  910. package/lib/v2/hafu/maintainer.js +3 -0
  911. package/lib/v2/hafu/news.js +15 -0
  912. package/lib/v2/hafu/radar.js +23 -0
  913. package/lib/v2/hafu/templates/hafu.art +3 -0
  914. package/lib/v2/hafu/utils.js +205 -0
  915. package/lib/v2/hakkatv/maintainer.js +3 -0
  916. package/lib/v2/hakkatv/radar.js +13 -0
  917. package/lib/v2/hakkatv/router.js +3 -0
  918. package/lib/v2/hakkatv/type.js +67 -0
  919. package/lib/v2/hdu/cs/notice.js +54 -0
  920. package/lib/v2/hdu/cs/pg.js +54 -0
  921. package/lib/v2/hdu/maintainer.js +1 -0
  922. package/lib/v2/hdu/radar.js +6 -0
  923. package/lib/v2/hdu/router.js +2 -1
  924. package/lib/v2/hellogithub/index.js +102 -0
  925. package/lib/v2/hellogithub/maintainer.js +7 -3
  926. package/lib/v2/hellogithub/radar.js +35 -11
  927. package/lib/v2/hellogithub/report.js +56 -0
  928. package/lib/v2/hellogithub/router.js +6 -3
  929. package/lib/v2/hellogithub/templates/description.art +99 -0
  930. package/lib/v2/hellogithub/templates/report.art +118 -0
  931. package/lib/v2/hellogithub/templates/volume.art +36 -0
  932. package/lib/v2/hellogithub/volume.js +50 -0
  933. package/lib/v2/hit/hitgs.js +46 -0
  934. package/lib/v2/hit/jwc.js +60 -0
  935. package/lib/v2/hit/maintainer.js +5 -0
  936. package/lib/v2/hit/radar.js +29 -0
  937. package/lib/v2/hit/router.js +6 -0
  938. package/lib/v2/hit/today.js +59 -0
  939. package/lib/v2/hitsz/article.js +41 -0
  940. package/lib/v2/hitsz/maintainer.js +3 -0
  941. package/lib/v2/hitsz/radar.js +13 -0
  942. package/lib/v2/hitsz/router.js +3 -0
  943. package/lib/v2/hitwh/maintainer.js +3 -0
  944. package/lib/v2/hitwh/radar.js +13 -0
  945. package/lib/v2/hitwh/router.js +3 -0
  946. package/lib/v2/hitwh/today.js +52 -0
  947. package/lib/v2/hjedd/article.js +27 -0
  948. package/lib/v2/hjedd/hot.js +14 -0
  949. package/lib/v2/hjedd/latest.js +14 -0
  950. package/lib/v2/hjedd/maintainer.js +10 -0
  951. package/lib/v2/hjedd/news.js +14 -0
  952. package/lib/v2/hjedd/notice.js +14 -0
  953. package/lib/v2/hjedd/original.js +14 -0
  954. package/lib/v2/hjedd/radar.js +55 -0
  955. package/lib/v2/hjedd/router.js +10 -0
  956. package/lib/v2/hjedd/templates/attachment.art +7 -0
  957. package/lib/v2/hjedd/top.js +14 -0
  958. package/lib/v2/hjedd/utils.js +111 -0
  959. package/lib/v2/hk01/channel.js +13 -30
  960. package/lib/v2/hk01/hot.js +13 -14
  961. package/lib/v2/hk01/issue.js +12 -31
  962. package/lib/v2/hk01/maintainer.js +5 -5
  963. package/lib/v2/hk01/radar.js +19 -19
  964. package/lib/v2/hk01/router.js +4 -4
  965. package/lib/v2/hk01/tag.js +14 -15
  966. package/lib/v2/hk01/templates/description.art +53 -0
  967. package/lib/v2/hk01/utils.js +43 -0
  968. package/lib/v2/hk01/zone.js +15 -34
  969. package/lib/v2/hkepc/data.js +62 -0
  970. package/lib/v2/hkepc/index.js +55 -164
  971. package/lib/v2/hljucm/maintainer.js +3 -0
  972. package/lib/v2/hljucm/radar.js +13 -0
  973. package/lib/v2/hljucm/router.js +3 -0
  974. package/lib/v2/hljucm/yjsy.js +56 -0
  975. package/lib/v2/hotukdeals/hottest.js +25 -0
  976. package/lib/v2/hotukdeals/maintainer.js +1 -0
  977. package/lib/v2/hotukdeals/radar.js +6 -0
  978. package/lib/v2/hotukdeals/router.js +1 -0
  979. package/lib/v2/houxu/events.js +37 -0
  980. package/lib/v2/houxu/index.js +21 -69
  981. package/lib/v2/houxu/lives.js +35 -0
  982. package/lib/v2/houxu/maintainer.js +4 -2
  983. package/lib/v2/houxu/memory.js +37 -0
  984. package/lib/v2/houxu/radar.js +18 -6
  985. package/lib/v2/houxu/router.js +6 -1
  986. package/lib/v2/houxu/templates/events.art +5 -0
  987. package/lib/v2/houxu/templates/lives.art +5 -0
  988. package/lib/v2/houxu/templates/memory.art +3 -0
  989. package/lib/v2/hrbeu/gx/card.js +42 -0
  990. package/lib/v2/hrbeu/gx/list.js +65 -0
  991. package/lib/v2/hrbeu/job/bigemploy.js +25 -0
  992. package/lib/v2/hrbeu/job/calendar.js +46 -0
  993. package/lib/v2/hrbeu/job/list.js +65 -0
  994. package/lib/v2/hrbeu/maintainer.js +9 -0
  995. package/lib/v2/hrbeu/radar.js +81 -0
  996. package/lib/v2/hrbeu/router.js +10 -0
  997. package/lib/v2/hrbeu/uae/list.js +57 -0
  998. package/lib/v2/hrbeu/ugs/news.js +98 -0
  999. package/lib/v2/hrbeu/yjsy/list.js +57 -0
  1000. package/lib/v2/hrbust/jwzx.js +36 -0
  1001. package/lib/v2/hrbust/maintainer.js +3 -0
  1002. package/lib/v2/hrbust/radar.js +13 -0
  1003. package/lib/v2/hrbust/router.js +3 -0
  1004. package/lib/v2/hrbust/templates/description.art +1 -0
  1005. package/lib/v2/hrbust/utils.js +71 -0
  1006. package/lib/v2/huanqiu/index.js +10 -3
  1007. package/lib/v2/hunanpea/maintainer.js +3 -0
  1008. package/lib/v2/hunanpea/radar.js +13 -0
  1009. package/lib/v2/hunanpea/router.js +3 -0
  1010. package/lib/v2/hunanpea/rsks.js +42 -0
  1011. package/lib/v2/hupu/all.js +8 -8
  1012. package/lib/v2/hupu/bbs.js +42 -21
  1013. package/lib/v2/hupu/index.js +16 -8
  1014. package/lib/v2/hupu/templates/description.art +9 -4
  1015. package/lib/v2/hupu/templates/match.art +22 -0
  1016. package/lib/v2/huxiu/article.js +14 -11
  1017. package/lib/v2/huxiu/author.js +11 -20
  1018. package/lib/v2/huxiu/briefColumn.js +41 -0
  1019. package/lib/v2/huxiu/collection.js +20 -15
  1020. package/lib/v2/huxiu/maintainer.js +1 -0
  1021. package/lib/v2/huxiu/moment.js +39 -0
  1022. package/lib/v2/huxiu/radar.js +12 -0
  1023. package/lib/v2/huxiu/router.js +2 -0
  1024. package/lib/v2/huxiu/search.js +19 -7
  1025. package/lib/v2/huxiu/tag.js +17 -10
  1026. package/lib/v2/huxiu/templates/brief.art +22 -0
  1027. package/lib/v2/huxiu/templates/img.art +3 -0
  1028. package/lib/v2/huxiu/templates/moment.art +16 -0
  1029. package/lib/v2/huxiu/templates/video.art +7 -0
  1030. package/lib/v2/huxiu/utils.js +137 -52
  1031. package/lib/v2/idolypride/maintainer.js +3 -0
  1032. package/lib/v2/idolypride/news.js +29 -0
  1033. package/lib/v2/idolypride/radar.js +13 -0
  1034. package/lib/v2/idolypride/router.js +3 -0
  1035. package/lib/v2/ieee-security/maintainer.js +3 -0
  1036. package/lib/v2/ieee-security/radar.js +13 -0
  1037. package/lib/v2/ieee-security/router.js +3 -0
  1038. package/lib/v2/ieee-security/sp.js +36 -0
  1039. package/lib/v2/ifeng/maintainer.js +1 -0
  1040. package/lib/v2/ifeng/news.js +54 -0
  1041. package/lib/v2/ifeng/radar.js +7 -0
  1042. package/lib/v2/ifeng/router.js +1 -0
  1043. package/lib/v2/ifeng/templates/description.art +16 -0
  1044. package/lib/v2/ifi-audio/download.js +34 -0
  1045. package/lib/v2/ifi-audio/maintainer.js +3 -0
  1046. package/lib/v2/ifi-audio/router.js +3 -0
  1047. package/lib/v2/iiilab/index.js +24 -0
  1048. package/lib/v2/iiilab/maintainer.js +3 -0
  1049. package/lib/v2/iiilab/radar.js +13 -0
  1050. package/lib/v2/iiilab/router.js +3 -0
  1051. package/lib/v2/ikea/cn/family_offers.js +70 -0
  1052. package/lib/v2/ikea/cn/low_price.js +22 -0
  1053. package/lib/v2/ikea/cn/new.js +39 -0
  1054. package/lib/v2/ikea/cn/utils.js +42 -0
  1055. package/lib/v2/ikea/gb/new.js +54 -0
  1056. package/lib/v2/ikea/gb/offer.js +69 -0
  1057. package/lib/v2/ikea/maintainer.js +7 -0
  1058. package/lib/v2/ikea/radar.js +42 -0
  1059. package/lib/v2/ikea/router.js +7 -0
  1060. package/lib/v2/ikea/templates/cn/product.art +14 -0
  1061. package/lib/v2/ikea/templates/new.art +7 -0
  1062. package/lib/v2/ikea/templates/offer.art +3 -0
  1063. package/lib/v2/imagemagick/changelog.js +46 -0
  1064. package/lib/v2/imagemagick/maintainer.js +3 -0
  1065. package/lib/v2/imagemagick/radar.js +13 -0
  1066. package/lib/v2/imagemagick/router.js +3 -0
  1067. package/lib/v2/indiansinkuwait/latest.js +43 -0
  1068. package/lib/v2/indiansinkuwait/maintainer.js +3 -0
  1069. package/lib/v2/indiansinkuwait/radar.js +13 -0
  1070. package/lib/v2/indiansinkuwait/router.js +3 -0
  1071. package/lib/v2/inewsweek/index.js +53 -0
  1072. package/lib/v2/inewsweek/maintainer.js +3 -0
  1073. package/lib/v2/inewsweek/radar.js +13 -0
  1074. package/lib/v2/inewsweek/router.js +3 -0
  1075. package/lib/v2/infoq/maintainer.js +4 -0
  1076. package/lib/v2/infoq/radar.js +19 -0
  1077. package/lib/v2/infoq/recommend.js +25 -0
  1078. package/lib/v2/infoq/router.js +4 -0
  1079. package/lib/v2/infoq/topic.js +42 -0
  1080. package/lib/v2/infoq/utils.js +111 -0
  1081. package/lib/v2/inoreader/index.js +46 -0
  1082. package/lib/v2/inoreader/maintainer.js +3 -0
  1083. package/lib/v2/inoreader/radar.js +17 -0
  1084. package/lib/v2/inoreader/router.js +3 -0
  1085. package/lib/v2/instagram/common-utils.js +59 -0
  1086. package/lib/v2/instagram/maintainer.js +4 -0
  1087. package/lib/v2/instagram/private-api/index.js +94 -0
  1088. package/lib/v2/instagram/private-api/utils.js +37 -0
  1089. package/lib/v2/instagram/radar.js +19 -0
  1090. package/lib/v2/instagram/router.js +4 -0
  1091. package/lib/v2/instagram/templates/images.art +5 -0
  1092. package/lib/v2/instagram/templates/video.art +5 -0
  1093. package/lib/v2/instagram/web-api/index.js +70 -0
  1094. package/lib/v2/instagram/web-api/utils.js +99 -0
  1095. package/lib/v2/iqiyi/album.js +62 -0
  1096. package/lib/v2/iqiyi/maintainer.js +4 -0
  1097. package/lib/v2/iqiyi/radar.js +24 -0
  1098. package/lib/v2/iqiyi/router.js +4 -0
  1099. package/lib/v2/iqiyi/templates/album.art +1 -0
  1100. package/lib/v2/iresearch/maintainer.js +1 -0
  1101. package/lib/v2/iresearch/radar.js +7 -1
  1102. package/lib/v2/iresearch/router.js +1 -0
  1103. package/lib/v2/iresearch/templates/weekly.art +11 -0
  1104. package/lib/v2/iresearch/weekly.js +39 -0
  1105. package/lib/v2/islander/maintainer.js +4 -0
  1106. package/lib/v2/islander/radar.js +19 -0
  1107. package/lib/v2/islander/router.js +4 -0
  1108. package/lib/v2/islander/search.js +33 -0
  1109. package/lib/v2/islander/top30event.js +28 -0
  1110. package/lib/v2/issuehunt/funded.js +28 -0
  1111. package/lib/v2/issuehunt/maintainer.js +3 -0
  1112. package/lib/v2/issuehunt/radar.js +13 -0
  1113. package/lib/v2/issuehunt/router.js +3 -0
  1114. package/lib/v2/itch/devlog.js +4 -0
  1115. package/lib/v2/ithome/maintainer.js +1 -0
  1116. package/lib/v2/ithome/radar.js +11 -0
  1117. package/lib/v2/ithome/router.js +1 -0
  1118. package/lib/v2/ithome/tw/feeds.js +38 -0
  1119. package/lib/v2/iwara/index.js +1 -0
  1120. package/lib/v2/iwara/maintainer.js +1 -0
  1121. package/lib/v2/iwara/radar.js +6 -0
  1122. package/lib/v2/iwara/router.js +1 -0
  1123. package/lib/v2/iwara/subscriptions.js +49 -0
  1124. package/lib/v2/iwara/templates/subscriptions.art +1 -0
  1125. package/lib/v2/jandan/index.js +17 -51
  1126. package/lib/v2/jandan/maintainer.js +1 -1
  1127. package/lib/v2/jandan/section.js +0 -1
  1128. package/lib/v2/javbus/index.js +21 -4
  1129. package/lib/v2/javbus/maintainer.js +33 -14
  1130. package/lib/v2/javbus/radar.js +75 -39
  1131. package/lib/v2/javbus/router.js +1 -1
  1132. package/lib/v2/javbus/templates/description.art +12 -1
  1133. package/lib/v2/javdb/rankings.js +1 -1
  1134. package/lib/v2/javdb/utils.js +6 -0
  1135. package/lib/v2/jiaoliudao/index.js +35 -0
  1136. package/lib/v2/jiaoliudao/maintainer.js +3 -0
  1137. package/lib/v2/jiaoliudao/radar.js +13 -0
  1138. package/lib/v2/jiaoliudao/router.js +3 -0
  1139. package/lib/v2/jiemian/list.js +60 -0
  1140. package/lib/v2/jiemian/maintainer.js +4 -0
  1141. package/lib/v2/jiemian/radar.js +19 -0
  1142. package/lib/v2/jiemian/router.js +4 -0
  1143. package/lib/v2/jike/maintainer.js +1 -1
  1144. package/lib/v2/jike/router.js +1 -1
  1145. package/lib/v2/jike/topic.js +1 -1
  1146. package/lib/v2/jike/user.js +23 -12
  1147. package/lib/v2/jike/utils.js +4 -2
  1148. package/lib/v2/jin10/index.js +58 -0
  1149. package/lib/v2/jin10/maintainer.js +3 -0
  1150. package/lib/v2/jin10/radar.js +13 -0
  1151. package/lib/v2/jin10/router.js +3 -0
  1152. package/lib/v2/jin10/templates/description.art +2 -0
  1153. package/lib/v2/jornada/index.js +59 -0
  1154. package/lib/v2/jornada/maintainer.js +3 -0
  1155. package/lib/v2/jornada/radar.js +13 -0
  1156. package/lib/v2/jornada/router.js +3 -0
  1157. package/lib/v2/jseea/maintainer.js +3 -0
  1158. package/lib/v2/jseea/news.js +64 -0
  1159. package/lib/v2/jseea/radar.js +13 -0
  1160. package/lib/v2/jseea/router.js +3 -0
  1161. package/lib/v2/ke/maintainer.js +3 -0
  1162. package/lib/v2/ke/radar.js +13 -0
  1163. package/lib/v2/ke/results.js +36 -0
  1164. package/lib/v2/ke/router.js +3 -0
  1165. package/lib/v2/kemono/index.js +23 -19
  1166. package/lib/v2/kemono/templates/discord.art +22 -0
  1167. package/lib/v2/kimlaw/maintainer.js +3 -0
  1168. package/lib/v2/kimlaw/radar.js +13 -0
  1169. package/lib/v2/kimlaw/router.js +3 -0
  1170. package/lib/v2/kimlaw/thesis.js +44 -0
  1171. package/lib/v2/kuaidi100/maintainer.js +4 -0
  1172. package/lib/v2/kuaidi100/radar.js +25 -0
  1173. package/lib/v2/kuaidi100/router.js +4 -0
  1174. package/lib/v2/kuaidi100/supported_company.js +16 -0
  1175. package/lib/v2/kuaidi100/utils.js +258 -0
  1176. package/lib/v2/kuwaitlocal/index.js +47 -0
  1177. package/lib/v2/kuwaitlocal/maintainer.js +4 -0
  1178. package/lib/v2/kuwaitlocal/radar.js +19 -0
  1179. package/lib/v2/kuwaitlocal/router.js +3 -0
  1180. package/lib/v2/lang/maintainer.js +3 -0
  1181. package/lib/v2/lang/radar.js +13 -0
  1182. package/lib/v2/lang/room.js +40 -0
  1183. package/lib/v2/lang/router.js +3 -0
  1184. package/lib/v2/lang/templates/room.art +1 -0
  1185. package/lib/v2/layoffs/index.js +134 -0
  1186. package/lib/v2/layoffs/maintainer.js +3 -0
  1187. package/lib/v2/layoffs/radar.js +13 -0
  1188. package/lib/v2/layoffs/router.js +3 -0
  1189. package/lib/v2/learnblockchain/maintainer.js +3 -0
  1190. package/lib/v2/learnblockchain/posts.js +43 -0
  1191. package/lib/v2/learnblockchain/radar.js +19 -0
  1192. package/lib/v2/learnblockchain/router.js +3 -0
  1193. package/lib/v2/leetcode/articles.js +80 -0
  1194. package/lib/v2/leetcode/dailyquestion-cn.js +115 -0
  1195. package/lib/v2/leetcode/dailyquestion-en.js +116 -0
  1196. package/lib/v2/leetcode/dailyquestion-solution-cn.js +183 -0
  1197. package/lib/v2/leetcode/dailyquestion-solution-en.js +213 -0
  1198. package/lib/v2/leetcode/maintainer.js +6 -0
  1199. package/lib/v2/leetcode/radar.js +62 -0
  1200. package/lib/v2/leetcode/router.js +7 -0
  1201. package/lib/v2/leetcode/templates/question-description.art +6 -0
  1202. package/lib/v2/lianxh/index.js +61 -0
  1203. package/lib/v2/lianxh/maintainer.js +3 -0
  1204. package/lib/v2/lianxh/radar.js +13 -0
  1205. package/lib/v2/lianxh/router.js +3 -0
  1206. package/lib/v2/linkedin/cn/index.js +13 -0
  1207. package/lib/v2/linkedin/cn/renderer.js +179 -0
  1208. package/lib/v2/linkedin/cn/utils.js +122 -0
  1209. package/lib/v2/linkedin/jobs.js +44 -0
  1210. package/lib/v2/linkedin/maintainer.js +4 -0
  1211. package/lib/v2/linkedin/models.js +15 -0
  1212. package/lib/v2/linkedin/radar.js +36 -0
  1213. package/lib/v2/linkedin/router.js +4 -0
  1214. package/lib/v2/linkedin/templates/cn/posting.art +25 -0
  1215. package/lib/v2/linkedin/utils.js +121 -0
  1216. package/lib/v2/linkresearcher/index.js +68 -0
  1217. package/lib/v2/linkresearcher/maintainer.js +3 -0
  1218. package/lib/v2/linkresearcher/radar.js +19 -0
  1219. package/lib/v2/linkresearcher/router.js +3 -0
  1220. package/lib/v2/linovelib/maintainer.js +3 -0
  1221. package/lib/v2/linovelib/novel.js +33 -0
  1222. package/lib/v2/linovelib/radar.js +13 -0
  1223. package/lib/v2/linovelib/router.js +3 -0
  1224. package/lib/v2/liulinblog/utils.js +7 -4
  1225. package/lib/v2/lkong/forum.js +3 -2
  1226. package/lib/v2/lofter/user.js +10 -1
  1227. package/lib/v2/logonews/router.js +1 -1
  1228. package/lib/v2/loltw/maintainer.js +3 -0
  1229. package/lib/v2/loltw/news.js +36 -0
  1230. package/lib/v2/loltw/radar.js +13 -0
  1231. package/lib/v2/loltw/router.js +3 -0
  1232. package/lib/v2/loltw/templates/news.art +6 -0
  1233. package/lib/v2/lovelive-anime/maintainer.js +5 -0
  1234. package/lib/v2/lovelive-anime/news.js +56 -0
  1235. package/lib/v2/lovelive-anime/radar.js +31 -0
  1236. package/lib/v2/lovelive-anime/router.js +5 -0
  1237. package/lib/v2/lovelive-anime/schedules.js +56 -0
  1238. package/lib/v2/lovelive-anime/templates/description.art +1 -0
  1239. package/lib/v2/lovelive-anime/templates/scheduleDesc.art +3 -0
  1240. package/lib/v2/lovelive-anime/topics.js +84 -0
  1241. package/lib/v2/luogu/contest.js +72 -0
  1242. package/lib/v2/luogu/daily.js +33 -0
  1243. package/lib/v2/luogu/maintainer.js +6 -0
  1244. package/lib/v2/luogu/radar.js +31 -0
  1245. package/lib/v2/luogu/router.js +6 -0
  1246. package/lib/v2/luogu/userBlog.js +48 -0
  1247. package/lib/v2/luogu/userFeed.js +30 -0
  1248. package/lib/v2/lxixsxa/discography.js +54 -0
  1249. package/lib/v2/lxixsxa/information.js +48 -0
  1250. package/lib/v2/lxixsxa/jsonpHelper.js +19 -0
  1251. package/lib/v2/lxixsxa/maintainer.js +4 -0
  1252. package/lib/v2/lxixsxa/radar.js +36 -0
  1253. package/lib/v2/lxixsxa/router.js +4 -0
  1254. package/lib/v2/lxixsxa/templates/disco.art +5 -0
  1255. package/lib/v2/lxixsxa/templates/info.art +4 -0
  1256. package/lib/v2/macfilos/blog.js +61 -0
  1257. package/lib/v2/macfilos/maintainer.js +3 -0
  1258. package/lib/v2/macfilos/radar.js +13 -0
  1259. package/lib/v2/macfilos/router.js +3 -0
  1260. package/lib/v2/magazinelib/latest-magazine.js +55 -0
  1261. package/lib/v2/magazinelib/maintainer.js +3 -0
  1262. package/lib/v2/magazinelib/radar.js +19 -0
  1263. package/lib/v2/magazinelib/router.js +3 -0
  1264. package/lib/v2/magazinelib/templates/magazine-description.art +3 -0
  1265. package/lib/v2/mangadex/index.js +73 -0
  1266. package/lib/v2/mangadex/maintainer.js +3 -0
  1267. package/lib/v2/mangadex/radar.js +13 -0
  1268. package/lib/v2/mangadex/router.js +3 -0
  1269. package/lib/v2/manhuagui/comic.js +114 -0
  1270. package/lib/v2/manhuagui/maintainer.js +6 -0
  1271. package/lib/v2/manhuagui/radar.js +33 -0
  1272. package/lib/v2/manhuagui/router.js +5 -0
  1273. package/lib/v2/manhuagui/subscribe.js +54 -0
  1274. package/lib/v2/manhuagui/templates/manga.art +2 -0
  1275. package/lib/v2/mckinsey/cn/categoryMap.js +79 -0
  1276. package/lib/v2/mckinsey/cn/index.js +37 -0
  1277. package/lib/v2/mckinsey/radar.js +12 -0
  1278. package/lib/v2/mckinsey/router.js +3 -0
  1279. package/lib/v2/mclaren/index.js +96 -0
  1280. package/lib/v2/mclaren/maintainer.js +3 -0
  1281. package/lib/v2/mclaren/radar.js +29 -0
  1282. package/lib/v2/mclaren/router.js +3 -0
  1283. package/lib/v2/mclaren/templates/desc.art +6 -0
  1284. package/lib/v2/meituclub/latest.js +41 -0
  1285. package/lib/v2/meituclub/maintainer.js +3 -0
  1286. package/lib/v2/meituclub/radar.js +13 -0
  1287. package/lib/v2/meituclub/router.js +3 -0
  1288. package/lib/v2/meituclub/templates/description.art +1 -0
  1289. package/lib/v2/meteor/boards.js +11 -0
  1290. package/lib/v2/meteor/index.js +45 -0
  1291. package/lib/v2/meteor/maintainer.js +4 -0
  1292. package/lib/v2/meteor/radar.js +19 -0
  1293. package/lib/v2/meteor/router.js +4 -0
  1294. package/lib/v2/meteor/templates/desc.art +7 -0
  1295. package/lib/v2/meteor/utils.js +90 -0
  1296. package/lib/v2/mihoyo/maintainer.js +1 -0
  1297. package/lib/v2/mihoyo/radar.js +20 -1
  1298. package/lib/v2/mihoyo/router.js +1 -0
  1299. package/lib/v2/mihoyo/ys/news.js +81 -0
  1300. package/lib/v2/mindmeister/example.js +44 -0
  1301. package/lib/v2/mindmeister/maintainer.js +3 -0
  1302. package/lib/v2/mindmeister/radar.js +13 -0
  1303. package/lib/v2/mindmeister/router.js +3 -0
  1304. package/lib/v2/mindmeister/templates/image.art +1 -0
  1305. package/lib/v2/minecraft/maintainer.js +3 -0
  1306. package/lib/v2/minecraft/radar.js +13 -0
  1307. package/lib/v2/minecraft/router.js +3 -0
  1308. package/lib/v2/minecraft/version.js +34 -0
  1309. package/lib/v2/mingpao/index.js +28 -33
  1310. package/lib/v2/mingpao/templates/description.art +1 -1
  1311. package/lib/v2/mingpao/templates/fancybox.art +6 -2
  1312. package/lib/v2/mirror/index.js +20 -13
  1313. package/lib/v2/misskey/featured-notes.js +29 -0
  1314. package/lib/v2/misskey/maintainer.js +3 -0
  1315. package/lib/v2/misskey/radar.js +35 -0
  1316. package/lib/v2/misskey/router.js +3 -0
  1317. package/lib/v2/misskey/templates/note.art +23 -0
  1318. package/lib/v2/misskey/utils.js +31 -0
  1319. package/lib/v2/mixcloud/index.js +130 -0
  1320. package/lib/v2/mixcloud/maintainer.js +3 -0
  1321. package/lib/v2/mixcloud/queries.js +1520 -0
  1322. package/lib/v2/mixcloud/radar.js +37 -0
  1323. package/lib/v2/mixcloud/router.js +3 -0
  1324. package/lib/v2/mrdx/daily.js +79 -0
  1325. package/lib/v2/mrdx/maintainer.js +3 -0
  1326. package/lib/v2/mrdx/radar.js +13 -0
  1327. package/lib/v2/mrdx/router.js +3 -0
  1328. package/lib/v2/mrdx/utils.js +17 -0
  1329. package/lib/v2/mtime/maintainer.js +1 -1
  1330. package/lib/v2/mtime/news.js +28 -24
  1331. package/lib/v2/mtime/radar.js +1 -1
  1332. package/lib/v2/myfigurecollection/activity.js +63 -0
  1333. package/lib/v2/myfigurecollection/index.js +82 -0
  1334. package/lib/v2/myfigurecollection/maintainer.js +4 -0
  1335. package/lib/v2/myfigurecollection/radar.js +44 -0
  1336. package/lib/v2/myfigurecollection/router.js +4 -0
  1337. package/lib/v2/myfigurecollection/templates/activity.art +8 -0
  1338. package/lib/v2/myfigurecollection/templates/description.art +24 -0
  1339. package/lib/v2/mysql/release.js +9 -2
  1340. package/lib/v2/nature/maintainer.js +5 -5
  1341. package/lib/v2/nautil/maintainer.js +3 -0
  1342. package/lib/v2/nautil/radar.js +13 -0
  1343. package/lib/v2/nautil/router.js +3 -0
  1344. package/lib/v2/nautil/templates/description.art +6 -0
  1345. package/lib/v2/nautil/topics.js +57 -0
  1346. package/lib/v2/nbd/index.js +6 -6
  1347. package/lib/v2/nber/index.js +48 -0
  1348. package/lib/v2/nber/maintainer.js +4 -0
  1349. package/lib/v2/nber/radar.js +19 -0
  1350. package/lib/v2/nber/router.js +4 -0
  1351. package/lib/v2/nber/template/description.art +6 -0
  1352. package/lib/v2/ncepu/maintainer.js +3 -0
  1353. package/lib/v2/ncepu/master/masterinfo.js +78 -0
  1354. package/lib/v2/ncepu/radar.js +25 -0
  1355. package/lib/v2/ncepu/router.js +3 -0
  1356. package/lib/v2/ndss-symposium/maintainer.js +3 -0
  1357. package/lib/v2/ndss-symposium/ndss.js +80 -0
  1358. package/lib/v2/ndss-symposium/radar.js +13 -0
  1359. package/lib/v2/ndss-symposium/router.js +3 -0
  1360. package/lib/v2/neatdownloadmanager/download.js +50 -0
  1361. package/lib/v2/neatdownloadmanager/maintainer.js +3 -0
  1362. package/lib/v2/neatdownloadmanager/radar.js +13 -0
  1363. package/lib/v2/neatdownloadmanager/router.js +3 -0
  1364. package/lib/v2/neu/bmie.js +94 -0
  1365. package/lib/v2/neu/maintainer.js +4 -0
  1366. package/lib/v2/neu/news.js +44 -0
  1367. package/lib/v2/neu/radar.js +21 -0
  1368. package/lib/v2/neu/router.js +4 -0
  1369. package/lib/v2/nextapple/maintainer.js +3 -0
  1370. package/lib/v2/nextapple/radar.js +13 -0
  1371. package/lib/v2/nextapple/realtime.js +44 -0
  1372. package/lib/v2/nextapple/router.js +3 -0
  1373. package/lib/v2/nga/forum.js +71 -0
  1374. package/lib/v2/nga/maintainer.js +4 -0
  1375. package/lib/v2/nga/post.js +127 -0
  1376. package/lib/v2/nga/radar.js +39 -0
  1377. package/lib/v2/nga/router.js +4 -0
  1378. package/lib/v2/nikkei/asia/index.js +53 -0
  1379. package/lib/v2/nikkei/cn/index.js +90 -0
  1380. package/lib/v2/nikkei/index.js +36 -0
  1381. package/lib/v2/nikkei/maintainer.js +6 -0
  1382. package/lib/v2/nikkei/news.js +90 -0
  1383. package/lib/v2/nikkei/radar.js +59 -0
  1384. package/lib/v2/nikkei/router.js +7 -0
  1385. package/lib/v2/nikkei/templates/news.art +4 -0
  1386. package/lib/v2/nintendo/direct.js +31 -0
  1387. package/lib/v2/nintendo/eshop_cn.js +44 -0
  1388. package/lib/v2/nintendo/eshop_hk.js +79 -0
  1389. package/lib/v2/nintendo/eshop_jp.js +34 -0
  1390. package/lib/v2/nintendo/eshop_us.js +32 -0
  1391. package/lib/v2/nintendo/maintainer.js +7 -0
  1392. package/lib/v2/nintendo/news.js +23 -0
  1393. package/lib/v2/nintendo/news_china.js +35 -0
  1394. package/lib/v2/nintendo/radar.js +70 -0
  1395. package/lib/v2/nintendo/router.js +10 -0
  1396. package/lib/v2/nintendo/system-update.js +38 -0
  1397. package/lib/v2/nintendo/templates/direct.art +6 -0
  1398. package/lib/v2/nintendo/templates/eshop_cn.art +21 -0
  1399. package/lib/v2/nintendo/templates/eshop_hk.art +61 -0
  1400. package/lib/v2/nintendo/templates/eshop_jp.art +3 -0
  1401. package/lib/v2/nintendo/templates/eshop_us.art +24 -0
  1402. package/lib/v2/nintendo/utils.js +170 -0
  1403. package/lib/v2/njnu/ceai/utils.js +3 -3
  1404. package/lib/v2/njnu/jwc/utils.js +3 -3
  1405. package/lib/v2/nju/admission.js +41 -0
  1406. package/lib/v2/nju/dafls.js +39 -0
  1407. package/lib/v2/nju/exchangesys.js +46 -0
  1408. package/lib/v2/nju/hosptial.js +41 -0
  1409. package/lib/v2/nju/hqjt.js +39 -0
  1410. package/lib/v2/nju/itsc.js +46 -0
  1411. package/lib/v2/nju/jjc.js +42 -0
  1412. package/lib/v2/nju/jw.js +43 -29
  1413. package/lib/v2/nju/maintainer.js +9 -2
  1414. package/lib/v2/nju/radar.js +87 -16
  1415. package/lib/v2/nju/router.js +9 -2
  1416. package/lib/v2/nju/zcc.js +6 -8
  1417. package/lib/v2/njxzc/home.js +66 -0
  1418. package/lib/v2/njxzc/maintainer.js +3 -0
  1419. package/lib/v2/njxzc/radar.js +13 -0
  1420. package/lib/v2/njxzc/router.js +4 -0
  1421. package/lib/v2/nmbxd1/forum.js +58 -0
  1422. package/lib/v2/nmbxd1/maintainer.js +3 -0
  1423. package/lib/v2/nmbxd1/radar.js +13 -0
  1424. package/lib/v2/nmbxd1/router.js +3 -0
  1425. package/lib/v2/nmbxd1/templates/description.art +65 -0
  1426. package/lib/v2/nmtv/column.js +53 -0
  1427. package/lib/v2/nmtv/maintainer.js +3 -0
  1428. package/lib/v2/nmtv/radar.js +13 -0
  1429. package/lib/v2/nmtv/router.js +3 -0
  1430. package/lib/v2/nmtv/templates/description.art +9 -0
  1431. package/lib/v2/nua/dc.js +63 -0
  1432. package/lib/v2/nua/gra.js +21 -0
  1433. package/lib/v2/nua/index.js +22 -0
  1434. package/lib/v2/nua/lib.js +39 -0
  1435. package/lib/v2/nua/maintainer.js +7 -0
  1436. package/lib/v2/nua/radar.js +45 -0
  1437. package/lib/v2/nua/router.js +7 -0
  1438. package/lib/v2/nua/sxw.js +22 -0
  1439. package/lib/v2/nua/utils.js +75 -0
  1440. package/lib/v2/nuaa/college/cae.js +79 -0
  1441. package/lib/v2/nuaa/college/cs.js +78 -0
  1442. package/lib/v2/nuaa/jwc/jwc.js +21 -27
  1443. package/lib/v2/nuaa/maintainer.js +4 -3
  1444. package/lib/v2/nuaa/radar.js +6 -0
  1445. package/lib/v2/nuaa/router.js +3 -2
  1446. package/lib/v2/nuaa/utils/pypasswaf.js +3 -4
  1447. package/lib/v2/nuaa/yjsy/yjsy.js +60 -41
  1448. package/lib/v2/nuist/bulletin.js +61 -0
  1449. package/lib/v2/nuist/cas.js +71 -0
  1450. package/lib/v2/nuist/jwc.js +43 -0
  1451. package/lib/v2/nuist/library/lib.js +43 -0
  1452. package/lib/v2/nuist/maintainer.js +10 -0
  1453. package/lib/v2/nuist/radar.js +69 -0
  1454. package/lib/v2/nuist/router.js +10 -0
  1455. package/lib/v2/nuist/scs.js +49 -0
  1456. package/lib/v2/nuist/sese.js +45 -0
  1457. package/lib/v2/nuist/xgc.js +49 -0
  1458. package/lib/v2/nuist/yjs.js +60 -0
  1459. package/lib/v2/nyaa/main.js +50 -0
  1460. package/lib/v2/nyaa/maintainer.js +7 -2
  1461. package/lib/v2/nyaa/radar.js +28 -13
  1462. package/lib/v2/nyaa/router.js +7 -2
  1463. package/lib/v2/nytimes/daily_briefing_chinese.js +3 -22
  1464. package/lib/v2/nytimes/templates/image.art +0 -1
  1465. package/lib/v2/odaily/activity.js +13 -14
  1466. package/lib/v2/odaily/post.js +15 -20
  1467. package/lib/v2/odaily/user.js +14 -15
  1468. package/lib/v2/odaily/utils.js +1 -1
  1469. package/lib/v2/oilchem/index.js +20 -21
  1470. package/lib/v2/oncc/maintainer.js +1 -0
  1471. package/lib/v2/oncc/money18.js +115 -0
  1472. package/lib/v2/oncc/radar.js +13 -5
  1473. package/lib/v2/oncc/router.js +1 -0
  1474. package/lib/v2/oncc/templates/money18.art +6 -0
  1475. package/lib/v2/oo-software/changelog.js +40 -0
  1476. package/lib/v2/oo-software/maintainer.js +3 -0
  1477. package/lib/v2/oo-software/radar.js +13 -0
  1478. package/lib/v2/oo-software/router.js +3 -0
  1479. package/lib/v2/openai/blog.js +97 -0
  1480. package/lib/v2/openai/maintainer.js +3 -0
  1481. package/lib/v2/openai/radar.js +19 -0
  1482. package/lib/v2/openai/router.js +3 -0
  1483. package/lib/v2/openai/templates/article.art +2 -0
  1484. package/lib/v2/oreno3d/get_sec_page_data.js +75 -0
  1485. package/lib/v2/oreno3d/main.js +157 -0
  1486. package/lib/v2/oreno3d/maintainer.js +7 -0
  1487. package/lib/v2/oreno3d/radar.js +52 -0
  1488. package/lib/v2/oreno3d/router.js +7 -0
  1489. package/lib/v2/oreno3d/templates/description.art +13 -0
  1490. package/lib/v2/oschina/maintainer.js +6 -0
  1491. package/lib/v2/oschina/news.js +93 -0
  1492. package/lib/v2/oschina/radar.js +33 -0
  1493. package/lib/v2/oschina/router.js +6 -0
  1494. package/lib/v2/oschina/topic.js +53 -0
  1495. package/lib/v2/oschina/user.js +50 -0
  1496. package/lib/v2/oshwhub/explore.js +116 -0
  1497. package/lib/v2/oshwhub/maintainer.js +3 -0
  1498. package/lib/v2/oshwhub/radar.js +16 -0
  1499. package/lib/v2/oshwhub/router.js +3 -0
  1500. package/lib/v2/oshwhub/templates/description.art +58 -0
  1501. package/lib/v2/outagereport/index.js +51 -0
  1502. package/lib/v2/outagereport/maintainer.js +3 -0
  1503. package/lib/v2/outagereport/radar.js +13 -0
  1504. package/lib/v2/outagereport/router.js +3 -0
  1505. package/lib/v2/paradigm/maintainer.js +3 -0
  1506. package/lib/v2/paradigm/radar.js +13 -0
  1507. package/lib/v2/paradigm/router.js +3 -0
  1508. package/lib/v2/paradigm/writing.js +44 -0
  1509. package/lib/v2/patagonia/maintainer.js +3 -0
  1510. package/lib/v2/patagonia/new-arrivals.js +61 -0
  1511. package/lib/v2/patagonia/radar.js +23 -0
  1512. package/lib/v2/patagonia/router.js +3 -0
  1513. package/lib/v2/patagonia/templates/product-description.art +4 -0
  1514. package/lib/v2/penguin-random-house/articles.js +27 -0
  1515. package/lib/v2/penguin-random-house/maintainer.js +4 -0
  1516. package/lib/v2/penguin-random-house/radar.js +19 -0
  1517. package/lib/v2/penguin-random-house/router.js +4 -0
  1518. package/lib/v2/penguin-random-house/templates/articleHeader.art +5 -0
  1519. package/lib/v2/penguin-random-house/templates/book.art +4 -0
  1520. package/lib/v2/penguin-random-house/thereaddown.js +27 -0
  1521. package/lib/v2/penguin-random-house/utils.js +119 -0
  1522. package/lib/v2/people/index.js +4 -0
  1523. package/lib/v2/people/router.js +1 -1
  1524. package/lib/v2/peopo/maintainer.js +3 -0
  1525. package/lib/v2/peopo/radar.js +13 -0
  1526. package/lib/v2/peopo/router.js +3 -0
  1527. package/lib/v2/peopo/topic.js +46 -0
  1528. package/lib/v2/phoronix/index.js +107 -0
  1529. package/lib/v2/phoronix/maintainer.js +3 -0
  1530. package/lib/v2/phoronix/radar.js +13 -0
  1531. package/lib/v2/phoronix/router.js +3 -0
  1532. package/lib/v2/pianyuan/search.js +1 -1
  1533. package/lib/v2/pianyuan/utils.js +1 -1
  1534. package/lib/v2/picnob/maintainer.js +3 -0
  1535. package/lib/v2/picnob/radar.js +13 -0
  1536. package/lib/v2/picnob/router.js +3 -0
  1537. package/lib/v2/picnob/templates/desc.art +13 -0
  1538. package/lib/v2/picnob/user.js +61 -0
  1539. package/lib/v2/picuki/maintainer.js +1 -1
  1540. package/lib/v2/picuki/profile.js +24 -10
  1541. package/lib/v2/picuki/templates/video.art +3 -0
  1542. package/lib/v2/picuki/utils.js +21 -0
  1543. package/lib/v2/pikabu/community.js +37 -0
  1544. package/lib/v2/pikabu/maintainer.js +5 -0
  1545. package/lib/v2/pikabu/radar.js +25 -0
  1546. package/lib/v2/pikabu/router.js +4 -0
  1547. package/lib/v2/pikabu/templates/video.art +8 -0
  1548. package/lib/v2/pikabu/user.js +46 -0
  1549. package/lib/v2/pikabu/utils.js +43 -0
  1550. package/lib/v2/pixabay/maintainer.js +3 -0
  1551. package/lib/v2/pixabay/radar.js +13 -0
  1552. package/lib/v2/pixabay/router.js +3 -0
  1553. package/lib/v2/pixabay/search.js +50 -0
  1554. package/lib/v2/pixabay/templates/img.art +1 -0
  1555. package/lib/v2/pixiv/api/getBookmarks.js +23 -0
  1556. package/lib/v2/pixiv/api/getIllustFollows.js +20 -0
  1557. package/lib/v2/pixiv/api/getIllusts.js +22 -0
  1558. package/lib/v2/pixiv/api/getRanking.js +30 -0
  1559. package/lib/v2/pixiv/api/getUserDetail.js +27 -0
  1560. package/lib/v2/pixiv/api/searchIllust.js +24 -0
  1561. package/lib/v2/pixiv/api/searchPopularIllust.js +23 -0
  1562. package/lib/v2/pixiv/bookmarks.js +40 -0
  1563. package/lib/v2/pixiv/illustfollow.js +34 -0
  1564. package/lib/v2/pixiv/maintainer.js +8 -0
  1565. package/lib/v2/pixiv/novels.js +44 -0
  1566. package/lib/v2/pixiv/pixiv-got.js +65 -0
  1567. package/lib/v2/pixiv/radar.js +43 -0
  1568. package/lib/v2/pixiv/ranking.js +92 -0
  1569. package/lib/v2/pixiv/router.js +8 -0
  1570. package/lib/v2/pixiv/search.js +51 -0
  1571. package/lib/v2/pixiv/token.js +86 -0
  1572. package/lib/v2/pixiv/user.js +38 -0
  1573. package/lib/v2/piyao/jrpy.js +39 -0
  1574. package/lib/v2/piyao/maintainer.js +3 -0
  1575. package/lib/v2/piyao/radar.js +13 -0
  1576. package/lib/v2/piyao/router.js +3 -0
  1577. package/lib/v2/pku/maintainer.js +3 -0
  1578. package/lib/v2/pku/radar.js +20 -0
  1579. package/lib/v2/pku/router.js +3 -0
  1580. package/lib/v2/pku/ss/admission.js +15 -0
  1581. package/lib/v2/pku/ss/common.js +37 -0
  1582. package/lib/v2/pku/ss/notice.js +15 -0
  1583. package/lib/v2/pku/ss/pg_admin.js +15 -0
  1584. package/lib/v2/plurk/anonymous.js +23 -0
  1585. package/lib/v2/plurk/hotlinks.js +20 -0
  1586. package/lib/v2/plurk/maintainer.js +9 -0
  1587. package/lib/v2/plurk/news.js +23 -0
  1588. package/lib/v2/plurk/radar.js +56 -0
  1589. package/lib/v2/plurk/router.js +9 -0
  1590. package/lib/v2/plurk/search.js +27 -0
  1591. package/lib/v2/plurk/top.js +29 -0
  1592. package/lib/v2/plurk/topic.js +33 -0
  1593. package/lib/v2/plurk/user.js +31 -0
  1594. package/lib/v2/plurk/utils.js +56 -0
  1595. package/lib/v2/pnas/index.js +101 -0
  1596. package/lib/v2/pnas/maintainer.js +3 -0
  1597. package/lib/v2/pnas/radar.js +13 -0
  1598. package/lib/v2/pnas/router.js +3 -0
  1599. package/lib/v2/pnas/templates/article.art +8 -0
  1600. package/lib/v2/polkadot/home.js +34 -0
  1601. package/lib/v2/polkadot/maintainer.js +3 -0
  1602. package/lib/v2/polkadot/radar.js +13 -0
  1603. package/lib/v2/polkadot/router.js +3 -0
  1604. package/lib/v2/postman/maintainer.js +3 -0
  1605. package/lib/v2/postman/radar.js +13 -0
  1606. package/lib/v2/postman/release-notes.js +27 -0
  1607. package/lib/v2/postman/router.js +3 -0
  1608. package/lib/v2/producthunt/templates/descImg.art +2 -2
  1609. package/lib/v2/producthunt/today.js +8 -5
  1610. package/lib/v2/pts/curations.js +44 -0
  1611. package/lib/v2/pts/index.js +68 -0
  1612. package/lib/v2/pts/live.js +49 -0
  1613. package/lib/v2/pts/maintainer.js +7 -0
  1614. package/lib/v2/pts/projects.js +44 -0
  1615. package/lib/v2/pts/radar.js +44 -2
  1616. package/lib/v2/pts/router.js +5 -1
  1617. package/lib/v2/pts/templates/description.art +6 -0
  1618. package/lib/v2/pts/templates/live.art +6 -0
  1619. package/lib/v2/putty/changes.js +36 -0
  1620. package/lib/v2/putty/maintainer.js +3 -0
  1621. package/lib/v2/putty/radar.js +13 -0
  1622. package/lib/v2/putty/router.js +3 -0
  1623. package/lib/v2/qdaily/index.js +87 -0
  1624. package/lib/v2/qdaily/maintainer.js +3 -0
  1625. package/lib/v2/qdaily/router.js +3 -0
  1626. package/lib/v2/qdaily/templates/article.art +5 -0
  1627. package/lib/v2/qdaily/templates/radar.js +25 -0
  1628. package/lib/v2/qianp/maintainer.js +3 -0
  1629. package/lib/v2/qianp/news.js +48 -0
  1630. package/lib/v2/qianp/radar.js +13 -0
  1631. package/lib/v2/qianp/router.js +3 -0
  1632. package/lib/v2/qianzhan/column.js +50 -0
  1633. package/lib/v2/qianzhan/maintainer.js +4 -0
  1634. package/lib/v2/qianzhan/radar.js +26 -0
  1635. package/lib/v2/qianzhan/rank.js +40 -0
  1636. package/lib/v2/qianzhan/router.js +4 -0
  1637. package/lib/v2/qidian/author.js +41 -0
  1638. package/lib/v2/qidian/chapter.js +37 -0
  1639. package/lib/v2/qidian/forum.js +39 -0
  1640. package/lib/v2/qidian/free-next.js +42 -0
  1641. package/lib/v2/qidian/free.js +45 -0
  1642. package/lib/v2/qidian/maintainer.js +7 -0
  1643. package/lib/v2/qidian/radar.js +41 -0
  1644. package/lib/v2/qidian/router.js +7 -0
  1645. package/lib/v2/qidian/templates/description.art +5 -0
  1646. package/lib/v2/qingting/channel.js +32 -0
  1647. package/lib/v2/qingting/maintainer.js +4 -0
  1648. package/lib/v2/qingting/podcast.js +77 -0
  1649. package/lib/v2/qingting/radar.js +19 -0
  1650. package/lib/v2/qingting/router.js +4 -0
  1651. package/lib/v2/qipamaijia/index.js +7 -1
  1652. package/lib/v2/qipamaijia/maintainer.js +1 -1
  1653. package/lib/v2/qiyoujiage/maintainer.js +3 -0
  1654. package/lib/v2/qiyoujiage/price.js +28 -0
  1655. package/lib/v2/qiyoujiage/radar.js +13 -0
  1656. package/lib/v2/qiyoujiage/router.js +3 -0
  1657. package/lib/v2/qlu/maintainer.js +3 -0
  1658. package/lib/v2/qlu/notice.js +54 -0
  1659. package/lib/v2/qlu/radar.js +13 -0
  1660. package/lib/v2/qlu/router.js +3 -0
  1661. package/lib/v2/qoo-app/apps/card.js +38 -0
  1662. package/lib/v2/qoo-app/apps/comment.js +43 -0
  1663. package/lib/v2/qoo-app/apps/note.js +47 -0
  1664. package/lib/v2/qoo-app/apps/post.js +51 -0
  1665. package/lib/v2/qoo-app/maintainer.js +11 -0
  1666. package/lib/v2/qoo-app/news.js +41 -0
  1667. package/lib/v2/qoo-app/notes/note.js +43 -0
  1668. package/lib/v2/qoo-app/notes/topic.js +20 -0
  1669. package/lib/v2/qoo-app/notes/user.js +20 -0
  1670. package/lib/v2/qoo-app/radar.js +73 -0
  1671. package/lib/v2/qoo-app/router.js +11 -0
  1672. package/lib/v2/qoo-app/templates/comment.art +3 -0
  1673. package/lib/v2/qoo-app/templates/note.art +5 -0
  1674. package/lib/v2/qoo-app/user/appComment.js +41 -0
  1675. package/lib/v2/qoo-app/utils.js +57 -0
  1676. package/lib/v2/qq/fact/index.js +61 -0
  1677. package/lib/v2/qq/kg/cache.js +28 -0
  1678. package/lib/v2/qq/kg/reply.js +21 -0
  1679. package/lib/v2/qq/kg/user.js +50 -0
  1680. package/lib/v2/qq/maintainer.js +3 -0
  1681. package/lib/v2/qq/radar.js +22 -0
  1682. package/lib/v2/qq/router.js +3 -0
  1683. package/lib/v2/qq/templates/article.art +19 -0
  1684. package/lib/v2/qweather/now.js +1 -2
  1685. package/lib/v2/radio/album.js +106 -0
  1686. package/lib/v2/radio/index.js +25 -18
  1687. package/lib/v2/radio/maintainer.js +2 -0
  1688. package/lib/v2/radio/radar.js +15 -3
  1689. package/lib/v2/radio/router.js +2 -0
  1690. package/lib/v2/radio/templates/description.art +7 -4
  1691. package/lib/v2/radio/zhibo.js +73 -0
  1692. package/lib/v2/rarehistoricalphotos/index.js +28 -0
  1693. package/lib/v2/rarehistoricalphotos/maintainer.js +3 -0
  1694. package/lib/v2/rarehistoricalphotos/radar.js +13 -0
  1695. package/lib/v2/rarehistoricalphotos/router.js +3 -0
  1696. package/lib/v2/reactnewsletter/maintainer.js +4 -0
  1697. package/lib/v2/reactnewsletter/radar.js +13 -0
  1698. package/lib/v2/reactnewsletter/reactnewsletter.js +25 -0
  1699. package/lib/v2/reactnewsletter/router.js +3 -0
  1700. package/lib/v2/readhub/index.js +3 -3
  1701. package/lib/v2/remnote/changelog.js +33 -0
  1702. package/lib/v2/remnote/maintainer.js +3 -0
  1703. package/lib/v2/remnote/radar.js +13 -0
  1704. package/lib/v2/remnote/router.js +3 -0
  1705. package/lib/v2/researchgate/maintainer.js +3 -0
  1706. package/lib/v2/researchgate/publications.js +70 -0
  1707. package/lib/v2/researchgate/radar.js +13 -0
  1708. package/lib/v2/researchgate/router.js +3 -0
  1709. package/lib/v2/reuters/common.js +21 -8
  1710. package/lib/v2/reuters/investigates.js +1 -1
  1711. package/lib/v2/reuters/templates/description.art +44 -0
  1712. package/lib/v2/rodong/maintainer.js +3 -0
  1713. package/lib/v2/rodong/news.js +45 -0
  1714. package/lib/v2/rodong/radar.js +13 -0
  1715. package/lib/v2/rodong/router.js +3 -0
  1716. package/lib/v2/ruancan/category.js +8 -0
  1717. package/lib/v2/ruancan/index.js +3 -50
  1718. package/lib/v2/ruancan/maintainer.js +3 -3
  1719. package/lib/v2/ruancan/radar.js +12 -6
  1720. package/lib/v2/ruancan/router.js +4 -1
  1721. package/lib/v2/ruancan/search.js +8 -0
  1722. package/lib/v2/ruancan/user.js +8 -0
  1723. package/lib/v2/ruancan/utils.js +66 -0
  1724. package/lib/v2/rustcc/jobs.js +39 -0
  1725. package/lib/v2/rustcc/maintainer.js +3 -0
  1726. package/lib/v2/rustcc/radar.js +13 -0
  1727. package/lib/v2/rustcc/router.js +3 -0
  1728. package/lib/v2/sakurazaka46/blog.js +54 -0
  1729. package/lib/v2/sakurazaka46/maintainer.js +4 -0
  1730. package/lib/v2/sakurazaka46/news.js +51 -0
  1731. package/lib/v2/sakurazaka46/radar.js +19 -0
  1732. package/lib/v2/sakurazaka46/router.js +4 -0
  1733. package/lib/v2/samsung/maintainer.js +3 -0
  1734. package/lib/v2/samsung/radar.js +13 -0
  1735. package/lib/v2/samsung/research/blog.js +49 -0
  1736. package/lib/v2/samsung/router.js +3 -0
  1737. package/lib/v2/saraba1st/digest.js +79 -0
  1738. package/lib/v2/saraba1st/maintainer.js +4 -0
  1739. package/lib/v2/saraba1st/radar.js +25 -0
  1740. package/lib/v2/saraba1st/router.js +4 -0
  1741. package/lib/v2/saraba1st/templates/digest.art +5 -0
  1742. package/lib/v2/saraba1st/thread.js +63 -0
  1743. package/lib/v2/science/cover.js +69 -0
  1744. package/lib/v2/science/current.js +42 -0
  1745. package/lib/v2/science/early.js +33 -0
  1746. package/lib/v2/science/maintainer.js +5 -0
  1747. package/lib/v2/science/radar.js +25 -0
  1748. package/lib/v2/science/router.js +5 -0
  1749. package/lib/v2/science/templates/article.art +2 -0
  1750. package/lib/v2/science/templates/cover.art +2 -0
  1751. package/lib/v2/science/utils.js +64 -0
  1752. package/lib/v2/sciencedirect/journal.js +1 -1
  1753. package/lib/v2/scitation/journal.js +41 -50
  1754. package/lib/v2/scitation/section.js +42 -56
  1755. package/lib/v2/scitation/templates/description.art +4 -7
  1756. package/lib/v2/scitation/utils.js +29 -0
  1757. package/lib/v2/scmp/index.js +114 -0
  1758. package/lib/v2/scmp/maintainer.js +3 -0
  1759. package/lib/v2/scmp/radar.js +13 -0
  1760. package/lib/v2/scmp/router.js +3 -0
  1761. package/lib/v2/sctv/maintainer.js +3 -0
  1762. package/lib/v2/sctv/programme.js +80 -0
  1763. package/lib/v2/sctv/radar.js +13 -0
  1764. package/lib/v2/sctv/router.js +3 -0
  1765. package/lib/v2/sctv/templates/description.art +3 -0
  1766. package/lib/v2/scvtc/maintainer.js +3 -0
  1767. package/lib/v2/scvtc/radar.js +13 -0
  1768. package/lib/v2/scvtc/router.js +3 -0
  1769. package/lib/v2/scvtc/xygg.js +40 -0
  1770. package/lib/v2/sdu/extractor/index.js +5 -5
  1771. package/lib/v2/sdu/extractor/sdrj.js +2 -2
  1772. package/lib/v2/sdu/extractor/view.js +2 -2
  1773. package/lib/v2/sdu/extractor/wh/jwc.js +2 -2
  1774. package/lib/v2/sdu/extractor/wh/news.js +2 -2
  1775. package/lib/v2/sdu/wh/jwc.js +1 -1
  1776. package/lib/v2/sdu/wh/news.js +1 -1
  1777. package/lib/v2/secrss/author.js +24 -0
  1778. package/lib/v2/secrss/category.js +26 -0
  1779. package/lib/v2/secrss/maintainer.js +4 -0
  1780. package/lib/v2/secrss/radar.js +19 -0
  1781. package/lib/v2/secrss/router.js +4 -0
  1782. package/lib/v2/seekingalpha/index.js +56 -0
  1783. package/lib/v2/seekingalpha/maintainer.js +3 -0
  1784. package/lib/v2/seekingalpha/radar.js +13 -0
  1785. package/lib/v2/seekingalpha/router.js +3 -0
  1786. package/lib/v2/segmentfault/blogs.js +38 -0
  1787. package/lib/v2/segmentfault/maintainer.js +1 -0
  1788. package/lib/v2/segmentfault/radar.js +8 -2
  1789. package/lib/v2/segmentfault/router.js +1 -0
  1790. package/lib/v2/sehuatang/index.js +131 -0
  1791. package/lib/v2/sehuatang/maintainer.js +7 -0
  1792. package/lib/v2/sehuatang/radar.js +19 -0
  1793. package/lib/v2/sehuatang/router.js +7 -0
  1794. package/lib/v2/sensortower/blog.js +69 -0
  1795. package/lib/v2/sensortower/maintainer.js +3 -0
  1796. package/lib/v2/sensortower/radar.js +13 -0
  1797. package/lib/v2/sensortower/router.js +3 -0
  1798. package/lib/v2/sensortower/templates/description.art +9 -0
  1799. package/lib/v2/shiep/index.js +91 -0
  1800. package/lib/v2/shiep/maintainer.js +3 -0
  1801. package/lib/v2/shiep/radar.js +181 -0
  1802. package/lib/v2/shiep/router.js +3 -0
  1803. package/lib/v2/shiep/templates/description.art +1 -0
  1804. package/lib/v2/shmeea/self-study.js +4 -4
  1805. package/lib/v2/shmtu/jwc.js +57 -0
  1806. package/lib/v2/shmtu/maintainer.js +5 -0
  1807. package/lib/v2/shmtu/portal.js +81 -0
  1808. package/lib/v2/shmtu/radar.js +29 -0
  1809. package/lib/v2/shmtu/router.js +5 -0
  1810. package/lib/v2/shmtu/templates/portal.art +30 -0
  1811. package/lib/v2/shmtu/www.js +58 -0
  1812. package/lib/v2/shoppingdesign/maintainer.js +3 -0
  1813. package/lib/v2/shoppingdesign/posts.js +43 -0
  1814. package/lib/v2/shoppingdesign/radar.js +13 -0
  1815. package/lib/v2/shoppingdesign/router.js +3 -0
  1816. package/lib/v2/sicau/dky.js +12 -13
  1817. package/lib/v2/sicau/yan.js +13 -14
  1818. package/lib/v2/sigsac/ccs.js +57 -0
  1819. package/lib/v2/sigsac/maintainer.js +3 -0
  1820. package/lib/v2/sigsac/radar.js +13 -0
  1821. package/lib/v2/sigsac/router.js +3 -0
  1822. package/lib/v2/simpleinfo/index.js +50 -0
  1823. package/lib/v2/simpleinfo/maintainer.js +3 -0
  1824. package/lib/v2/simpleinfo/radar.js +19 -0
  1825. package/lib/v2/simpleinfo/router.js +3 -0
  1826. package/lib/v2/simpleinfo/templates/description.art +6 -0
  1827. package/lib/v2/sinchew/index.js +68 -0
  1828. package/lib/v2/sinchew/maintainer.js +5 -0
  1829. package/lib/v2/sinchew/radar.js +25 -0
  1830. package/lib/v2/sinchew/router.js +4 -0
  1831. package/lib/v2/sinchew/templates/images.art +4 -0
  1832. package/lib/v2/skysports/maintainer.js +3 -0
  1833. package/lib/v2/skysports/news.js +55 -0
  1834. package/lib/v2/skysports/radar.js +13 -0
  1835. package/lib/v2/skysports/router.js +3 -0
  1836. package/lib/v2/slowmist/radar.js +13 -0
  1837. package/lib/v2/slowmist/router.js +3 -0
  1838. package/lib/v2/slowmist/slowmist.js +39 -0
  1839. package/lib/v2/smzdm/article.js +43 -0
  1840. package/lib/v2/smzdm/baoliao.js +43 -0
  1841. package/lib/v2/smzdm/haowen.js +48 -0
  1842. package/lib/v2/smzdm/haowen_fenlei.js +56 -0
  1843. package/lib/v2/smzdm/keyword.js +42 -0
  1844. package/lib/v2/smzdm/maintainer.js +8 -0
  1845. package/lib/v2/smzdm/radar.js +48 -0
  1846. package/lib/v2/smzdm/ranking.js +56 -0
  1847. package/lib/v2/smzdm/router.js +8 -0
  1848. package/lib/v2/snowpeak/maintainer.js +3 -0
  1849. package/lib/v2/snowpeak/radar.js +13 -0
  1850. package/lib/v2/snowpeak/router.js +3 -0
  1851. package/lib/v2/snowpeak/templates/new-arrivals.art +11 -0
  1852. package/lib/v2/snowpeak/us-new-arrivals.js +45 -0
  1853. package/lib/v2/solidot/main.js +5 -0
  1854. package/lib/v2/sony/downloads.js +47 -0
  1855. package/lib/v2/sony/maintainer.js +3 -0
  1856. package/lib/v2/sony/radar.js +13 -0
  1857. package/lib/v2/sony/router.js +3 -0
  1858. package/lib/v2/sony/templates/software-description.art +4 -0
  1859. package/lib/v2/sputniknews/index.js +2 -1
  1860. package/lib/v2/sse/convert.js +39 -0
  1861. package/lib/v2/sse/disclosure.js +46 -0
  1862. package/lib/v2/sse/inquire.js +45 -0
  1863. package/lib/v2/sse/lawandrules.js +43 -0
  1864. package/lib/v2/sse/maintainer.js +7 -0
  1865. package/lib/v2/sse/radar.js +41 -0
  1866. package/lib/v2/sse/renewal.js +57 -0
  1867. package/lib/v2/sse/router.js +7 -0
  1868. package/lib/v2/sse/templates/inquire.art +7 -0
  1869. package/lib/v2/sse/templates/renewal.art +13 -0
  1870. package/lib/v2/sspai/bookmarks.js +41 -0
  1871. package/lib/v2/sspai/maintainer.js +1 -0
  1872. package/lib/v2/sspai/radar.js +6 -0
  1873. package/lib/v2/sspai/router.js +1 -0
  1874. package/lib/v2/stcn/index.js +25 -32
  1875. package/lib/v2/stcn/maintainer.js +0 -3
  1876. package/lib/v2/stcn/radar.js +4 -22
  1877. package/lib/v2/stcn/router.js +1 -1
  1878. package/lib/v2/stheadline/maintainer.js +3 -0
  1879. package/lib/v2/stheadline/radar.js +13 -0
  1880. package/lib/v2/stheadline/router.js +3 -0
  1881. package/lib/v2/stheadline/std/realtime.js +46 -0
  1882. package/lib/v2/studygolang/jobs.js +37 -0
  1883. package/lib/v2/studygolang/maintainer.js +3 -0
  1884. package/lib/v2/studygolang/radar.js +13 -0
  1885. package/lib/v2/studygolang/router.js +3 -0
  1886. package/lib/v2/swjtu/jtys/yjs.js +55 -0
  1887. package/lib/v2/swjtu/jwc.js +67 -0
  1888. package/lib/v2/swjtu/jyzpxx.js +28 -0
  1889. package/lib/v2/swjtu/maintainer.js +6 -0
  1890. package/lib/v2/swjtu/radar.js +37 -0
  1891. package/lib/v2/swjtu/router.js +6 -0
  1892. package/lib/v2/swjtu/templates/job_desc.art +19 -0
  1893. package/lib/v2/swjtu/templates/job_detail.art +21 -0
  1894. package/lib/v2/swjtu/utils.js +33 -0
  1895. package/lib/v2/swjtu/xg.js +79 -0
  1896. package/lib/v2/swpu/cjxy.js +53 -0
  1897. package/lib/v2/swpu/is.js +53 -0
  1898. package/lib/v2/swpu/maintainer.js +2 -0
  1899. package/lib/v2/swpu/radar.js +12 -0
  1900. package/lib/v2/swpu/router.js +2 -0
  1901. package/lib/v2/taiwannews/hot.js +52 -0
  1902. package/lib/v2/taiwannews/maintainer.js +3 -0
  1903. package/lib/v2/taiwannews/radar.js +13 -0
  1904. package/lib/v2/taiwannews/router.js +3 -0
  1905. package/lib/v2/taoguba/blog.js +84 -0
  1906. package/lib/v2/taoguba/index.js +82 -0
  1907. package/lib/v2/taoguba/maintainer.js +6 -0
  1908. package/lib/v2/taoguba/radar.js +19 -0
  1909. package/lib/v2/taoguba/router.js +6 -0
  1910. package/lib/v2/taptap/changelog.js +11 -10
  1911. package/lib/v2/taptap/maintainer.js +3 -1
  1912. package/lib/v2/taptap/radar.js +17 -0
  1913. package/lib/v2/taptap/review.js +83 -21
  1914. package/lib/v2/taptap/router.js +4 -1
  1915. package/lib/v2/taptap/templates/imagePost.art +3 -0
  1916. package/lib/v2/taptap/templates/videoPost.art +2 -1
  1917. package/lib/v2/taptap/topic.js +36 -30
  1918. package/lib/v2/taptap/utils.js +19 -13
  1919. package/lib/v2/techflowpost/express.js +33 -0
  1920. package/lib/v2/techflowpost/index.js +30 -0
  1921. package/lib/v2/techflowpost/maintainer.js +4 -0
  1922. package/lib/v2/techflowpost/radar.js +19 -0
  1923. package/lib/v2/techflowpost/router.js +5 -0
  1924. package/lib/v2/telegram/channel.js +78 -42
  1925. package/lib/v2/tencent/maintainer.js +5 -1
  1926. package/lib/v2/tencent/news/author.js +44 -0
  1927. package/lib/v2/tencent/news/coronavirus/data.js +71 -0
  1928. package/lib/v2/tencent/news/coronavirus/total.js +34 -0
  1929. package/lib/v2/tencent/news/coronavirus/utils.js +17 -0
  1930. package/lib/v2/tencent/pvp/newsindex.js +64 -0
  1931. package/lib/v2/tencent/radar.js +31 -9
  1932. package/lib/v2/tencent/router.js +5 -1
  1933. package/lib/v2/tencent/templates/coronavirus/chinaTotal.art +6 -0
  1934. package/lib/v2/tencent/templates/coronavirus/data.art +4 -0
  1935. package/lib/v2/tesla/maintainer.js +3 -0
  1936. package/lib/v2/tesla/price/get-price.js +25 -0
  1937. package/lib/v2/tesla/price/index.js +41 -0
  1938. package/lib/v2/tesla/radar.js +13 -0
  1939. package/lib/v2/tesla/router.js +3 -0
  1940. package/lib/v2/test/index.js +71 -0
  1941. package/lib/v2/theatlantic/maintainer.js +3 -0
  1942. package/lib/v2/theatlantic/news.js +32 -0
  1943. package/lib/v2/theatlantic/radar.js +13 -0
  1944. package/lib/v2/theatlantic/router.js +3 -0
  1945. package/lib/v2/theatlantic/templates/article-description.art +19 -0
  1946. package/lib/v2/theatlantic/utils.js +54 -0
  1947. package/lib/v2/thecatcity/index.js +48 -0
  1948. package/lib/v2/thecatcity/maintainer.js +3 -0
  1949. package/lib/v2/thecatcity/radar.js +13 -0
  1950. package/lib/v2/thecatcity/router.js +3 -0
  1951. package/lib/v2/thecatcity/termsMap.js +30 -0
  1952. package/lib/v2/theinitium/full.js +169 -0
  1953. package/lib/v2/theinitium/maintainer.js +6 -0
  1954. package/lib/v2/theinitium/radar.js +25 -0
  1955. package/lib/v2/theinitium/router.js +3 -0
  1956. package/lib/v2/thenewslens/index.js +79 -0
  1957. package/lib/v2/thenewslens/maintainer.js +10 -0
  1958. package/lib/v2/thenewslens/radar.js +55 -0
  1959. package/lib/v2/thenewslens/router.js +3 -0
  1960. package/lib/v2/thenewslens/templates/description.art +6 -0
  1961. package/lib/v2/thepaper/channel.js +16 -5
  1962. package/lib/v2/thepaper/featured.js +9 -5
  1963. package/lib/v2/thepaper/list.js +17 -5
  1964. package/lib/v2/thepaper/maintainer.js +4 -3
  1965. package/lib/v2/thepaper/radar.js +8 -2
  1966. package/lib/v2/thepaper/router.js +2 -1
  1967. package/lib/v2/thepaper/sidebar.js +24 -0
  1968. package/lib/v2/thepaper/templates/image_detail.art +6 -0
  1969. package/lib/v2/thepaper/templates/video_detail.art +13 -0
  1970. package/lib/v2/thepaper/utils.js +69 -46
  1971. package/lib/v2/theverge/index.js +98 -0
  1972. package/lib/v2/theverge/maintainer.js +3 -0
  1973. package/lib/v2/theverge/radar.js +13 -0
  1974. package/lib/v2/theverge/router.js +3 -0
  1975. package/lib/v2/thwiki/index.js +32 -0
  1976. package/lib/v2/thwiki/maintainer.js +3 -0
  1977. package/lib/v2/thwiki/radar.js +13 -0
  1978. package/lib/v2/thwiki/router.js +3 -0
  1979. package/lib/v2/tiktok/user.js +1 -1
  1980. package/lib/v2/tingshuitz/changsha.js +43 -0
  1981. package/lib/v2/tingshuitz/maintainer.js +1 -0
  1982. package/lib/v2/tingshuitz/radar.js +10 -0
  1983. package/lib/v2/tingshuitz/router.js +1 -0
  1984. package/lib/v2/tingshuitz/xiaoshan.js +3 -3
  1985. package/lib/v2/tju/cic/index.js +113 -0
  1986. package/lib/v2/tju/maintainer.js +6 -0
  1987. package/lib/v2/tju/news/index.js +135 -0
  1988. package/lib/v2/tju/oaa/index.js +112 -0
  1989. package/lib/v2/tju/radar.js +97 -0
  1990. package/lib/v2/tju/router.js +6 -0
  1991. package/lib/v2/tju/yzb/index.js +121 -0
  1992. package/lib/v2/tradingview/blog.js +60 -0
  1993. package/lib/v2/tradingview/maintainer.js +3 -0
  1994. package/lib/v2/tradingview/radar.js +13 -0
  1995. package/lib/v2/tradingview/router.js +3 -0
  1996. package/lib/v2/tradingview/templates/description.art +4 -0
  1997. package/lib/v2/trending/allTrending.js +46 -19
  1998. package/lib/v2/trending/templates/content.art +1 -0
  1999. package/lib/v2/tribalfootball/latest.js +68 -0
  2000. package/lib/v2/tribalfootball/maintainer.js +3 -0
  2001. package/lib/v2/tribalfootball/radar.js +13 -0
  2002. package/lib/v2/tribalfootball/router.js +3 -0
  2003. package/lib/v2/tribalfootball/templates/plus_header.art +6 -0
  2004. package/lib/v2/trow/portal.js +13 -3
  2005. package/lib/v2/tvb/maintainer.js +3 -0
  2006. package/lib/v2/tvb/news.js +80 -0
  2007. package/lib/v2/tvb/radar.js +13 -0
  2008. package/lib/v2/tvb/router.js +3 -0
  2009. package/lib/v2/tvb/templates/description.art +6 -0
  2010. package/lib/v2/twitter/api_fallback_common.js +17 -0
  2011. package/lib/v2/twitter/collection.js +55 -0
  2012. package/lib/v2/twitter/developer-api/search.js +22 -0
  2013. package/lib/v2/twitter/maintainer.js +10 -0
  2014. package/lib/v2/twitter/radar.js +73 -0
  2015. package/lib/v2/twitter/router.js +10 -0
  2016. package/lib/v2/twitter/utils.js +450 -0
  2017. package/lib/v2/twitter/web-api/twitter-api.js +220 -0
  2018. package/lib/v2/twitter/web-api/twitter-got.js +91 -0
  2019. package/lib/v2/twreporter/category.js +17 -8
  2020. package/lib/v2/twreporter/fetch_article.js +1 -1
  2021. package/lib/v2/tynu/maintainer.js +3 -0
  2022. package/lib/v2/tynu/radar.js +13 -0
  2023. package/lib/v2/tynu/router.js +3 -0
  2024. package/lib/v2/tynu/tynu.js +39 -0
  2025. package/lib/v2/typora/changelog-dev.js +31 -0
  2026. package/lib/v2/typora/changelog.js +40 -0
  2027. package/lib/v2/typora/maintainer.js +4 -0
  2028. package/lib/v2/typora/radar.js +21 -0
  2029. package/lib/v2/typora/router.js +4 -0
  2030. package/lib/v2/u9a9/index.js +66 -0
  2031. package/lib/v2/u9a9/maintainer.js +4 -0
  2032. package/lib/v2/u9a9/radar.js +19 -0
  2033. package/lib/v2/u9a9/router.js +4 -0
  2034. package/lib/v2/uber/blog.js +58 -0
  2035. package/lib/v2/uber/maintainer.js +3 -0
  2036. package/lib/v2/uber/radar.js +13 -0
  2037. package/lib/v2/uber/router.js +3 -0
  2038. package/lib/v2/uchicago/current.js +80 -0
  2039. package/lib/v2/uchicago/maintainer.js +3 -0
  2040. package/lib/v2/uchicago/radar.js +13 -0
  2041. package/lib/v2/uchicago/router.js +3 -0
  2042. package/lib/v2/udn/breaking-news.js +85 -0
  2043. package/lib/v2/udn/global/index.js +67 -0
  2044. package/lib/v2/udn/global/tag.js +51 -0
  2045. package/lib/v2/udn/maintainer.js +5 -0
  2046. package/lib/v2/udn/radar.js +27 -0
  2047. package/lib/v2/udn/router.js +5 -0
  2048. package/lib/v2/udn/templates/figure.art +4 -0
  2049. package/lib/v2/uestc/auto.js +45 -0
  2050. package/lib/v2/uestc/cqe.js +60 -0
  2051. package/lib/v2/uestc/gr.js +48 -0
  2052. package/lib/v2/uestc/jwc.js +52 -0
  2053. package/lib/v2/uestc/maintainer.js +12 -0
  2054. package/lib/v2/uestc/news.js +51 -0
  2055. package/lib/v2/uestc/radar.js +69 -0
  2056. package/lib/v2/uestc/router.js +12 -0
  2057. package/lib/v2/uestc/scse.js +90 -0
  2058. package/lib/v2/uestc/sice.js +46 -0
  2059. package/lib/v2/uestc/sise.js +80 -0
  2060. package/lib/v2/unusualwhales/maintainer.js +3 -0
  2061. package/lib/v2/unusualwhales/news.js +24 -0
  2062. package/lib/v2/unusualwhales/radar.js +13 -0
  2063. package/lib/v2/unusualwhales/router.js +3 -0
  2064. package/lib/v2/uptimerobot/maintainer.js +3 -0
  2065. package/lib/v2/uptimerobot/radar.js +13 -0
  2066. package/lib/v2/uptimerobot/router.js +3 -0
  2067. package/lib/v2/uptimerobot/rss.js +126 -0
  2068. package/lib/v2/uptimerobot/templates/rss.art +20 -0
  2069. package/lib/v2/uraaka-joshi/uraaka-joshi-user.js +18 -8
  2070. package/lib/v2/uraaka-joshi/uraaka-joshi.js +20 -9
  2071. package/lib/v2/urbandictionary/maintainer.js +3 -0
  2072. package/lib/v2/urbandictionary/radar.js +13 -0
  2073. package/lib/v2/urbandictionary/random.js +24 -0
  2074. package/lib/v2/urbandictionary/router.js +3 -0
  2075. package/lib/v2/urbandictionary/templates/definition.art +11 -0
  2076. package/lib/v2/usenix/maintainer.js +3 -0
  2077. package/lib/v2/usenix/radar.js +13 -0
  2078. package/lib/v2/usenix/router.js +3 -0
  2079. package/lib/v2/usenix/usenix.js +63 -0
  2080. package/lib/v2/usepanda/index.js +26 -0
  2081. package/lib/v2/usepanda/maintainer.js +3 -0
  2082. package/lib/v2/usepanda/radar.js +11 -0
  2083. package/lib/v2/usepanda/router.js +3 -0
  2084. package/lib/v2/ustc/job.js +2 -2
  2085. package/lib/v2/uw/gix/news.js +67 -0
  2086. package/lib/v2/uw/maintainer.js +3 -0
  2087. package/lib/v2/uw/radar.js +13 -0
  2088. package/lib/v2/uw/router.js +3 -0
  2089. package/lib/v2/v1tx/index.js +36 -0
  2090. package/lib/v2/v1tx/maintainer.js +4 -0
  2091. package/lib/v2/v1tx/radar.js +13 -0
  2092. package/lib/v2/v1tx/router.js +3 -0
  2093. package/lib/v2/vcb-s/category.js +51 -0
  2094. package/lib/v2/vcb-s/index.js +39 -0
  2095. package/lib/v2/vcb-s/maintainer.js +4 -0
  2096. package/lib/v2/vcb-s/radar.js +19 -0
  2097. package/lib/v2/vcb-s/router.js +4 -0
  2098. package/lib/v2/vcb-s/templates/post.art +9 -0
  2099. package/lib/v2/verse/articles.js +42 -0
  2100. package/lib/v2/verse/maintainer.js +3 -0
  2101. package/lib/v2/verse/radar.js +13 -0
  2102. package/lib/v2/verse/router.js +3 -0
  2103. package/lib/v2/vlive/maintainer.js +3 -0
  2104. package/lib/v2/vmware/flings.js +59 -0
  2105. package/lib/v2/vmware/maintainer.js +3 -0
  2106. package/lib/v2/vmware/radar.js +13 -0
  2107. package/lib/v2/vmware/router.js +3 -0
  2108. package/lib/v2/vocus/maintainer.js +4 -0
  2109. package/lib/v2/vocus/publication.js +42 -0
  2110. package/lib/v2/vocus/radar.js +19 -0
  2111. package/lib/v2/vocus/router.js +4 -0
  2112. package/lib/v2/vocus/user.js +43 -0
  2113. package/lib/v2/vocus/utils.js +51 -0
  2114. package/lib/v2/vom/featured.js +50 -0
  2115. package/lib/v2/vom/maintainer.js +3 -0
  2116. package/lib/v2/vom/radar.js +13 -0
  2117. package/lib/v2/vom/router.js +3 -0
  2118. package/lib/v2/wallstreetcn/hot.js +56 -0
  2119. package/lib/v2/wallstreetcn/live.js +14 -17
  2120. package/lib/v2/wallstreetcn/maintainer.js +2 -1
  2121. package/lib/v2/wallstreetcn/news.js +28 -13
  2122. package/lib/v2/wallstreetcn/radar.js +6 -0
  2123. package/lib/v2/wallstreetcn/router.js +1 -0
  2124. package/lib/v2/wallstreetcn/templates/description.art +11 -0
  2125. package/lib/v2/warthunder/maintainer.js +3 -0
  2126. package/lib/v2/warthunder/news.js +49 -0
  2127. package/lib/v2/warthunder/radar.js +13 -0
  2128. package/lib/v2/warthunder/router.js +3 -0
  2129. package/lib/v2/warthunder/templates/description.art +1 -0
  2130. package/lib/v2/wdc/download.js +37 -0
  2131. package/lib/v2/wdc/maintainer.js +3 -0
  2132. package/lib/v2/wdc/radar.js +13 -0
  2133. package/lib/v2/wdc/router.js +3 -0
  2134. package/lib/v2/web3caff/index.js +63 -0
  2135. package/lib/v2/web3caff/maintainer.js +3 -0
  2136. package/lib/v2/web3caff/radar.js +13 -0
  2137. package/lib/v2/web3caff/router.js +3 -0
  2138. package/lib/v2/wechat/ce.js +2 -2
  2139. package/lib/v2/wechat/data258.js +1 -1
  2140. package/lib/v2/wechat/ershcimi.js +1 -1
  2141. package/lib/v2/wechat/feeddd.js +2 -1
  2142. package/lib/v2/wechat/feeds.js +1 -1
  2143. package/lib/v2/wechat/maintainer.js +1 -1
  2144. package/lib/v2/wechat/mp.js +2 -2
  2145. package/lib/v2/wechat/msgalbum.js +2 -2
  2146. package/lib/v2/wechat/radar.js +9 -9
  2147. package/lib/v2/wechat/router.js +1 -1
  2148. package/lib/v2/wechat/tgchannel.js +5 -5
  2149. package/lib/v2/wechat/wechat2rss.js +28 -0
  2150. package/lib/v2/weekendhk/maintainer.js +4 -0
  2151. package/lib/v2/weekendhk/posts.js +29 -0
  2152. package/lib/v2/weekendhk/radar.js +13 -0
  2153. package/lib/v2/weekendhk/router.js +3 -0
  2154. package/lib/v2/weibo/keyword.js +55 -0
  2155. package/lib/v2/weibo/maintainer.js +8 -0
  2156. package/lib/v2/weibo/oasis/user.js +20 -0
  2157. package/lib/v2/weibo/radar.js +48 -0
  2158. package/lib/v2/weibo/router.js +8 -0
  2159. package/lib/v2/weibo/search/hot.js +35 -0
  2160. package/lib/v2/weibo/super_index.js +62 -0
  2161. package/lib/v2/weibo/timeline.js +162 -0
  2162. package/lib/v2/weibo/user.js +155 -0
  2163. package/lib/v2/weibo/utils.js +458 -0
  2164. package/lib/v2/wfu/news.js +1 -1
  2165. package/lib/v2/who/news-room.js +17 -18
  2166. package/lib/v2/who/news.js +11 -12
  2167. package/lib/v2/wise/maintainer.js +3 -0
  2168. package/lib/v2/wise/pair.js +65 -0
  2169. package/lib/v2/wise/radar.js +11 -0
  2170. package/lib/v2/wise/router.js +3 -0
  2171. package/lib/v2/wise/templates/description.art +17 -0
  2172. package/lib/v2/wizfile/index.js +41 -0
  2173. package/lib/v2/wizfile/maintainer.js +3 -0
  2174. package/lib/v2/wizfile/radar.js +13 -0
  2175. package/lib/v2/wizfile/router.js +3 -0
  2176. package/lib/v2/wnacg/index.js +110 -0
  2177. package/lib/v2/wnacg/maintainer.js +5 -0
  2178. package/lib/v2/wnacg/radar.js +25 -0
  2179. package/lib/v2/wnacg/router.js +5 -0
  2180. package/lib/v2/wnacg/templates/manga.art +9 -0
  2181. package/lib/v2/worldjournal/index.js +60 -0
  2182. package/lib/v2/worldjournal/maintainer.js +3 -0
  2183. package/lib/v2/worldjournal/radar.js +13 -0
  2184. package/lib/v2/worldjournal/router.js +3 -0
  2185. package/lib/v2/woshipm/bookmarks.js +34 -0
  2186. package/lib/v2/woshipm/latest.js +27 -0
  2187. package/lib/v2/woshipm/maintainer.js +7 -0
  2188. package/lib/v2/woshipm/popular.js +33 -0
  2189. package/lib/v2/woshipm/radar.js +39 -0
  2190. package/lib/v2/woshipm/router.js +7 -0
  2191. package/lib/v2/woshipm/user_article.js +37 -0
  2192. package/lib/v2/woshipm/utils.js +21 -0
  2193. package/lib/v2/woshipm/wen.js +36 -0
  2194. package/lib/v2/wp-china/news.js +12 -13
  2195. package/lib/v2/wsj/news.js +51 -0
  2196. package/lib/v2/wsj/radar.js +2 -2
  2197. package/lib/v2/wsj/router.js +1 -1
  2198. package/lib/v2/wsj/templates/article-description.art +6 -0
  2199. package/lib/v2/wsj/utils.js +121 -0
  2200. package/lib/v2/wxkol/maintainer.js +3 -0
  2201. package/lib/v2/wxkol/radar.js +13 -0
  2202. package/lib/v2/wxkol/router.js +3 -0
  2203. package/lib/v2/wxkol/show.js +80 -0
  2204. package/lib/v2/wyzxwk/article.js +20 -21
  2205. package/lib/v2/x6d/index.js +59 -0
  2206. package/lib/v2/x6d/maintainer.js +3 -0
  2207. package/lib/v2/x6d/radar.js +13 -0
  2208. package/lib/v2/x6d/router.js +3 -0
  2209. package/lib/v2/xaufe/jiaowu.js +72 -0
  2210. package/lib/v2/xaufe/maintainer.js +3 -0
  2211. package/lib/v2/xaufe/radar.js +11 -0
  2212. package/lib/v2/xaufe/router.js +3 -0
  2213. package/lib/v2/xiaohongshu/board.js +4 -2
  2214. package/lib/v2/xiaohongshu/maintainer.js +2 -1
  2215. package/lib/v2/xiaohongshu/radar.js +2 -2
  2216. package/lib/v2/xiaohongshu/user.js +20 -36
  2217. package/lib/v2/xiaohongshu/util.js +45 -2
  2218. package/lib/v2/xiaomiyoupin/crowdfunding.js +43 -0
  2219. package/lib/v2/xiaomiyoupin/latest.js +15 -0
  2220. package/lib/v2/xiaomiyoupin/maintainer.js +4 -0
  2221. package/lib/v2/xiaomiyoupin/radar.js +19 -0
  2222. package/lib/v2/xiaomiyoupin/router.js +4 -0
  2223. package/lib/v2/xiaomiyoupin/templates/goods.art +27 -0
  2224. package/lib/v2/xiaomiyoupin/utils.js +21 -0
  2225. package/lib/v2/xjtu/2yuan/news.js +61 -0
  2226. package/lib/v2/xjtu/dyyy/index.js +44 -0
  2227. package/lib/v2/xjtu/maintainer.js +2 -0
  2228. package/lib/v2/xjtu/radar.js +16 -0
  2229. package/lib/v2/xjtu/router.js +2 -0
  2230. package/lib/v2/xmnn/epaper.js +85 -0
  2231. package/lib/v2/xmnn/maintainer.js +3 -0
  2232. package/lib/v2/xmnn/radar.js +13 -0
  2233. package/lib/v2/xmnn/router.js +3 -0
  2234. package/lib/v2/xsijishe/forum.js +61 -0
  2235. package/lib/v2/xsijishe/maintainer.js +3 -0
  2236. package/lib/v2/xsijishe/radar.js +19 -0
  2237. package/lib/v2/xsijishe/router.js +3 -0
  2238. package/lib/v2/xueqiu/column.js +42 -0
  2239. package/lib/v2/xueqiu/maintainer.js +2 -0
  2240. package/lib/v2/xueqiu/radar.js +12 -0
  2241. package/lib/v2/xueqiu/router.js +2 -0
  2242. package/lib/v2/xueqiu/snb.js +8 -6
  2243. package/lib/v2/xueqiu/today.js +65 -0
  2244. package/lib/v2/xunhupay/index.js +24 -0
  2245. package/lib/v2/xunhupay/maintainer.js +3 -0
  2246. package/lib/v2/xunhupay/radar.js +13 -0
  2247. package/lib/v2/xunhupay/router.js +3 -0
  2248. package/lib/v2/xwlb/index.js +40 -0
  2249. package/lib/v2/xwlb/maintainer.js +4 -0
  2250. package/lib/v2/xwlb/radar.js +13 -0
  2251. package/lib/v2/xwlb/router.js +4 -0
  2252. package/lib/v2/xys/maintainer.js +3 -0
  2253. package/lib/v2/xys/new.js +74 -0
  2254. package/lib/v2/xys/radar.js +13 -0
  2255. package/lib/v2/xys/router.js +3 -0
  2256. package/lib/v2/xys/templates/desc.art +3 -0
  2257. package/lib/v2/xyzrank/index.js +111 -0
  2258. package/lib/v2/xyzrank/maintainer.js +6 -0
  2259. package/lib/v2/xyzrank/radar.js +31 -0
  2260. package/lib/v2/xyzrank/router.js +3 -0
  2261. package/lib/v2/xyzrank/templates/description.art +12 -0
  2262. package/lib/v2/yahoo/maintainer.js +3 -0
  2263. package/lib/v2/yahoo/news/index.js +46 -0
  2264. package/lib/v2/yahoo/radar.js +13 -0
  2265. package/lib/v2/yahoo/router.js +3 -0
  2266. package/lib/v2/ycwb/index.js +82 -0
  2267. package/lib/v2/ycwb/maintainer.js +3 -0
  2268. package/lib/v2/ycwb/radar.js +12 -0
  2269. package/lib/v2/ycwb/router.js +3 -0
  2270. package/lib/v2/ycwb/templates/description.art +7 -0
  2271. package/lib/v2/yicai/author.js +26 -0
  2272. package/lib/v2/yicai/brief.js +28 -0
  2273. package/lib/v2/yicai/feed.js +26 -0
  2274. package/lib/v2/yicai/headline.js +13 -0
  2275. package/lib/v2/yicai/latest.js +13 -0
  2276. package/lib/v2/yicai/maintainer.js +10 -0
  2277. package/lib/v2/yicai/news.js +39 -0
  2278. package/lib/v2/yicai/radar.js +55 -0
  2279. package/lib/v2/yicai/router.js +10 -0
  2280. package/lib/v2/yicai/templates/description.art +11 -0
  2281. package/lib/v2/yicai/utils.js +51 -0
  2282. package/lib/v2/yicai/video.js +39 -0
  2283. package/lib/v2/yicai/vip.js +26 -0
  2284. package/lib/v2/ymgal/article.js +61 -0
  2285. package/lib/v2/ymgal/game.js +41 -0
  2286. package/lib/v2/ymgal/maintainer.js +4 -0
  2287. package/lib/v2/ymgal/radar.js +31 -0
  2288. package/lib/v2/ymgal/router.js +4 -0
  2289. package/lib/v2/ymgal/templates/description.art +7 -0
  2290. package/lib/v2/yoasobi-music/info.js +68 -0
  2291. package/lib/v2/yoasobi-music/jsonpHelper.js +19 -0
  2292. package/lib/v2/yoasobi-music/live.js +52 -0
  2293. package/lib/v2/yoasobi-music/maintainer.js +5 -0
  2294. package/lib/v2/yoasobi-music/media.js +59 -0
  2295. package/lib/v2/yoasobi-music/radar.js +31 -0
  2296. package/lib/v2/yoasobi-music/router.js +5 -0
  2297. package/lib/v2/yoasobi-music/templates/info.art +7 -0
  2298. package/lib/v2/yoasobi-music/templates/live.art +12 -0
  2299. package/lib/v2/yoasobi-music/templates/media.art +2 -0
  2300. package/lib/v2/youtube/channel.js +4 -4
  2301. package/lib/v2/youtube/charts.js +97 -0
  2302. package/lib/v2/youtube/community.js +56 -0
  2303. package/lib/v2/youtube/custom.js +45 -0
  2304. package/lib/v2/youtube/maintainer.js +3 -0
  2305. package/lib/v2/youtube/radar.js +20 -0
  2306. package/lib/v2/youtube/router.js +3 -0
  2307. package/lib/v2/youtube/templates/community.art +17 -0
  2308. package/lib/v2/youtube/user.js +17 -4
  2309. package/lib/v2/youtube/utils.js +3 -1
  2310. package/lib/v2/youzhiyouxing/materials.js +5 -5
  2311. package/lib/v2/yuque/book.js +93 -0
  2312. package/lib/v2/yuque/maintainer.js +3 -0
  2313. package/lib/v2/yuque/radar.js +13 -0
  2314. package/lib/v2/yuque/router.js +3 -0
  2315. package/lib/v2/yuque/utils.js +50 -0
  2316. package/lib/v2/yxdown/maintainer.js +4 -0
  2317. package/lib/v2/yxdown/news.js +57 -0
  2318. package/lib/v2/yxdown/radar.js +19 -0
  2319. package/lib/v2/yxdown/recommend.js +54 -0
  2320. package/lib/v2/yxdown/router.js +4 -0
  2321. package/lib/v2/yxdown/utils.js +17 -0
  2322. package/lib/v2/yxrb/home.js +61 -0
  2323. package/lib/v2/yxrb/maintainer.js +3 -0
  2324. package/lib/v2/yxrb/radar.js +13 -0
  2325. package/lib/v2/yxrb/router.js +3 -0
  2326. package/lib/v2/zagg/maintainer.js +3 -0
  2327. package/lib/v2/zagg/new-arrivals.js +52 -0
  2328. package/lib/v2/zagg/radar.js +16 -0
  2329. package/lib/v2/zagg/router.js +3 -0
  2330. package/lib/v2/zagg/templates/new-arrivals.art +3 -0
  2331. package/lib/v2/zaobao/maintainer.js +1 -1
  2332. package/lib/v2/zaobao/util.js +6 -6
  2333. package/lib/v2/zaozao/article.js +36 -0
  2334. package/lib/v2/zaozao/maintainer.js +3 -0
  2335. package/lib/v2/zaozao/radar.js +13 -0
  2336. package/lib/v2/zaozao/router.js +3 -0
  2337. package/lib/v2/zcmu/jwc/index.js +41 -0
  2338. package/lib/v2/zcmu/maintainer.js +4 -0
  2339. package/lib/v2/zcmu/radar.js +87 -0
  2340. package/lib/v2/zcmu/router.js +4 -0
  2341. package/lib/v2/zcmu/yxy/index.js +42 -0
  2342. package/lib/v2/zcool/discover.js +152 -0
  2343. package/lib/v2/zcool/maintainer.js +7 -0
  2344. package/lib/v2/zcool/radar.js +55 -0
  2345. package/lib/v2/zcool/router.js +5 -0
  2346. package/lib/v2/zcool/templates/description.art +8 -0
  2347. package/lib/v2/zcool/templates/work.art +11 -0
  2348. package/lib/v2/zcool/top.js +51 -0
  2349. package/lib/v2/zcool/user.js +52 -0
  2350. package/lib/v2/zcool/utils.js +14 -0
  2351. package/lib/v2/zhangyoubao/index.js +42 -0
  2352. package/lib/v2/zhangyoubao/maintainer.js +3 -0
  2353. package/lib/v2/zhangyoubao/radar.js +13 -0
  2354. package/lib/v2/zhangyoubao/router.js +3 -0
  2355. package/lib/v2/zhangyoubao/templates/article.art +1 -0
  2356. package/lib/v2/zhibo8/forum.js +15 -16
  2357. package/lib/v2/zhibo8/luxiang.js +38 -0
  2358. package/lib/v2/zhibo8/maintainer.js +1 -0
  2359. package/lib/v2/zhibo8/more.js +12 -17
  2360. package/lib/v2/zhibo8/post.js +28 -18
  2361. package/lib/v2/zhibo8/radar.js +8 -0
  2362. package/lib/v2/zhibo8/router.js +1 -0
  2363. package/lib/v2/zhihu/activities.js +5 -9
  2364. package/lib/v2/zhihu/daily.js +25 -0
  2365. package/lib/v2/zhihu/execlib/x-zse-96_v3.js +122 -0
  2366. package/lib/v2/zhihu/pin/utils.js +49 -41
  2367. package/lib/v2/zhihu/posts.js +25 -17
  2368. package/lib/v2/zhihu/question.js +8 -6
  2369. package/lib/v2/zhihu/router.js +1 -1
  2370. package/lib/v2/zhihu/utils.js +10 -1
  2371. package/lib/v2/zhihu/zhuanlan.js +2 -2
  2372. package/lib/v2/zhitongcaijing/index.js +118 -0
  2373. package/lib/v2/zhitongcaijing/maintainer.js +3 -0
  2374. package/lib/v2/zhitongcaijing/radar.js +17 -0
  2375. package/lib/v2/zhitongcaijing/router.js +3 -0
  2376. package/lib/v2/zhitongcaijing/templates/description.art +6 -0
  2377. package/lib/v2/zhiy/letter.js +34 -0
  2378. package/lib/v2/zhiy/maintainer.js +4 -0
  2379. package/lib/v2/zhiy/post.js +69 -0
  2380. package/lib/v2/zhiy/radar.js +19 -0
  2381. package/lib/v2/zhiy/router.js +4 -0
  2382. package/lib/v2/zhiy/templates/post.art +12 -0
  2383. package/lib/v2/zhiy/utils.js +13 -0
  2384. package/lib/v2/zhubai/index.js +4 -0
  2385. package/lib/v2/zjol/maintainer.js +3 -0
  2386. package/lib/v2/zjol/paper.js +88 -0
  2387. package/lib/v2/zjol/radar.js +61 -0
  2388. package/lib/v2/zjol/router.js +3 -0
  2389. package/lib/v2/zju/grs/index.js +11 -10
  2390. package/lib/v2/zju/radar.js +5 -5
  2391. package/lib/v2/zodgame/forum.js +54 -0
  2392. package/lib/v2/zodgame/maintainer.js +3 -0
  2393. package/lib/v2/zodgame/radar.js +18 -0
  2394. package/lib/v2/zodgame/router.js +3 -0
  2395. package/lib/v2/zodgame/templates/forum.art +1 -0
  2396. package/lib/v2/zuvio/boards.js +14 -0
  2397. package/lib/v2/zuvio/radar.js +13 -0
  2398. package/lib/v2/zuvio/router.js +4 -0
  2399. package/lib/v2/zuvio/student5.js +58 -0
  2400. package/lib/v2/zuvio/templates/img.art +2 -0
  2401. package/lib/v2/zuvio/templates/link.art +7 -0
  2402. package/lib/v2/zuvio/templates/ref_article.art +8 -0
  2403. package/lib/v2/zuvio/templates/rss.art +1 -0
  2404. package/lib/v2/zuvio/templates/youtube.art +2 -0
  2405. package/lib/v2/zuvio/utils.js +61 -0
  2406. package/lib/v2/zuzhirenshi/index.js +87 -0
  2407. package/lib/v2/zuzhirenshi/maintainer.js +3 -0
  2408. package/lib/v2/zuzhirenshi/radar.js +13 -0
  2409. package/lib/v2/zuzhirenshi/router.js +3 -0
  2410. package/lib/views/json.js +46 -0
  2411. package/package.json +68 -51
  2412. package/lib/routes/acfun/bangumi.js +0 -28
  2413. package/lib/routes/acfun/video.js +0 -44
  2414. package/lib/routes/adnmb/index.js +0 -69
  2415. package/lib/routes/agefans/detail.js +0 -29
  2416. package/lib/routes/agefans/update.js +0 -46
  2417. package/lib/routes/aljazeera/news.js +0 -38
  2418. package/lib/routes/apkpure/versions.js +0 -23
  2419. package/lib/routes/aqk/category.js +0 -22
  2420. package/lib/routes/aqk/vul.js +0 -33
  2421. package/lib/routes/baidu/topwords.js +0 -38
  2422. package/lib/routes/baijing/index.js +0 -34
  2423. package/lib/routes/bangumi/calendar/_base.js +0 -43
  2424. package/lib/routes/bangumi/calendar/today.js +0 -75
  2425. package/lib/routes/bangumi/group/reply.js +0 -36
  2426. package/lib/routes/bangumi/group/topic.js +0 -26
  2427. package/lib/routes/bangumi/person/index.js +0 -34
  2428. package/lib/routes/bangumi/subject/comments.js +0 -54
  2429. package/lib/routes/bangumi/subject/ep.js +0 -26
  2430. package/lib/routes/bangumi/subject/index.js +0 -27
  2431. package/lib/routes/bangumi/subject/offcial-subject-api.js +0 -30
  2432. package/lib/routes/bangumi/user/blog.js +0 -42
  2433. package/lib/routes/bjp/apod.js +0 -48
  2434. package/lib/routes/blogs/foreverblog.js +0 -33
  2435. package/lib/routes/caixin/article.js +0 -46
  2436. package/lib/routes/caixin/blog.js +0 -58
  2437. package/lib/routes/caixin/category.js +0 -44
  2438. package/lib/routes/caixin/database.js +0 -48
  2439. package/lib/routes/caixin/latest.js +0 -75
  2440. package/lib/routes/caixin/yxnews.js +0 -30
  2441. package/lib/routes/cartoonmad/comic.js +0 -69
  2442. package/lib/routes/ccdi/scdc.js +0 -51
  2443. package/lib/routes/ccf/news.js +0 -51
  2444. package/lib/routes/clickme/index.js +0 -76
  2445. package/lib/routes/cls/depth.js +0 -63
  2446. package/lib/routes/cls/telegraph.js +0 -34
  2447. package/lib/routes/comicskingdom/index.js +0 -61
  2448. package/lib/routes/coolapk/dyh.js +0 -41
  2449. package/lib/routes/coolapk/hot.js +0 -99
  2450. package/lib/routes/coolapk/huati.js +0 -26
  2451. package/lib/routes/coolapk/toutiao.js +0 -31
  2452. package/lib/routes/coolapk/tuwen.js +0 -33
  2453. package/lib/routes/coolapk/userDynamic.js +0 -37
  2454. package/lib/routes/coolapk/utils.js +0 -151
  2455. package/lib/routes/copymanga/comic.js +0 -74
  2456. package/lib/routes/csrc/auditstatus.js +0 -61
  2457. package/lib/routes/csrc/fashenwei.js +0 -42
  2458. package/lib/routes/csrc/news.js +0 -45
  2459. package/lib/routes/darwinawards/articles.js +0 -42
  2460. package/lib/routes/dcard/section.js +0 -47
  2461. package/lib/routes/dcard/utils.js +0 -54
  2462. package/lib/routes/dedao/index.js +0 -43
  2463. package/lib/routes/dedao/knowledge.js +0 -78
  2464. package/lib/routes/dedao/list.js +0 -60
  2465. package/lib/routes/deepmind/blog.js +0 -43
  2466. package/lib/routes/dgjyw/index.js +0 -66
  2467. package/lib/routes/dlsite/campaign.js +0 -176
  2468. package/lib/routes/dlsite/new.js +0 -109
  2469. package/lib/routes/docschina/jsweekly.js +0 -47
  2470. package/lib/routes/dsndsht23/index.js +0 -127
  2471. package/lib/routes/eleduck/jobs.js +0 -38
  2472. package/lib/routes/erbingapp/news.js +0 -51
  2473. package/lib/routes/fantia/search.js +0 -66
  2474. package/lib/routes/fantia/user.js +0 -39
  2475. package/lib/routes/finviz/news.js +0 -40
  2476. package/lib/routes/fzdm/manhua.js +0 -62
  2477. package/lib/routes/gelonghui/keyword.js +0 -36
  2478. package/lib/routes/gelonghui/subject.js +0 -42
  2479. package/lib/routes/gelonghui/user.js +0 -46
  2480. package/lib/routes/gov/jiangsu/eea.js +0 -84
  2481. package/lib/routes/gov/shenzhen/xxgk/zfxxgj.js +0 -66
  2482. package/lib/routes/gov/zhengce/govall.js +0 -59
  2483. package/lib/routes/gov/zhengce/wenjian.js +0 -53
  2484. package/lib/routes/gov/zhengce/zuixin.js +0 -42
  2485. package/lib/routes/gq/tw/index.js +0 -66
  2486. package/lib/routes/greasyfork/scripts.js +0 -39
  2487. package/lib/routes/ikea/uk/new.js +0 -20
  2488. package/lib/routes/ikea/uk/offer.js +0 -64
  2489. package/lib/routes/infoq/recommend.js +0 -28
  2490. package/lib/routes/infoq/topic.js +0 -45
  2491. package/lib/routes/infoq/utils.js +0 -103
  2492. package/lib/routes/initium/full.js +0 -188
  2493. package/lib/routes/instagram/index.js +0 -131
  2494. package/lib/routes/instagram/utils.js +0 -28
  2495. package/lib/routes/iqiyi/dongman.js +0 -42
  2496. package/lib/routes/jiemian/list.js +0 -48
  2497. package/lib/routes/jiemian/utils.js +0 -26
  2498. package/lib/routes/jinshi/index.js +0 -35
  2499. package/lib/routes/kuaibao/index.js +0 -33
  2500. package/lib/routes/kuaidi100/supported_company.js +0 -17
  2501. package/lib/routes/kuaidi100/utils.js +0 -223
  2502. package/lib/routes/langlive/room.js +0 -33
  2503. package/lib/routes/leetcode/articles.js +0 -77
  2504. package/lib/routes/linkresearcher/index.js +0 -65
  2505. package/lib/routes/logseq/changelog.js +0 -42
  2506. package/lib/routes/luogu/contest.js +0 -28
  2507. package/lib/routes/luogu/daily.js +0 -53
  2508. package/lib/routes/luogu/userFeed.js +0 -38
  2509. package/lib/routes/manhuagui/comic.js +0 -99
  2510. package/lib/routes/mckinsey/index.js +0 -49
  2511. package/lib/routes/mhgui/comic.js +0 -99
  2512. package/lib/routes/mi/youpin/crowdfunding.js +0 -39
  2513. package/lib/routes/mi/youpin/new.js +0 -26
  2514. package/lib/routes/minecraft/version.js +0 -34
  2515. package/lib/routes/mofcom/article.js +0 -54
  2516. package/lib/routes/nautilus/topics.js +0 -45
  2517. package/lib/routes/ncm/artist.js +0 -33
  2518. package/lib/routes/ncm/djradio.js +0 -80
  2519. package/lib/routes/ncm/playlist.js +0 -45
  2520. package/lib/routes/ncm/userplaylist.js +0 -58
  2521. package/lib/routes/ncm/userplayrecords.js +0 -57
  2522. package/lib/routes/netease/ds.js +0 -41
  2523. package/lib/routes/netease/dy.js +0 -54
  2524. package/lib/routes/netease/dy2.js +0 -62
  2525. package/lib/routes/netease/news/special.js +0 -121
  2526. package/lib/routes/netease/open/latest.js +0 -68
  2527. package/lib/routes/netease/open/vip.js +0 -39
  2528. package/lib/routes/nga/forum.js +0 -72
  2529. package/lib/routes/nga/post.js +0 -71
  2530. package/lib/routes/nikkei/index.js +0 -34
  2531. package/lib/routes/nikkei/news.js +0 -155
  2532. package/lib/routes/nintendo/direct.js +0 -34
  2533. package/lib/routes/nintendo/eshop_cn.js +0 -51
  2534. package/lib/routes/nintendo/eshop_hk.js +0 -26
  2535. package/lib/routes/nintendo/eshop_jp.js +0 -20
  2536. package/lib/routes/nintendo/eshop_us.js +0 -36
  2537. package/lib/routes/nintendo/news.js +0 -25
  2538. package/lib/routes/nintendo/news_china.js +0 -41
  2539. package/lib/routes/nintendo/system-update.js +0 -38
  2540. package/lib/routes/nintendo/utils.js +0 -186
  2541. package/lib/routes/novel/shuquge.js +0 -63
  2542. package/lib/routes/oilprice/index.js +0 -66
  2543. package/lib/routes/openai/blog.js +0 -52
  2544. package/lib/routes/oschina/news.js +0 -97
  2545. package/lib/routes/oschina/topic.js +0 -54
  2546. package/lib/routes/oschina/u.js +0 -57
  2547. package/lib/routes/oschina/user.js +0 -57
  2548. package/lib/routes/outagereport/service.js +0 -51
  2549. package/lib/routes/phoronix/index.js +0 -111
  2550. package/lib/routes/pixiv/api/getBookmarks.js +0 -25
  2551. package/lib/routes/pixiv/api/getIllustFollows.js +0 -22
  2552. package/lib/routes/pixiv/api/getIllusts.js +0 -24
  2553. package/lib/routes/pixiv/api/getRanking.js +0 -32
  2554. package/lib/routes/pixiv/api/getUserDetail.js +0 -29
  2555. package/lib/routes/pixiv/api/searchIllust.js +0 -26
  2556. package/lib/routes/pixiv/api/searchPopularIllust.js +0 -25
  2557. package/lib/routes/pixiv/bookmarks.js +0 -39
  2558. package/lib/routes/pixiv/illustfollow.js +0 -33
  2559. package/lib/routes/pixiv/pixiv-got.js +0 -65
  2560. package/lib/routes/pixiv/ranking.js +0 -85
  2561. package/lib/routes/pixiv/search.js +0 -50
  2562. package/lib/routes/pixiv/token.js +0 -74
  2563. package/lib/routes/pixiv/user.js +0 -37
  2564. package/lib/routes/pnas/index.js +0 -66
  2565. package/lib/routes/qdaily/index.js +0 -88
  2566. package/lib/routes/qidian/chapter.js +0 -43
  2567. package/lib/routes/qidian/forum.js +0 -41
  2568. package/lib/routes/qidian/free-next.js +0 -45
  2569. package/lib/routes/qidian/free.js +0 -47
  2570. package/lib/routes/qingting/channel.js +0 -36
  2571. package/lib/routes/researchgate/publications.js +0 -60
  2572. package/lib/routes/sakurazaka46/blog.js +0 -38
  2573. package/lib/routes/saraba1st/thread.js +0 -45
  2574. package/lib/routes/sciencemag/cover.js +0 -56
  2575. package/lib/routes/sciencemag/current.js +0 -123
  2576. package/lib/routes/sciencemag/early.js +0 -97
  2577. package/lib/routes/scmp/index.js +0 -115
  2578. package/lib/routes/secrss/author.js +0 -22
  2579. package/lib/routes/secrss/category.js +0 -25
  2580. package/lib/routes/skysports/news.js +0 -53
  2581. package/lib/routes/smzdm/article.js +0 -57
  2582. package/lib/routes/smzdm/baoliao.js +0 -55
  2583. package/lib/routes/smzdm/haowen.js +0 -60
  2584. package/lib/routes/smzdm/haowen_fenlei.js +0 -63
  2585. package/lib/routes/smzdm/keyword.js +0 -39
  2586. package/lib/routes/smzdm/ranking.js +0 -39
  2587. package/lib/routes/sse/convert.js +0 -32
  2588. package/lib/routes/sse/disclosure.js +0 -34
  2589. package/lib/routes/sse/inquire.js +0 -31
  2590. package/lib/routes/sse/renewal.js +0 -61
  2591. package/lib/routes/sse/sserules.js +0 -49
  2592. package/lib/routes/ssmh/category.js +0 -50
  2593. package/lib/routes/ssmh/index.js +0 -32
  2594. package/lib/routes/swjtu/tl/news.js +0 -35
  2595. package/lib/routes/taoguba/index.js +0 -46
  2596. package/lib/routes/taoguba/user.js +0 -46
  2597. package/lib/routes/tencent/factcheck/index.js +0 -51
  2598. package/lib/routes/tencent/news/author.js +0 -59
  2599. package/lib/routes/tencent/pvp/newsindex.js +0 -62
  2600. package/lib/routes/tieba/forum.js +0 -88
  2601. package/lib/routes/tieba/post.js +0 -66
  2602. package/lib/routes/tieba/user.js +0 -36
  2603. package/lib/routes/transferwise/pair.js +0 -64
  2604. package/lib/routes/twitter/api_fallback_common.js +0 -17
  2605. package/lib/routes/twitter/developer-api/search.js +0 -22
  2606. package/lib/routes/twitter/utils.js +0 -439
  2607. package/lib/routes/twitter/web-api/twitter-api.js +0 -208
  2608. package/lib/routes/twitter/web-api/twitter-got.js +0 -91
  2609. package/lib/routes/twmanhuagui/comic.js +0 -99
  2610. package/lib/routes/typora/changelog-dev.js +0 -35
  2611. package/lib/routes/typora/changelog.js +0 -60
  2612. package/lib/routes/udn/global.js +0 -61
  2613. package/lib/routes/universities/cas/cg/index.js +0 -50
  2614. package/lib/routes/universities/cas/iee/kydt.js +0 -46
  2615. package/lib/routes/universities/cas/mesalab/kb.js +0 -45
  2616. package/lib/routes/universities/cas/sim/academic.js +0 -59
  2617. package/lib/routes/universities/cuc/yz.js +0 -39
  2618. package/lib/routes/universities/ecnuyjs/ecnuyjs.js +0 -23
  2619. package/lib/routes/universities/gdut/news.js +0 -162
  2620. package/lib/routes/universities/hit/jwc.js +0 -53
  2621. package/lib/routes/universities/hit/today.js +0 -85
  2622. package/lib/routes/universities/hitsz/article.js +0 -43
  2623. package/lib/routes/universities/hitwh/today.js +0 -46
  2624. package/lib/routes/universities/neu/news.js +0 -61
  2625. package/lib/routes/universities/nuist/bulletin.js +0 -61
  2626. package/lib/routes/universities/nuist/cas.js +0 -60
  2627. package/lib/routes/universities/nuist/jwc.js +0 -66
  2628. package/lib/routes/universities/nuist/library/lib.js +0 -32
  2629. package/lib/routes/universities/nuist/scs.js +0 -60
  2630. package/lib/routes/universities/nuist/sese.js +0 -60
  2631. package/lib/routes/universities/nuist/xgc.js +0 -48
  2632. package/lib/routes/universities/nuist/yjs.js +0 -63
  2633. package/lib/routes/universities/scvtc/xygg.js +0 -45
  2634. package/lib/routes/universities/shiep/index.js +0 -95
  2635. package/lib/routes/universities/shmtu/jwc.js +0 -75
  2636. package/lib/routes/universities/shmtu/www.js +0 -61
  2637. package/lib/routes/universities/tjpyu/ooa.js +0 -73
  2638. package/lib/routes/universities/tynu/tynu.js +0 -27
  2639. package/lib/routes/universities/uestc/auto.js +0 -113
  2640. package/lib/routes/universities/uestc/cqe.js +0 -40
  2641. package/lib/routes/universities/uestc/cs.js +0 -119
  2642. package/lib/routes/universities/uestc/gr.js +0 -46
  2643. package/lib/routes/universities/uestc/is.js +0 -102
  2644. package/lib/routes/universities/uestc/jwc.js +0 -38
  2645. package/lib/routes/universities/uestc/news.js +0 -33
  2646. package/lib/routes/universities/uestc/sice.js +0 -43
  2647. package/lib/routes/verge/index.js +0 -88
  2648. package/lib/routes/vocus/publication.js +0 -19
  2649. package/lib/routes/vocus/utils.js +0 -29
  2650. package/lib/routes/weibo/keyword.js +0 -55
  2651. package/lib/routes/weibo/oasis/user.js +0 -17
  2652. package/lib/routes/weibo/search/hot.js +0 -33
  2653. package/lib/routes/weibo/super_index.js +0 -62
  2654. package/lib/routes/weibo/timeline.js +0 -162
  2655. package/lib/routes/weibo/user.js +0 -155
  2656. package/lib/routes/weibo/utils.js +0 -422
  2657. package/lib/routes/woshipm/bookmarks.js +0 -45
  2658. package/lib/routes/woshipm/latest.js +0 -45
  2659. package/lib/routes/woshipm/popular.js +0 -38
  2660. package/lib/routes/woshipm/user_article.js +0 -43
  2661. package/lib/routes/woshipm/wen.js +0 -39
  2662. package/lib/routes/x6d/index.js +0 -64
  2663. package/lib/routes/xwlb/index.js +0 -40
  2664. package/lib/routes/yahoo-news/index.js +0 -44
  2665. package/lib/routes/yicai/brief.js +0 -34
  2666. package/lib/routes/yuanshen/index.js +0 -70
  2667. package/lib/routes/yuque/doc.js +0 -60
  2668. package/lib/routes/yxdown/news.js +0 -54
  2669. package/lib/routes/yxdown/recommend.js +0 -51
  2670. package/lib/routes/zcool/discover.js +0 -140
  2671. package/lib/routes/zcool/top.js +0 -75
  2672. package/lib/routes/zcool/user.js +0 -58
  2673. package/lib/utils/torrent.js +0 -163
  2674. package/lib/v2/36kr/motif.js +0 -36
  2675. package/lib/v2/36kr/news.js +0 -56
  2676. package/lib/v2/36kr/newsflashes.js +0 -37
  2677. package/lib/v2/36kr/search/article.js +0 -70
  2678. package/lib/v2/36kr/user.js +0 -36
  2679. package/lib/v2/acm-ecnu/contest.js +0 -44
  2680. package/lib/v2/acm-ecnu/maintainer.js +0 -3
  2681. package/lib/v2/acm-ecnu/radar.js +0 -19
  2682. package/lib/v2/acm-ecnu/router.js +0 -3
  2683. package/lib/v2/appledaily/templates/content.art +0 -7
  2684. package/lib/v2/cnbeta/index.js +0 -16
  2685. package/lib/v2/csu/fetch_article.js +0 -12
  2686. package/lib/v2/csu/job.js +0 -34
  2687. package/lib/v2/dongqiudi/daily.js +0 -47
  2688. package/lib/v2/hdu/cs/index.js +0 -57
  2689. package/lib/v2/hellogithub/article.js +0 -47
  2690. package/lib/v2/hellogithub/month.js +0 -42
  2691. package/lib/v2/hellogithub/ranking.js +0 -39
  2692. package/lib/v2/heu/gx/card.js +0 -47
  2693. package/lib/v2/heu/gx/list.js +0 -73
  2694. package/lib/v2/heu/job/bigemploy.js +0 -42
  2695. package/lib/v2/heu/job/calendar.js +0 -54
  2696. package/lib/v2/heu/job/list.js +0 -70
  2697. package/lib/v2/heu/maintainer.js +0 -8
  2698. package/lib/v2/heu/radar.js +0 -73
  2699. package/lib/v2/heu/router.js +0 -9
  2700. package/lib/v2/heu/uae/list.js +0 -62
  2701. package/lib/v2/heu/yjsy/list.js +0 -65
  2702. package/lib/v2/houxu/templates/description.art +0 -9
  2703. package/lib/v2/mp4er/index.js +0 -83
  2704. package/lib/v2/mp4er/maintainer.js +0 -3
  2705. package/lib/v2/mp4er/radar.js +0 -13
  2706. package/lib/v2/mp4er/router.js +0 -3
  2707. package/lib/v2/netease/maintainer.js +0 -5
  2708. package/lib/v2/netease/radar.js +0 -29
  2709. package/lib/v2/netease/rank.js +0 -154
  2710. package/lib/v2/netease/renjian.js +0 -74
  2711. package/lib/v2/netease/router.js +0 -5
  2712. package/lib/v2/netease/today.js +0 -55
  2713. package/lib/v2/nikkei-asia/index.js +0 -40
  2714. package/lib/v2/nikkei-asia/maintainer.js +0 -3
  2715. package/lib/v2/nikkei-asia/radar.js +0 -13
  2716. package/lib/v2/nikkei-cn/index.js +0 -82
  2717. package/lib/v2/nikkei-cn/maintainer.js +0 -3
  2718. package/lib/v2/nikkei-cn/radar.js +0 -21
  2719. package/lib/v2/nikkei-cn/router.js +0 -3
  2720. package/lib/v2/nsfc/maintainer.js +0 -3
  2721. package/lib/v2/nsfc/news.js +0 -92
  2722. package/lib/v2/nsfc/radar.js +0 -31
  2723. package/lib/v2/nuaa/cs/index.js +0 -87
  2724. package/lib/v2/nyaa/search.js +0 -33
  2725. package/lib/v2/pts/dailynews.js +0 -52
  2726. package/lib/v2/radio/radio.js +0 -50
  2727. package/lib/v2/techflow520/index.js +0 -34
  2728. package/lib/v2/techflow520/maintainer.js +0 -4
  2729. package/lib/v2/techflow520/newsflash.js +0 -32
  2730. package/lib/v2/techflow520/radar.js +0 -19
  2731. package/lib/v2/techflow520/router.js +0 -4
  2732. package/lib/v2/wechat/wemp.js +0 -58
  2733. package/lib/v2/wsj/index.js +0 -141
  2734. package/lib/v2/zhihu/execlib/g_encrypt.js +0 -407
  2735. package/lib/v2/zhihu/execlib/jsencrypt.js +0 -379
  2736. /package/lib/{routes/ncm/templates → v2/163/templates/music}/djradio-content.art +0 -0
  2737. /package/lib/v2/{hkepc/templates → bangumi/templates/online}/image.art +0 -0
  2738. /package/lib/v2/{eprice → caai}/templates/description.art +0 -0
  2739. /package/lib/v2/{hkepc/templates → ccf/templates/tfbd}/description.art +0 -0
  2740. /package/lib/{routes → v2}/douyu/room.js +0 -0
  2741. /package/lib/v2/{acm-ecnu → ecnu}/templates/description.art +0 -0
  2742. /package/lib/v2/{nikkei-asia → good}/router.js +0 -0
  2743. /package/lib/v2/{nsfc → hafu}/router.js +0 -0
  2744. /package/lib/{routes → v2}/iqiyi/video.js +0 -0
  2745. /package/lib/{routes → v2}/kuaidi100/index.js +0 -0
  2746. /package/lib/{routes → v2}/pixiv/constants.js +0 -0
  2747. /package/lib/{routes → v2}/pixiv/utils.js +0 -0
  2748. /package/lib/{routes → v2}/twitter/developer-api/user.js +0 -0
  2749. /package/lib/{routes → v2}/twitter/followings.js +0 -0
  2750. /package/lib/{routes → v2}/twitter/keyword.js +0 -0
  2751. /package/lib/{routes → v2}/twitter/likes.js +0 -0
  2752. /package/lib/{routes → v2}/twitter/list.js +0 -0
  2753. /package/lib/{routes → v2}/twitter/media.js +0 -0
  2754. /package/lib/{routes → v2}/twitter/trends.js +0 -0
  2755. /package/lib/{routes → v2}/twitter/user.js +0 -0
  2756. /package/lib/{routes → v2}/twitter/web-api/media.js +0 -0
  2757. /package/lib/{routes → v2}/twitter/web-api/search.js +0 -0
  2758. /package/lib/{routes → v2}/twitter/web-api/user.js +0 -0
  2759. /package/lib/{routes → v2}/zcool/locations.js +0 -0
package/README.md CHANGED
@@ -6,10 +6,12 @@
6
6
  > 🍰 Everything is RSSible
7
7
 
8
8
  [![telegram](https://img.shields.io/badge/chat-telegram-brightgreen.svg?logo=telegram&style=flat-square)](https://t.me/rsshub)
9
- [![npm publish](https://img.shields.io/github/workflow/status/DIYgod/RSSHub/publish/master?label=npm%20publish&logo=npm&style=flat-square)](https://www.npmjs.com/package/rsshub)
10
- [![docker publish](https://img.shields.io/github/workflow/status/DIYgod/RSSHub/%5Bdocker%5D%20CI%20for%20releases/master?label=docker%20publish&logo=docker&style=flat-square)](https://hub.docker.com/r/diygod/rsshub)
11
- [![test](https://img.shields.io/github/workflow/status/DIYgod/RSSHub/test/master?label=test&logo=github&style=flat-square)](https://github.com/DIYgod/RSSHub/actions/workflows/test.yml?query=event%3Apush+branch%3Amaster)
9
+ [![npm publish](https://img.shields.io/github/actions/workflow/status/DIYgod/RSSHub/npm-publish.yml?branch=master&label=npm%20publish&logo=npm&style=flat-square)](https://www.npmjs.com/package/rsshub)
10
+ [![docker publish](https://img.shields.io/github/actions/workflow/status/DIYgod/RSSHub/docker-release.yml?branch=master&label=docker%20publish&logo=docker&style=flat-square)](https://hub.docker.com/r/diygod/rsshub)
11
+ [![test](https://img.shields.io/github/actions/workflow/status/DIYgod/RSSHub/test.yml?branch=master&label=test&logo=github&style=flat-square)](https://github.com/DIYgod/RSSHub/actions/workflows/test.yml?query=event%3Apush+branch%3Amaster)
12
12
  [![Test coverage](https://img.shields.io/codecov/c/github/DIYgod/RSSHub.svg?style=flat-square&logo=codecov)](https://app.codecov.io/gh/DIYgod/RSSHub/branch/master)
13
+ [![CodeFactor](https://www.codefactor.io/repository/github/diygod/rsshub/badge)](https://www.codefactor.io/repository/github/diygod/rsshub)
14
+ [![DeepScan grade](https://deepscan.io/api/teams/6244/projects/8135/branches/92448/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=6244&pid=8135&bid=92448)
13
15
 
14
16
  ## Introduction
15
17
 
@@ -33,13 +35,9 @@ RSSHub 是一个开源、简单易用、易于扩展的 RSS 生成器,可以
33
35
 
34
36
  ### Special Sponsors
35
37
 
36
- <div>
37
- <a href="https://rss3.io/" target="_blank"><img height="60px" src="https://i.imgur.com/v7TF0jp.jpg"></a>
38
- </div>
39
-
40
- ### Sponsors
41
-
42
- [Sayori Studio](https://t.me/SayoriStudio) . [Sion Kazama](https://blog.sion.moe) . [琚致远](https://wineso.me/) . [Rolly RSS 阅读器](https://www.coolapk.com/apk/239500) . [mokeyjay](https://www.mokeyjay.com/) . [萌开源联盟](https://www.moeunion.com) . [hooke007](https://github.com/hooke007/MPV_lazy) . [feeds.pub](https://feeds.pub) . [KINGX@安全引擎](http://cve.today/)
38
+ <p>
39
+ <a href="https://rss3.io/" target="_blank"><img height="50px" src="https://i.imgur.com/vHtI4bz.png"></a>
40
+ </p>
43
41
 
44
42
  [![](https://opencollective.com/static/images/become_sponsor.svg)](https://docs.rsshub.app/en/support/)
45
43
 
@@ -58,6 +56,7 @@ Logo designer [sheldonrrr](https://dribbble.com/sheldonrrr)
58
56
  - [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar) | 一个可以帮助你快速发现和订阅当前网站 RSS 和 RSSHub 的浏览器扩展
59
57
  - [RSSBud](https://github.com/Cay-Zhang/RSSBud) ([TestFlight 公测](https://testflight.apple.com/join/rjCVzzHP)) | iOS 平台的 RSSHub Radar,专为移动生态优化
60
58
  - [RSSAid](https://github.com/LeetaoGoooo/RSSAid) | 基于 Flutter 构建的 Android 平台的 RSSHub Radar
59
+ - [DocSearch](https://github.com/Fatpandac/DocSearch) | Link RSSHub DocSearch into Raycast
61
60
 
62
61
  ## Join Us
63
62
 
package/lib/config.js CHANGED
@@ -2,6 +2,8 @@ require('dotenv').config();
2
2
  const randUserAgent = require('./utils/rand-user-agent');
3
3
  let envs = process.env;
4
4
  let value;
5
+ const TRUE_UA = 'RSSHub/1.0 (+http://github.com/DIYgod/RSSHub; like FeedFetcher-Google)';
6
+
5
7
  const calculateValue = () => {
6
8
  const bilibili_cookies = {};
7
9
  const twitter_tokens = {};
@@ -40,7 +42,8 @@ const calculateValue = () => {
40
42
  listenInaddrAny: envs.LISTEN_INADDR_ANY || 1, // 是否允许公网连接,取值 0 1
41
43
  requestRetry: parseInt(envs.REQUEST_RETRY) || 2, // 请求失败重试次数
42
44
  requestTimeout: parseInt(envs.REQUEST_TIMEOUT) || 30000, // Milliseconds to wait for the server to end the response before aborting the request
43
- ua: envs.UA || randUserAgent({ browser: 'chrome', os: 'mac os', device: 'desktop' }),
45
+ ua: envs.UA ? envs.UA : envs.NO_RANDOM_UA === 'true' || envs.NO_RANDOM_UA === '1' ? TRUE_UA : randUserAgent({ browser: 'chrome', os: 'mac os', device: 'desktop' }),
46
+ trueUA: TRUE_UA,
44
47
  // cors request
45
48
  allowOrigin: envs.ALLOW_ORIGIN,
46
49
  // cache
@@ -94,6 +97,7 @@ const calculateValue = () => {
94
97
  feature: {
95
98
  allow_user_hotlink_template: envs.ALLOW_USER_HOTLINK_TEMPLATE === 'true',
96
99
  filter_regex_engine: envs.FILTER_REGEX_ENGINE || 're2',
100
+ allow_user_supply_unsafe_domain: envs.ALLOW_USER_SUPPLY_UNSAFE_DOMAIN === 'true',
97
101
  },
98
102
  suffix: envs.SUFFIX,
99
103
  titleLengthLimit: parseInt(envs.TITLE_LENGTH_LIMIT) || 150,
@@ -120,6 +124,9 @@ const calculateValue = () => {
120
124
  username: envs.DIDA365_USERNAME,
121
125
  password: envs.DIDA365_PASSWORD,
122
126
  },
127
+ discord: {
128
+ authorization: envs.DISCORD_AUTHORIZATION,
129
+ },
123
130
  discuz: {
124
131
  cookies: discuz_cookies,
125
132
  },
@@ -134,6 +141,7 @@ const calculateValue = () => {
134
141
  ipb_pass_hash: envs.EH_IPB_PASS_HASH,
135
142
  sk: envs.EH_SK,
136
143
  igneous: envs.EH_IGNEOUS,
144
+ star: envs.EH_STAR,
137
145
  img_proxy: envs.EH_IMG_PROXY,
138
146
  },
139
147
  email: {
@@ -148,6 +156,9 @@ const calculateValue = () => {
148
156
  username: envs.FANFOU_USERNAME,
149
157
  password: envs.FANFOU_PASSWORD,
150
158
  },
159
+ fantia: {
160
+ cookies: envs.FANTIA_COOKIE,
161
+ },
151
162
  game4399: {
152
163
  cookie: envs.GAME_4399,
153
164
  },
@@ -177,10 +188,17 @@ const calculateValue = () => {
177
188
  username: envs.IG_USERNAME,
178
189
  password: envs.IG_PASSWORD,
179
190
  proxy: envs.IG_PROXY,
191
+ cookie: envs.IG_COOKIE,
192
+ },
193
+ iwara: {
194
+ cookie: envs.IWARA_COOKIE,
180
195
  },
181
196
  lastfm: {
182
197
  api_key: envs.LASTFM_API_KEY,
183
198
  },
199
+ manhuagui: {
200
+ cookie: envs.MHGUI_COOKIE,
201
+ },
184
202
  mastodon: {
185
203
  apiHost: envs.MASTODON_API_HOST,
186
204
  accessToken: envs.MASTODON_API_ACCESS_TOKEN,
@@ -207,16 +225,22 @@ const calculateValue = () => {
207
225
  pianyuan: {
208
226
  cookie: envs.PIANYUAN_COOKIE,
209
227
  },
228
+ pixabay: {
229
+ key: envs.PIXABAY_KEY,
230
+ },
210
231
  pixiv: {
211
232
  refreshToken: envs.PIXIV_REFRESHTOKEN,
212
233
  bypassCdn: envs.PIXIV_BYPASS_CDN !== '0' && envs.PIXIV_BYPASS_CDN !== 'false',
213
234
  bypassCdnHostname: envs.PIXIV_BYPASS_HOSTNAME || 'public-api.secure.pixiv.net',
214
235
  bypassCdnDoh: envs.PIXIV_BYPASS_DOH || 'https://1.1.1.1/dns-query',
215
- imgProxy: envs.PIXIV_IMG_PROXY || 'https://i.pixiv.cat',
236
+ imgProxy: envs.PIXIV_IMG_PROXY || 'https://i.pixiv.re',
216
237
  },
217
238
  pkubbs: {
218
239
  cookie: envs.PKUBBS_COOKIE,
219
240
  },
241
+ saraba1st: {
242
+ cookie: envs.SARABA1ST_COOKIE,
243
+ },
220
244
  scboy: {
221
245
  token: envs.SCBOY_BBS_TOKEN,
222
246
  },
@@ -235,8 +259,8 @@ const calculateValue = () => {
235
259
  consumer_key: envs.TWITTER_CONSUMER_KEY,
236
260
  consumer_secret: envs.TWITTER_CONSUMER_SECRET,
237
261
  tokens: twitter_tokens,
238
- authorization: envs.TWITTER_WEBAPI_AUTHORIZAION || 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA',
239
- // 此处硬编码参考自https://github.com/mikf/gallery-dl/blob/master/gallery_dl/extractor/twitter.py#L550
262
+ authorization: envs.TWITTER_WEBAPI_AUTHORIZAION || 'Bearer AAAAAAAAAAAAAAAAAAAAAPYXBAAAAAAACLXUNDekMxqa8h%2F40K4moUkGsoc%3DTYfbDKbT3jJPCEVnMYqilB28NHfOPqkca3qaAxGfsyKCs0wRbw',
263
+ // reference: https://github.com/dangeredwolf/FixTweet/blob/f3082bbb0d69798687481a605f6760b2eb7558e0/src/constants.ts#L23-L25
240
264
  },
241
265
  weibo: {
242
266
  app_key: envs.WEIBO_APP_KEY,
@@ -262,12 +286,12 @@ const calculateValue = () => {
262
286
  clientSecret: envs.YOUTUBE_CLIENT_SECRET,
263
287
  refreshToken: envs.YOUTUBE_REFRESH_TOKEN,
264
288
  },
265
- yuque: {
266
- token: envs.YUQUE_TOKEN,
267
- },
268
289
  zhihu: {
269
290
  cookies: envs.ZHIHU_COOKIES,
270
291
  },
292
+ zodgame: {
293
+ cookie: envs.ZODGAME_COOKIE,
294
+ },
271
295
  };
272
296
  };
273
297
  calculateValue();
@@ -56,6 +56,9 @@ module.exports = function (app) {
56
56
  app.context.cache = {
57
57
  ...cacheModule,
58
58
  tryGet: async (key, getValueFunc, maxAge = config.cache.contentExpire, refresh = true) => {
59
+ if (typeof key !== 'string') {
60
+ throw Error('Cache key must be a string');
61
+ }
59
62
  let v = await get(key, refresh);
60
63
  if (!v) {
61
64
  v = await getValueFunc();
@@ -54,7 +54,9 @@ module.exports = async (ctx, next) => {
54
54
  ctx.state.data.description && (ctx.state.data.description = entities.decodeXML(ctx.state.data.description + ''));
55
55
 
56
56
  // sort items
57
- ctx.state.data.item = ctx.state.data.item.sort((a, b) => +new Date(b.pubDate || 0) - +new Date(a.pubDate || 0));
57
+ if (ctx.query.sorted !== 'false') {
58
+ ctx.state.data.item = ctx.state.data.item.sort((a, b) => +new Date(b.pubDate || 0) - +new Date(a.pubDate || 0));
59
+ }
58
60
 
59
61
  const handleItem = (item) => {
60
62
  item.title && (item.title = entities.decodeXML(item.title + ''));
@@ -137,6 +139,13 @@ module.exports = async (ctx, next) => {
137
139
  });
138
140
 
139
141
  item.description = $('body').html() + '' + (config.suffix || '');
142
+
143
+ if (item._extra?.links && $('.rsshub-quote').length) {
144
+ item._extra?.links?.map((e) => {
145
+ e.content_html = $.html($('.rsshub-quote'));
146
+ return e;
147
+ });
148
+ }
140
149
  }
141
150
  return item;
142
151
  };
@@ -179,26 +188,30 @@ module.exports = async (ctx, next) => {
179
188
  const title = item.title || '';
180
189
  const description = item.description || title;
181
190
  const author = item.author || '';
182
- const isFilter = title.match(makeRegex(ctx.query.filter)) || description.match(makeRegex(ctx.query.filter)) || author.match(makeRegex(ctx.query.filter));
191
+ const category = item.category ? (Array.isArray(item.category) ? item.category : [item.category]) : [];
192
+ const isFilter =
193
+ title.match(makeRegex(ctx.query.filter)) || description.match(makeRegex(ctx.query.filter)) || author.match(makeRegex(ctx.query.filter)) || category.some((c) => c.match(makeRegex(ctx.query.filter)));
183
194
  return isFilter;
184
195
  });
185
196
  }
186
197
 
187
- // 启用filter参数时,无效filter_title/description/author
188
- if (!ctx.query.filter && (ctx.query.filter_title || ctx.query.filter_description || ctx.query.filter_author)) {
198
+ // 启用filter参数时,无效filter_title/description/author/category
199
+ if (!ctx.query.filter && (ctx.query.filter_title || ctx.query.filter_description || ctx.query.filter_author || ctx.query.filter_category)) {
189
200
  ctx.state.data.item = ctx.state.data.item.filter((item) => {
190
201
  const title = item.title || '';
191
202
  const description = item.description || title;
192
203
  const author = item.author || '';
204
+ const category = item.category ? (Array.isArray(item.category) ? item.category : [item.category]) : [];
193
205
  let isFilter = true;
194
206
  ctx.query.filter_title && (isFilter = title.match(makeRegex(ctx.query.filter_title)));
195
207
  ctx.query.filter_description && (isFilter = isFilter && description.match(makeRegex(ctx.query.filter_description)));
196
208
  ctx.query.filter_author && (isFilter = isFilter && author.match(makeRegex(ctx.query.filter_author)));
209
+ ctx.query.filter_category && (isFilter = isFilter && category.some((c) => c.match(makeRegex(ctx.query.filter_category))));
197
210
  return isFilter;
198
211
  });
199
212
  }
200
213
 
201
- if (ctx.query.filterout || ctx.query.filterout_title || ctx.query.filterout_description || ctx.query.filterout_author) {
214
+ if (ctx.query.filterout || ctx.query.filterout_title || ctx.query.filterout_description || ctx.query.filterout_author || ctx.query.filterout_category) {
202
215
  if (ctx.query.filterout) {
203
216
  ctx.query.filterout_title = ctx.query.filterout;
204
217
  ctx.query.filterout_description = ctx.query.filterout;
@@ -207,10 +220,12 @@ module.exports = async (ctx, next) => {
207
220
  const title = item.title;
208
221
  const description = item.description || title;
209
222
  const author = item.author || '';
223
+ const category = item.category ? (Array.isArray(item.category) ? item.category : [item.category]) : [];
210
224
  let isFilter = true;
211
225
  ctx.query.filterout_title && (isFilter = !title.match(makeRegex(ctx.query.filterout_title)));
212
226
  ctx.query.filterout_description && (isFilter = isFilter && !description.match(makeRegex(ctx.query.filterout_description)));
213
227
  ctx.query.filterout_author && (isFilter = isFilter && !author.match(makeRegex(ctx.query.filterout_author)));
228
+ ctx.query.filterout_category && (isFilter = isFilter && !category.some((c) => c.match(makeRegex(ctx.query.filterout_category))));
214
229
  return isFilter;
215
230
  });
216
231
  }
@@ -244,12 +259,10 @@ module.exports = async (ctx, next) => {
244
259
  const parsed_result = await ctx.cache.tryGet(`mercury-cache-${link}`, async () => {
245
260
  // if parser failed, return default description and not report error
246
261
  try {
247
- mercury_parser = mercury_parser || require('@postlight/mercury-parser');
262
+ mercury_parser = mercury_parser || require('@postlight/parser');
248
263
 
249
- const res = await got(link);
250
- const $ = cheerio.load(res.data, {
251
- xmlMode: true,
252
- });
264
+ const { data: res } = await got(link);
265
+ const $ = cheerio.load(res);
253
266
  const result = await mercury_parser.parse(link, {
254
267
  html: $.html(),
255
268
  });
@@ -260,7 +273,7 @@ module.exports = async (ctx, next) => {
260
273
  });
261
274
 
262
275
  item.author = author || (parsed_result ? parsed_result.author : '');
263
- item.description = parsed_result ? parsed_result.content : description;
276
+ item.description = parsed_result && parsed_result.content.length > 40 ? entities.decodeXML(parsed_result.content) : description;
264
277
  });
265
278
  await Promise.all(tasks);
266
279
  }
@@ -300,7 +313,7 @@ module.exports = async (ctx, next) => {
300
313
  }
301
314
  });
302
315
  } else {
303
- throw Error(`Invalid parameter <code>brief=${ctx.query.brief}</code>. Please check the doc https://docs.rsshub.app/parameter.html#shu-chu-jian-xun`);
316
+ throw Error(`Invalid parameter brief. Please check the doc https://docs.rsshub.app/parameter.html#shu-chu-jian-xun`);
304
317
  }
305
318
  }
306
319
 
@@ -1,7 +1,7 @@
1
- const art = require('art-template');
1
+ const { art, json } = require('@/utils/render');
2
2
  const path = require('path');
3
3
  const config = require('@/config').value;
4
- const typeRegex = /\.(atom|rss|debug\.json)$/;
4
+ const typeRegex = /\.(atom|rss|debug\.json|json)$/;
5
5
  const { collapseWhitespace, convertDateToISO8601 } = require('@/utils/common-utils');
6
6
 
7
7
  module.exports = async (ctx, next) => {
@@ -14,21 +14,25 @@ module.exports = async (ctx, next) => {
14
14
 
15
15
  await next();
16
16
 
17
- if (ctx.state.type[1] === 'debug.json' && config.debugInfo) {
17
+ const outputType = ctx.state.type[1] || 'rss';
18
+
19
+ if (outputType === 'debug.json' && config.debugInfo) {
18
20
  ctx.set({
19
21
  'Content-Type': 'application/json; charset=UTF-8',
20
22
  });
21
23
  if (ctx.state.json) {
22
24
  ctx.body = JSON.stringify(ctx.state.json, null, 4);
23
25
  } else {
24
- ctx.body = JSON.stringify({ message: 'plugin does not set json' });
26
+ ctx.body = JSON.stringify({ message: 'plugin does not set debug json' });
25
27
  }
26
28
  }
29
+ if (outputType === 'json') {
30
+ ctx.set({ 'Content-Type': 'application/feed+json; charset=UTF-8' });
31
+ }
27
32
 
28
33
  if (!ctx.body) {
29
34
  let template;
30
35
 
31
- const outputType = ctx.state.type[1];
32
36
  switch (outputType) {
33
37
  case 'atom':
34
38
  template = path.resolve(__dirname, '../views/atom.art');
@@ -60,7 +64,16 @@ module.exports = async (ctx, next) => {
60
64
  }
61
65
  }
62
66
 
63
- item.author = collapseWhitespace(item.author);
67
+ if (typeof item.author === 'string') {
68
+ item.author = collapseWhitespace(item.author);
69
+ } else if (typeof item.author === 'object' && item.author !== null) {
70
+ for (const a of item.author) {
71
+ a.name = collapseWhitespace(a.name);
72
+ }
73
+ if (outputType !== 'json') {
74
+ item.author = item.author.map((a) => a.name).join(', ');
75
+ }
76
+ }
64
77
 
65
78
  if (item.itunes_duration && ((typeof item.itunes_duration === 'string' && item.itunes_duration.indexOf(':') === -1) || (typeof item.itunes_duration === 'number' && !isNaN(item.itunes_duration)))) {
66
79
  item.itunes_duration = +item.itunes_duration;
@@ -68,7 +81,7 @@ module.exports = async (ctx, next) => {
68
81
  Math.floor(item.itunes_duration / 3600) + ':' + (Math.floor((item.itunes_duration % 3600) / 60) / 100).toFixed(2).slice(-2) + ':' + (((item.itunes_duration % 3600) % 60) / 100).toFixed(2).slice(-2);
69
82
  }
70
83
 
71
- if (outputType === 'atom') {
84
+ if (outputType !== 'rss') {
72
85
  item.pubDate = convertDateToISO8601(item.pubDate);
73
86
  item.updated = convertDateToISO8601(item.updated);
74
87
  }
@@ -86,10 +99,15 @@ module.exports = async (ctx, next) => {
86
99
  };
87
100
  if (config.isPackage) {
88
101
  ctx.body = data;
89
- } else {
90
- if (template) {
91
- ctx.body = art(template, data);
92
- }
102
+ return;
103
+ }
104
+ if (!template) {
105
+ return;
106
+ }
107
+ if (outputType !== 'json') {
108
+ ctx.body = art(template, data);
109
+ return;
93
110
  }
111
+ ctx.body = json(data);
94
112
  }
95
113
  };