summaryrefslogtreecommitdiff
path: root/bridges/GizmodoBridge.php
blob: 35f162b8ce0e9e6915a1f1b7d9f7f747c6adf722 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
class GizmodoBridge extends FeedExpander {

	const MAINTAINER = 'polopollo';
	const NAME = 'Gizmodo';
	const URI = 'http://gizmodo.com/';
	const CACHE_TIMEOUT = 1800; // 30min
	const DESCRIPTION = 'Returns the newest posts from Gizmodo (full text).';

	protected function parseItem($item){
		$item = parent::parseItem($item);

		$articleHTMLContent = getSimpleHTMLDOMCached($item['uri']);
		if(!$articleHTMLContent) {
			$text = 'Could not load ' . $item['uri'];
		} else {
			$text = $articleHTMLContent->find('div.entry-content', 0)->innertext;
			foreach($articleHTMLContent->find('pagespeed_iframe') as $element) {
				$text .= '<p>link to a iframe (could be a video): <a href="'
				. $element->src
				. '">'
				. $element->src
				. '</a></p><br>';
			}

			$text = strip_tags($text, '<p><b><a><blockquote><img><em>');
		}

		$item['content'] = $text;
		return $item;
	}

	public function collectData(){
		$this->collectExpandableDatas('http://feeds.gawker.com/gizmodo/full');
	}
}