From 0c8fabeb119af188bcd9ea3832f3b5f088f8ee77 Mon Sep 17 00:00:00 2001 From: Eugene Molotov Date: Tue, 30 Mar 2021 21:06:23 +0300 Subject: [PATCH] =?UTF-8?q?[PikabuBridge]=20Marking=20posts=20from=20"?= =?UTF-8?q?=D0=9A=D0=B0=D0=BA=20=D0=B1=D1=8B=20=D0=9D=D0=BE=D0=B2=D0=BE?= =?UTF-8?q?=D1=81=D1=82=D0=B8"=20section,=20which=20are=20funny=20and=20de?= =?UTF-8?q?liberately=20fake=20(#2032)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bridges/PikabuBridge.php | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/bridges/PikabuBridge.php b/bridges/PikabuBridge.php index a54f6bf5..3d514ed0 100644 --- a/bridges/PikabuBridge.php +++ b/bridges/PikabuBridge.php @@ -123,17 +123,25 @@ class PikabuBridge extends BridgeAbstract { } } - $title = $post->find('.story__title-link', 0); + $title_element = $post->find('.story__title-link', 0); + + $title = $title_element->plaintext; + $community_link = $post->find('.story__community-link', 0); + // adding special marker for "Maybe News" section + // these posts are fake + if (!is_null($community_link) && $community_link->getAttribute('href') == '/community/maybenews') { + $title = '[' . $community_link->innertext . '] ' . $title; + } $item = array(); $item['categories'] = $categories; $item['author'] = $post->find('.user__nick', 0)->innertext; - $item['title'] = $title->plaintext; + $item['title'] = $title; $item['content'] = strip_tags( backgroundToImg($post->find('.story__content-inner', 0)->innertext), '

'); - $item['uri'] = $title->href; + $item['uri'] = $title_element->href; $item['timestamp'] = strtotime($time->getAttribute('datetime')); $this->items[] = $item; }