diff --git a/docs/traditional-media.md b/docs/traditional-media.md
index 5bf6aa6ba..3aeecafdc 100644
--- a/docs/traditional-media.md
+++ b/docs/traditional-media.md
@@ -573,13 +573,15 @@ Category 列表:
### 财新一线
-
+
## 参考消息
### 栏目
-
+
+
+::: details 栏目
| 栏目 | id |
| -------------- | -------- |
@@ -603,8 +605,14 @@ Category 列表:
| 军事 | junshi |
| 参考人物 | cankaorw |
+:::
+
+### 财新周刊
+
+
+
## 朝日新聞中文網(繁體中文版)
::: tip 提示
diff --git a/lib/v2/caixin/maintainer.js b/lib/v2/caixin/maintainer.js
index 0337e9d4a..7669ec279 100644
--- a/lib/v2/caixin/maintainer.js
+++ b/lib/v2/caixin/maintainer.js
@@ -4,5 +4,6 @@ module.exports = {
'/database': ['nczitzk'],
'/k': ['boypt'],
'/latest': ['tpnonthealps'],
+ '/weekly': ['TonyRL'],
'/:column/:category': ['idealclover'],
};
diff --git a/lib/v2/caixin/radar.js b/lib/v2/caixin/radar.js
index 646797052..33e693282 100644
--- a/lib/v2/caixin/radar.js
+++ b/lib/v2/caixin/radar.js
@@ -39,5 +39,13 @@ module.exports = {
target: '/caixin/database',
},
],
+ weekly: [
+ {
+ title: '财新周刊',
+ docs: 'https://docs.rsshub.app/traditional-media.html#cai-xin-wang',
+ source: ['/', '/*'],
+ target: '/caixin/weekly',
+ },
+ ],
},
};
diff --git a/lib/v2/caixin/router.js b/lib/v2/caixin/router.js
index a35fb44f7..1ec1c676c 100644
--- a/lib/v2/caixin/router.js
+++ b/lib/v2/caixin/router.js
@@ -4,5 +4,6 @@ module.exports = (router) => {
router.get('/database', require('./database'));
router.get('/k', require('./k'));
router.get('/latest', require('./latest'));
+ router.get('/weekly', require('./weekly'));
router.get('/:column/:category', require('./category'));
};
diff --git a/lib/v2/caixin/weekly.js b/lib/v2/caixin/weekly.js
new file mode 100644
index 000000000..89c1dc9be
--- /dev/null
+++ b/lib/v2/caixin/weekly.js
@@ -0,0 +1,55 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const { parseDate } = require('@/utils/parse-date');
+
+module.exports = async (ctx) => {
+ const link = 'https://weekly.caixin.com';
+
+ const { data: response } = await got(link);
+ const $ = cheerio.load(response);
+
+ const list = $('.mi')
+ .toArray()
+ .map((item) => ({
+ link: $(item).find('a').attr('href'),
+ }))
+ .concat(
+ $('.xsjCon a')
+ .toArray()
+ .map((item) => ({
+ link: $(item).attr('href'),
+ }))
+ )
+ .slice(0, ctx.query.limit ? parseInt(ctx.query.limit, 10) : 10);
+
+ const items = await Promise.all(
+ list.map((item) =>
+ ctx.cache.tryGet(item.link, async () => {
+ const { data } = await got(item.link);
+ const $ = cheerio.load(data);
+
+ item.title = $('head title').text();
+ item.pubDate = parseDate(
+ $('.source')
+ .text()
+ .match(/出版日期:(\d{4}-\d{2}-\d{2})/)[1]
+ );
+
+ $('.subscribe').remove();
+
+ const report = $('.report');
+ report.find('.title, .source, .date').remove();
+
+ item.description = $('.cover').html() + report.html() + $('.magIntro2').html();
+
+ return item;
+ })
+ )
+ );
+
+ ctx.state.data = {
+ title: $('head title').text(),
+ link,
+ item: items,
+ };
+};