mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-01 13:07:43 -05:00
* Add core extension for Google Groups #Fix https://github.com/FreshRSS/FreshRSS/issues/2835 Add ability to discover RSS feeds for Google Groups Based on https://github.com/FreshRSS/FreshRSS/pull/2837 * Allow HTTP in addition of HTTPS
11 lines
338 B
PHP
11 lines
338 B
PHP
<?php
|
|
class GoogleGroupsExtension extends Minz_Extension {
|
|
public function init() {
|
|
$this->registerHook('check_url_before_add', array('GoogleGroupsExtension', 'findFeed'));
|
|
}
|
|
|
|
public static function findFeed($url) {
|
|
return preg_replace('%^(https?://groups.google.com/forum)/#!forum/(.+)$%i', '$1/feed/$2/msgs/rss.xml', $url);
|
|
}
|
|
}
|