mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[PepperBridgeAbstract,DealabsBridge,HotUKDealsBridge,MydealsBridge] Fix missing price, discount and ships from information (#3956)
- DealabsBridge - HotUKDealsBridge - MydealsBridge Add the currency in the i8n data of the bridges - PepperBridgeAbstract The Price, discount data ans Ships from information are in the HTML content anymore, so switched to the js-vue2 attributes
This commit is contained in:
parent
66a6847fd0
commit
64f95b4990
@ -1914,6 +1914,7 @@ class DealabsBridge extends PepperBridgeAbstract
|
||||
'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 :(',
|
||||
'currency' => '€',
|
||||
'relative-date-indicator' => [
|
||||
'il y a',
|
||||
],
|
||||
|
@ -3278,6 +3278,7 @@ class HotUKDealsBridge extends PepperBridgeAbstract
|
||||
'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',
|
||||
'currency' => '£',
|
||||
'relative-date-indicator' => [
|
||||
'ago',
|
||||
],
|
||||
|
@ -2025,6 +2025,7 @@ class MydealsBridge extends PepperBridgeAbstract
|
||||
'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',
|
||||
'currency' => '€',
|
||||
'relative-date-indicator' => [
|
||||
'vor',
|
||||
'seit'
|
||||
|
@ -113,8 +113,8 @@ class PepperBridgeAbstract extends BridgeAbstract
|
||||
. $this->getImage($deal)
|
||||
. '"/></td><td>'
|
||||
. $this->getHTMLTitle($item)
|
||||
. $this->getPrice($deal)
|
||||
. $this->getDiscount($deal)
|
||||
. $this->getPrice($jsonDealData)
|
||||
. $this->getDiscount($jsonDealData)
|
||||
. $this->getShipsFrom($deal)
|
||||
. $this->getShippingCost($deal)
|
||||
. $this->getSource($jsonDealData)
|
||||
@ -273,20 +273,12 @@ HEREDOC;
|
||||
* Get the Price from a Deal if it exists
|
||||
* @return string String of the deal price
|
||||
*/
|
||||
private function getPrice($deal)
|
||||
private function getPrice($jsonDealData)
|
||||
{
|
||||
if (
|
||||
$deal->find(
|
||||
'span[class*=thread-price]',
|
||||
0
|
||||
) != null
|
||||
) {
|
||||
return '<div>' . $this->i8n('price') . ' : '
|
||||
. $deal->find(
|
||||
'span[class*=thread-price]',
|
||||
0
|
||||
)->plaintext
|
||||
. '</div>';
|
||||
if ($jsonDealData['props']['thread']['discountType'] == null) {
|
||||
$price = $jsonDealData['props']['thread']['price'];
|
||||
return '<div>' . $this->i8n('price') . ' : '
|
||||
. $price . ' ' . $this->i8n('currency') . '</div>';
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
@ -409,23 +401,22 @@ HEREDOC;
|
||||
* Get the original Price and discout from a Deal if it exists
|
||||
* @return string String of the deal original price and discount
|
||||
*/
|
||||
private function getDiscount($deal)
|
||||
private function getDiscount($jsonDealData)
|
||||
{
|
||||
if ($deal->find('span[class*=mute--text text--lineThrough]', 0) != null) {
|
||||
$discountHtml = $deal->find('span[class=space--ml-1 size--all-l size--fromW3-xl]', 0);
|
||||
if ($discountHtml != null) {
|
||||
$discount = $discountHtml->plaintext;
|
||||
} else {
|
||||
$discount = '';
|
||||
$oldPrice = $jsonDealData['props']['thread']['nextBestPrice'];
|
||||
$newPrice = $jsonDealData['props']['thread']['price'];
|
||||
$percentage = $jsonDealData['props']['thread']['percentage'];
|
||||
|
||||
if ($oldPrice != 0) {
|
||||
// If there is no percentage calculated, then calculate it manually
|
||||
if ($percentage == 0) {
|
||||
$percentage = round(100 - ($newPrice * 100 / $oldPrice), 2);
|
||||
}
|
||||
return '<div>' . $this->i8n('discount') . ' : <span style="text-decoration: line-through;">'
|
||||
. $deal->find(
|
||||
'span[class*=mute--text text--lineThrough]',
|
||||
0
|
||||
)->plaintext
|
||||
. '</span> '
|
||||
. $discount
|
||||
. '</div>';
|
||||
. $oldPrice . ' ' . $this->i8n('currency')
|
||||
. '</span> -'
|
||||
. $percentage
|
||||
. ' %</div>';
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
@ -448,19 +439,17 @@ HEREDOC;
|
||||
*/
|
||||
private function getShipsFrom($deal)
|
||||
{
|
||||
$selector = implode(
|
||||
' ', /* Notice this is a space! */
|
||||
[
|
||||
'hide--toW2',
|
||||
'metaRibbon',
|
||||
]
|
||||
);
|
||||
if ($deal->find('span[class*=' . $selector . ']', 0) != null) {
|
||||
$children = $deal->find('span[class*=' . $selector . ']', 0)->children(2);
|
||||
if ($children) {
|
||||
return '<div>' . $children->plaintext . '</div>';
|
||||
$dealMeta = Json::decode($deal->find('div[class=threadGrid-headerMeta]', 0)->find('div[class=js-vue2]', 1)->getAttribute('data-vue2'));
|
||||
$metas = $dealMeta['props']['metaRibbons'];
|
||||
$shipsFrom = null;
|
||||
foreach ($metas as $meta) {
|
||||
if ($meta['type'] == 'dispatched-from') {
|
||||
$shipsFrom = $meta['text'];
|
||||
}
|
||||
}
|
||||
if ($shipsFrom != null) {
|
||||
return '<div>' . $shipsFrom . '</div>';
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user