2016-03-20 16:54:05 +01:00
|
|
|
<?php
|
2018-01-30 17:57:07 +01:00
|
|
|
|
|
|
|
class VkBridge extends BridgeAbstract
|
|
|
|
{
|
2016-03-20 16:54:05 +01:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
const MAINTAINER = 'ahiles3005';
|
|
|
|
const NAME = 'VK.com';
|
2018-01-30 17:57:07 +01:00
|
|
|
const URI = 'https://vk.com/';
|
2017-02-11 16:16:56 +01:00
|
|
|
const CACHE_TIMEOUT = 300; // 5min
|
|
|
|
const DESCRIPTION = 'Working with open pages';
|
|
|
|
const PARAMETERS = array(
|
|
|
|
array(
|
|
|
|
'u' => array(
|
|
|
|
'name' => 'Group or user name',
|
|
|
|
'required' => true
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2018-03-05 10:46:15 +01:00
|
|
|
protected $pageName;
|
|
|
|
|
2018-01-30 17:57:07 +01:00
|
|
|
public function getURI()
|
|
|
|
{
|
|
|
|
if (!is_null($this->getInput('u'))) {
|
2017-02-14 22:36:33 +01:00
|
|
|
return static::URI . urlencode($this->getInput('u'));
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getURI();
|
2017-02-11 16:16:56 +01:00
|
|
|
}
|
|
|
|
|
2018-03-05 10:46:15 +01:00
|
|
|
public function getName()
|
2018-01-30 17:57:07 +01:00
|
|
|
{
|
2018-03-05 10:46:15 +01:00
|
|
|
if ($this->pageName) {
|
|
|
|
return $this->pageName;
|
|
|
|
}
|
2017-03-03 15:14:05 +01:00
|
|
|
|
2018-03-05 10:46:15 +01:00
|
|
|
return parent::getName();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function collectData()
|
|
|
|
{
|
2018-01-30 17:57:07 +01:00
|
|
|
$text_html = $this->getContents()
|
|
|
|
or returnServerError('No results for group or user name "' . $this->getInput('u') . '".');
|
2017-02-11 16:16:56 +01:00
|
|
|
|
|
|
|
$text_html = iconv('windows-1251', 'utf-8', $text_html);
|
|
|
|
$html = str_get_html($text_html);
|
2018-01-30 17:57:07 +01:00
|
|
|
$pageName = $html->find('.page_name', 0)->plaintext;
|
2018-03-05 10:46:15 +01:00
|
|
|
$this->pageName = $pageName;
|
2017-03-03 15:14:05 +01:00
|
|
|
|
2018-01-30 17:57:07 +01:00
|
|
|
foreach ($html->find('.post') as $post) {
|
2017-03-03 15:14:05 +01:00
|
|
|
|
2018-01-30 17:57:07 +01:00
|
|
|
if (is_object($post->find('a.wall_post_more', 0))) {
|
2017-02-11 16:16:56 +01:00
|
|
|
//delete link "show full" in content
|
|
|
|
$post->find('a.wall_post_more', 0)->outertext = '';
|
|
|
|
}
|
|
|
|
$item = array();
|
2017-03-03 15:14:05 +01:00
|
|
|
$item['content'] = strip_tags(backgroundToImg($post->find('div.wall_text', 0)->innertext), '<br><img>');
|
2017-02-11 16:16:56 +01:00
|
|
|
|
2018-01-30 17:57:07 +01:00
|
|
|
if (is_object($post->find('a.page_media_link_title', 0))) {
|
|
|
|
$link = $post->find('a.page_media_link_title', 0)->getAttribute('href');
|
2017-02-11 16:16:56 +01:00
|
|
|
//external link in the post
|
|
|
|
$item['content'] .= "\n\rExternal link: "
|
2018-01-30 17:57:07 +01:00
|
|
|
. str_replace('/away.php?to=', '', urldecode($link));
|
2017-02-11 16:16:56 +01:00
|
|
|
}
|
2016-03-20 16:54:05 +01:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
//get video on post
|
2018-01-30 17:57:07 +01:00
|
|
|
if (is_object($post->find('span.post_video_title_content', 0))) {
|
2017-02-11 16:16:56 +01:00
|
|
|
$titleVideo = $post->find('span.post_video_title_content', 0)->plaintext;
|
|
|
|
$linkToVideo = self::URI . $post->find('a.page_post_thumb_video', 0)->getAttribute('href');
|
|
|
|
$item['content'] .= "\n\r {$titleVideo}: {$linkToVideo}";
|
|
|
|
}
|
2016-09-04 14:40:38 +02:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
// get post link
|
2017-03-03 15:14:05 +01:00
|
|
|
$item['uri'] = self::URI . $post->find('a.post_link', 0)->getAttribute('href');
|
2018-01-30 17:57:07 +01:00
|
|
|
$item['timestamp'] = $this->getTime($post);
|
|
|
|
$item['author'] = $pageName;
|
2017-02-11 16:16:56 +01:00
|
|
|
$this->items[] = $item;
|
2018-01-30 17:57:07 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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']);
|
2017-02-11 16:16:56 +01:00
|
|
|
}
|
2018-01-30 17:57:07 +01:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
}
|
2018-01-30 17:57:07 +01:00
|
|
|
|
|
|
|
public function getContents()
|
|
|
|
{
|
|
|
|
ini_set('user-agent', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:53.0) Gecko/20100101 Firefox/53.0');
|
|
|
|
|
2018-03-25 14:01:35 +02:00
|
|
|
$header = array("Accept-language: en\r\nCookie: remixlang=3\r\n");
|
2018-01-30 17:57:07 +01:00
|
|
|
|
2018-03-25 14:01:35 +02:00
|
|
|
return getContents($this->getURI(), $header);
|
2018-01-30 17:57:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-20 16:54:05 +01:00
|
|
|
}
|