sidebar
| sidebar |
|---|
| auto |
Join Us
We welcome all pull requests. Suggestions and feedback are also welcomed here.
Submit new RSS source
-
Add a new route in /router.js
-
Add the script to the corresponding directory /routes/
-
Update Documentation (/docs/en/README.md) , preview the docs via
npm run docs:dev-
Documentation uses vue component:
name: route nameauthor: route authors, separated by a single spaceexample: route examplepath: route path:paramsDesc: route parameters description, in array, supports markdown- parameter description must be in the order of its appearance in route path
- missing description will cause errors in
npm run docs:dev '"must be escaped as\'\"- it's redundant to indicate
optional/requiredas the component will prepend based on?
-
Documentation examples:
- Multiple parameters:
<routeEn name="Issue" author="HenryQW" path="/github/issue/:user/:repo" example="/github/issue/DIYgod/RSSHub" :paramsDesc="['GitHub username', 'GitHub repo name']" />- Use component slot for complicated description:
<routeEn name="Flight Deals" author="HenryQW" path="/hopper/:lowestOnly/:from/:to?" example="/hopper/1/LHR/PEK" :paramsDesc="['set to `1` will return the cheapest deal only, instead of all deals, so you don\'t get spammed', 'origin airport IATA code', 'destination airport IATA code, if unset the destination will be set to `anywhere`']" > This route returns a list of flight deals (in most cases, 6 flight deals) for a period defined by Hopper's algorithm, which means the travel date will be totally random (could be tomorrow or 10 months from now). For airport IATA code please refer to [Wikipedia List of airports by IATA code](https://en.wikipedia.org/wiki/List_of_airports_by_IATA_code:_A) </routeEn>This route returns a list of flight deals (in most cases, 6 flight deals) for a period defined by Hopper's algorithm, which means the travel date will be totally random (could be tomorrow or 10 months from now).
For airport IATA code please refer to Wikipedia List of airports by IATA code
-
- Execute
npm run formatto lint the code before you commit and open a pull request
Write the script
RSSHub provides 3 methods for acquiring data, these methods are sorted by recommended:
Access the target data source API
Use axios to access the target data source API, assign the acquired title, link, description and datetime to ctx.state.data (refer to Data for the list of parameters) , typically it looks like this: /routes/bilibili/bangumi.js
Acquire data from HTML
If an API is not provided, data need to be scraped from HTML. Use axios to acquire the HTML and then use cheerio for scraping the relevant data and assign them to ctx.state.data, typically it looks like this: /routes/jianshu/home.js
Page rendering
::: tip tip
This method is comparatively less performant and consumes more resources, only use when necessary or your pull requests might be rejected.
:::
Some websites provides no API and pages require rendering too, use puppeteer render the pages via Headless Chrome and then use cheerio for scraping the relevant data and assign them to ctx.state.data, typically it looks like this: /routes/sspai/series.js
Enable caching
All routes has a default cache expiry time set in config.js, it should be increased when the data source is not subject to frequent updates.
Add to cache:
ctx.cache.set((key: string), (value: string), (time: number)); // time: the cache expiry time in seconds
Access the cache:
const value = await ctx.cache.get((key: string));
In this example: /routes/zhihu/daily.js, the full text of each article is required resulting in many requests being sent. The update frequency for this source is known (daily), we can safely set the cache to a day to avoid wasting resources.
Data
Assign the acquired data to ctx.state.data, the middleware template.js will then process the data and render the RSS output /views/rss.art, the list of parameters:
ctx.state.data = {
title: '', // The feed title
link: '', // The feed link
description: '', // The feed description
item: [
// An article of the feed
{
title: '', // The article title
description: '', // The article content
pubDate: '', // The article publishing datetime
guid: '', // The article unique identifier, optional, default to the article link below
link: '', // The article link
},
],
};
If you want to make a podcast feed
Reference article:
- Create a podcast - Apple
- Itunes podcast XML generator : https://codepen.io/jon-walstedt/pen/jsIup
- Feed Validation Service : https://podba.se/validate/?url=https://rsshub.app/ximalaya/album/299146/
these datas can make your podcast subscribeable:
ctx.state.data = {
title: '', // The feed title
link: '', // The feed link
itunes_author: '', // The channel's author, you must fill this data.
itunes_category: '', // Channel category
image: '', // Channel's image
description: '', // The feed description
item: [
// An item of the feed
{
title: '', // The item title
description: '', // The item content
pubDate: '', // The item publishing datetime
guid: '', // The item unique identifier, optional, default to the item link below.
link: '', // The item link
itunes_item_image: '', // The item image
enclosure_url: '', // The item's audio link
enclosure_length: '', // The audio length, the unit is seconds.
enclosure_type: '', // 'audio/mpeg' or 'audio/x-m4a' or others
itunes_duration: '', // Covert the 'enclosure_length' to hh:mm:ss (1:33:52)
},
],
};