summaryrefslogtreecommitdiff
path: root/bridges/FB2Bridge.php
blob: 29df7554f858b538b4e77a0f753fb42fa18642a6 (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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
<?php
class FB2Bridge extends BridgeAbstract {

	const MAINTAINER = 'teromene';
	const NAME = 'Facebook Alternate';
	const URI = 'https://www.facebook.com/';
	const CACHE_TIMEOUT = 1000;
	const DESCRIPTION = 'Input a page title or a profile log. For a profile log,
 please insert the parameter as follow : myExamplePage/132621766841117';

	const PARAMETERS = array( array(
		'u' => array(
			'name' => 'Username',
			'required' => true
		)
	));

	public function getIcon() {
		return 'https://static.xx.fbcdn.net/rsrc.php/yo/r/iRmz9lCMBD2.ico';
	}

	public function collectData(){

		//Utility function for cleaning a Facebook link
		$unescape_fb_link = function($matches){
			if(is_array($matches) && count($matches) > 1) {
				$link = $matches[1];
				if(strpos($link, '/') === 0)
					$link = self::URI . substr($link, 1);
				if(strpos($link, 'facebook.com/l.php?u=') !== false)
					$link = urldecode(extractFromDelimiters($link, 'facebook.com/l.php?u=', '&'));
				return ' href="' . $link . '"';
			}
		};

		//Utility function for converting facebook emoticons
		$unescape_fb_emote = function($matches){
			static $facebook_emoticons = array(
				'smile' => ':)',
				'frown' => ':(',
				'tongue' => ':P',
				'grin' => ':D',
				'gasp' => ':O',
				'wink' => ';)',
				'pacman' => ':<',
				'grumpy' => '>_<',
				'unsure' => ':/',
				'cry' => ':\'(',
				'kiki' => '^_^',
				'glasses' => '8-)',
				'sunglasses' => 'B-)',
				'heart' => '<3',
				'devil' => ']:D',
				'angel' => '0:)',
				'squint' => '-_-',
				'confused' => 'o_O',
				'upset' => 'xD',
				'colonthree' => ':3',
				'like' => '&#x1F44D;');
			$len = count($matches);
			if ($len > 1)
				for ($i = 1; $i < $len; $i++)
					foreach ($facebook_emoticons as $name => $emote)
						if ($matches[$i] === $name)
							return $emote;
			return $matches[0];
		};

		if($this->getInput('u') !== null) {
			$page = 'https://touch.facebook.com/' . $this->getInput('u');
			$cookies = $this->getCookies($page);
			$pageInfo = $this->getPageInfos($page, $cookies);

			if($pageInfo['userId'] === null) {
				echo <<<EOD
Unable to get the page id. You should consider getting the ID by hand, then importing it into FB2Bridge
EOD;
				die();
			} elseif($pageInfo['userId'] == -1) {
				echo <<<EOD
This page is not accessible without being logged in.
EOD;
				die();
			}
		}

		//Build the string for the first request
		$requestString = 'https://touch.facebook.com/page_content_list_view/more/?page_id='
		. $pageInfo['userId']
		. '&start_cursor=1&num_to_fetch=105&surface_type=timeline';
		$fileContent = getContents($requestString);
		$html = $this->buildContent($fileContent);
		$author = $pageInfo['username'];

		foreach($html->find('article') as $content) {

			$item = array();
			//echo $content; die();
			preg_match('/publish_time\\\":([0-9]+),/', $content->getAttribute('data-store', 0), $match);
			if(isset($match[1]))
				$timestamp = $match[1];
			else
				$timestamp = 0;

			$item['uri'] = html_entity_decode('http://touch.facebook.com'
			. $content->find("div[class='_52jc _5qc4 _78cz _24u0 _36xo']", 0)->find('a', 0)->getAttribute('href'), ENT_QUOTES);

			//Decode images
			$imagecleaned = preg_replace_callback('/<i [^>]* style="[^"]*url\(\'(.*?)\'\).*?><\/i>/m', function ($matches) {
					return "<img src='" . str_replace(['\\3a ', '\\3d ', '\\26 '], [':', '=', '&'], $matches[1]) . "' />";
				}, $content);
			$content = str_get_html($imagecleaned);

			if($content->find('header', 0) !== null) {
				$content->find('header', 0)->innertext = '';
			}

			if($content->find('footer', 0) !== null) {
				$content->find('footer', 0)->innertext = '';
			}

			// Replace emoticon images by their textual representation (part of the span)
			foreach($content->find('span[title*="emoticon"]') as $emoticon) {
				$emoticon->innertext = $emoticon->find('span[aria-hidden="true"]', 0)->innertext;
			}

			//Remove html nodes, keep only img, links, basic formatting
			$content = strip_tags($content, '<a><img><i><u><br><p><h3><h4><section>');

			//Adapt link hrefs: convert relative links into absolute links and bypass external link redirection
			$content = preg_replace_callback('/ href=\"([^"]+)\"/i', $unescape_fb_link, $content);

			//Clean useless html tag properties and fix link closing tags
			foreach (array(
				'onmouseover',
				'onclick',
				'target',
				'ajaxify',
				'tabindex',
				'class',
				'data-[^=]*',
				'aria-[^=]*',
				'role',
				'rel',
				'id') as $property_name)
					$content = preg_replace('/ ' . $property_name . '=\"[^"]*\"/i', '', $content);
			$content = preg_replace('/<\/a [^>]+>/i', '</a>', $content);

			//Convert textual representation of emoticons eg
			// "<i><u>smile emoticon</u></i>" back to ASCII emoticons eg ":)"
			$content = preg_replace_callback('/<i><u>([^ <>]+) ([^<>]+)<\/u><\/i>/i', $unescape_fb_emote, $content);

			//Remove the "...Plus" tag
			$content = preg_replace(
				'/… (<span>|)<a href="https:\/\/www\.facebook\.com\/story\.php\?story_fbid=.*?<\/a>/m',
				'', $content, 1);

			//Remove tracking images
			$content = preg_replace('/<img src=\'.*?safe_image\.php.*?\' \/>/m', '', $content);

			//Remove the double section tags
			$content = str_replace(['<section><section>', '</section></section>'], ['<section>', '</section>'], $content);

			//Move the section tag link upper, if it is down
			$content = str_get_html($content);
			$sectionContent = $content->find('section', 0);
			if($sectionContent != null) {
				$sectionLink = $sectionContent->nextSibling();
				if($sectionLink != null) {
					$fullLink = '<a href="' . $sectionLink->getAttribute('href') . '">' . $sectionContent->innertext . '</a>';
					$sectionContent->innertext = $fullLink;
				}
			}

			//Move the href tag upper if it is inside the section
			foreach($content->find('section > a') as $sectionToFix) {
				$sectionLink = $sectionToFix->getAttribute('href');
				$section = $sectionToFix->parent();
				$section->outertext = '<a href="' . $sectionLink . '">' . $section . '</a>';
			}

			$item['content'] = html_entity_decode($content, ENT_QUOTES);

			$title = $author;
			if (strlen($title) > 24)
				$title = substr($title, 0, strpos(wordwrap($title, 24), "\n")) . '...';
			$title = $title . ' | ' . strip_tags($content);
			if (strlen($title) > 64)
				$title = substr($title, 0, strpos(wordwrap($title, 64), "\n")) . '...';

			$item['title'] = html_entity_decode($title, ENT_QUOTES);
			$item['author'] = html_entity_decode($author, ENT_QUOTES);
			$item['timestamp'] = html_entity_decode($timestamp, ENT_QUOTES);

			if($item['timestamp'] != 0)
				array_push($this->items, $item);
		}

	}

	//Builds the HTML from the encoded JS that Facebook provides.
	private function buildContent($pageContent){
		// The html ends with:
		// /div>","replaceifexists
		$regex = '/\\"html\\":(\".+\/div>"),"replace/';
		preg_match($regex, $pageContent, $result);

		$htmlContent = json_decode($result[1]);
		$htmlContent = preg_replace('/(?<!style)="(.*?)"/', '=\'$1\'', $htmlContent);
		$htmlContent = html_entity_decode($htmlContent, ENT_QUOTES, 'UTF-8');

		return str_get_html($htmlContent);
	}

	//Builds the cookie from the page, as Facebook sometimes refuses to give
	//the page if no cookie is provided.
	private function getCookies($pageURL){

		$ctx = stream_context_create(array(
			'http' => array(
				'user_agent' => 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:46.0) Gecko/20100101 Firefox/46.0',
				'Accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8'
				)
			)
		);
		$a = file_get_contents($pageURL, 0, $ctx);

		//First request to get the cookie
		$cookies = '';
		foreach($http_response_header as $hdr) {
			if(strpos($hdr, 'Set-Cookie') !== false) {
				$cLine = explode(':', $hdr)[1];
				$cLine = explode(';', $cLine)[0];
				$cookies .= ';' . $cLine;
			}
		}

		return substr($cookies, 1);
	}

	//Get the page ID and username from the Facebook page.
	private function getPageInfos($page, $cookies){

		$context = stream_context_create(array(
			'http' => array(
				'user_agent' => 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:46.0) Gecko/20100101 Firefox/46.0',
				'header' => 'Cookie: ' . $cookies
				)
			)
		);

		$pageContent = file_get_contents($page, 0, $context);

		if(strpos($pageContent, 'signup-button') != false) {
			return -1;
		}

		//Get the username
		$usernameRegex = '/data-nt=\"FB:TEXT4\">(.*?)<\/div>/m';
		preg_match($usernameRegex, $pageContent, $usernameMatches);
		if(count($usernameMatches) > 0) {
			$username = strip_tags($usernameMatches[1]);
		} else {
			$username = $this->getInput('u');
		}

		//Get the page ID if we don't have a captcha
		$regex = '/page_id=([0-9]*)&/';
		preg_match($regex, $pageContent, $matches);

		if(count($matches) > 0) {
			return array('userId' => $matches[1], 'username' => $username);
		}

		//Get the page ID if we do have a captcha
		$regex = '/"pageID":"([0-9]*)"/';
		preg_match($regex, $pageContent, $matches);

		return array('userId' => $matches[1], 'username' => $username);

	}

	public function getName(){
		return (isset($this->name) ? $this->name . ' - ' : '') . 'Facebook Bridge';
	}

	public function getURI(){
		return 'http://facebook.com';
	}
}