2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
|
|
|
class TheCodingLoveBridge extends BridgeAbstract{
|
|
|
|
|
2015-11-05 12:20:11 +01:00
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = "superbaillot.net";
|
|
|
|
$this->name = "The Coding Love";
|
|
|
|
$this->uri = "http://thecodinglove.com/";
|
|
|
|
$this->description = "The Coding Love";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
public function collectData(array $param){
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM('http://thecodinglove.com/') or $this->returnServerError('Could not request The Coding Love.');
|
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
foreach($html->find('div.post') as $element) {
|
|
|
|
$item = new Item();
|
|
|
|
$temp = $element->find('h3 a', 0);
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
$titre = $temp->innertext;
|
|
|
|
$url = $temp->href;
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
$temp = $element->find('div.bodytype', 0);
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2015-02-04 14:05:34 +01:00
|
|
|
// retrieve .gif instead of static .jpg
|
|
|
|
$images = $temp->find('p.e img');
|
|
|
|
foreach($images as $image){
|
|
|
|
$img_src = str_replace(".jpg",".gif",$image->src);
|
|
|
|
$image->src = $img_src;
|
|
|
|
}
|
|
|
|
$content = $temp->innertext;
|
|
|
|
|
2015-02-07 22:47:17 +01:00
|
|
|
$auteur = $temp->find('i', 0);
|
2014-05-26 00:30:46 +02:00
|
|
|
$pos = strpos($auteur->innertext, "by");
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
if($pos > 0)
|
|
|
|
{
|
|
|
|
$auteur = trim(str_replace("*/", "", substr($auteur->innertext, ($pos + 2))));
|
2016-08-09 14:54:44 +02:00
|
|
|
$item->author = $auteur;
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
2016-07-08 19:06:35 +02:00
|
|
|
|
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
$item->content .= trim($content);
|
|
|
|
$item->uri = $url;
|
|
|
|
$item->title = trim($titre);
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 7200; // 2h hours
|
|
|
|
}
|
|
|
|
}
|