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
|
|
|
|
2016-08-30 11:23:55 +02:00
|
|
|
const MAINTAINER = "polopollo";
|
|
|
|
const NAME = "Developpez.com Actus (FR)";
|
|
|
|
const URI = "http://www.developpez.com/";
|
|
|
|
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);
|
2016-09-05 18:43:56 +02:00
|
|
|
$item['content'] = $this->DeveloppezDotComExtractContent($item['uri']);
|
|
|
|
return $item;
|
|
|
|
}
|
|
|
|
|
2016-08-06 16:00:56 +02:00
|
|
|
private function DeveloppezDotComStripCDATA($string) {
|
2016-08-03 12:37:56 +02:00
|
|
|
$string = str_replace('<![CDATA[', '', $string);
|
|
|
|
$string = str_replace(']]>', '', $string);
|
|
|
|
return $string;
|
|
|
|
}
|
2014-07-14 19:41:09 +02:00
|
|
|
|
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
|
2016-08-06 16:00:56 +02:00
|
|
|
private function convert_smart_quotes($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
|
|
|
|
2016-08-03 12:37:56 +02: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
|
|
|
|
2016-08-06 16:00:56 +02:00
|
|
|
private function DeveloppezDotComExtractContent($url) {
|
2016-09-25 23:22:33 +02:00
|
|
|
$articleHTMLContent = getSimpleHTMLDOMCached($url);
|
2016-08-03 12:37:56 +02:00
|
|
|
$text = $this->convert_smart_quotes($articleHTMLContent->find('div.content', 0)->innertext);
|
|
|
|
$text = utf8_encode($text);
|
|
|
|
return trim($text);
|
|
|
|
}
|
2014-07-16 02:31:54 +02:00
|
|
|
|
2016-08-03 12:42:57 +02:00
|
|
|
public function getCacheDuration(){
|
|
|
|
return 1800; // 30min
|
|
|
|
}
|
2014-07-14 19:41:09 +02:00
|
|
|
}
|