a4b9611e66
- Do not add spaces after opening or before closing parenthesis // Wrong if( !is_null($var) ) { ... } // Right if(!is_null($var)) { ... } - Add space after closing parenthesis // Wrong if(true){ ... } // Right if(true) { ... } - Add body into new line - Close body in new line // Wrong if(true) { ... } // Right if(true) { ... } Notice: Spaces after keywords are not detected: // Wrong (not detected) // -> space after 'if' and missing space after 'else' if (true) { ... } else{ ... } // Right if(true) { ... } else { ... }
35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
<?php
|
|
class MsnMondeBridge extends BridgeAbstract {
|
|
|
|
const MAINTAINER = 'kranack';
|
|
const NAME = 'MSN Actu Monde';
|
|
const URI = 'http://www.msn.com/';
|
|
const DESCRIPTION = 'Returns the 10 newest posts from MSN Actualités (full text)';
|
|
|
|
public function getURI(){
|
|
return self::URI . 'fr-fr/actualite/monde';
|
|
}
|
|
|
|
private function msnMondeExtractContent($url, &$item){
|
|
$html2 = getSimpleHTMLDOM($url);
|
|
$item['content'] = $html2->find('#content', 0)->find('article', 0)->find('section', 0)->plaintext;
|
|
$item['timestamp'] = strtotime($html2->find('.authorinfo-txt', 0)->find('time', 0)->datetime);
|
|
}
|
|
|
|
public function collectData(){
|
|
$html = getSimpleHTMLDOM($this->getURI())
|
|
or returnServerError('Could not request MsnMonde.');
|
|
|
|
$limit = 0;
|
|
foreach($html->find('.smalla') as $article) {
|
|
if($limit < 10) {
|
|
$item = array();
|
|
$item['title'] = utf8_decode($article->find('h4', 0)->innertext);
|
|
$item['uri'] = self::URI . utf8_decode($article->find('a', 0)->href);
|
|
$this->msnMondeExtractContent($item['uri'], $item);
|
|
$this->items[] = $item;
|
|
$limit++;
|
|
}
|
|
}
|
|
}
|
|
}
|