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