2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
2015-09-04 18:11:00 +02:00
|
|
|
class NextInpactBridge extends BridgeAbstract {
|
2014-07-14 20:39:41 +02:00
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = "qwertygc";
|
|
|
|
public $name = "NextInpact Bridge";
|
|
|
|
public $uri = "http://www.nextinpact.com/";
|
|
|
|
public $description = "Returns the newest articles.";
|
2015-11-04 10:47:21 +01:00
|
|
|
|
2016-08-06 16:00:56 +02:00
|
|
|
private function StripCDATA($string) {
|
2016-08-03 21:19:00 +02:00
|
|
|
$string = str_replace('<![CDATA[', '', $string);
|
|
|
|
$string = str_replace(']]>', '', $string);
|
|
|
|
return $string;
|
|
|
|
}
|
2015-09-04 18:11:00 +02:00
|
|
|
|
2016-08-06 16:00:56 +02:00
|
|
|
private function ExtractContent($url) {
|
2016-08-21 19:48:23 +02:00
|
|
|
$html2 = $this->getSimpleHTMLDOM($url);
|
2016-08-03 21:19:00 +02:00
|
|
|
$text = '<p><em>'.$html2->find('span.sub_title', 0)->innertext.'</em></p>'
|
|
|
|
.'<p><img src="'.$html2->find('div.container_main_image_article', 0)->find('img.dedicated',0)->src.'" alt="-" /></p>'
|
|
|
|
.'<div>'.$html2->find('div[itemprop=articleBody]', 0)->innertext.'</div>';
|
|
|
|
$premium_article = $html2->find('h2.title_reserve_article', 0);
|
|
|
|
if (is_object($premium_article))
|
|
|
|
$text = $text.'<p><em>'.$premium_article->innertext.'</em></p>';
|
|
|
|
return $text;
|
|
|
|
}
|
2015-09-04 18:11:00 +02:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM('http://www.nextinpact.com/rss/news.xml') or $this->returnServerError('Could not request NextInpact.');
|
2014-05-26 00:30:46 +02:00
|
|
|
$limit = 0;
|
|
|
|
|
|
|
|
foreach($html->find('item') as $element) {
|
|
|
|
if($limit < 3) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['title'] = $this->StripCDATA($element->find('title', 0)->innertext);
|
|
|
|
$item['uri'] = $this->StripCDATA($element->find('guid', 0)->plaintext);
|
|
|
|
$item['author'] = $this->StripCDATA($element->find('creator', 0)->innertext);
|
|
|
|
$item['timestamp'] = strtotime($element->find('pubDate', 0)->plaintext);
|
|
|
|
$item['content'] = $this->ExtractContent($item['uri']);
|
2015-09-04 18:11:00 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
$limit++;
|
|
|
|
}
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
2016-08-03 21:26:53 +02:00
|
|
|
}
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|