rss-bridge/README.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

230 lines
8.7 KiB
Markdown
Raw Normal View History

2022-08-06 23:22:50 +02:00
# RSS-Bridge
![RSS-Bridge](static/logo_600px.png)
2022-08-06 23:22:50 +02:00
RSS-Bridge is a PHP project capable of generating RSS and Atom feeds for websites that don't have one.
[![LICENSE](https://img.shields.io/badge/license-UNLICENSE-blue.svg)](UNLICENSE)
[![GitHub release](https://img.shields.io/github/release/rss-bridge/rss-bridge.svg?logo=github)](https://github.com/rss-bridge/rss-bridge/releases/latest)
2022-01-20 06:09:57 +01:00
[![irc.libera.chat](https://img.shields.io/badge/irc.libera.chat-%23rssbridge-blue.svg)](https://web.libera.chat/#rssbridge)
[![Chat on Matrix](https://matrix.to/img/matrix-badge.svg)](https://matrix.to/#/#rssbridge:libera.chat)
[![Actions Status](https://img.shields.io/github/workflow/status/RSS-Bridge/rss-bridge/Tests/master?label=GitHub%20Actions&logo=github)](https://github.com/RSS-Bridge/rss-bridge/actions)
2022-08-06 23:22:50 +02:00
Screenshot of the Twitter bridge configuration:
2022-08-06 23:22:50 +02:00
![Screenshot #1](/static/twitter-form.png?raw=true)
2022-08-06 23:22:50 +02:00
Screenshot of the Twitter bridge for Rasmus Lerdorf:
2022-08-06 23:22:50 +02:00
![Screenshot #2](/static/twitter-rasmus.png?raw=true)
2022-08-06 23:22:50 +02:00
[Documentation](https://rss-bridge.github.io/rss-bridge/index.html)
2013-08-11 13:30:41 +02:00
2022-08-06 23:22:50 +02:00
Check out RSS-Bridge right now on https://rss-bridge.org/bridge01 or find another
[public instance](https://rss-bridge.github.io/rss-bridge/General/Public_Hosts.html).
2022-08-06 23:22:50 +02:00
## Tutorial
2018-09-16 18:20:35 +02:00
2022-08-06 23:22:50 +02:00
### Install with git:
2018-09-16 18:20:35 +02:00
2022-08-06 23:22:50 +02:00
```bash
cd /var/www
git clone https://github.com/RSS-Bridge/rss-bridge.git
2022-08-06 23:22:50 +02:00
# Give the http user write permission to the cache folder
chown www-data:www-data /var/www/rss-bridge/cache
2013-08-11 22:44:05 +02:00
2022-08-06 23:22:50 +02:00
# Optionally copy over the default config file
cp config.default.ini.php config.ini.php
2013-08-12 22:46:16 +02:00
2022-08-06 23:22:50 +02:00
# Optionally copy over the default whitelist file
cp whitelist.default.txt whitelist.txt
```
2018-09-16 18:20:35 +02:00
2022-08-06 23:22:50 +02:00
Example config for nginx:
2013-08-12 22:46:16 +02:00
2022-08-06 23:22:50 +02:00
```nginx
# /etc/nginx/sites-enabled/rssbridge
server {
listen 80;
# server_name example.com;
root /var/www/rss-bridge;
index index.php;
2022-08-06 23:22:50 +02:00
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php-fpm.sock;
}
}
```
2013-08-07 00:31:25 +02:00
2022-08-06 23:22:50 +02:00
### Install with Docker:
2018-09-16 18:20:35 +02:00
2022-08-06 23:22:50 +02:00
Install by using docker image from Docker Hub:
2022-08-06 23:22:50 +02:00
```bash
# Create container
docker create --name=rss-bridge --publish 3000:80 rssbridge/rss-bridge
2018-09-16 18:20:35 +02:00
2022-08-06 23:22:50 +02:00
# Start container
docker start rss-bridge
```
2014-05-26 00:47:33 +02:00
2022-08-06 23:22:50 +02:00
Browse http://localhost:3000/
2018-09-16 18:20:35 +02:00
2022-08-06 23:22:50 +02:00
Install by locally building the image:
2014-05-26 00:47:33 +02:00
2022-08-06 23:22:50 +02:00
```bash
# Build image from Dockerfile
docker build -t rss-bridge .
2022-08-06 23:22:50 +02:00
# Create container
docker create --name rss-bridge --publish 3000:80 rss-bridge
2018-09-16 18:20:35 +02:00
2022-08-06 23:22:50 +02:00
# Start the container
docker start rss-bridge
```
Browse http://localhost:3000/
### Alternative installation methods
2018-09-16 18:20:35 +02:00
[![Deploy on Scalingo](https://cdn.scalingo.com/deploy/button.svg)](https://my.scalingo.com/deploy?source=https://github.com/sebsauvage/rss-bridge)
[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)
[![Deploy to Cloudron](https://cloudron.io/img/button.svg)](https://www.cloudron.io/store/com.rssbridgeapp.cloudronapp.html)
2022-08-06 23:22:50 +02:00
The Heroku quick deploy currently does not work. It might possibly work if you fork this repo and
modify the `repository` in `scalingo.json`. See https://github.com/RSS-Bridge/rss-bridge/issues/2688
Learn more in
[Installation](https://rss-bridge.github.io/rss-bridge/For_Hosts/Installation.html).
### Create a bridge
Create the new bridge in `bridges/ExecuteBridge.php`:
```php
<?php
class ExecuteBridge extends BridgeAbstract
{
const NAME = 'Execute Program Blog';
public function collectData()
{
$url = 'https://www.executeprogram.com/api/pages/blog';
$data = json_decode(getContents($url));
foreach ($data->posts as $post) {
$this->items[] = [
'uri' => sprintf('https://www.executeprogram.com/blog/%s', $post->slug),
'title' => $post->title,
'content' => $post->body,
];
}
}
}
```
Learn more in [bridge api](https://rss-bridge.github.io/rss-bridge/Bridge_API/index.html).
## How-to
### How to enable all bridges
Write an asterisks in `whitelist.txt`:
echo '*' > whitelist.txt
Learn more in [enabling briges](https://rss-bridge.github.io/rss-bridge/For_Hosts/Whitelisting.html)
2018-09-16 18:20:35 +02:00
2022-08-06 23:22:50 +02:00
### How to enable a bridge
2018-09-16 18:20:35 +02:00
2022-08-06 23:22:50 +02:00
Add the bridge name to `whitelist.txt`:
2018-09-16 18:20:35 +02:00
2022-08-06 23:22:50 +02:00
echo 'FirefoxAddonsBridge' >> whitelist.txt
2018-09-16 18:20:35 +02:00
2022-08-06 23:22:50 +02:00
### How to enable debug mode
Create a file named `DEBUG`:
touch DEBUG
Learn more in [debug mode](https://rss-bridge.github.io/rss-bridge/For_Developers/Debug_mode.html).
### How to create a new output format
[Create a new format](https://rss-bridge.github.io/rss-bridge/Format_API/index.html).
## Explanation
We are RSS-Bridge community, a group of developers continuing the project initiated by sebsauvage,
webmaster of
[sebsauvage.net](https://sebsauvage.net), author of
[Shaarli](https://sebsauvage.net/wiki/doku.php?id=php:shaarli) and
[ZeroBin](https://sebsauvage.net/wiki/doku.php?id=php:zerobin).
2018-09-16 18:20:35 +02:00
See [CONTRIBUTORS.md](CONTRIBUTORS.md)
2022-08-06 23:22:50 +02:00
RSS-Bridge uses caching to prevent services from banning your server for repeatedly updating feeds.
The specific cache duration can be different between bridges. Cached files are deleted automatically after 24 hours.
RSS-Bridge allows you to take full control over which bridges are displayed to the user.
That way you can host your own RSS-Bridge service with your favorite collection of bridges!
Supported output formats:
* `Atom` : Atom feed, for use in feed readers
* `Html` : Simple HTML page
* `Json` : JSON, for consumption by other applications
* `Mrss` : MRSS feed, for use in feed readers
* `Plaintext` : Raw text, for consumption by other applications
## Reference
### A selection of bridges
* `Bandcamp` : Returns last release from [bandcamp](https://bandcamp.com/) for a tag
* `Cryptome` : Returns the most recent documents from [Cryptome.org](https://cryptome.org/)
* `DansTonChat`: Most recent quotes from [danstonchat.com](https://danstonchat.com/)
* `DuckDuckGo`: Most recent results from [DuckDuckGo.com](https://duckduckgo.com/)
* `Facebook` : Returns the latest posts on a page or profile on [Facebook](https://facebook.com/) (There is an [issue](https://github.com/RSS-Bridge/rss-bridge/issues/2047) for public instances)
* `FlickrExplore` : [Latest interesting images](https://www.flickr.com/explore) from Flickr
* `GoogleSearch` : Most recent results from Google Search
* `Identi.ca` : Identica user timeline (Should be compatible with other Pump.io instances)
* `Instagram`: Most recent photos from an Instagram user (It is recommended to [configure](https://rss-bridge.github.io/rss-bridge/Bridge_Specific/Instagram.html) this bridge to work)
* `OpenClassrooms`: Lastest tutorials from [openclassrooms.com](https://openclassrooms.com/)
* `Pinterest`: Most recent photos from user or search
* `ScmbBridge`: Newest stories from [secouchermoinsbete.fr](https://secouchermoinsbete.fr/)
* `ThePirateBay` : Returns the newest indexed torrents from [The Pirate Bay](https://thepiratebay.se/) with keywords
* `Twitter` : Return keyword/hashtag search or user timeline
* `Wikipedia`: highlighted articles from [Wikipedia](https://wikipedia.org/) in English, German, French or Esperanto
* `YouTube` : YouTube user channel, playlist or search
And [many more](bridges/), thanks to the community!
### Licenses
2018-09-16 18:20:35 +02:00
The source code for RSS-Bridge is [Public Domain](UNLICENSE).
RSS-Bridge uses third party libraries with their own license:
2014-05-21 17:21:53 +02:00
2022-04-16 23:03:15 +02:00
* [`Parsedown`](https://github.com/erusev/parsedown) licensed under the [MIT License](https://opensource.org/licenses/MIT)
* [`PHP Simple HTML DOM Parser`](https://simplehtmldom.sourceforge.io/docs/1.9/index.html) licensed under the [MIT License](https://opensource.org/licenses/MIT)
* [`php-urljoin`](https://github.com/fluffy-critter/php-urljoin) licensed under the [MIT License](https://opensource.org/licenses/MIT)
2022-06-09 18:11:27 +02:00
* [`Laravel framework`](https://github.com/laravel/framework/) licensed under the [MIT License](https://opensource.org/licenses/MIT)
2022-08-06 23:22:50 +02:00
## Rant
*Dear so-called "social" websites.*
2015-12-06 16:32:41 +01:00
Your catchword is "share", but you don't want us to share. You want to keep us within your walled gardens. That's why you've been removing RSS links from webpages, hiding them deep on your website, or removed feeds entirely, replacing it with crippled or demented proprietary API. **FUCK YOU.**
2018-09-16 18:20:35 +02:00
You're not social when you hamper sharing by removing feeds. You're happy to have customers creating content for your ecosystem, but you don't want this content out - a content you do not even own. Google Takeout is just a gimmick. We want our data to flow, we want RSS or Atom feeds.
2018-09-16 18:20:35 +02:00
We want to share with friends, using open protocols: RSS, Atom, XMPP, whatever. Because no one wants to have *your* service with *your* applications using *your* API force-feeding them. Friends must be free to choose whatever software and service they want.
2021-03-10 18:13:41 +01:00
We are rebuilding bridges you have willfully destroyed.
2018-09-16 18:20:35 +02:00
Get your shit together: Put RSS/Atom back in.