2014-07-14 17:41:09 +00:00
|
|
|
<?php
|
2016-09-05 16:43:56 +00:00
|
|
|
class DeveloppezDotComBridge extends FeedExpander {
|
2014-07-14 17:41:09 +00:00
|
|
|
|
2017-02-11 15:16:56 +00:00
|
|
|
const MAINTAINER = 'polopollo';
|
|
|
|
const NAME = 'Developpez.com Actus (FR)';
|
|
|
|
const URI = 'https://www.developpez.com/';
|
2016-09-25 15:04:28 +00:00
|
|
|
const CACHE_TIMEOUT = 1800; // 30min
|
2017-02-11 15:16:56 +00:00
|
|
|
const DESCRIPTION = 'Returns the 15 newest posts from DeveloppezDotCom (full text).';
|
2015-11-03 22:28:44 +00:00
|
|
|
|
2016-09-05 16:43:56 +00:00
|
|
|
public function collectData(){
|
2016-09-05 18:26:45 +00:00
|
|
|
$this->collectExpandableDatas(self::URI . 'index/rss', 15);
|
2016-09-05 16:43:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function parseItem($newsItem){
|
2016-09-12 08:42:27 +00:00
|
|
|
$item = parent::parseItem($newsItem);
|
2017-02-11 15:16:56 +00:00
|
|
|
$item['content'] = $this->extractContent($item['uri']);
|
2016-09-05 16:43:56 +00:00
|
|
|
return $item;
|
|
|
|
}
|
|
|
|
|
2016-07-08 17:06:35 +00:00
|
|
|
// F***ing quotes from Microsoft Word badly encoded, here was the trick:
|
2016-08-03 10:42:57 +00:00
|
|
|
// http://stackoverflow.com/questions/1262038/how-to-replace-microsoft-encoded-quotes-in-php
|
2017-02-11 15:16:56 +00:00
|
|
|
private function convertSmartQuotes($string)
|
2016-08-03 10:37:56 +00:00
|
|
|
{
|
|
|
|
$search = array(chr(145),
|
|
|
|
chr(146),
|
|
|
|
chr(147),
|
|
|
|
chr(148),
|
|
|
|
chr(151));
|
2014-07-14 17:41:09 +00:00
|
|
|
|
2017-02-11 15:16:56 +00:00
|
|
|
$replace = array(
|
|
|
|
"'",
|
|
|
|
"'",
|
|
|
|
'"',
|
|
|
|
'"',
|
|
|
|
'-'
|
|
|
|
);
|
2014-07-16 00:31:54 +00:00
|
|
|
|
2016-08-03 10:37:56 +00:00
|
|
|
return str_replace($search, $replace, $string);
|
|
|
|
}
|
2014-07-16 00:31:54 +00:00
|
|
|
|
2017-02-11 15:16:56 +00:00
|
|
|
private function extractContent($url){
|
2016-09-25 21:22:33 +00:00
|
|
|
$articleHTMLContent = getSimpleHTMLDOMCached($url);
|
2017-02-11 15:16:56 +00:00
|
|
|
$text = $this->convertSmartQuotes($articleHTMLContent->find('div.content', 0)->innertext);
|
2016-08-03 10:37:56 +00:00
|
|
|
$text = utf8_encode($text);
|
|
|
|
return trim($text);
|
|
|
|
}
|
2014-07-14 17:41:09 +00:00
|
|
|
}
|