summaryrefslogtreecommitdiff
path: root/bridges/WebfailBridge.php
blob: 2a637407fc24800805a4230ed3b8996d71454e10 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?php
class WebfailBridge extends BridgeAbstract {
	const MAINTAINER = 'logmanoriginal';
	const URI = 'https://webfail.com';
	const NAME = 'Webfail';
	const DESCRIPTION = 'Returns the latest fails';
	const PARAMETERS = array(
		'By content type' => array(
			'language' => array(
				'name' => 'Language',
				'type' => 'list',
				'title' => 'Select your language',
				'values' => array(
					'English' => 'en',
					'German' => 'de'
				),
				'defaultValue' => 'English'
			),
			'type' => array(
				'name' => 'Type',
				'type' => 'list',
				'title' => 'Select your content type',
				'values' => array(
					'None' => '/',
					'Facebook' => '/ffdts',
					'Images' => '/images',
					'Videos' => '/videos',
					'Gifs' => '/gifs'
				),
				'defaultValue' => 'None'
			)
		)
	);

	public function getURI(){
		if(is_null($this->getInput('language')))
			return parent::getURI();

		// e.g.: https://en.webfail.com
		return 'https://' . $this->getInput('language') . '.webfail.com';
	}

	public function collectData(){

		ini_set('user_agent', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:53.0) Gecko/20100101 Firefox/53.0');

		$html = getSimpleHTMLDOM($this->getURI() . $this->getInput('type'));

		$type = array_search($this->getInput('type'),
			self::PARAMETERS[$this->queriedContext]['type']['values']);

		switch(strtolower($type)) {
		case 'facebook':
		case 'videos':
			$this->extractNews($html, $type);
			break;
		case 'none':
		case 'images':
		case 'gifs':
			$this->extractArticle($html);
			break;
		default: returnClientError('Unknown type: ' . $type);
		}
	}

	private function extractNews($html, $type){
		$news = $html->find('#main', 0)->find('a.wf-list-news');
		foreach($news as $element) {
			$item = array();
			$item['title'] = $this->fixTitle($element->find('div.wf-news-title', 0)->innertext);
			$item['uri'] = $this->getURI() . $element->href;

			$img = $element->find('img.wf-image', 0)->src;
			// Load high resolution image for 'facebook'
			switch(strtolower($type)) {
			case 'facebook':
				$img = $this->getImageHiResUri($item['uri']);
				break;
			default:
			}

			$description = '';
			if(!is_null($element->find('div.wf-news-description', 0))) {
				$description = $element->find('div.wf-news-description', 0)->innertext;
			}

			$item['content'] = '<p>'
			. $description
			. '</p><br><a href="'
			. $item['uri']
			. '"><img src="'
			. $img
			. '"></a>';

			$this->items[] = $item;
		}
	}

	private function extractArticle($html){
		$articles = $html->find('article');
		foreach($articles as $article) {
			$item = array();
			$item['title'] = $this->fixTitle($article->find('a', 1)->innertext);

			// Images, videos and gifs are provided in their own unique way
			if(!is_null($article->find('img.wf-image', 0))) { // Image type
				$item['uri'] = $this->getURI() . $article->find('a', 2)->href;
				$item['content'] = '<a href="'
				. $item['uri']
				. '"><img src="'
				. $article->find('img.wf-image', 0)->src
				. '"></a>';
			} elseif(!is_null($article->find('div.wf-video', 0))) { // Video type
				$videoId = $this->getVideoId($article->find('div.wf-play', 0)->onclick);
				$item['uri'] = 'https://youtube.com/watch?v=' . $videoId;
				$item['content'] = '<a href="'
				. $item['uri']
				. '"><img src="http://img.youtube.com/vi/'
				. $videoId
				. '/0.jpg"></a>';
			} elseif(!is_null($article->find('video[id*=gif-]', 0))) { // Gif type
				$item['uri'] = $this->getURI() . $article->find('a', 2)->href;
				$item['content'] = '<video controls src="'
				. $article->find('video[id*=gif-]', 0)->src
				. '" poster="'
				. $article->find('video[id*=gif-]', 0)->poster
				. '"></video>';
			}

			$this->items[] = $item;
		}
	}

	private function fixTitle($title){
		// This fixes titles that include umlauts (in German language)
		return html_entity_decode($title, ENT_QUOTES | ENT_HTML401, 'UTF-8');
	}

	private function getVideoId($onclick){
		return substr($onclick, 21, 11);
	}

	private function getImageHiResUri($url){
		// https://de.webfail.com/ef524fae509?tag=ffdt
		// http://cdn.webfail.com/upl/img/ef524fae509/post2.jpg
		$id = substr($url, strrpos($url, '/') + 1, strlen($url) - strrpos($url, '?') + 2);
		return 'http://cdn.webfail.com/upl/img/' . $id . '/post2.jpg';
	}
}