From 3ed193eee2e873496ca3635561c61e0e8ba49edd Mon Sep 17 00:00:00 2001 From: sysadminstory Date: Fri, 22 Mar 2024 09:44:42 +0100 Subject: [PATCH] [IdealoBridge] Update Bridge Meta data & (#4022) The bridge meta data has been updated to reflect that the bridge works for other international version of Idealo. The Price trend is displayed on every price in the the Feed element content. The same function is now used to show the price trend in the Feed element title, to remove some duplicate code.. --- bridges/IdealoBridge.php | 46 ++++++++++++++++++++++++---------------- 1 file changed, 28 insertions(+), 18 deletions(-) diff --git a/bridges/IdealoBridge.php b/bridges/IdealoBridge.php index fe13e13d..4eb66dcb 100644 --- a/bridges/IdealoBridge.php +++ b/bridges/IdealoBridge.php @@ -2,15 +2,15 @@ class IdealoBridge extends BridgeAbstract { - const NAME = 'Idealo.de Bridge'; + const NAME = 'idealo.de / idealo.fr / idealo.es Bridge'; const URI = 'https://www.idealo.de'; - const DESCRIPTION = 'Tracks the price for a product on idealo.de. Pricealarm if specific price is set'; + const DESCRIPTION = 'Tracks the price for a product on idealo.de / idealo.fr / idealo.es. Pricealarm if specific price is set'; const MAINTAINER = 'SebLaus'; const CACHE_TIMEOUT = 60 * 30; // 30 min const PARAMETERS = [ [ 'Link' => [ - 'name' => 'Idealo.de Link to productpage', + 'name' => 'idealo.de / idealo.fr / idealo.es Link to productpage', 'required' => true, 'exampleValue' => 'https://www.idealo.de/preisvergleich/OffersOfProduct/202007367_-s7-pro-ultra-roborock.html' ], @@ -81,6 +81,25 @@ class IdealoBridge extends BridgeAbstract return $title . ' - ' . $this::NAME; } + + /** + * Returns the Price Trend emoji + * @return string the Price Trend Emoji + */ + private function getPriceTrend($NewPrice, $OldPrice) + { + // In case there is no old PRice, then show no trend + if ($OldPrice === null) { + $trend = ''; + } else if ($NewPrice > $OldPrice) { + $trend = '↗'; + } else if ($NewPrice == $OldPrice) { + $trend = '➡'; + } else if ($NewPrice < $OldPrice) { + $trend = '↘'; + } + return $trend; + } public function collectData() { // Needs header with user-agent to function properly. @@ -127,9 +146,11 @@ class IdealoBridge extends BridgeAbstract // Get Product Image $image = $html->find('.datasheet-cover-image', 0)->src; + $content = ''; + // Generate Content if (isset($PriceNew) && $PriceNew > 1) { - $content = "

Price New:
$PriceNew

"; + $content .= sprintf('

Price New:
%s %s

', $PriceNew, $this->getPriceTrend($PriceNew, $OldPriceNew)); $content .= "

Price New before:
$OldPriceNew

"; } @@ -138,7 +159,7 @@ class IdealoBridge extends BridgeAbstract } if (isset($PriceUsed) && $PriceUsed > 1) { - $content .= "

Price Used:
$PriceUsed

"; + $content .= sprintf('

Price Used:
%s %s

', $PriceUsed, $this->getPriceTrend($PriceUsed, $OldPriceUsed)); $content .= "

Price Used before:
$OldPriceUsed

"; } @@ -191,22 +212,11 @@ class IdealoBridge extends BridgeAbstract $title = 'Priceupdate! '; if (!$this->getInput('ExcludeNew')) { - if (isset($PriceNew) && $PriceNew < $OldPriceNew) { - $title .= 'NEW:⬇ '; // Arrow Down Emoji - } - if (isset($PriceNew) && $PriceNew > $OldPriceNew) { - $title .= 'NEW:⬆ '; // Arrow Up Emoji - } + $title .= 'NEW' . $this->getPriceTrend($PriceNew, $OldPriceNew) . ' '; } - if (!$this->getInput('ExcludeUsed')) { - if (isset($PriceUsed) && $PriceUsed < $OldPriceUsed) { - $title .= 'USED:⬇ '; // Arrow Down Emoji - } - if (isset($PriceUsed) && $PriceUsed > $OldPriceUsed) { - $title .= 'USED:⬆ '; // Arrow Up Emoji - } + $title .= 'USED' . $this->getPriceTrend($PriceUsed, $OldPriceUsed) . ' '; } $title .= $Productname; $title .= ' ';