2014-07-14 20:12:52 +02:00
|
|
|
<?php
|
|
|
|
class LeJournalDuGeekBridge extends BridgeAbstract{
|
|
|
|
|
2015-11-03 23:28:44 +01:00
|
|
|
public function loadMetadatas() {
|
|
|
|
$this->maintainer = "polopollo";
|
|
|
|
$this->name = "journaldugeek.com (FR)";
|
|
|
|
$this->uri = "http://www.journaldugeek.com/";
|
|
|
|
$this->description = "Returns the 5 newest posts from LeJournalDuGeek (full text).";
|
2016-08-03 20:14:59 +02:00
|
|
|
}
|
2015-11-03 23:28:44 +01:00
|
|
|
|
2016-08-06 16:00:56 +02:00
|
|
|
private function LeJournalDuGeekStripCDATA($string) {
|
2016-08-03 20:14:59 +02:00
|
|
|
$string = str_replace('<![CDATA[', '', $string);
|
|
|
|
$string = str_replace(']]>', '', $string);
|
|
|
|
return $string;
|
2015-11-03 23:28:44 +01:00
|
|
|
}
|
|
|
|
|
2016-08-06 16:00:56 +02:00
|
|
|
private function LeJournalDuGeekExtractContent($url) {
|
2016-08-21 19:23:35 +02:00
|
|
|
$articleHTMLContent = $this->getSimpleHTMLDOM($url);
|
2016-08-03 20:34:30 +02:00
|
|
|
$text = $articleHTMLContent->find('div.post-content', 0)->innertext;
|
2014-07-14 20:12:52 +02:00
|
|
|
|
2016-08-03 20:14:59 +02:00
|
|
|
foreach($articleHTMLContent->find('a.more') as $element) {
|
|
|
|
if ($element->innertext == "Source") {
|
|
|
|
$text = $text . '<p><a href="' . $element->href . '">Source : ' . $element->href . '</a></p>';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-07-14 20:12:52 +02:00
|
|
|
|
2016-08-03 20:14:59 +02:00
|
|
|
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>';
|
|
|
|
}
|
|
|
|
}
|
2016-08-03 20:11:25 +02:00
|
|
|
|
2016-08-03 20:32:26 +02:00
|
|
|
$text = preg_replace('#<script(.*?)>(.*?)</script>#is', '', $text);
|
2016-08-03 20:14:59 +02:00
|
|
|
$text = strip_tags($text, '<p><b><a><blockquote><img><em><br/><br><ul><li>');
|
|
|
|
return $text;
|
|
|
|
}
|
2014-07-14 20:12:52 +02:00
|
|
|
|
2016-08-03 20:14:59 +02:00
|
|
|
public function collectData(array $param){
|
2016-07-08 19:06:35 +02:00
|
|
|
$rssFeed = $this->getSimpleHTMLDOM('http://www.journaldugeek.com/rss') or $this->returnServerError('Could not request http://www.journaldugeek.com/rss');
|
2016-08-03 20:14:59 +02:00
|
|
|
$limit = 0;
|
2014-07-14 20:12:52 +02:00
|
|
|
|
2016-08-03 20:14:59 +02:00
|
|
|
foreach($rssFeed->find('item') as $element) {
|
|
|
|
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++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-14 20:12:52 +02:00
|
|
|
|
2016-08-03 20:14:59 +02:00
|
|
|
public function getCacheDuration(){
|
|
|
|
return 1800; // 30min
|
|
|
|
}
|
2014-07-14 20:12:52 +02:00
|
|
|
}
|