Update VkBridge (#625)
This commit is contained in:
parent
be03764029
commit
1d35149191
1 changed files with 68 additions and 17 deletions
|
@ -1,9 +1,11 @@
|
||||||
<?php
|
<?php
|
||||||
class VkBridge extends BridgeAbstract {
|
|
||||||
|
class VkBridge extends BridgeAbstract
|
||||||
|
{
|
||||||
|
|
||||||
const MAINTAINER = 'ahiles3005';
|
const MAINTAINER = 'ahiles3005';
|
||||||
const NAME = 'VK.com';
|
const NAME = 'VK.com';
|
||||||
const URI = 'http://vk.com/';
|
const URI = 'https://vk.com/';
|
||||||
const CACHE_TIMEOUT = 300; // 5min
|
const CACHE_TIMEOUT = 300; // 5min
|
||||||
const DESCRIPTION = 'Working with open pages';
|
const DESCRIPTION = 'Working with open pages';
|
||||||
const PARAMETERS = array(
|
const PARAMETERS = array(
|
||||||
|
@ -15,7 +17,8 @@ class VkBridge extends BridgeAbstract {
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
public function getURI(){
|
public function getURI()
|
||||||
|
{
|
||||||
if (!is_null($this->getInput('u'))) {
|
if (!is_null($this->getInput('u'))) {
|
||||||
return static::URI . urlencode($this->getInput('u'));
|
return static::URI . urlencode($this->getInput('u'));
|
||||||
}
|
}
|
||||||
|
@ -23,15 +26,15 @@ class VkBridge extends BridgeAbstract {
|
||||||
return parent::getURI();
|
return parent::getURI();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function collectData(){
|
public function collectData()
|
||||||
|
{
|
||||||
|
|
||||||
ini_set('user-agent', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:53.0) Gecko/20100101 Firefox/53.0');
|
$text_html = $this->getContents()
|
||||||
|
|
||||||
$text_html = getContents($this->getURI())
|
|
||||||
or returnServerError('No results for group or user name "' . $this->getInput('u') . '".');
|
or returnServerError('No results for group or user name "' . $this->getInput('u') . '".');
|
||||||
|
|
||||||
$text_html = iconv('windows-1251', 'utf-8', $text_html);
|
$text_html = iconv('windows-1251', 'utf-8', $text_html);
|
||||||
$html = str_get_html($text_html);
|
$html = str_get_html($text_html);
|
||||||
|
$pageName = $html->find('.page_name', 0)->plaintext;
|
||||||
|
|
||||||
foreach ($html->find('.post') as $post) {
|
foreach ($html->find('.post') as $post) {
|
||||||
|
|
||||||
|
@ -41,9 +44,9 @@ class VkBridge extends BridgeAbstract {
|
||||||
}
|
}
|
||||||
$item = array();
|
$item = array();
|
||||||
$item['content'] = strip_tags(backgroundToImg($post->find('div.wall_text', 0)->innertext), '<br><img>');
|
$item['content'] = strip_tags(backgroundToImg($post->find('div.wall_text', 0)->innertext), '<br><img>');
|
||||||
|
|
||||||
if (is_object($post->find('a.page_media_link_title', 0))) {
|
if (is_object($post->find('a.page_media_link_title', 0))) {
|
||||||
$link = $post->find('a.page_media_link_title', 0)->getAttribute('href');
|
$link = $post->find('a.page_media_link_title', 0)->getAttribute('href');
|
||||||
|
|
||||||
//external link in the post
|
//external link in the post
|
||||||
$item['content'] .= "\n\rExternal link: "
|
$item['content'] .= "\n\rExternal link: "
|
||||||
. str_replace('/away.php?to=', '', urldecode($link));
|
. str_replace('/away.php?to=', '', urldecode($link));
|
||||||
|
@ -58,9 +61,57 @@ class VkBridge extends BridgeAbstract {
|
||||||
|
|
||||||
// get post link
|
// get post link
|
||||||
$item['uri'] = self::URI . $post->find('a.post_link', 0)->getAttribute('href');
|
$item['uri'] = self::URI . $post->find('a.post_link', 0)->getAttribute('href');
|
||||||
$item['date'] = $post->find('span.rel_date', 0)->plaintext;
|
$item['timestamp'] = $this->getTime($post);
|
||||||
|
$item['author'] = $pageName;
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
// var_dump($item['date']);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function getTime($post)
|
||||||
|
{
|
||||||
|
if ($time = $post->find('span.rel_date', 0)->getAttribute('time')) {
|
||||||
|
return $time;
|
||||||
|
} else {
|
||||||
|
$strdate = $post->find('span.rel_date', 0)->plaintext;
|
||||||
|
|
||||||
|
$date = date_parse($strdate);
|
||||||
|
if (!$date['year']) {
|
||||||
|
if (strstr($strdate, 'today') !== false) {
|
||||||
|
$strdate = date('d-m-Y') . ' ' . $strdate;
|
||||||
|
} elseif (strstr($strdate, 'yesterday ') !== false) {
|
||||||
|
$time = time() - 60 * 60 * 24;
|
||||||
|
$strdate = date('d-m-Y', $time) . ' ' . $strdate;
|
||||||
|
} else {
|
||||||
|
$strdate = $strdate . ' ' . date('Y');
|
||||||
|
}
|
||||||
|
|
||||||
|
$date = date_parse($strdate);
|
||||||
|
}
|
||||||
|
return strtotime($date['day'] . '-' . $date['month'] . '-' . $date['year'] . ' ' .
|
||||||
|
$date['hour'] . ':' . $date['minute']);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getContents()
|
||||||
|
{
|
||||||
|
ini_set('user-agent', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:53.0) Gecko/20100101 Firefox/53.0');
|
||||||
|
|
||||||
|
$opts = array(
|
||||||
|
'http' => array(
|
||||||
|
'method' => "GET",
|
||||||
|
'user_agent' => ini_get('user_agent'),
|
||||||
|
'accept_encoding' => 'gzip',
|
||||||
|
'header' => "Accept-language: en\r\n
|
||||||
|
Cookie: remixlang=3\r\n"
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
$context = stream_context_create($opts);
|
||||||
|
|
||||||
|
return getContents($this->getURI(), false, $context);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue