55 lines
1.9 KiB
JavaScript
55 lines
1.9 KiB
JavaScript
module.exports = {
|
|
'douban.com': {
|
|
_name: '豆瓣',
|
|
www: [
|
|
{
|
|
title: '用户的广播',
|
|
docs: 'https://docs.rsshub.app/social-media.html#dou-ban',
|
|
source: '/people/:user/',
|
|
target: (params, url, document) => {
|
|
const uid = document && document.querySelector('html').innerHTML.match(/"id":"([0-9]+)"/)[1];
|
|
return uid ? `/douban/people/${uid}/status` : '';
|
|
},
|
|
},
|
|
{
|
|
title: '小组-最新',
|
|
docs: 'https://docs.rsshub.app/social-media.html#dou-ban',
|
|
source: '/group/:groupid',
|
|
target: '/douban/group/:groupid',
|
|
},
|
|
{
|
|
title: '小组-最热',
|
|
docs: 'https://docs.rsshub.app/social-media.html#dou-ban',
|
|
source: '/group/:groupid',
|
|
target: '/douban/group/:groupid/essence',
|
|
},
|
|
{
|
|
title: '小组-精华',
|
|
docs: 'https://docs.rsshub.app/social-media.html#dou-ban',
|
|
source: '/group/:groupid',
|
|
target: '/douban/group/:groupid/elite',
|
|
},
|
|
],
|
|
jobs: [
|
|
{
|
|
title: '社会招聘',
|
|
docs: 'https://docs.rsshub.app/social-media.html#dou-ban',
|
|
source: '/jobs/social',
|
|
target: '/jobs/social',
|
|
},
|
|
{
|
|
title: '校园招聘',
|
|
docs: 'https://docs.rsshub.app/social-media.html#dou-ban',
|
|
source: '/jobs/campus',
|
|
target: '/jobs/campus',
|
|
},
|
|
{
|
|
title: '实习生招聘',
|
|
docs: 'https://docs.rsshub.app/social-media.html#dou-ban',
|
|
source: '/jobs/intern',
|
|
target: '/jobs/intern',
|
|
},
|
|
],
|
|
},
|
|
};
|