2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
|
|
|
class TheCodingLoveBridge extends BridgeAbstract{
|
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = "superbaillot.net";
|
|
|
|
public $name = "The Coding Love";
|
|
|
|
public $uri = "http://thecodinglove.com/";
|
|
|
|
public $description = "The Coding Love";
|
2015-11-05 12:20:11 +01:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
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) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
2014-05-26 00:30:46 +02:00
|
|
|
$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-22 18:55:59 +02:00
|
|
|
$item['author'] = $auteur;
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
2016-07-08 19:06:35 +02:00
|
|
|
|
|
|
|
|
2016-08-22 18:55:59 +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
|
|
|
|
}
|
|
|
|
}
|