PageRenderTime 47ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/README.md

https://github.com/nanawel/rss-bridge
Markdown | 103 lines | 73 code | 30 blank | 0 comment | 0 complexity | a991cf1980013be09fb8c334e3422bc4 MD5 | raw file
Possible License(s): Unlicense
  1. rss-bridge
  2. ===
  3. rss-bridge is a PHP project capable of generating ATOM feeds for websites which don't have one.
  4. Supported sites/pages (main)
  5. ===
  6. * `FlickrExplore` : [Latest interesting images](http://www.flickr.com/explore) from Flickr
  7. * `GoogleSearch` : Most recent results from Google Search
  8. * `Twitter` : Return keyword/hashtag search or user timeline
  9. * `Identi.ca` : Identica user timeline (Should be compatible with other Pump.io instances)
  10. * `YouTube` : YouTube user channel, playlist or search
  11. * `Cryptome` : Returns the most recent documents from [Cryptome.org](http://cryptome.org/)
  12. * `DansTonChat`: Most recent quotes from [danstonchat.com](http://danstonchat.com/)
  13. * `DuckDuckGo`: Most recent results from [DuckDuckGo.com](https://duckduckgo.com/)
  14. * `Instagram`: Most recent photos from an Instagram user
  15. * `OpenClassrooms`: Lastest tutorials from [fr.openclassrooms.com](http://fr.openclassrooms.com/)
  16. * `Pinterest`: Most recent photos from user or search
  17. * `ScmbBridge`: Newest stories from [secouchermoinsbete.fr](http://secouchermoinsbete.fr/)
  18. * `WikipediaENLatest`: highlighted articles from Wikipedia in English
  19. * `WikipediaFRLatest`: highlighted articles from Wikipedia in French
  20. * `WikipediaEOLatest`: highlighted articles from Wikipedia in Esperanto
  21. * `Bandcamp` : Returns last release from [bandcamp](https://bandcamp.com/) for a tag
  22. Plus [many other bridges](bridges/) to enable, thanks to the community
  23. Output format
  24. ===
  25. Output format can take several forms:
  26. * `Atom` : ATOM Feed, for use in RSS/Feed readers
  27. * `Json` : Json, for consumption by other applications.
  28. * `Html` : Simple html page.
  29. * `Plaintext` : raw text (php object, as returned by print_r)
  30. Screenshot
  31. ===
  32. Welcome screen:
  33. ![Screenshot](http://sebsauvage.net/galerie/photos/Bordel/rss-bridge-screenshot-3.png)
  34. Minecraft hashtag (#Minecraft) search on Twitter, in ATOM format (as displayed by Firefox):
  35. ![Screenshot](http://sebsauvage.net/galerie/photos/Bordel/rss-bridge-screenshot-2-twitter-hashtag.png)
  36. Requirements
  37. ===
  38. * PHP 5.3
  39. * `openssl` extension enabled in PHP config (`php.ini`)
  40. Enabling/Disabling bridges
  41. ===
  42. By default, the script creates `whitelist.txt` and adds the main bridges (see above). `whitelist.txt` is ignored by git, you can edit it:
  43. * to enable extra bridges (one bridge per line)
  44. * to disable main bridges (remove the line)
  45. New bridges are disabled by default, so make sure to check regularly what's new and whitelist what you want !
  46. Author
  47. ===
  48. 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).
  49. Patch/contributors :
  50. * 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
  51. * [Mitsukarenai](https://github.com/Mitsukarenai) : Initial inspiration, collaborator
  52. * [ArthurHoaro](https://github.com/ArthurHoaro)
  53. * [BoboTiG](https://github.com/BoboTiG)
  54. * [Astalaseven](https://github.com/Astalaseven)
  55. * [qwertygc](https://github.com/qwertygc)
  56. * [Djuuu](https://github.com/Djuuu)
  57. * [Anadrark](https://github.com/Anadrark])
  58. License
  59. ===
  60. Code is [Public Domain](UNLICENSE).
  61. Including `PHP Simple HTML DOM Parser` under the [MIT License](http://opensource.org/licenses/MIT)
  62. Technical notes
  63. ===
  64. * 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.
  65. * 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).
  66. Rant
  67. ===
  68. *Dear so-called "social" websites.*
  69. 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 RSS entirely, replacing it with crippled or demented proprietary API. **FUCK YOU.**
  70. You're not social when you hamper sharing by removing RSS. 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.
  71. 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 force-feeding them. Friends must be free to choose whatever software and service they want.
  72. We are rebuilding bridges you have wilfully destroyed.
  73. Get your shit together: Put RSS back in.