2014-07-20 10:40:00 +02:00
|
|
|
<?php
|
|
|
|
class GooglePlusPostBridge extends BridgeAbstract
|
|
|
|
{
|
2014-07-20 16:28:51 +02:00
|
|
|
protected $_title;
|
|
|
|
protected $_url;
|
|
|
|
|
2016-08-30 11:23:55 +02:00
|
|
|
const MAINTAINER = "Grummfy";
|
|
|
|
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
|
2016-08-30 11:23:55 +02:00
|
|
|
const DESCRIPTION = "Returns user public post (without API).";
|
2016-08-27 21:03:26 +02:00
|
|
|
|
2016-08-30 11:23:55 +02:00
|
|
|
const PARAMETERS = array( array(
|
2016-08-27 21:03:26 +02:00
|
|
|
'username'=>array(
|
|
|
|
'name'=>'username or Id',
|
|
|
|
'required'=>true
|
|
|
|
)
|
|
|
|
));
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData()
|
2014-07-20 10:40:00 +02:00
|
|
|
{
|
2014-07-20 16:28:51 +02:00
|
|
|
// get content parsed
|
2016-12-19 19:49:53 +01:00
|
|
|
$html = getSimpleHTMLDOMCached(self::URI . urlencode($this->getInput('username')) . '/posts'
|
2014-07-20 16:28:51 +02:00
|
|
|
// force language
|
2016-12-19 19:49:53 +01:00
|
|
|
, 84600, false, stream_context_create(array('http'=> array(
|
2014-07-20 16:28:51 +02:00
|
|
|
'header' => 'Accept-Language: fr,fr-be,fr-fr;q=0.8,en;q=0.4,en-us;q=0.2;*' . "\r\n"
|
|
|
|
)))
|
2016-09-25 23:22:33 +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
|
|
|
|
$this->_title = $html->find('meta[property]', 0)->getAttribute('content');
|
|
|
|
$this->_url = $html->find('meta[itemprop=url]', 0)->getAttribute('content');
|
|
|
|
|
|
|
|
// div[jsmodel=XNmfOc]
|
|
|
|
foreach($html->find('div.yt') as $post)
|
2014-07-20 10:40:00 +02:00
|
|
|
{
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
// $item['content'] = $post->find('div.Al', 0)->innertext;
|
2016-12-19 19:49:53 +01:00
|
|
|
$item['author'] = $item['fullname'] = $post->find('header.lea h3 a', 0)->innertext;
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['id'] = $post->getAttribute('id');
|
2016-12-19 19:49:53 +01:00
|
|
|
$item['title'] = $item['fullname'] = $post->find('header.lea', 0)->plaintext;
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['avatar'] = $post->find('div.ys img', 0)->src;
|
2016-08-30 11:23:55 +02:00
|
|
|
$item['uri'] = self::URI . $post->find('a.o-U-s', 0)->href;
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['timestamp'] = strtotime($post->find('a.o-U-s', 0)->plaintext);
|
2014-07-20 16:28:51 +02:00
|
|
|
|
|
|
|
// hashtag to treat : https://plus.google.com/explore/tag
|
|
|
|
$hashtags = array();
|
|
|
|
foreach($post->find('a.d-s') as $hashtag)
|
|
|
|
{
|
2016-08-30 11:23:55 +02:00
|
|
|
$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
|
2016-08-30 11:23:55 +02:00
|
|
|
$item['content'] .= '<div style="float:left; margin: 0 0.5em 0.5em 0;"><a href="' . self::URI . urlencode($this->getInput('username'));
|
2016-12-19 19:49:53 +01:00
|
|
|
$item['content'] .= '"><img align="top" alt="' . $item['author'] . '" src="' . $item['avatar'].'" /></a></div>';
|
2014-07-20 16:28:51 +02:00
|
|
|
|
|
|
|
$content = $post->find('div.Al', 0);
|
|
|
|
|
|
|
|
// 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
|
|
|
|
foreach($content->find('a') as $link)
|
|
|
|
{
|
|
|
|
$hasHttp = strpos($link->href, 'http');
|
|
|
|
$hasDoubleSlash = strpos($link->href, '//');
|
|
|
|
|
|
|
|
if ((!$hasHttp && !$hasDoubleSlash)
|
|
|
|
|| (false !== $hasHttp && strpos($link->href, 'http') != 0)
|
|
|
|
|| (false === $hasHttp && false !== $hasDoubleSlash && $hasDoubleSlash != 0))
|
|
|
|
{
|
|
|
|
// skipp bad link, for some hashtag or other stuff
|
|
|
|
if (strpos($link->href, '/') == 0)
|
|
|
|
{
|
|
|
|
$link->href = substr($link->href, 1);
|
|
|
|
}
|
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>';
|
2014-07-20 16:28:51 +02:00
|
|
|
|
|
|
|
// extract plaintext
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['content_simple'] = $post->find('div.Al', 0)->plaintext;
|
2016-12-19 19:49:53 +01:00
|
|
|
$this->items[] = $item;
|
2014-07-20 10:40:00 +02: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
|
|
|
}
|
|
|
|
|
|
|
|
public function getURI()
|
|
|
|
{
|
2016-08-30 11:23:55 +02:00
|
|
|
return $this->_url ?: self::URI;
|
2014-07-20 10:40:00 +02:00
|
|
|
}
|
|
|
|
}
|