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
|
2019-04-07 21:50:58 +02:00
|
|
|
),
|
|
|
|
'hide_reposts' => array(
|
|
|
|
'name' => 'Hide reposts',
|
|
|
|
'type' => 'checkbox',
|
2017-02-11 16:16:56 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2018-08-09 17:02:36 +02:00
|
|
|
protected $videos = array();
|
2018-03-05 10:46:15 +01:00
|
|
|
protected $pageName;
|
|
|
|
|
2018-08-09 17:02:36 +02:00
|
|
|
protected function getAccessToken()
|
|
|
|
{
|
|
|
|
return 'c8071613517c155c6cfbd2a059b2718e9c37b89094c4766834969dda75f657a2c1cbb49bab4c5e649f1db';
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2019-06-06 20:05:41 +02:00
|
|
|
$text_html = iconv('windows-1251', 'utf-8//ignore', $text_html);
|
2018-04-16 11:55:31 +02:00
|
|
|
// makes album link generating work correctly
|
|
|
|
$text_html = str_replace('"class="page_album_link">', '" class="page_album_link">', $text_html);
|
2017-02-11 16:16:56 +01:00
|
|
|
$html = str_get_html($text_html);
|
2018-04-16 11:55:31 +02:00
|
|
|
$pageName = $html->find('.page_name', 0);
|
|
|
|
if (is_object($pageName)) {
|
|
|
|
$pageName = $pageName->plaintext;
|
|
|
|
$this->pageName = htmlspecialchars_decode($pageName);
|
|
|
|
}
|
2018-08-09 17:02:36 +02:00
|
|
|
foreach ($html->find('div.replies') as $comment_block) {
|
2019-06-02 13:03:26 +02:00
|
|
|
$comment_block->outertext = '';
|
2018-08-09 17:02:36 +02:00
|
|
|
}
|
2019-06-02 13:03:26 +02:00
|
|
|
$html->load($html->save());
|
2018-08-09 17:02:36 +02:00
|
|
|
|
2018-04-16 11:55:31 +02:00
|
|
|
$pinned_post_item = null;
|
|
|
|
$last_post_id = 0;
|
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-08-09 17:02:36 +02:00
|
|
|
defaultLinkTo($post, self::URI);
|
|
|
|
|
|
|
|
$post_videos = array();
|
|
|
|
|
2018-04-16 11:55:31 +02:00
|
|
|
$is_pinned_post = false;
|
|
|
|
if (strpos($post->getAttribute('class'), 'post_fixed') !== false) {
|
|
|
|
$is_pinned_post = true;
|
|
|
|
}
|
|
|
|
|
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
|
2019-06-02 13:03:26 +02:00
|
|
|
$post->find('a.wall_post_more', 0)->outertext = '';
|
2017-02-11 16:16:56 +01:00
|
|
|
}
|
|
|
|
|
2018-06-29 23:55:33 +02:00
|
|
|
$content_suffix = '';
|
2018-04-16 11:55:31 +02:00
|
|
|
|
|
|
|
// looking for external links
|
|
|
|
$external_link_selectors = array(
|
|
|
|
'a.page_media_link_title',
|
|
|
|
'div.page_media_link_title > a',
|
|
|
|
'div.media_desc > a.lnk',
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach($external_link_selectors as $sel) {
|
|
|
|
if (is_object($post->find($sel, 0))) {
|
|
|
|
$a = $post->find($sel, 0);
|
|
|
|
$innertext = $a->innertext;
|
|
|
|
$parsed_url = parse_url($a->getAttribute('href'));
|
|
|
|
if (strpos($parsed_url['path'], '/away.php') !== 0) continue;
|
2018-06-29 23:55:33 +02:00
|
|
|
parse_str($parsed_url['query'], $parsed_query);
|
|
|
|
$content_suffix .= "<br>External link: <a href='" . $parsed_query['to'] . "'>$innertext</a>";
|
2018-04-16 11:55:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove external link from content
|
|
|
|
$external_link_selectors_to_remove = array(
|
|
|
|
'div.page_media_thumbed_link',
|
|
|
|
'div.page_media_link_desc_wrap',
|
|
|
|
'div.media_desc > a.lnk',
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach($external_link_selectors_to_remove as $sel) {
|
|
|
|
if (is_object($post->find($sel, 0))) {
|
2019-06-02 13:03:26 +02:00
|
|
|
$post->find($sel, 0)->outertext = '';
|
2018-04-16 11:55:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// looking for article
|
2018-06-29 23:55:33 +02:00
|
|
|
$article = $post->find('a.article_snippet', 0);
|
2018-04-16 11:55:31 +02:00
|
|
|
if (is_object($article)) {
|
2018-06-29 23:55:33 +02:00
|
|
|
if (strpos($article->getAttribute('class'), 'article_snippet_mini') !== false) {
|
|
|
|
$article_title_selector = 'div.article_snippet_mini_title';
|
|
|
|
$article_author_selector = 'div.article_snippet_mini_info > .mem_link,
|
|
|
|
div.article_snippet_mini_info > .group_link';
|
|
|
|
$article_thumb_selector = 'div.article_snippet_mini_thumb';
|
2018-05-05 12:03:54 +02:00
|
|
|
} else {
|
2018-06-29 23:55:33 +02:00
|
|
|
$article_title_selector = 'div.article_snippet__title';
|
|
|
|
$article_author_selector = 'div.article_snippet__author';
|
|
|
|
$article_thumb_selector = 'div.article_snippet__image';
|
2018-05-05 12:03:54 +02:00
|
|
|
}
|
|
|
|
$article_title = $article->find($article_title_selector, 0)->innertext;
|
|
|
|
$article_author = $article->find($article_author_selector, 0)->innertext;
|
2018-08-09 17:02:36 +02:00
|
|
|
$article_link = $article->getAttribute('href');
|
2018-05-05 12:03:54 +02:00
|
|
|
$article_img_element_style = $article->find($article_thumb_selector, 0)->getAttribute('style');
|
2018-04-16 11:55:31 +02:00
|
|
|
preg_match('/background-image: url\((.*)\)/', $article_img_element_style, $matches);
|
|
|
|
if (count($matches) > 0) {
|
|
|
|
$content_suffix .= "<br><img src='" . $matches[1] . "'>";
|
|
|
|
}
|
|
|
|
$content_suffix .= "<br>Article: <a href='$article_link'>$article_title ($article_author)</a>";
|
2019-06-02 13:03:26 +02:00
|
|
|
$article->outertext = '';
|
2018-04-16 11:55:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// get video on post
|
|
|
|
$video = $post->find('div.post_video_desc', 0);
|
2018-08-09 17:02:36 +02:00
|
|
|
$main_video_link = '';
|
2018-04-16 11:55:31 +02:00
|
|
|
if (is_object($video)) {
|
|
|
|
$video_title = $video->find('div.post_video_title', 0)->plaintext;
|
2018-08-09 17:02:36 +02:00
|
|
|
$video_link = $video->find('a.lnk', 0)->getAttribute('href');
|
|
|
|
$this->appendVideo($video_title, $video_link, $content_suffix, $post_videos);
|
2019-06-02 13:03:26 +02:00
|
|
|
$video->outertext = '';
|
2018-08-09 17:02:36 +02:00
|
|
|
$main_video_link = $video_link;
|
2018-04-16 11:55:31 +02:00
|
|
|
}
|
|
|
|
|
2018-06-10 22:09:50 +02:00
|
|
|
// get all other videos
|
|
|
|
foreach($post->find('a.page_post_thumb_video') as $a) {
|
2018-08-09 17:02:36 +02:00
|
|
|
$video_title = htmlspecialchars_decode($a->getAttribute('aria-label'));
|
2018-06-29 23:55:33 +02:00
|
|
|
$temp = explode(' ', $video_title, 2);
|
2018-06-10 22:09:50 +02:00
|
|
|
if (count($temp) > 1) $video_title = $temp[1];
|
2018-08-09 17:02:36 +02:00
|
|
|
$video_link = $a->getAttribute('href');
|
|
|
|
if ($video_link != $main_video_link) $this->appendVideo($video_title, $video_link, $content_suffix, $post_videos);
|
2019-06-02 13:03:26 +02:00
|
|
|
$a->outertext = '';
|
2018-06-10 22:09:50 +02:00
|
|
|
}
|
|
|
|
|
2018-04-16 11:55:31 +02:00
|
|
|
// get all photos
|
|
|
|
foreach($post->find('div.wall_text > a.page_post_thumb_wrap') as $a) {
|
|
|
|
$result = $this->getPhoto($a);
|
|
|
|
if ($result == null) continue;
|
2019-06-02 13:03:26 +02:00
|
|
|
$a->outertext = '';
|
2018-04-16 11:55:31 +02:00
|
|
|
$content_suffix .= "<br>$result";
|
2017-02-11 16:16:56 +01:00
|
|
|
}
|
2016-03-20 16:54:05 +01:00
|
|
|
|
2018-04-16 11:55:31 +02:00
|
|
|
// get albums
|
|
|
|
foreach($post->find('.page_album_wrap') as $el) {
|
|
|
|
$a = $el->find('.page_album_link', 0);
|
|
|
|
$album_title = $a->find('.page_album_title_text', 0)->getAttribute('title');
|
2018-08-09 17:02:36 +02:00
|
|
|
$album_link = $a->getAttribute('href');
|
2019-06-02 13:03:26 +02:00
|
|
|
$el->outertext = '';
|
2018-04-16 11:55:31 +02:00
|
|
|
$content_suffix .= "<br>Album: <a href='$album_link'>$album_title</a>";
|
2017-02-11 16:16:56 +01:00
|
|
|
}
|
2016-09-04 14:40:38 +02:00
|
|
|
|
2018-04-16 11:55:31 +02:00
|
|
|
// get photo documents
|
|
|
|
foreach($post->find('a.page_doc_photo_href') as $a) {
|
2018-08-09 17:02:36 +02:00
|
|
|
$doc_link = $a->getAttribute('href');
|
2018-06-29 23:55:33 +02:00
|
|
|
$doc_gif_label_element = $a->find('.page_gif_label', 0);
|
|
|
|
$doc_title_element = $a->find('.doc_label', 0);
|
2018-04-16 11:55:31 +02:00
|
|
|
|
|
|
|
if (is_object($doc_gif_label_element)) {
|
|
|
|
$gif_preview_img = backgroundToImg($a->find('.page_doc_photo', 0));
|
|
|
|
$content_suffix .= "<br>Gif: <a href='$doc_link'>$gif_preview_img</a>";
|
|
|
|
|
|
|
|
} else if (is_object($doc_title_element)) {
|
|
|
|
$doc_title = $doc_title_element->innertext;
|
|
|
|
$content_suffix .= "<br>Doc: <a href='$doc_link'>$doc_title</a>";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-06-02 13:03:26 +02:00
|
|
|
$a->outertext = '';
|
2018-04-16 11:55:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// get other documents
|
|
|
|
foreach($post->find('div.page_doc_row') as $div) {
|
2018-06-29 23:55:33 +02:00
|
|
|
$doc_title_element = $div->find('a.page_doc_title', 0);
|
2018-04-16 11:55:31 +02:00
|
|
|
|
|
|
|
if (is_object($doc_title_element)) {
|
|
|
|
$doc_title = $doc_title_element->innertext;
|
2018-08-09 17:02:36 +02:00
|
|
|
$doc_link = $doc_title_element->getAttribute('href');
|
2018-04-16 11:55:31 +02:00
|
|
|
$content_suffix .= "<br>Doc: <a href='$doc_link'>$doc_title</a>";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-06-02 13:03:26 +02:00
|
|
|
$div->outertext = '';
|
2018-04-16 11:55:31 +02:00
|
|
|
}
|
|
|
|
|
2018-06-10 22:09:50 +02:00
|
|
|
// get polls
|
|
|
|
foreach($post->find('div.page_media_poll_wrap') as $div) {
|
|
|
|
$poll_title = $div->find('.page_media_poll_title', 0)->innertext;
|
|
|
|
$content_suffix .= "<br>Poll: $poll_title";
|
|
|
|
foreach($div->find('div.page_poll_text') as $poll_stat_title) {
|
2018-06-29 23:55:33 +02:00
|
|
|
$content_suffix .= '<br>- ' . $poll_stat_title->innertext;
|
2018-06-10 22:09:50 +02:00
|
|
|
}
|
2019-06-02 13:03:26 +02:00
|
|
|
$div->outertext = '';
|
2018-06-10 22:09:50 +02:00
|
|
|
}
|
|
|
|
|
2018-04-16 11:55:31 +02:00
|
|
|
// get sign
|
|
|
|
$post_author = $pageName;
|
|
|
|
foreach($post->find('a.wall_signed_by') as $a) {
|
|
|
|
$post_author = $a->innertext;
|
2019-06-02 13:03:26 +02:00
|
|
|
$a->outertext = '';
|
2018-04-16 11:55:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (is_object($post->find('div.copy_quote', 0))) {
|
2019-04-07 21:50:58 +02:00
|
|
|
if ($this->getInput('hide_reposts') === true) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-04-16 11:55:31 +02:00
|
|
|
$copy_quote = $post->find('div.copy_quote', 0);
|
|
|
|
if ($copy_post_header = $copy_quote->find('div.copy_post_header', 0)) {
|
2019-06-02 13:03:26 +02:00
|
|
|
$copy_post_header->outertext = '';
|
2018-04-16 11:55:31 +02:00
|
|
|
}
|
|
|
|
$copy_quote_content = $copy_quote->innertext;
|
|
|
|
$copy_quote->outertext = "<br>Reposted: <br>$copy_quote_content";
|
|
|
|
}
|
|
|
|
|
|
|
|
$item = array();
|
|
|
|
$item['content'] = strip_tags(backgroundToImg($post->find('div.wall_text', 0)->innertext), '<br><img>');
|
|
|
|
$item['content'] .= $content_suffix;
|
2018-07-22 16:43:00 +02:00
|
|
|
$item['categories'] = array();
|
|
|
|
|
|
|
|
// get post hashtags
|
|
|
|
foreach($post->find('a') as $a) {
|
|
|
|
$href = $a->getAttribute('href');
|
|
|
|
$prefix = '/feed?section=search&q=%23';
|
|
|
|
$innertext = $a->innertext;
|
|
|
|
if ($href && substr($href, 0, strlen($prefix)) === $prefix) {
|
|
|
|
$item['categories'][] = urldecode(substr($href, strlen($prefix)));
|
|
|
|
} else if (substr($innertext, 0, 1) == '#') {
|
|
|
|
$item['categories'][] = $innertext;
|
|
|
|
}
|
|
|
|
}
|
2018-04-16 11:55:31 +02:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
// get post link
|
2018-04-16 11:55:31 +02:00
|
|
|
$post_link = $post->find('a.post_link', 0)->getAttribute('href');
|
2018-06-29 23:55:33 +02:00
|
|
|
preg_match('/wall-?\d+_(\d+)/', $post_link, $preg_match_result);
|
2018-04-16 11:55:31 +02:00
|
|
|
$item['post_id'] = intval($preg_match_result[1]);
|
|
|
|
$item['uri'] = $post_link;
|
2018-01-30 17:57:07 +01:00
|
|
|
$item['timestamp'] = $this->getTime($post);
|
2018-04-16 11:55:31 +02:00
|
|
|
$item['title'] = $this->getTitle($item['content']);
|
|
|
|
$item['author'] = $post_author;
|
2018-08-09 17:02:36 +02:00
|
|
|
$item['videos'] = $post_videos;
|
2018-04-16 11:55:31 +02:00
|
|
|
if ($is_pinned_post) {
|
|
|
|
// do not append it now
|
|
|
|
$pinned_post_item = $item;
|
|
|
|
} else {
|
|
|
|
$last_post_id = $item['post_id'];
|
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-08-09 17:02:36 +02:00
|
|
|
if (!is_null($pinned_post_item)) {
|
|
|
|
if (count($this->items) == 0) {
|
|
|
|
$this->items[] = $pinned_post_item;
|
|
|
|
} else if ($last_post_id < $pinned_post_item['post_id']) {
|
|
|
|
$this->items[] = $pinned_post_item;
|
|
|
|
usort($this->items, function ($item1, $item2) {
|
|
|
|
return $item2['post_id'] - $item1['post_id'];
|
|
|
|
});
|
|
|
|
}
|
2018-04-16 11:55:31 +02:00
|
|
|
}
|
2018-08-09 17:02:36 +02:00
|
|
|
|
|
|
|
$this->getCleanVideoLinks();
|
2018-04-16 11:55:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private function getPhoto($a) {
|
|
|
|
$onclick = $a->getAttribute('onclick');
|
|
|
|
preg_match('/return showPhoto\(.+?({.*})/', $onclick, $preg_match_result);
|
|
|
|
if (count($preg_match_result) == 0) return;
|
2018-01-30 17:57:07 +01:00
|
|
|
|
2018-04-16 11:55:31 +02:00
|
|
|
$arg = htmlspecialchars_decode( str_replace('queue:1', '"queue":1', $preg_match_result[1]) );
|
|
|
|
$data = json_decode($arg, true);
|
|
|
|
if ($data == null) return;
|
|
|
|
|
2018-06-29 23:55:33 +02:00
|
|
|
$thumb = $data['temp']['base'] . $data['temp']['x_'][0] . '.jpg';
|
2018-04-16 11:55:31 +02:00
|
|
|
$original = '';
|
|
|
|
foreach(array('y_', 'z_', 'w_') as $key) {
|
|
|
|
if (!isset($data['temp'][$key])) continue;
|
2018-05-29 11:01:54 +02:00
|
|
|
if (!isset($data['temp'][$key][0])) continue;
|
2018-06-29 23:55:33 +02:00
|
|
|
if (substr($data['temp'][$key][0], 0, 4) == 'http') {
|
|
|
|
$base = '';
|
2018-05-29 11:01:54 +02:00
|
|
|
} else {
|
|
|
|
$base = $data['temp']['base'];
|
|
|
|
}
|
2018-06-29 23:55:33 +02:00
|
|
|
$original = $base . $data['temp'][$key][0] . '.jpg';
|
2018-04-16 11:55:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($original) {
|
|
|
|
return "<a href='$original'><img src='$thumb'></a>";
|
|
|
|
} else {
|
|
|
|
return "<img src='$thumb'>";
|
2018-01-30 17:57:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-16 11:55:31 +02:00
|
|
|
private function getTitle($content)
|
|
|
|
{
|
|
|
|
preg_match('/^["\w\ \p{Cyrillic}\(\)\?#«»-]+/mu', htmlspecialchars_decode($content), $result);
|
2018-06-29 23:55:33 +02:00
|
|
|
if (count($result) == 0) return 'untitled';
|
2018-04-16 11:55:31 +02:00
|
|
|
return $result[0];
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2018-08-05 15:53:45 +02:00
|
|
|
private function getContents()
|
2018-01-30 17:57:07 +01:00
|
|
|
{
|
|
|
|
ini_set('user-agent', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:53.0) Gecko/20100101 Firefox/53.0');
|
|
|
|
|
2018-04-06 20:24:43 +02:00
|
|
|
$header = array('Accept-language: en', 'Cookie: remixlang=3');
|
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
|
|
|
}
|
|
|
|
|
2018-08-09 17:02:36 +02:00
|
|
|
protected function appendVideo($video_title, $video_link, &$content_suffix, array &$post_videos)
|
|
|
|
{
|
|
|
|
if (!$video_title) $video_title = '(empty)';
|
|
|
|
|
|
|
|
preg_match('/video([0-9-]+_[0-9]+)/', $video_link, $preg_match_result);
|
|
|
|
|
|
|
|
if (count($preg_match_result) > 1) {
|
|
|
|
$video_id = $preg_match_result[1];
|
|
|
|
$this->videos[ $video_id ] = array(
|
|
|
|
'url' => $video_link,
|
|
|
|
'title' => $video_title,
|
|
|
|
);
|
|
|
|
$post_videos[] = $video_id;
|
|
|
|
} else {
|
2018-11-05 12:55:58 +01:00
|
|
|
$content_suffix .= '<br>Video: <a href="' . htmlspecialchars($video_link) . '">' . $video_title . '</a>';
|
2018-08-09 17:02:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getCleanVideoLinks() {
|
|
|
|
$result = $this->api('video.get', array(
|
|
|
|
'videos' => implode(',', array_keys($this->videos)),
|
|
|
|
'count' => 200
|
|
|
|
));
|
|
|
|
|
|
|
|
if (isset($result['error'])) return;
|
|
|
|
|
|
|
|
foreach($result['response']['items'] as $item) {
|
2018-11-05 12:55:58 +01:00
|
|
|
$video_id = strval($item['owner_id']) . '_' . strval($item['id']);
|
2018-08-09 17:02:36 +02:00
|
|
|
$this->videos[$video_id]['url'] = $item['player'];
|
|
|
|
}
|
2018-01-30 17:57:07 +01:00
|
|
|
|
2018-08-09 17:02:36 +02:00
|
|
|
foreach($this->items as &$item) {
|
|
|
|
foreach($item['videos'] as $video_id) {
|
|
|
|
$video_link = $this->videos[$video_id]['url'];
|
|
|
|
$video_title = $this->videos[$video_id]['title'];
|
2018-11-05 12:55:58 +01:00
|
|
|
$item['content'] .= '<br>Video: <a href="' . htmlspecialchars($video_link) . '">' . $video_title . '</a>';
|
2018-08-09 17:02:36 +02:00
|
|
|
}
|
|
|
|
unset($item['videos']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function api($method, array $params)
|
|
|
|
{
|
|
|
|
$params['v'] = '5.80';
|
|
|
|
$params['access_token'] = $this->getAccessToken();
|
2018-11-05 12:55:58 +01:00
|
|
|
return json_decode( getContents('https://api.vk.com/method/' . $method . '?' . http_build_query($params)), true );
|
2018-08-09 17:02:36 +02:00
|
|
|
}
|
2016-03-20 16:54:05 +01:00
|
|
|
}
|