mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
fix: various bug fixes (#3102)
* fix: Undefined offset: 4 * fix: Trying to access array offset on value of type bool * fix: Undefined variable: photo at bridges/TelegramBridge.php line 287 * fix: Trying to get property innertext of non-object at bridges/ZDNetBridge.php line 186 * fix: Undefined index: Category at bridges/UnraidCommunityApplicationsBridge.php line 42 * fix: Undefined index: fullUrl at bridges/EuronewsBridge.php line 61
This commit is contained in:
parent
ffbc107687
commit
37f1ab726b
@ -187,6 +187,12 @@ EOT;
|
|||||||
|
|
||||||
private function scrapePriceGeneric($html)
|
private function scrapePriceGeneric($html)
|
||||||
{
|
{
|
||||||
|
$default = [
|
||||||
|
'price' => null,
|
||||||
|
'displayPrice' => null,
|
||||||
|
'currency' => null,
|
||||||
|
'shipping' => null,
|
||||||
|
];
|
||||||
$priceDiv = null;
|
$priceDiv = null;
|
||||||
|
|
||||||
foreach (self::PRICE_SELECTORS as $sel) {
|
foreach (self::PRICE_SELECTORS as $sel) {
|
||||||
@ -197,58 +203,48 @@ EOT;
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!$priceDiv) {
|
if (!$priceDiv) {
|
||||||
return false;
|
return $default;
|
||||||
}
|
}
|
||||||
|
|
||||||
$priceString = str_replace(str_split(self::WHITESPACE), '', $priceDiv->plaintext);
|
$priceString = str_replace(str_split(self::WHITESPACE), '', $priceDiv->plaintext);
|
||||||
preg_match('/(\d+\.\d{0,2})/', $priceString, $matches);
|
preg_match('/(\d+\.\d{0,2})/', $priceString, $matches);
|
||||||
|
|
||||||
$price = $matches[0];
|
$price = $matches[0] ?? null;
|
||||||
$currency = str_replace($price, '', $priceString);
|
$currency = str_replace($price, '', $priceString);
|
||||||
|
|
||||||
if ($price != null && $currency != null) {
|
if ($price != null && $currency != null) {
|
||||||
return [
|
return [
|
||||||
'price' => $price,
|
'price' => $price,
|
||||||
|
'displayPrice' => null,
|
||||||
'currency' => $currency,
|
'currency' => $currency,
|
||||||
'shipping' => '0'
|
'shipping' => '0'
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
return $default;
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private function renderContent($image, $data)
|
|
||||||
{
|
|
||||||
$price = $data['displayPrice'];
|
|
||||||
if (!$price) {
|
|
||||||
$price = "{$data['price']} {$data['currency']}";
|
|
||||||
}
|
|
||||||
|
|
||||||
$html = "$image<br>Price: $price";
|
|
||||||
|
|
||||||
if ($data['shipping'] !== '0') {
|
|
||||||
$html .= "<br>Shipping: {$data['shipping']} {$data['currency']}</br>";
|
|
||||||
}
|
|
||||||
|
|
||||||
return $html;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Scrape method for Amazon product page
|
|
||||||
* @return [type] [description]
|
|
||||||
*/
|
|
||||||
public function collectData()
|
public function collectData()
|
||||||
{
|
{
|
||||||
$html = $this->getHtml();
|
$html = $this->getHtml();
|
||||||
$this->title = $this->getTitle($html);
|
$this->title = $this->getTitle($html);
|
||||||
$imageTag = $this->getImage($html);
|
$image = $this->getImage($html);
|
||||||
|
|
||||||
$data = $this->scrapePriceGeneric($html);
|
$data = $this->scrapePriceGeneric($html);
|
||||||
|
|
||||||
|
// render
|
||||||
|
$content = '';
|
||||||
|
$price = $data['displayPrice'];
|
||||||
|
if (!$price) {
|
||||||
|
$price = sprintf('%s %s', $data['price'], $data['currency']);
|
||||||
|
}
|
||||||
|
$content .= sprintf('%s<br>Price: %s', $image, $price);
|
||||||
|
if ($data['shipping'] !== '0') {
|
||||||
|
$content .= sprintf('<br>Shipping: %s %s</br>', $data['shipping'], $data['currency']);
|
||||||
|
}
|
||||||
|
|
||||||
$item = [
|
$item = [
|
||||||
'title' => $this->title,
|
'title' => $this->title,
|
||||||
'uri' => $this->getURI(),
|
'uri' => $this->getURI(),
|
||||||
'content' => $this->renderContent($imageTag, $data),
|
'content' => $content,
|
||||||
// This is to ensure that feed readers notice the price change
|
// This is to ensure that feed readers notice the price change
|
||||||
'uid' => md5($data['price'])
|
'uid' => md5($data['price'])
|
||||||
];
|
];
|
||||||
|
@ -58,7 +58,7 @@ class EuronewsBridge extends BridgeAbstract
|
|||||||
$data = json_decode($json, true);
|
$data = json_decode($json, true);
|
||||||
|
|
||||||
foreach ($data as $datum) {
|
foreach ($data as $datum) {
|
||||||
$datum_uri = $root_url . $datum['fullUrl'];
|
$datum_uri = $root_url . $datum['path'];
|
||||||
$url_datum = $this->getItemContent($datum_uri);
|
$url_datum = $this->getItemContent($datum_uri);
|
||||||
$categories = [];
|
$categories = [];
|
||||||
if (array_key_exists('program', $datum)) {
|
if (array_key_exists('program', $datum)) {
|
||||||
|
@ -91,11 +91,14 @@ class PornhubBridge extends BridgeAbstract
|
|||||||
$item['content'] = '<a href="' . $item['uri'] . '"><img src="' . $image . '"></a>';
|
$item['content'] = '<a href="' . $item['uri'] . '"><img src="' . $image . '"></a>';
|
||||||
}
|
}
|
||||||
|
|
||||||
// date hack, guess upload YYYYMMDD from thumbnail URL (format: https://ci.phncdn.com/videos/201907/25/--- )
|
|
||||||
$uploaded = explode('/', $image);
|
$uploaded = explode('/', $image);
|
||||||
$uploaded = strtotime($uploaded[4] . $uploaded[5]);
|
if (isset($uploaded[4])) {
|
||||||
$item['timestamp'] = $uploaded;
|
// 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;
|
$this->items[] = $item;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -282,12 +282,16 @@ EOD;
|
|||||||
preg_match($this->backgroundImageRegex, $messageDiv->find('i.link_preview_video_thumb', 0)->style, $photo);
|
preg_match($this->backgroundImageRegex, $messageDiv->find('i.link_preview_video_thumb', 0)->style, $photo);
|
||||||
} elseif ($messageDiv->find('i.tgme_widget_message_roundvideo_thumb')) {
|
} elseif ($messageDiv->find('i.tgme_widget_message_roundvideo_thumb')) {
|
||||||
preg_match($this->backgroundImageRegex, $messageDiv->find('i.tgme_widget_message_roundvideo_thumb', 0)->style, $photo);
|
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];
|
$this->enclosures[] = $photo[1];
|
||||||
|
|
||||||
|
// Intentionally omitting preload="none" on <video>
|
||||||
return <<<EOD
|
return <<<EOD
|
||||||
<video controls="" poster="{$photo[1]}" style="max-width:100%;" preload="none">
|
<video controls="" poster="{$photo[1]}" style="max-width:100%;">
|
||||||
<source src="{$messageDiv->find('video', 0)->src}" type="video/mp4">
|
<source src="{$messageDiv->find('video', 0)->src}" type="video/mp4">
|
||||||
</video>
|
</video>
|
||||||
EOD;
|
EOD;
|
||||||
|
@ -31,50 +31,52 @@ class UnraidCommunityApplicationsBridge extends BridgeAbstract
|
|||||||
{
|
{
|
||||||
$this->fetchApps();
|
$this->fetchApps();
|
||||||
$this->sortApps();
|
$this->sortApps();
|
||||||
|
|
||||||
Debug::log('Building RSS feed');
|
|
||||||
foreach ($this->apps as $app) {
|
foreach ($this->apps as $app) {
|
||||||
if (!array_key_exists('Language', $app)) {
|
if (array_key_exists('Language', $app)) {
|
||||||
$item = [];
|
continue;
|
||||||
$item['title'] = $app['Name'];
|
}
|
||||||
$item['timestamp'] = $app['FirstSeen'];
|
$item = [];
|
||||||
$item['author'] = explode('\'', $app['Repo'])[0];
|
$item['title'] = $app['Name'];
|
||||||
$item['categories'] = explode(' ', $app['Category']);
|
$item['timestamp'] = $app['FirstSeen'];
|
||||||
$item['content'] = '';
|
$item['author'] = explode('\'', $app['Repo'])[0];
|
||||||
|
$item['content'] = '';
|
||||||
|
|
||||||
if (array_key_exists('Icon', $app)) {
|
if (isset($app['CategoryList'])) {
|
||||||
$item['content'] .= '<img style="width: 64px" src="'
|
$item['categories'] = $app['CategoryList'];
|
||||||
. $app['Icon']
|
}
|
||||||
. '">';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (array_key_exists('Overview', $app)) {
|
if (array_key_exists('Icon', $app)) {
|
||||||
$item['content'] .= '<p>'
|
$item['content'] .= '<img style="width: 64px" src="'
|
||||||
. $app['Overview']
|
. $app['Icon']
|
||||||
. '</p>';
|
. '">';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (array_key_exists('Project', $app)) {
|
if (array_key_exists('Overview', $app)) {
|
||||||
$item['uri'] = $app['Project'];
|
$item['content'] .= '<p>'
|
||||||
}
|
. $app['Overview']
|
||||||
|
. '</p>';
|
||||||
|
}
|
||||||
|
|
||||||
if (array_key_exists('Registry', $app)) {
|
if (array_key_exists('Project', $app)) {
|
||||||
$item['content'] .= '<br><a href="'
|
$item['uri'] = $app['Project'];
|
||||||
. $app['Registry']
|
}
|
||||||
. '">Docker Hub</a>';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (array_key_exists('Support', $app)) {
|
if (array_key_exists('Registry', $app)) {
|
||||||
$item['content'] .= '<br><a href="'
|
$item['content'] .= '<br><a href="'
|
||||||
. $app['Support']
|
. $app['Registry']
|
||||||
. '">Support</a>';
|
. '">Docker Hub</a>';
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->items[] = $item;
|
if (array_key_exists('Support', $app)) {
|
||||||
|
$item['content'] .= '<br><a href="'
|
||||||
|
. $app['Support']
|
||||||
|
. '">Support</a>';
|
||||||
|
}
|
||||||
|
|
||||||
if (count($this->items) >= 15) {
|
$this->items[] = $item;
|
||||||
break;
|
|
||||||
}
|
if (count($this->items) >= 150) {
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -180,10 +180,16 @@ class ZDNetBridge extends FeedExpander
|
|||||||
|
|
||||||
$article = getSimpleHTMLDOMCached($item['uri']);
|
$article = getSimpleHTMLDOMCached($item['uri']);
|
||||||
if (!$article) {
|
if (!$article) {
|
||||||
returnServerError('Could not request ZDNet: ' . $url);
|
Logger::info('Unable to parse the dom from ' . $item['uri']);
|
||||||
|
return $item;
|
||||||
}
|
}
|
||||||
|
|
||||||
$contents = $article->find('article', 0)->innertext;
|
$articleTag = $article->find('article', 0) ?? $article->find('.c-articleContent', 0);
|
||||||
|
if (!$articleTag) {
|
||||||
|
Logger::info('Unable to parse <article> tag in ' . $item['uri']);
|
||||||
|
return $item;
|
||||||
|
}
|
||||||
|
$contents = $articleTag->innertext;
|
||||||
foreach (
|
foreach (
|
||||||
[
|
[
|
||||||
'<div class="shareBar"',
|
'<div class="shareBar"',
|
||||||
|
Loading…
Reference in New Issue
Block a user