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