forked from blallo/rss-bridge
Merge pull request #311 from LogMANOriginal/DeveloppezDotComBridge
Developpez dot com bridge
This commit is contained in:
commit
6ff73d47bb
1 changed files with 53 additions and 55 deletions
|
@ -2,74 +2,72 @@
|
||||||
class DeveloppezDotComBridge extends BridgeAbstract{
|
class DeveloppezDotComBridge extends BridgeAbstract{
|
||||||
|
|
||||||
public function loadMetadatas() {
|
public function loadMetadatas() {
|
||||||
|
|
||||||
$this->maintainer = "polopollo";
|
$this->maintainer = "polopollo";
|
||||||
$this->name = "Developpez.com Actus (FR)";
|
$this->name = "Developpez.com Actus (FR)";
|
||||||
$this->uri = "http://www.developpez.com/";
|
$this->uri = "http://www.developpez.com/";
|
||||||
$this->description = "Returns the 15 newest posts from DeveloppezDotCom (full text).";
|
$this->description = "Returns the 15 newest posts from DeveloppezDotCom (full text).";
|
||||||
$this->update = "2014-07-14";
|
$this->update = "2016-08-03";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function collectData(array $param){
|
function DeveloppezDotComStripCDATA($string) {
|
||||||
|
$string = str_replace('<![CDATA[', '', $string);
|
||||||
|
$string = str_replace(']]>', '', $string);
|
||||||
|
return $string;
|
||||||
|
}
|
||||||
|
|
||||||
function DeveloppezDotComStripCDATA($string) {
|
// F***ing quotes from Microsoft Word badly encoded, here was the trick:
|
||||||
$string = str_replace('<![CDATA[', '', $string);
|
// http://stackoverflow.com/questions/1262038/how-to-replace-microsoft-encoded-quotes-in-php
|
||||||
$string = str_replace(']]>', '', $string);
|
function convert_smart_quotes($string)
|
||||||
return $string;
|
{
|
||||||
}
|
$search = array(chr(145),
|
||||||
|
chr(146),
|
||||||
|
chr(147),
|
||||||
|
chr(148),
|
||||||
|
chr(151));
|
||||||
|
|
||||||
function convert_smart_quotes($string)//F***ing quotes from Microsoft Word badly encoded, here was the trick: http://stackoverflow.com/questions/1262038/how-to-replace-microsoft-encoded-quotes-in-php
|
$replace = array("'",
|
||||||
{
|
"'",
|
||||||
$search = array(chr(145),
|
'"',
|
||||||
chr(146),
|
'"',
|
||||||
chr(147),
|
'-');
|
||||||
chr(148),
|
|
||||||
chr(151));
|
|
||||||
|
|
||||||
$replace = array("'",
|
return str_replace($search, $replace, $string);
|
||||||
"'",
|
}
|
||||||
'"',
|
|
||||||
'"',
|
|
||||||
'-');
|
|
||||||
|
|
||||||
return str_replace($search, $replace, $string);
|
function DeveloppezDotComExtractContent($url) {
|
||||||
}
|
$articleHTMLContent = $this->file_get_html($url);
|
||||||
|
$text = $this->convert_smart_quotes($articleHTMLContent->find('div.content', 0)->innertext);
|
||||||
|
$text = utf8_encode($text);
|
||||||
|
return trim($text);
|
||||||
|
}
|
||||||
|
|
||||||
function DeveloppezDotComExtractContent($url) {
|
public function collectData(array $param){
|
||||||
$articleHTMLContent = $this->file_get_html($url);
|
$rssFeed = $this->file_get_html('http://www.developpez.com/index/rss') or $this->returnError('Could not request http://www.developpez.com/index/rss', 404);
|
||||||
$text = convert_smart_quotes($articleHTMLContent->find('div.content', 0)->innertext);
|
$limit = 0;
|
||||||
$text = utf8_encode($text);
|
|
||||||
return trim($text);
|
|
||||||
}
|
|
||||||
|
|
||||||
$rssFeed = $this->file_get_html('http://www.developpez.com/index/rss') or $this->returnError('Could not request http://www.developpez.com/index/rss', 404);
|
foreach($rssFeed->find('item') as $element) {
|
||||||
$limit = 0;
|
if($limit < 10) {
|
||||||
|
$item = new \Item();
|
||||||
|
$item->title = $this->DeveloppezDotComStripCDATA($element->find('title', 0)->innertext);
|
||||||
|
$item->uri = $this->DeveloppezDotComStripCDATA($element->find('guid', 0)->plaintext);
|
||||||
|
$item->timestamp = strtotime($element->find('pubDate', 0)->plaintext);
|
||||||
|
$content = $this->DeveloppezDotComExtractContent($item->uri);
|
||||||
|
$item->content = strlen($content) ? $content : $element->description; //In case of it is a tutorial, we just keep the original description
|
||||||
|
$this->items[] = $item;
|
||||||
|
$limit++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
foreach($rssFeed->find('item') as $element) {
|
public function getName(){
|
||||||
if($limit < 10) {
|
return 'DeveloppezDotCom';
|
||||||
$item = new \Item();
|
}
|
||||||
$item->title = DeveloppezDotComStripCDATA($element->find('title', 0)->innertext);
|
|
||||||
$item->uri = DeveloppezDotComStripCDATA($element->find('guid', 0)->plaintext);
|
|
||||||
$item->timestamp = strtotime($element->find('pubDate', 0)->plaintext);
|
|
||||||
$content = DeveloppezDotComExtractContent($item->uri);
|
|
||||||
$item->content = strlen($content) ? $content : $element->description;//In case of it is a tutorial, we just keep the original description
|
|
||||||
$this->items[] = $item;
|
|
||||||
$limit++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
public function getURI(){
|
||||||
|
return 'http://www.developpez.com/';
|
||||||
|
}
|
||||||
|
|
||||||
public function getName(){
|
public function getCacheDuration(){
|
||||||
return 'DeveloppezDotCom';
|
return 1800; // 30min
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getURI(){
|
|
||||||
return 'http://www.developpez.com/';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getCacheDuration(){
|
|
||||||
return 1800; // 30min
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue