NextImpactBridge Improvements

- Add subtitle
- Add news main image
- Add thumbnail rss field
- Add author rss field
- Minor code cleanup
This commit is contained in:
ORelio 2015-09-04 18:11:00 +02:00
parent 063ee612cf
commit 80fe041f32

View file

@ -9,34 +9,39 @@
* @description Returns the newest articles. * @description Returns the newest articles.
* @maintainer qwertygc * @maintainer qwertygc
*/ */
class NextInpactBridge extends BridgeAbstract{ class NextInpactBridge extends BridgeAbstract {
public function collectData(array $param){ public function collectData(array $param) {
function StripCDATA($string) { function StripCDATA($string) {
$string = str_replace('<![CDATA[', '', $string); $string = str_replace('<![CDATA[', '', $string);
$string = str_replace(']]>', '', $string); $string = str_replace(']]>', '', $string);
return $string; return $string;
} }
function ExtractContent($url) { function ExtractContent($url) {
$html2 = file_get_html($url); $html2 = file_get_html($url);
$text = '<h2>'.$html2->find('div#actu_entete > h2', 0)->innertext.'</h2><br><br>'; $text = '<p><em>'.$html2->find('span.sub_title', 0)->innertext.'</em></p>'
$text = $text.$html2->find('div[itemprop=articleBody]', 0)->innertext; .'<p><img src="'.$html2->find('div.container_main_image_article', 0)->find('img.dedicated',0)->src.'" /></p>'
return $text; .'<div>'.$html2->find('div[itemprop=articleBody]', 0)->innertext.'</div>';
return $text;
} }
$html = file_get_html('http://www.nextinpact.com/rss/news.xml') or $this->returnError('Could not request Nextinpact.', 404); $html = file_get_html('http://www.nextinpact.com/rss/news.xml') or $this->returnError('Could not request Nextinpact.', 404);
$limit = 0; $limit = 0;
foreach($html->find('item') as $element) { foreach($html->find('item') as $element) {
if($limit < 3) { if($limit < 3) {
$item = new \Item(); $item = new \Item();
$item->title = StripCDATA($element->find('title', 0)->innertext); $item->title = StripCDATA($element->find('title', 0)->innertext);
$item->uri = StripCDATA($element->find('guid', 0)->plaintext); $item->uri = StripCDATA($element->find('guid', 0)->plaintext);
$item->timestamp = strtotime($element->find('pubDate', 0)->plaintext); $item->thumbnailUri = StripCDATA($element->find('enclosure', 0)->url);
$item->content = ExtractContent($item->uri); $item->author = StripCDATA($element->find('author', 0)->innertext);
$this->items[] = $item; $item->timestamp = strtotime($element->find('pubDate', 0)->plaintext);
$limit++; $item->content = ExtractContent($item->uri);
} $this->items[] = $item;
$limit++;
}
} }
} }