Fix indentation and remove empty lines

This commit is contained in:
logmanoriginal 2016-08-03 20:14:59 +02:00
parent 2a02023c8a
commit 83d7f138ed

View file

@ -2,67 +2,66 @@
class LeJournalDuGeekBridge extends BridgeAbstract{ class LeJournalDuGeekBridge extends BridgeAbstract{
public function loadMetadatas() { public function loadMetadatas() {
$this->maintainer = "polopollo"; $this->maintainer = "polopollo";
$this->name = "journaldugeek.com (FR)"; $this->name = "journaldugeek.com (FR)";
$this->uri = "http://www.journaldugeek.com/"; $this->uri = "http://www.journaldugeek.com/";
$this->description = "Returns the 5 newest posts from LeJournalDuGeek (full text)."; $this->description = "Returns the 5 newest posts from LeJournalDuGeek (full text).";
$this->update = "2016-08-03"; $this->update = "2016-08-03";
} }
function LeJournalDuGeekStripCDATA($string) { function LeJournalDuGeekStripCDATA($string) {
$string = str_replace('<![CDATA[', '', $string); $string = str_replace('<![CDATA[', '', $string);
$string = str_replace(']]>', '', $string); $string = str_replace(']]>', '', $string);
return $string; return $string;
} }
function LeJournalDuGeekExtractContent($url) { function LeJournalDuGeekExtractContent($url) {
$articleHTMLContent = $this->file_get_html($url); $articleHTMLContent = $this->file_get_html($url);
$text = $text.$articleHTMLContent->find('div.post-content', 0)->innertext; $text = $text.$articleHTMLContent->find('div.post-content', 0)->innertext;
foreach($articleHTMLContent->find('a.more') as $element) {
if ($element->innertext == "Source") {
$text = $text.'<p><a href="'.$element->href.'">Source : '.$element->href.'</a></p>';
break;
}
}
foreach($articleHTMLContent->find('iframe') as $element) {
if (preg_match("/youtube/i", $element->src)) {
$text = $text.'// An IFRAME to Youtube was included in the article: <a href="'.$element->src.'">'.$element->src.'</a><br>';
}
}
$text = strip_tags($text, '<p><b><a><blockquote><img><em><br/><br><ul><li>'); foreach($articleHTMLContent->find('a.more') as $element) {
return $text; if ($element->innertext == "Source") {
} $text = $text . '<p><a href="' . $element->href . '">Source : ' . $element->href . '</a></p>';
break;
}
}
public function collectData(array $param){ foreach($articleHTMLContent->find('iframe') as $element) {
$rssFeed = $this->file_get_html('http://www.journaldugeek.com/rss') or $this->returnError('Could not request http://www.journaldugeek.com/rss', 404); if (preg_match("/youtube/i", $element->src)) {
$limit = 0; $text = $text . '// An IFRAME to Youtube was included in the article: <a href="' . $element->src . '">' . $element->src . '</a><br>';
}
}
foreach($rssFeed->find('item') as $element) { $text = strip_tags($text, '<p><b><a><blockquote><img><em><br/><br><ul><li>');
if($limit < 5) { return $text;
$item = new \Item(); }
$item->title = $this->LeJournalDuGeekStripCDATA($element->find('title', 0)->innertext);
$item->uri = $this->LeJournalDuGeekStripCDATA($element->find('guid', 0)->plaintext);
$item->timestamp = strtotime($element->find('pubDate', 0)->plaintext);
$item->content = $this->LeJournalDuGeekExtractContent($item->uri);
$this->items[] = $item;
$limit++;
}
}
} public function collectData(array $param){
$rssFeed = $this->file_get_html('http://www.journaldugeek.com/rss') or $this->returnError('Could not request http://www.journaldugeek.com/rss', 404);
$limit = 0;
public function getName(){ foreach($rssFeed->find('item') as $element) {
return 'LeJournalDuGeek'; if($limit < 5) {
} $item = new \Item();
$item->title = $this->LeJournalDuGeekStripCDATA($element->find('title', 0)->innertext);
$item->uri = $this->LeJournalDuGeekStripCDATA($element->find('guid', 0)->plaintext);
$item->timestamp = strtotime($element->find('pubDate', 0)->plaintext);
$item->content = $this->LeJournalDuGeekExtractContent($item->uri);
$this->items[] = $item;
$limit++;
}
}
}
public function getURI(){ public function getName(){
return 'http://www.journaldugeek.com/'; return 'LeJournalDuGeek';
} }
public function getCacheDuration(){ public function getURI(){
return 1800; // 30min return 'http://www.journaldugeek.com/';
} }
public function getCacheDuration(){
return 1800; // 30min
}
} }