forked from blallo/rss-bridge
a4b9611e66
- Do not add spaces after opening or before closing parenthesis // Wrong if( !is_null($var) ) { ... } // Right if(!is_null($var)) { ... } - Add space after closing parenthesis // Wrong if(true){ ... } // Right if(true) { ... } - Add body into new line - Close body in new line // Wrong if(true) { ... } // Right if(true) { ... } Notice: Spaces after keywords are not detected: // Wrong (not detected) // -> space after 'if' and missing space after 'else' if (true) { ... } else{ ... } // Right if(true) { ... } else { ... }
45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?php
|
|
class CADBridge extends FeedExpander {
|
|
const MAINTAINER = 'nyutag';
|
|
const NAME = 'CAD Bridge';
|
|
const URI = 'http://www.cad-comic.com/';
|
|
const CACHE_TIMEOUT = 7200; //2h
|
|
const DESCRIPTION = 'Returns the newest articles.';
|
|
|
|
public function collectData(){
|
|
$this->collectExpandableDatas('http://cdn2.cad-comic.com/rss.xml', 10);
|
|
}
|
|
|
|
protected function parseItem($newsItem){
|
|
$item = parent::parseItem($newsItem);
|
|
$item['content'] = $this->extractCADContent($item['uri']);
|
|
return $item;
|
|
}
|
|
|
|
private function extractCADContent($url) {
|
|
$html3 = getSimpleHTMLDOMCached($url);
|
|
|
|
// The request might fail due to missing https support or wrong URL
|
|
if($html3 == false)
|
|
return 'Daily comic not released yet';
|
|
|
|
$htmlpart = explode("/", $url);
|
|
|
|
switch ($htmlpart[3]) {
|
|
case 'cad':
|
|
preg_match_all("/http:\/\/cdn2\.cad-comic\.com\/comics\/cad-\S*png/", $html3, $url2);
|
|
break;
|
|
case 'sillies':
|
|
preg_match_all("/http:\/\/cdn2\.cad-comic\.com\/comics\/sillies-\S*gif/", $html3, $url2);
|
|
break;
|
|
default:
|
|
return 'Daily comic not released yet';
|
|
}
|
|
$img = implode($url2[0]);
|
|
$html3->clear();
|
|
unset($html3);
|
|
if ($img == '')
|
|
return 'Daily comic not released yet';
|
|
return '<img src="' . $img . '"/>';
|
|
}
|
|
}
|