<?php
class CADBridge extends BridgeAbstract{
	public $maintainer = "nyutag";
	public $name = "CAD Bridge";
	public $uri = "http://www.cad-comic.com/";
	public $description = "Returns the newest articles.";

	private function CADExtractContent($url) {
		$html3 = $this->getSimpleHTMLDOM($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.'"/>';
	}

	public function collectData(){
		function CADUrl($string) {
			$html2 = explode("\"", $string);
			$string = $html2[1];
			if (substr($string,0,4) != 'http')
				return 'notanurl';
			return $string;
		}

		$html = $this->getSimpleHTMLDOM('http://cdn2.cad-comic.com/rss.xml') or $this->returnServerError('Could not request CAD.');
		$limit = 0;

		foreach($html->find('item') as $element) {
			if($limit < 5) {
				$item = array();
				$item['title'] = $element->find('title', 0)->innertext;
				$item['uri'] = CADUrl($element->find('description', 0)->innertext);
				if ($item['uri'] != 'notanurl') {
					$item['timestamp'] = strtotime($element->find('pubDate', 0)->plaintext);
					$item['content'] = $this->CADExtractContent($item['uri']);
					$this->items[] = $item;
					$limit++;
				}
			}
		}
	}

	public function getCacheDuration(){
		return 3600*2; // 2 hours
	}
}
?>