2014-07-20 10:40:00 +02:00
|
|
|
<?php
|
2017-02-11 16:16:56 +01:00
|
|
|
class GooglePlusPostBridge extends BridgeAbstract{
|
|
|
|
|
2014-07-20 16:28:51 +02:00
|
|
|
protected $_title;
|
|
|
|
protected $_url;
|
|
|
|
|
2018-07-31 18:18:18 +02:00
|
|
|
const MAINTAINER = 'Grummfy, logmanoriginal';
|
2017-02-11 16:16:56 +01:00
|
|
|
const NAME = 'Google Plus Post Bridge';
|
|
|
|
const URI = 'https://plus.google.com/';
|
2016-09-25 17:04:28 +02:00
|
|
|
const CACHE_TIMEOUT = 600; //10min
|
2017-02-11 16:16:56 +01:00
|
|
|
const DESCRIPTION = 'Returns user public post (without API).';
|
2016-08-27 21:03:26 +02:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
const PARAMETERS = array( array(
|
|
|
|
'username' => array(
|
|
|
|
'name' => 'username or Id',
|
|
|
|
'required' => true
|
|
|
|
)
|
|
|
|
));
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
public function collectData(){
|
2017-03-26 16:50:39 +02:00
|
|
|
$username = $this->getInput('username');
|
|
|
|
|
|
|
|
// Usernames start with a + if it's not an ID
|
2017-07-29 19:28:00 +02:00
|
|
|
if(!is_numeric($username) && substr($username, 0, 1) !== '+') {
|
2017-03-26 16:50:39 +02:00
|
|
|
$username = '+' . $username;
|
|
|
|
}
|
|
|
|
|
2014-07-20 16:28:51 +02:00
|
|
|
// get content parsed
|
2017-03-26 16:50:39 +02:00
|
|
|
$html = getSimpleHTMLDOMCached(self::URI . urlencode($username) . '/posts')
|
2017-03-26 16:40:05 +02:00
|
|
|
or returnServerError('No results for this query.');
|
2014-07-20 10:40:00 +02:00
|
|
|
|
2014-07-20 16:28:51 +02:00
|
|
|
// get title, url, ... there is a lot of intresting stuff in meta
|
2017-03-18 21:06:48 +01:00
|
|
|
$this->_title = $html->find('meta[property=og:title]', 0)->getAttribute('content');
|
|
|
|
$this->_url = $html->find('meta[property=og:url]', 0)->getAttribute('content');
|
2014-07-20 16:28:51 +02:00
|
|
|
|
2017-03-18 21:06:48 +01:00
|
|
|
// I don't even know where to start with this discusting html...
|
2017-07-29 19:28:00 +02:00
|
|
|
foreach($html->find('div[jsname=WsjYwc]') as $post) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
2017-03-18 21:06:48 +01:00
|
|
|
|
|
|
|
$item['author'] = $item['fullname'] = $post->find('div div div div a', 0)->innertext;
|
|
|
|
$item['id'] = $post->find('div div div', 0)->getAttribute('id');
|
|
|
|
$item['avatar'] = $post->find('div img', 0)->src;
|
|
|
|
$item['uri'] = self::URI . $post->find('div div div a', 1)->href;
|
2017-03-26 16:40:05 +02:00
|
|
|
|
|
|
|
$timestamp = $post->find('a.qXj2He span', 0);
|
|
|
|
|
2017-07-29 19:28:00 +02:00
|
|
|
if($timestamp) {
|
2017-03-26 16:40:05 +02:00
|
|
|
$item['timestamp'] = strtotime('+' . preg_replace(
|
|
|
|
'/[^0-9A-Za-z]/',
|
|
|
|
'',
|
|
|
|
$timestamp->getAttribute('aria-label')));
|
|
|
|
}
|
2014-07-20 16:28:51 +02:00
|
|
|
|
|
|
|
// hashtag to treat : https://plus.google.com/explore/tag
|
2017-03-18 21:06:48 +01:00
|
|
|
// $hashtags = array();
|
|
|
|
// foreach($post->find('a.d-s') as $hashtag){
|
|
|
|
// $hashtags[trim($hashtag->plaintext)] = self::URI . $hashtag->href;
|
|
|
|
// }
|
2014-07-20 16:28:51 +02:00
|
|
|
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['content'] = '';
|
2014-07-20 16:28:51 +02:00
|
|
|
|
|
|
|
// avatar display
|
2017-02-11 16:16:56 +01:00
|
|
|
$item['content'] .= '<div style="float:left; margin: 0 0.5em 0.5em 0;"><a href="'
|
|
|
|
. self::URI
|
|
|
|
. urlencode($this->getInput('username'));
|
|
|
|
|
|
|
|
$item['content'] .= '"><img align="top" alt="'
|
|
|
|
. $item['author']
|
|
|
|
. '" src="'
|
|
|
|
. $item['avatar']
|
|
|
|
. '" /></a></div>';
|
2014-07-20 16:28:51 +02:00
|
|
|
|
2017-03-26 16:40:05 +02:00
|
|
|
$content = $post->find('div[jsname=EjRJtf]', 0);
|
2017-03-18 21:06:48 +01:00
|
|
|
// extract plaintext
|
|
|
|
$item['content_simple'] = $content->plaintext;
|
|
|
|
$item['title'] = substr($item['content_simple'], 0, 72) . '...';
|
2014-07-20 16:28:51 +02:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
// XXX ugly but I don't have any idea how to do a better stuff,
|
|
|
|
// str_replace on link doesn't work as expected and ask too many checks
|
2017-07-29 19:28:00 +02:00
|
|
|
foreach($content->find('a') as $link) {
|
2014-07-20 16:28:51 +02:00
|
|
|
$hasHttp = strpos($link->href, 'http');
|
|
|
|
$hasDoubleSlash = strpos($link->href, '//');
|
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
if((!$hasHttp && !$hasDoubleSlash)
|
|
|
|
|| (false !== $hasHttp && strpos($link->href, 'http') != 0)
|
2017-07-29 19:28:00 +02:00
|
|
|
|| (false === $hasHttp && false !== $hasDoubleSlash && $hasDoubleSlash != 0)) {
|
2014-07-20 16:28:51 +02:00
|
|
|
// skipp bad link, for some hashtag or other stuff
|
2017-07-29 19:28:00 +02:00
|
|
|
if(strpos($link->href, '/') == 0) {
|
2014-07-20 16:28:51 +02:00
|
|
|
$link->href = substr($link->href, 1);
|
|
|
|
}
|
2017-02-11 16:16:56 +01:00
|
|
|
|
2016-08-30 11:23:55 +02:00
|
|
|
$link->href = self::URI . $link->href;
|
2014-07-20 16:28:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$content = $content->innertext;
|
|
|
|
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['content'] .= '<div style="margin-top: -1.5em">' . $content . '</div>';
|
2016-12-19 19:57:25 +01:00
|
|
|
$item['content'] = trim(strip_tags($item['content'], '<a><p><div><img>'));
|
2017-03-18 21:06:48 +01:00
|
|
|
|
2018-07-31 18:18:18 +02:00
|
|
|
$media = $post->find('[jsname="MTOxpb"]', 0);
|
|
|
|
|
|
|
|
if($media) {
|
|
|
|
|
|
|
|
$item['enclosures'] = array();
|
|
|
|
|
|
|
|
foreach($media->find('img') as $img) {
|
|
|
|
|
|
|
|
$item['enclosures'][] = $this->fixImage($img)->src;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-12-19 19:49:53 +01:00
|
|
|
$this->items[] = $item;
|
2014-07-20 10:40:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
public function getName(){
|
2014-07-20 16:28:51 +02:00
|
|
|
return $this->_title ?: 'Google Plus Post Bridge';
|
2014-07-20 10:40:00 +02:00
|
|
|
}
|
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
public function getURI(){
|
2017-02-14 22:36:33 +01:00
|
|
|
return $this->_url ?: parent::getURI();
|
2014-07-20 10:40:00 +02:00
|
|
|
}
|
2018-07-31 18:18:18 +02:00
|
|
|
|
|
|
|
private function fixImage($img) {
|
|
|
|
|
|
|
|
// There are certain images like .gif which link to a static picture and
|
|
|
|
// get replaced dynamically via JS in the browser. If we want the "real"
|
|
|
|
// image we need to account for that.
|
|
|
|
|
|
|
|
$urlparts = parse_url($img->src);
|
|
|
|
|
|
|
|
if(array_key_exists('host', $urlparts)) {
|
|
|
|
|
|
|
|
// For some reason some URIs don't contain the scheme, assume https
|
|
|
|
if(!array_key_exists('scheme', $urlparts)) {
|
|
|
|
$urlparts['scheme'] = 'https';
|
|
|
|
}
|
|
|
|
|
|
|
|
$pathelements = explode('/', $urlparts['path']);
|
|
|
|
|
|
|
|
switch($urlparts['host']) {
|
|
|
|
|
|
|
|
case 'lh3.googleusercontent.com':
|
|
|
|
|
|
|
|
if(pathinfo(end($pathelements), PATHINFO_EXTENSION)) {
|
|
|
|
|
|
|
|
// The second to last element of the path specifies the
|
|
|
|
// image format. The URL is still valid if we remove it.
|
|
|
|
unset($pathelements[count($pathelements) - 2]);
|
|
|
|
|
|
|
|
} elseif(strrpos(end($pathelements), '=') !== false) {
|
|
|
|
|
|
|
|
// Some images go throug a proxy. For those images they
|
|
|
|
// add size information after an equal sign.
|
|
|
|
// Example: '=w530-h298-n'. Again this can safely be
|
|
|
|
// removed to get the original image.
|
|
|
|
$pathelements[count($pathelements) - 1] = substr(
|
|
|
|
end($pathelements),
|
|
|
|
0,
|
|
|
|
strrpos(end($pathelements), '=')
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$urlparts['path'] = implode('/', $pathelements);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
echo $img->src . '<br>';
|
|
|
|
|
|
|
|
$img->src = $this->build_url($urlparts);
|
|
|
|
|
|
|
|
echo $img->src . '<br><br>';
|
|
|
|
|
|
|
|
return $img;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* From: https://gist.github.com/Ellrion/f51ba0d40ae1d62eeae44fd1adf7b704
|
|
|
|
* slightly adjusted to work with PHP < 7.0
|
|
|
|
* @param array $parts
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private function build_url(array $parts)
|
|
|
|
{
|
|
|
|
|
|
|
|
$scheme = isset($parts['scheme']) ? ($parts['scheme'] . '://') : '';
|
|
|
|
$host = isset($parts['host']) ? $parts['host'] : '';
|
|
|
|
$port = isset($parts['port']) ? (':' . $parts['port']) : '';
|
|
|
|
$user = isset($parts['user']) ? $parts['user'] : '';
|
|
|
|
$pass = isset($parts['pass']) ? (':' . $parts['pass']) : '';
|
|
|
|
$pass = ($user || $pass) ? ($pass . '@') : '';
|
|
|
|
$path = isset($parts['path']) ? $parts['path'] : '';
|
|
|
|
$query = isset($parts['query']) ? ('?' . $parts['query']) : '';
|
|
|
|
$fragment = isset($parts['fragment']) ? ('#' . $parts['fragment']) : '';
|
|
|
|
|
|
|
|
return implode('', [$scheme, $user, $pass, $host, $port, $path, $query, $fragment]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-07-20 10:40:00 +02:00
|
|
|
}
|