diff --git a/bridges/AmazonPriceTrackerBridge.php b/bridges/AmazonPriceTrackerBridge.php index aacc2d85..6de451f1 100644 --- a/bridges/AmazonPriceTrackerBridge.php +++ b/bridges/AmazonPriceTrackerBridge.php @@ -187,6 +187,12 @@ EOT; private function scrapePriceGeneric($html) { + $default = [ + 'price' => null, + 'displayPrice' => null, + 'currency' => null, + 'shipping' => null, + ]; $priceDiv = null; foreach (self::PRICE_SELECTORS as $sel) { @@ -197,58 +203,48 @@ EOT; } if (!$priceDiv) { - return false; + return $default; } $priceString = str_replace(str_split(self::WHITESPACE), '', $priceDiv->plaintext); preg_match('/(\d+\.\d{0,2})/', $priceString, $matches); - $price = $matches[0]; + $price = $matches[0] ?? null; $currency = str_replace($price, '', $priceString); if ($price != null && $currency != null) { return [ 'price' => $price, + 'displayPrice' => null, 'currency' => $currency, 'shipping' => '0' ]; } - - return false; + return $default; } - private function renderContent($image, $data) - { - $price = $data['displayPrice']; - if (!$price) { - $price = "{$data['price']} {$data['currency']}"; - } - - $html = "$image
Price: $price"; - - if ($data['shipping'] !== '0') { - $html .= "
Shipping: {$data['shipping']} {$data['currency']}
"; - } - - return $html; - } - - /** - * Scrape method for Amazon product page - * @return [type] [description] - */ public function collectData() { $html = $this->getHtml(); $this->title = $this->getTitle($html); - $imageTag = $this->getImage($html); - + $image = $this->getImage($html); $data = $this->scrapePriceGeneric($html); + // render + $content = ''; + $price = $data['displayPrice']; + if (!$price) { + $price = sprintf('%s %s', $data['price'], $data['currency']); + } + $content .= sprintf('%s
Price: %s', $image, $price); + if ($data['shipping'] !== '0') { + $content .= sprintf('
Shipping: %s %s
', $data['shipping'], $data['currency']); + } + $item = [ 'title' => $this->title, 'uri' => $this->getURI(), - 'content' => $this->renderContent($imageTag, $data), + 'content' => $content, // This is to ensure that feed readers notice the price change 'uid' => md5($data['price']) ]; diff --git a/bridges/EuronewsBridge.php b/bridges/EuronewsBridge.php index bce05f7c..1a177cad 100644 --- a/bridges/EuronewsBridge.php +++ b/bridges/EuronewsBridge.php @@ -58,7 +58,7 @@ class EuronewsBridge extends BridgeAbstract $data = json_decode($json, true); foreach ($data as $datum) { - $datum_uri = $root_url . $datum['fullUrl']; + $datum_uri = $root_url . $datum['path']; $url_datum = $this->getItemContent($datum_uri); $categories = []; if (array_key_exists('program', $datum)) { diff --git a/bridges/PornhubBridge.php b/bridges/PornhubBridge.php index c15db064..75ac4c0f 100644 --- a/bridges/PornhubBridge.php +++ b/bridges/PornhubBridge.php @@ -91,11 +91,14 @@ class PornhubBridge extends BridgeAbstract $item['content'] = ''; } - // date hack, guess upload YYYYMMDD from thumbnail URL (format: https://ci.phncdn.com/videos/201907/25/--- ) $uploaded = explode('/', $image); - $uploaded = strtotime($uploaded[4] . $uploaded[5]); - $item['timestamp'] = $uploaded; - + if (isset($uploaded[4])) { + // date hack, guess upload YYYYMMDD from thumbnail URL (format: https://ci.phncdn.com/videos/201907/25/--- ) + $uploadTimestamp = strtotime($uploaded[4] . $uploaded[5]); + $item['timestamp'] = $uploadTimestamp; + } else { + // The thumbnail url did not have a date in it for some unknown reason + } $this->items[] = $item; } } diff --git a/bridges/TelegramBridge.php b/bridges/TelegramBridge.php index 511f0263..a31d6bf1 100644 --- a/bridges/TelegramBridge.php +++ b/bridges/TelegramBridge.php @@ -282,12 +282,16 @@ EOD; preg_match($this->backgroundImageRegex, $messageDiv->find('i.link_preview_video_thumb', 0)->style, $photo); } elseif ($messageDiv->find('i.tgme_widget_message_roundvideo_thumb')) { preg_match($this->backgroundImageRegex, $messageDiv->find('i.tgme_widget_message_roundvideo_thumb', 0)->style, $photo); + } else { + // Not all videos have a poster image + $photo = [null, null]; } $this->enclosures[] = $photo[1]; + // Intentionally omitting preload="none" on