ajout des scriptsd e Superbaillot
This commit is contained in:
parent
6b9074da2a
commit
4857cdbedc
2 changed files with 100 additions and 0 deletions
43
bridges/Dilbert.php
Normal file
43
bridges/Dilbert.php
Normal file
|
@ -0,0 +1,43 @@
|
|||
<?php
|
||||
/**
|
||||
*
|
||||
* @name Dilbert Daily Strip
|
||||
* @description The Unofficial Dilbert Daily Comic Strip RSS Feed via rss-bridge
|
||||
* @update 16/10/2013
|
||||
*/
|
||||
class DilbertBridge extends BridgeAbstract{
|
||||
|
||||
public function collectData(array $param){
|
||||
$html = file_get_html('http://dilbert.com/strips/') or $this->returnError('Could not request Dilbert.', 404);
|
||||
|
||||
foreach($html->find('div.STR_Image') as $element) {
|
||||
$item = new Item();
|
||||
$href = $element->find('a',0)->href;
|
||||
$item->uri = 'http://dilbert.com' . $href;
|
||||
$content = str_replace('src="/', 'src="http://dilbert.com/',$element->innertext);
|
||||
$content = str_replace('href="/', 'href="http://dilbert.com/',$content);
|
||||
$item->content = $content;
|
||||
$time = strtotime(substr($href, (strrpos($href, "/", -10) + 1), 10));
|
||||
$item->title = date("d/m/Y", $time);
|
||||
$item->timestamp = $time;
|
||||
$this->items[] = $item;
|
||||
}
|
||||
}
|
||||
|
||||
public function getName(){
|
||||
return 'Dilbert';
|
||||
}
|
||||
|
||||
public function getURI(){
|
||||
return 'http://dilbert.com';
|
||||
}
|
||||
|
||||
public function getDescription(){
|
||||
return 'Dilbert via rss-bridge';
|
||||
}
|
||||
|
||||
public function getCacheDuration(){
|
||||
return 14400; // 4 hours
|
||||
}
|
||||
}
|
||||
?>
|
57
bridges/LesJoiesDuCode.php
Normal file
57
bridges/LesJoiesDuCode.php
Normal file
|
@ -0,0 +1,57 @@
|
|||
<?php
|
||||
/**
|
||||
*
|
||||
* @name Les Joies Du Code
|
||||
* @description LesJoiesDuCode via rss-bridge
|
||||
* @update 30/01/2014
|
||||
*/
|
||||
class LesJoiesDuCodeBridge extends BridgeAbstract{
|
||||
|
||||
public function collectData(array $param){
|
||||
$html = file_get_html('http://lesjoiesducode.fr/') or $this->returnError('Could not request LesJoiesDuCode.', 404);
|
||||
|
||||
foreach($html->find('div.post') as $element) {
|
||||
$item = new Item();
|
||||
$temp = $element->find('h3 a', 0);
|
||||
|
||||
$titre = $temp->innertext;
|
||||
$url = $temp->href;
|
||||
|
||||
$temp = $element->find('div.bodytype', 0);
|
||||
$content = $temp->innertext;
|
||||
|
||||
$auteur = $temp->find('.c1 em', 0);
|
||||
$pos = strpos($auteur->innertext, "by");
|
||||
|
||||
if($pos > 0)
|
||||
{
|
||||
$auteur = trim(str_replace("*/", "", substr($auteur->innertext, ($pos + 2))));
|
||||
$item->name = $auteur;
|
||||
}
|
||||
|
||||
|
||||
$item->content .= trim($content);
|
||||
$item->uri = $url;
|
||||
$item->title = trim($titre);
|
||||
|
||||
$this->items[] = $item;
|
||||
}
|
||||
}
|
||||
|
||||
public function getName(){
|
||||
return 'Les Joies Du Code';
|
||||
}
|
||||
|
||||
public function getURI(){
|
||||
return 'http://lesjoiesducode.fr/';
|
||||
}
|
||||
|
||||
public function getCacheDuration(){
|
||||
return 7200; // 2h hours
|
||||
}
|
||||
public function getDescription(){
|
||||
return "Les Joies Du Code via rss-bridge";
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
Loading…
Reference in a new issue