mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
fix(vk): semi-disable broken bridge (#4448)
This commit is contained in:
parent
dd4dcfa59c
commit
e4c32bb046
@ -7,8 +7,8 @@ class VkBridge extends BridgeAbstract
|
|||||||
// const MAINTAINER = 'ahiles3005';
|
// const MAINTAINER = 'ahiles3005';
|
||||||
const NAME = 'VK.com';
|
const NAME = 'VK.com';
|
||||||
const URI = 'https://vk.com/';
|
const URI = 'https://vk.com/';
|
||||||
const CACHE_TIMEOUT = 300; // 5min
|
const CACHE_TIMEOUT = 3600; // 1h
|
||||||
const DESCRIPTION = 'Working with open pages';
|
const DESCRIPTION = 'Does not work anymore';
|
||||||
const PARAMETERS = [
|
const PARAMETERS = [
|
||||||
[
|
[
|
||||||
'u' => [
|
'u' => [
|
||||||
@ -65,6 +65,7 @@ class VkBridge extends BridgeAbstract
|
|||||||
|
|
||||||
public function collectData()
|
public function collectData()
|
||||||
{
|
{
|
||||||
|
return;
|
||||||
$text_html = $this->getContents();
|
$text_html = $this->getContents();
|
||||||
|
|
||||||
$text_html = iconv('windows-1251', 'utf-8//ignore', $text_html);
|
$text_html = iconv('windows-1251', 'utf-8//ignore', $text_html);
|
||||||
@ -391,10 +392,13 @@ class VkBridge extends BridgeAbstract
|
|||||||
$item['categories'] = $hashtags;
|
$item['categories'] = $hashtags;
|
||||||
|
|
||||||
// get post link
|
// get post link
|
||||||
$post_link = $post->find('a.PostHeaderSubtitle__link', 0)->getAttribute('href');
|
$var = $post->find('a.PostHeaderSubtitle__link', 0);
|
||||||
preg_match('/wall-?\d+_(\d+)/', $post_link, $preg_match_result);
|
if ($var) {
|
||||||
$item['post_id'] = intval($preg_match_result[1]);
|
$post_link = $var->getAttribute('href');
|
||||||
$item['uri'] = $post_link;
|
preg_match('/wall-?\d+_(\d+)/', $post_link, $preg_match_result);
|
||||||
|
$item['post_id'] = intval($preg_match_result[1]);
|
||||||
|
$item['uri'] = $post_link;
|
||||||
|
}
|
||||||
$item['timestamp'] = $this->getTime($post);
|
$item['timestamp'] = $this->getTime($post);
|
||||||
$item['title'] = $this->getTitle($item['content']);
|
$item['title'] = $this->getTitle($item['content']);
|
||||||
$item['author'] = $post_author;
|
$item['author'] = $post_author;
|
||||||
@ -402,7 +406,7 @@ class VkBridge extends BridgeAbstract
|
|||||||
// do not append it now
|
// do not append it now
|
||||||
$pinned_post_item = $item;
|
$pinned_post_item = $item;
|
||||||
} else {
|
} else {
|
||||||
$last_post_id = $item['post_id'];
|
$last_post_id = $item['post_id'] ?? null;
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -474,7 +478,10 @@ class VkBridge extends BridgeAbstract
|
|||||||
if ($accurateDateElement) {
|
if ($accurateDateElement) {
|
||||||
return $accurateDateElement->getAttribute('time');
|
return $accurateDateElement->getAttribute('time');
|
||||||
} else {
|
} else {
|
||||||
$strdate = $post->find('time.PostHeaderSubtitle__item', 0)->plaintext;
|
$strdate = $post->find('time.PostHeaderSubtitle__item', 0)->plaintext ?? null;
|
||||||
|
if (!$strdate) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
$strdate = preg_replace('/[\x00-\x1F\x7F-\xFF]/', ' ', $strdate);
|
$strdate = preg_replace('/[\x00-\x1F\x7F-\xFF]/', ' ', $strdate);
|
||||||
|
|
||||||
$date = date_parse($strdate);
|
$date = date_parse($strdate);
|
||||||
|
Loading…
Reference in New Issue
Block a user