From 4d15ffd2cf44807210cb5d2783ce3bc5c8476275 Mon Sep 17 00:00:00 2001 From: sysadminstory Date: Fri, 16 Feb 2024 03:58:15 +0100 Subject: [PATCH] [PepperBridgeAbstract,DealabsBridge,HotUKDealsBridge,MydealsBridge] (#3982) Exclude thread results Some categories showed some thread in the middle of the deals : now only the deals are handled Updated the "no results" text to follow the sites changes --- bridges/DealabsBridge.php | 2 +- bridges/HotUKDealsBridge.php | 2 +- bridges/MydealsBridge.php | 2 +- bridges/PepperBridgeAbstract.php | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bridges/DealabsBridge.php b/bridges/DealabsBridge.php index a5a3771b..c65f0c75 100644 --- a/bridges/DealabsBridge.php +++ b/bridges/DealabsBridge.php @@ -1913,7 +1913,7 @@ class DealabsBridge extends PepperBridgeAbstract 'uri-merchant' => 'search/bons-plans?merchant-id=', 'request-error' => 'Impossible de joindre Dealabs', 'thread-error' => 'Impossible de déterminer l\'ID de la discussion. Vérifiez l\'URL que vous avez entré', - 'no-results' => 'Il n'y a rien à afficher pour le moment :(', + 'no-results' => 'Aucun résultat', 'currency' => '€', 'relative-date-indicator' => [ 'il y a', diff --git a/bridges/HotUKDealsBridge.php b/bridges/HotUKDealsBridge.php index 44da417a..1f059123 100644 --- a/bridges/HotUKDealsBridge.php +++ b/bridges/HotUKDealsBridge.php @@ -3277,7 +3277,7 @@ class HotUKDealsBridge extends PepperBridgeAbstract 'uri-merchant' => 'search/deals?merchant-id=', 'request-error' => 'Could not request HotUKDeals', 'thread-error' => 'Unable to determine the thread ID. Check the URL you entered', - 'no-results' => 'Ooops, looks like we could', + 'no-results' => 'no results', 'currency' => '£', 'relative-date-indicator' => [ 'ago', diff --git a/bridges/MydealsBridge.php b/bridges/MydealsBridge.php index dda3d2a9..08e32a0c 100644 --- a/bridges/MydealsBridge.php +++ b/bridges/MydealsBridge.php @@ -2024,7 +2024,7 @@ class MydealsBridge extends PepperBridgeAbstract 'uri-merchant' => 'search/gutscheine?merchant-id=', 'request-error' => 'Could not request mydeals', 'thread-error' => 'Die ID der Diskussion kann nicht ermittelt werden. Überprüfen Sie die eingegebene URL', - 'no-results' => 'Ups, wir konnten nichts', + 'no-results' => 'keine Ergebnisse', 'currency' => '€', 'relative-date-indicator' => [ 'vor', diff --git a/bridges/PepperBridgeAbstract.php b/bridges/PepperBridgeAbstract.php index 2516fc1e..d0e15238 100644 --- a/bridges/PepperBridgeAbstract.php +++ b/bridges/PepperBridgeAbstract.php @@ -44,7 +44,7 @@ class PepperBridgeAbstract extends BridgeAbstract protected function collectDeals($url) { $html = getSimpleHTMLDOM($url); - $list = $html->find('article[id]'); + $list = $html->find('article[id][class*=thread--deal]]'); // Deal Image Link CSS Selector $selectorImageLink = implode( @@ -109,9 +109,9 @@ class PepperBridgeAbstract extends BridgeAbstract $item['content'] = '
' . $this->getImage($deal) - . '"/>' + . '' . $this->getHTMLTitle($item) . $this->getPrice($jsonDealData) . $this->getDiscount($jsonDealData) @@ -430,7 +430,7 @@ HEREDOC; { // Get thread Image JSON content $content = Json::decode($deal->find('div[class*=threadGrid-image]', 0)->find('div[class=js-vue2]', 0)->getAttribute('data-vue2')); - return $content['props']['threadImageUrl']; + return ''; } /**