Rss-Bridge/README.md

78 lines
3.4 KiB
Markdown
Raw Normal View History

rss-bridge
===
2013-08-12 23:20:48 +02:00
rss-bridge is a php script capable of generating ATOM feed for specific pages which don't have one.
Supported sites/pages
===
2013-08-11 13:30:41 +02:00
* `FlickrExplore` : [Latest interesting images](http://www.flickr.com/explore) from Flickr.
2013-08-12 22:54:09 +02:00
* `GoogleSearch` : Most recent results from Google Search.
2013-08-12 22:43:22 +02:00
* `Twitter` : Twitter. Can return keyword/hashtag search or user timeline.
2013-08-15 13:31:30 +02:00
* `Identi.ca` : Identita user timeline (Should be compatible with other Pump.io instances).
* `YouTube` : YouTube user channel feed.
* `Cryptome` : Returns the most recent documents from Cryptome.org.
2013-08-11 13:30:41 +02:00
Output format
===
Output format can take several forms:
* `Atom` : ATOM Feed, for use in RSS/Feed readers
2013-08-12 22:43:22 +02:00
* `Json` : Json, for consumption by other applications.
* `Html` : Simple html page.
2013-08-11 13:30:41 +02:00
* `Plaintext` : raw text (php object, as returned by print_r)
2013-08-11 22:44:05 +02:00
Screenshot
===
2013-08-12 22:46:16 +02:00
Welcome screen:
![Screenshot](http://sebsauvage.net/galerie/photos/Bordel/rss-bridge-screenshot-3.png)
2013-08-11 22:44:05 +02:00
2013-08-12 22:46:16 +02:00
Minecraft hashtag (#Minecraft) search on Twitter, in ATOM format (as displayed by Firefox):
![Screenshot](http://sebsauvage.net/galerie/photos/Bordel/rss-bridge-screenshot-2-twitter-hashtag.png)
2013-08-07 00:31:25 +02:00
Requirements
===
* php 5.3
* [PHP Simple HTML DOM Parser](http://simplehtmldom.sourceforge.net). (Put `simple_html_dom.php` in `vendor/simplehtmldom/`).
2013-08-11 13:34:36 +02:00
* Ssl lib activated in PHP config
2013-08-07 00:31:25 +02:00
Author
===
I'm sebsauvage, webmaster of [sebsauvage.net](http://sebsauvage.net), author of [Shaarli](http://sebsauvage.net/wiki/doku.php?id=php:shaarli) and [ZeroBin](http://sebsauvage.net/wiki/doku.php?id=php:zerobin).
Patch :
* Yves ASTIER ([Draeli](https://github.com/Draeli)) : PHP optimizations, fixes, dynamic brigde/format list with all stuff behind and extend cache system. Mail : contact@yves-astier.com
2013-08-15 13:31:30 +02:00
* [Mitsukarenai](https://github.com/Mitsukarenai) : Initial inspiration, TwitterBridge, IdenticaBridge, YoutubeBridge.
Licence
===
Code is public domain.
Technical notes
===
* There is a cache so that source services won't ban you even if you hammer the rss-bridge with requests. Each bridge has a different duration for the cache. The `cache` subdirectory will be automatically created. You can purge it whenever you want.
* To implement a new rss-bridge, create a new class in `bridges` subdirectory. Look at existing bridges for examples. For items you generate in `$this->items`, only `uri` and `title` are mandatory in each item. `timestamp` and `content` are optional but recommended. Any additional key will be ignored by ATOM feed (but outputed to jSon).
Rant
===
*Dear so-called "social" websites.*
Your catchword is <20>share<72>, 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 RSS entirely, replacing it with crippled or demented proprietary API. **FUCK YOU.**
You're not social when you hamper sharing by removing RSS. You're happy to have customers create 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.
2013-08-07 00:33:06 +02:00
We want to share with friends, using open protocols: RSS, XMPP, whatever. Because no one wants to have *your* service with *your* applications using *your* API forced-feeded to them. Friends must be free to choose whatever software and service they want.
We are rebuilding bridges your have wilfully destroyed.
Get your shit together: Put RSS back in.