[ 'name' => 'Username', 'required' => true ], 'abbrev_name' => [ 'name' => 'Abbreviate author name in title', 'type' => 'checkbox', 'defaultValue' => 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 = [ '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' => '👍']; $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) { returnClientError(<<buildContent($fileContent); $author = $pageInfo['username']; foreach ($html->find('article') as $content) { $item = []; 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('https://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('/]* style="[^"]*url\(\'(.*?)\'\).*?><\/i>/m', function ($matches) { return ""; }, $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, '

'); //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 ( [ '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', '', $content); //Convert textual representation of emoticons eg // "smile emoticon" back to ASCII emoticons eg ":)" $content = preg_replace_callback('/([^ <>]+) ([^<>]+)<\/u><\/i>/i', $unescape_fb_emote, $content); //Remove the "...Plus" tag $content = preg_replace( '/… (|)getAttribute('href') . '">' . $sectionContent->innertext . ''; $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 = '' . $section . ''; } $item['content'] = html_entity_decode($content, ENT_QUOTES); $title = $author; if ($this->getInput('abbrev_name') === true) { 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('/(? [ 'user_agent' => Configuration::getConfig('http', 'useragent'), '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([ 'http' => [ 'user_agent' => Configuration::getConfig('http', 'useragent'), '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 ['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 ['userId' => $matches[1], 'username' => $username]; } public function getName() { $username = $this->getInput('u'); if (isset($username)) { return $this->getInput('u') . ' | Facebook'; } else { return self::NAME; } } public function getURI() { $username = $this->getInput('u'); if (isset($username)) { return 'https://facebook.com/' . $this->getInput('u') . '/posts'; } else { return self::URI; } } }