returnError('Error.', 500);
+ $html = file_get_html('http://www.courrierinternational.com/') or $this->returnError('Error.', 500);
- $element = $html->find(".type-normal");
+ $element = $html->find("article");
- $article_count = 1;
+ $article_count = 1;
- foreach($element as $article) {
+ foreach($element as $article) {
- $item = new \Item();
+ $item = new \Item();
- $item->uri = "http://www.courrierinternational.com".$article->find("a")[0]->getAttribute("href");
- $item->content = fetchArticle("http://www.courrierinternational.com".$article->find("a")[0]->getAttribute("href"));
- $item->title = strip_tags($article->find("h2")[0]);
+ $item->uri = $article->parent->getAttribute("href");
- $dateTime = date_parse($article->find("time")[0]);
+ if(strpos($item->uri, "http") === FALSE) {
+ $item->uri = "http://courrierinternational.fr/".$item->uri;
+ }
+
+ $page = file_get_html($item->uri);
- $item->timestamp = mktime(
+ $cleaner = new HTMLSanitizer();
+
+ $item->content = $cleaner->sanitize($page->find("div.article-text")[0]);
+ $item->title = strip_tags($article->find(".title")[0]);
+
+ $dateTime = date_parse($page->find("time")[0]);
+
+ $item->timestamp = mktime(
$dateTime['hour'],
$dateTime['minute'],
$dateTime['second'],
$dateTime['month'],
$dateTime['day'],
$dateTime['year']
- );
+ );
- $this->items[] = $item;
- $article_count ++;
- if($article_count > 5) break;
+ $this->items[] = $item;
+ $article_count ++;
+ if($article_count > 5) break;
- }
+ }
diff --git a/bridges/Freenews.php b/bridges/Freenews.php
index ecdd4610..b2e27c9c 100644
--- a/bridges/Freenews.php
+++ b/bridges/Freenews.php
@@ -28,9 +28,9 @@ class Freenews extends RssExpander {
$item->title = trim($newsItem->title);
// $this->message("item has for title \"".$item->title."\"");
if(empty($newsItem->guid)) {
- $item->uri = $newsItem->link;
+ $item->uri = (string) $newsItem->link;
} else {
- $item->uri = $newsItem->guid;
+ $item->uri = (string) $newsItem->guid;
}
// now load that uri from cache
// $this->message("now loading page ".$item->uri);
diff --git a/bridges/FuturaSciencesBridge.php b/bridges/FuturaSciencesBridge.php
new file mode 100644
index 00000000..222c7cdd
--- /dev/null
+++ b/bridges/FuturaSciencesBridge.php
@@ -0,0 +1,219 @@
+maintainer = 'ORelio';
+ $this->name = $this->getName();
+ $this->uri = $this->getURI();
+ $this->description = 'Returns the newest articles.';
+ $this->update = '2016-03-20';
+
+ $this->parameters[] =
+ '[
+ {
+ "name" : "Feed",
+ "type" : "list",
+ "identifier" : "feed",
+ "values" :
+ [
+ { "name" : "---- Select ----", "value" : "" },
+
+ { "name" : "", "value" : "" },
+ { "name" : "Les flux multi-magazines", "value" : "" },
+
+ { "name" : " Les dernières actualités de Futura-Sciences", "value" : "actualites" },
+ { "name" : " Les dernières définitions de Futura-Sciences", "value" : "definitions" },
+ { "name" : " Les dernières photos de Futura-Sciences", "value" : "photos" },
+ { "name" : " Les dernières questions - réponses de Futura-Sciences", "value" : "questions-reponses" },
+ { "name" : " Les derniers dossiers de Futura-Sciences", "value" : "dossiers" },
+
+ { "name" : "", "value" : "" },
+ { "name" : "Les flux Services", "value" : "" },
+
+ { "name" : " Les cartes virtuelles de Futura-Sciences", "value" : "services/cartes-virtuelles" },
+ { "name" : " Les fonds d\'écran de Futura-Sciences", "value" : "services/fonds-ecran" },
+
+ { "name" : "", "value" : "" },
+ { "name" : "Les flux Santé", "value" : "" },
+
+ { "name" : " Les dernières actualités de Futura-Santé", "value" : "sante/actualites" },
+ { "name" : " Les dernières définitions de Futura-Santé", "value" : "sante/definitions" },
+ { "name" : " Les dernières questions-réponses de Futura-Santé", "value" : "sante/questions-reponses" },
+ { "name" : " Les derniers dossiers de Futura-Santé", "value" : "sante/dossiers" },
+
+ { "name" : "", "value" : "" },
+ { "name" : "Les flux High-Tech", "value" : "" },
+
+ { "name" : " Les dernières actualités de Futura High-Tech", "value" : "high-tech/actualites" },
+ { "name" : " Les dernières astuces de Futura High-Tech", "value" : "high-tech/questions-reponses" },
+ { "name" : " Les dernières définitions de Futura High-Tech", "value" : "high-tech/definitions" },
+ { "name" : " Les derniers dossiers de Futura High-Tech", "value" : "high-tech/dossiers" },
+
+ { "name" : "", "value" : "" },
+ { "name" : "Les flux Espace", "value" : "" },
+
+ { "name" : " Les dernières actualités de Futura-Espace", "value" : "espace/actualites" },
+ { "name" : " Les dernières définitions de Futura-Espace", "value" : "espace/definitions" },
+ { "name" : " Les dernières questions-réponses de Futura-Espace", "value" : "espace/questions-reponses" },
+ { "name" : " Les derniers dossiers de Futura-Espace", "value" : "espace/dossiers" },
+
+ { "name" : "", "value" : "" },
+ { "name" : "Les flux Environnement", "value" : "" },
+
+ { "name" : " Les dernières actualités de Futura-Environnement", "value" : "environnement/actualites" },
+ { "name" : " Les dernières définitions de Futura-Environnement", "value" : "environnement/definitions" },
+ { "name" : " Les dernières questions - réponses de Futura-Environnement", "value" : "environnement/questions-reponses" },
+ { "name" : " Les derniers dossiers de Futura-Environnement", "value" : "environnement/dossiers" },
+
+ { "name" : "", "value" : "" },
+ { "name" : "Les flux Maison", "value" : "" },
+
+ { "name" : " Les dernières actualités de Futura-Maison", "value" : "maison/actualites" },
+ { "name" : " Les dernières astuces de Futura-Maison", "value" : "maison/questions-reponses" },
+ { "name" : " Les dernières définitions de Futura-Maison", "value" : "maison/definitions" },
+ { "name" : " Les derniers dossiers de Futura-Maison", "value" : "maison/dossiers" },
+
+ { "name" : "", "value" : "" },
+ { "name" : "Les flux Nature", "value" : "" },
+
+ { "name" : " Les dernières actualités de Futura-Nature", "value" : "nature/actualites" },
+ { "name" : " Les dernières définitions de Futura-Nature", "value" : "nature/definitions" },
+ { "name" : " Les dernières questions-réponses de Futura-Nature", "value" : "nature/questions-reponses" },
+ { "name" : " Les derniers dossiers de Futura-Nature", "value" : "nature/dossiers" },
+
+ { "name" : "", "value" : "" },
+ { "name" : "Les flux Terre", "value" : "" },
+
+ { "name" : " Les dernières actualités de Futura-Terre", "value" : "terre/actualites" },
+ { "name" : " Les dernières définitions de Futura-Terre", "value" : "terre/definitions" },
+ { "name" : " Les dernières questions-réponses de Futura-Terre", "value" : "terre/questions-reponses" },
+ { "name" : " Les derniers dossiers de Futura-Terre", "value" : "terre/dossiers" },
+
+ { "name" : "", "value" : "" },
+ { "name" : "Les flux Matière", "value" : "" },
+
+ { "name" : " Les dernières actualités de Futura-Matière", "value" : "matiere/actualites" },
+ { "name" : " Les dernières définitions de Futura-Matière", "value" : "matiere/definitions" },
+ { "name" : " Les dernières questions-réponses de Futura-Matière", "value" : "matiere/questions-reponses" },
+ { "name" : " Les derniers dossiers de Futura-Matière", "value" : "matiere/dossiers" },
+
+ { "name" : "", "value" : "" },
+ { "name" : "Les flux Mathématiques", "value" : "" },
+
+ { "name" : " Les dernières actualités de Futura-Mathématiques", "value" : "mathematiques/actualites" },
+ { "name" : " Les derniers dossiers de Futura-Mathématiques", "value" : "mathematiques/dossiers" }
+ ]
+ }
+ ]';
+
+ }
+
+ public function collectData(array $param) {
+
+ function StripCDATA($string) {
+ $string = str_replace('', '', $string);
+ return $string;
+ }
+
+ function StripWithDelimiters($string, $start, $end) {
+ while (strpos($string, $start) !== false) {
+ $section_to_remove = substr($string, strpos($string, $start));
+ $section_to_remove = substr($section_to_remove, 0, strpos($section_to_remove, $end) + strlen($end));
+ $string = str_replace($section_to_remove, '', $string);
+ } return $string;
+ }
+
+ function StripRecursiveHTMLSection($string, $tag_name, $tag_start) {
+ $open_tag = '<'.$tag_name;
+ $close_tag = ''.$tag_name.'>';
+ $close_tag_length = strlen($close_tag);
+ if (strpos($tag_start, $open_tag) === 0) {
+ while (strpos($string, $tag_start) !== false) {
+ $max_recursion = 100;
+ $section_to_remove = null;
+ $section_start = strpos($string, $tag_start);
+ $search_offset = $section_start;
+ do {
+ $max_recursion--;
+ $section_end = strpos($string, $close_tag, $search_offset);
+ $search_offset = $section_end + $close_tag_length;
+ $section_to_remove = substr($string, $section_start, $section_end - $section_start + $close_tag_length);
+ $open_tag_count = substr_count($section_to_remove, $open_tag);
+ $close_tag_count = substr_count($section_to_remove, $close_tag);
+ } while ($open_tag_count > $close_tag_count && $max_recursion > 0);
+ $string = str_replace($section_to_remove, '', $string);
+ }
+ }
+ return $string;
+ }
+
+ if (empty($param['feed']))
+ $this->returnError('Please select a feed to display.'.$url, 400);
+ if ($param['feed'] !== preg_replace('/[^a-zA-Z-\/]+/', '', $param['feed']) || substr_count($param['feed'], '/') > 1 || strlen($param['feed'] > 64))
+ $this->returnError('Invalid "feed" parameter.'.$url, 400);
+
+ $url = $this->getURI().'rss/'.$param['feed'].'.xml';
+ $html = file_get_html($url) or $this->returnError('Could not request Futura-Sciences: '.$url, 500);
+ $limit = 0;
+
+ foreach($html->find('item') as $element) {
+ if ($limit < 10) {
+ $article_url = str_replace('#xtor=RSS-8', '', StripCDATA($element->find('guid', 0)->plaintext));
+ $article = file_get_html($article_url) or $this->returnError('Could not request Futura-Sciences: '.$article_url, 500);
+ $contents = $article->find('div.content', 0)->innertext;
+ $author = trim(str_replace(', Futura-Sciences', '', $article->find('span.author', 0)->plaintext));
+ if (empty($author))
+ $author = StripCDATA($element->find('author', 0)->plaintext);
+
+ foreach (array(
+ '
');
+ $contents = StripWithDelimiters($contents, '
');
+ $contents = StripWithDelimiters($contents, 'fs:definition="', '"');
+ $contents = StripWithDelimiters($contents, 'fs:xt:clicktype="', '"');
+ $contents = StripWithDelimiters($contents, 'fs:xt:clickname="', '"');
+
+ $item = new \Item();
+ $item->author = $author;
+ $item->uri = $article_url;
+ $item->title = StripCDATA($element->find('title', 0)->innertext);
+ $item->thumbnailUri = StripCDATA($element->find('enclosure', 0)->url);
+ $item->timestamp = strtotime(StripCDATA($element->find('pubDate', 0)->plaintext));
+ $item->content = trim($contents);
+ $this->items[] = $item;
+ $limit++;
+ }
+ }
+
+ }
+
+ public function getName() {
+ return 'Futura-Sciences Bridge';
+ }
+
+ public function getURI() {
+ return 'http://www.futura-sciences.com/';
+ }
+
+ public function getCacheDuration() {
+ return 3600;
+ }
+}
diff --git a/bridges/LichessBridge.php b/bridges/LichessBridge.php
new file mode 100644
index 00000000..97fddc3a
--- /dev/null
+++ b/bridges/LichessBridge.php
@@ -0,0 +1,61 @@
+maintainer = 'AmauryCarrade';
+ $this->name = $this->getName() . ' Bridge';
+ $this->uri = $this->getURI();
+ $this->description = 'Returns the 5 newest posts from the Lichess blog (full text)';
+ $this->update = "2016-03-22";
+ }
+
+ public function collectData(array $param)
+ {
+ $xml_feed = file_get_html('http://fr.lichess.org/blog.atom') or $this->returnError('Could not retrieve Lichess blog feed.', 404);
+
+ $posts_loaded = 0;
+ foreach($xml_feed->find('entry') as $entry)
+ {
+ if ($posts_loaded < 5)
+ {
+ $item = new \Item();
+
+ $item->title = html_entity_decode($entry->find('title', 0)->innertext);
+ $item->author = $entry->find('author', 0)->find('name', 0)->innertext;
+ $item->uri = $entry->find('id', 0)->plaintext;
+ $item->timestamp = strtotime($entry->find('published', 0)->plaintext);
+
+ $item->content = $this->retrieve_lichess_post($item->uri);
+
+ $this->items[] = $item;
+ $posts_loaded++;
+ }
+ }
+ }
+
+ private function retrieve_lichess_post($blog_post_uri)
+ {
+ $blog_post_html = file_get_html($blog_post_uri);
+ $blog_post_div = $blog_post_html->find('#lichess_blog', 0);
+
+ $post_chapo = $blog_post_div->find('.shortlede', 0)->innertext;
+ $post_content = $blog_post_div->find('.body', 0)->innertext;
+
+ $content = '
' . $post_chapo . '
';
+ $content .= '
' . $post_content . '
';
+
+ return $content;
+ }
+
+ public function getName()
+ {
+ return 'Lichess Blog';
+ }
+
+ public function getURI()
+ {
+ return 'http://lichess.org/blog';
+ }
+}
diff --git a/bridges/T411Bridge.php b/bridges/T411Bridge.php
index 54904cce..92f3c764 100644
--- a/bridges/T411Bridge.php
+++ b/bridges/T411Bridge.php
@@ -5,7 +5,7 @@ class T411Bridge extends BridgeAbstract {
$this->maintainer = "ORelio";
$this->name = "T411";
- $this->uri = "https://t411.in/";
+ $this->uri = $this->getURI();
$this->description = "Returns the 5 newest torrents with specified search terms
Use url part after '?' mark when using their search engine";
$this->update = "2016-02-06";
@@ -34,8 +34,8 @@ class T411Bridge extends BridgeAbstract {
$this->returnError('You must specify a search criteria', 400);
}
- //Retrieve torrent listing as truncated rss, which does not contain torrent description
- $url = 'http://www.t411.in/torrents/search/?'.$param['search'].'&order=added&type=desc';
+ //Retrieve torrent listing from search results, which does not contain torrent description
+ $url = $this->getURI().'torrents/search/?'.$param['search'].'&order=added&type=desc';
$html = file_get_html($url) or $this->returnError('Could not request t411: '.$url, 500);
$results = $html->find('table.results', 0);
if (is_null($results))
@@ -52,7 +52,7 @@ class T411Bridge extends BridgeAbstract {
usleep(500000); //So we need to wait (500ms)
//Retrieve data from RSS entry
- $item_uri = 'http://'.ExtractFromDelimiters($element->outertext, '
getURI().'torrents/details/?id='.ExtractFromDelimiters($element->find('a.nfo', 0)->outertext, '?id=', '"');
$item_title = ExtractFromDelimiters($element->outertext, '" title="', '"');
$item_date = strtotime($element->find('dd', 0)->plaintext);
@@ -64,7 +64,7 @@ class T411Bridge extends BridgeAbstract {
$item_author = $item_html->find('a.profile', 0)->innertext;
//Retrieve image for thumbnail or generic logo fallback
- $item_image = 'http://www.t411.in/themes/blue/images/logo.png';
+ $item_image = $this->getURI().'themes/blue/images/logo.png';
foreach ($item_desc->find('img') as $img) {
if (strpos($img->src, 'prez') === false) {
$item_image = $img->src;
@@ -92,7 +92,7 @@ class T411Bridge extends BridgeAbstract {
}
public function getURI() {
- return 'https://t411.in';
+ return 'https://t411.ch/';
}
public function getCacheDuration() {
diff --git a/bridges/TheOatMealBridge.php b/bridges/TheOatMealBridge.php
index 97aae693..9e8a0ff0 100644
--- a/bridges/TheOatMealBridge.php
+++ b/bridges/TheOatMealBridge.php
@@ -41,7 +41,7 @@ class TheOatmealBridge extends RssExpander{
$item = new Item();
$item->title = trim($newsItem->title);
$this->message("browsing Oatmeal item ".var_export($newsItem, true));
- $item->uri=$newsItem->attributes($namespaces['rdf'])->about;
+ $item->uri=(string) $newsItem->attributes($namespaces['rdf'])->about;
// now load that uri from cache
$this->message("now loading page ".$item->uri);
$articlePage = str_get_html($this->get_cached($item->uri));
@@ -53,7 +53,7 @@ class TheOatmealBridge extends RssExpander{
$item->content = $content->innertext;
$this->message("dc content is ".var_export($dc, true));
- $item->name = $dc->creator;
+ $item->name = (string) $dc->creator;
$item->timestamp = DateTime::createFromFormat(DateTime::ISO8601, $dc->date)->getTimestamp();
$this->message("writtem by ".$item->name." on ".$item->timestamp);
return $item;
diff --git a/bridges/VineBridge.php b/bridges/VineBridge.php
new file mode 100644
index 00000000..d9482e34
--- /dev/null
+++ b/bridges/VineBridge.php
@@ -0,0 +1,59 @@
+maintainer = "ckiw";
+ $this->name = "Vine bridge";
+ $this->uri = "http://vine.co/";
+ $this->description = "Returns the latests vines from vine user page";
+ $this->update = "2016-03-12";
+
+ $this->parameters[] =
+ '[
+ {
+ "name" : "User id",
+ "identifier" : "u",
+ "type" : "text",
+ "required" : "true"
+ }
+ ]';
+ }
+
+ public function collectData(array $param){
+ $html = '';
+ $uri = 'http://vine.co/u/'.$param['u'].'?mode=list';
+
+ $html = file_get_html($uri) or $this->returnError('No results for this query.', 404);
+
+ foreach($html->find('.post') as $element) {
+ $a = $element->find('a', 0);
+ $a->href = str_replace('https://', 'http://', $a->href);
+ $time = strtotime(ltrim($element->find('p', 0)->plaintext, " Uploaded at "));
+ $video = $element->find('video', 0);
+ $video->controls = "true";
+ $element->find('h2', 0)->outertext = '';
+
+ $item = new \Item();
+ $item->uri = $a->href;
+ $item->timestamp = $time;
+ $item->title = $a->plaintext;
+ $item->content = $element;
+
+ $this->items[] = $item;
+ }
+
+ }
+
+ public function getName(){
+ return 'Vine';
+ }
+
+ public function getURI(){
+ return 'http://vine.co';
+ }
+
+ public function getCacheDuration(){
+ return 10; //seconds
+ }
+}
diff --git a/bridges/VkBridge.php b/bridges/VkBridge.php
index 4aaf367e..abaf423e 100644
--- a/bridges/VkBridge.php
+++ b/bridges/VkBridge.php
@@ -1,64 +1,64 @@
-maintainer = "ahiles3005";
- $this->name = "VK.com";
- $this->uri = "http://www.vk.com/";
- $this->description = "Working with open pages";
- $this->update = "21/02/2016";
- $this->parameters["Url on page group or user"] = '[
- {
- "name" : "Url",
- "identifier" : "u"
- }
- ]';
- }
-
- public function collectData(array $param) {
- $html = '';
- if (isset($param['u'])) {
- $this->request = $param['u'];
- $text_html = file_get_contents(urldecode($this->request)) or $this->returnError('No results for this query.', 404);
- $text_html = iconv('windows-1251', 'utf-8', $text_html);
- $html = str_get_html($text_html);
- }
- foreach ($html->find('div.post_table') as $post) {
- if (is_object($post->find('a.wall_post_more', 0))) {
- $post->find('a.wall_post_more', 0)->outertext = ''; //delete link "show full" in content
- }
- $item = new \Item();
- $item->content = strip_tags($post->find('div.wall_post_text', 0)->innertext);
- if (is_object($post->find('a.page_media_link_title', 0))) {
- $link = $post->find('a.page_media_link_title', 0)->getAttribute('href');
- $item->content .= "\n\rExternal link: " . str_replace('/away.php?to=', '', urldecode($link)); //external link in the post
- }
- //get video on post
- if (is_object($post->find('span.post_video_title_content', 0))) {
- $titleVideo = $post->find('span.post_video_title_content', 0)->plaintext;
- $linkToVideo = 'https://vk.com' . $post->find('a.page_post_thumb_video', 0)->getAttribute('href');
- $item->content .= "\n\r {$titleVideo}: {$linkToVideo}";
- }
- $item->uri = 'https://vk.com' . $post->find('.reply_link_wrap', 0)->find('a', 0)->getAttribute('href'); // get post link
- $item->date = $post->find('span.rel_date', 0)->plaintext;
- $this->items[] = $item;
- // var_dump($item->date);
- }
- }
-
- public function getName() {
- return(isset($this->name) ? $this->name . ' - ' : '') . 'VK Bridge';
- }
-
- public function getURI() {
- return 'http://vk.com';
- }
-
- public function getCacheDuration() {
- return 300; // 5 minutes
- }
-
-}
+maintainer = "ahiles3005";
+ $this->name = "VK.com";
+ $this->uri = "http://www.vk.com/";
+ $this->description = "Working with open pages";
+ $this->update = "21/02/2016";
+ $this->parameters["Url on page group or user"] = '[
+ {
+ "name" : "Url",
+ "identifier" : "u"
+ }
+ ]';
+ }
+
+ public function collectData(array $param) {
+ $html = '';
+ if (isset($param['u'])) {
+ $this->request = $param['u'];
+ $text_html = file_get_contents(urldecode($this->request)) or $this->returnError('No results for this query.', 404);
+ $text_html = iconv('windows-1251', 'utf-8', $text_html);
+ $html = str_get_html($text_html);
+ }
+ foreach ($html->find('div.post_table') as $post) {
+ if (is_object($post->find('a.wall_post_more', 0))) {
+ $post->find('a.wall_post_more', 0)->outertext = ''; //delete link "show full" in content
+ }
+ $item = new \Item();
+ $item->content = strip_tags($post->find('div.wall_post_text', 0)->innertext);
+ if (is_object($post->find('a.page_media_link_title', 0))) {
+ $link = $post->find('a.page_media_link_title', 0)->getAttribute('href');
+ $item->content .= "\n\rExternal link: " . str_replace('/away.php?to=', '', urldecode($link)); //external link in the post
+ }
+ //get video on post
+ if (is_object($post->find('span.post_video_title_content', 0))) {
+ $titleVideo = $post->find('span.post_video_title_content', 0)->plaintext;
+ $linkToVideo = 'https://vk.com' . $post->find('a.page_post_thumb_video', 0)->getAttribute('href');
+ $item->content .= "\n\r {$titleVideo}: {$linkToVideo}";
+ }
+ $item->uri = 'https://vk.com' . $post->find('.reply_link_wrap', 0)->find('a', 0)->getAttribute('href'); // get post link
+ $item->date = $post->find('span.rel_date', 0)->plaintext;
+ $this->items[] = $item;
+ // var_dump($item->date);
+ }
+ }
+
+ public function getName() {
+ return(isset($this->name) ? $this->name . ' - ' : '') . 'VK Bridge';
+ }
+
+ public function getURI() {
+ return 'http://vk.com';
+ }
+
+ public function getCacheDuration() {
+ return 300; // 5 minutes
+ }
+
+}
diff --git a/bridges/ZoneTelechargementBridge.php b/bridges/ZoneTelechargementBridge.php
new file mode 100644
index 00000000..0f5b2dd7
--- /dev/null
+++ b/bridges/ZoneTelechargementBridge.php
@@ -0,0 +1,58 @@
+maintainer = 'ORelio';
+ $this->name = $this->getName();
+ $this->uri = $this->getURI();
+ $this->description = 'RSS proxy returning the newest releases.
You may specify a category found in RSS URLs, else main feed is selected.';
+ $this->update = "2016-03-16";
+
+ $this->parameters[] =
+ '[
+ {
+ "name" : "Category",
+ "identifier" : "category"
+ }
+ ]';
+ }
+
+ public function collectData(array $param) {
+
+ function StripCDATA($string) {
+ $string = str_replace('', '', $string);
+ return $string;
+ }
+
+ $category = '/';
+ if (!empty($param['category']))
+ $category = '/'.$param['category'].'/';
+
+ $url = $this->getURI().$category.'rss.xml';
+ $html = file_get_html($url) or $this->returnError('Could not request Zone Telechargement: '.$url, 500);
+
+ foreach($html->find('item') as $element) {
+ $item = new \Item();
+ $item->title = $element->find('title', 0)->plaintext;
+ $item->uri = str_replace('http://', 'https://', $element->find('guid', 0)->plaintext);
+ $item->timestamp = strtotime($element->find('pubDate', 0)->plaintext);
+ $item->content = StripCDATA($element->find('description', 0)->innertext);
+ $this->items[] = $item;
+ $limit++;
+ }
+ }
+
+ public function getName() {
+ return 'Zone Telechargement Bridge';
+ }
+
+ public function getURI() {
+ return 'https://www.zone-telechargement.com/';
+ }
+
+ public function getCacheDuration() {
+ return 3600;
+ }
+}
diff --git a/index.php b/index.php
index 783e91a2..a8f96fc4 100644
--- a/index.php
+++ b/index.php
@@ -14,7 +14,13 @@ TODO :
date_default_timezone_set('UTC');
error_reporting(0);
-//ini_set('display_errors','1'); error_reporting(E_ALL); // For debugging only.
+
+if(file_exists("DEBUG")) {
+
+ ini_set('display_errors','1'); error_reporting(E_ALL); //Report all errors
+ define("DEBUG", "true");
+
+}
require_once __DIR__ . '/lib/RssBridge.php';
@@ -84,7 +90,7 @@ try{
// Data retrieval
$bridge = Bridge::create($bridge);
- if(isset($_REQUEST["disable_cache"])) {
+ if(defined("DEBUG")) {
} else {
$bridge->setCache($cache); // just add disable cache to your query to disable caching
}