mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[VideoCardzBridge] cache timeout fix + getName fixes (#3454)
* [VideoCardzBridge] cache timeout fix * [VideoCardzBridge] getName() + title fix
This commit is contained in:
parent
1769399da8
commit
a4ed52ca30
@ -6,6 +6,7 @@ class VideoCardzBridge extends BridgeAbstract
|
|||||||
const URI = 'https://videocardz.com/';
|
const URI = 'https://videocardz.com/';
|
||||||
const DESCRIPTION = 'Returns news from VideoCardz.com';
|
const DESCRIPTION = 'Returns news from VideoCardz.com';
|
||||||
const MAINTAINER = 'rmscoelho';
|
const MAINTAINER = 'rmscoelho';
|
||||||
|
const CACHE_TIMEOUT = 3600;
|
||||||
const PARAMETERS = [
|
const PARAMETERS = [
|
||||||
[
|
[
|
||||||
'feed' => [
|
'feed' => [
|
||||||
@ -31,19 +32,7 @@ class VideoCardzBridge extends BridgeAbstract
|
|||||||
|
|
||||||
public function getName()
|
public function getName()
|
||||||
{
|
{
|
||||||
$feed = $this->getInput('feed');
|
return !is_null($this->getKey('feed')) ? self::NAME . ' | ' . $this->getKey('feed') : self::NAME;
|
||||||
if ($this->getInput('feed') !== null && $this->getInput('feed') !== '') {
|
|
||||||
$feed = explode('/', $feed);
|
|
||||||
$feed = $feed[1];
|
|
||||||
if (str_contains($feed, '-')) {
|
|
||||||
$feed = explode('-', $feed);
|
|
||||||
$word1 = $feed[0];
|
|
||||||
$word2 = $feed[1];
|
|
||||||
$feed = ucfirst($word1) . ' ' . ucfirst($word2);
|
|
||||||
}
|
|
||||||
return self::NAME . ' | ' . ucfirst($feed);
|
|
||||||
}
|
|
||||||
return self::NAME;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getURI()
|
public function getURI()
|
||||||
@ -62,6 +51,7 @@ class VideoCardzBridge extends BridgeAbstract
|
|||||||
$dom = defaultLinkTo($dom, $this->getURI());
|
$dom = defaultLinkTo($dom, $this->getURI());
|
||||||
|
|
||||||
foreach ($dom->find('article') as $article) {
|
foreach ($dom->find('article') as $article) {
|
||||||
|
$title = preg_replace('/\(PR\) /i', '', $article->find('h2', 0)->plaintext);
|
||||||
//Get thumbnail
|
//Get thumbnail
|
||||||
$image = $article->style;
|
$image = $article->style;
|
||||||
$image = preg_replace('/background-image:url\(/i', '', $image);
|
$image = preg_replace('/background-image:url\(/i', '', $image);
|
||||||
@ -74,11 +64,9 @@ class VideoCardzBridge extends BridgeAbstract
|
|||||||
$hour = $datetime['hour'];
|
$hour = $datetime['hour'];
|
||||||
$minute = $datetime['minute'];
|
$minute = $datetime['minute'];
|
||||||
$timestamp = mktime($hour, $minute, 0, $month, $day, $year);
|
$timestamp = mktime($hour, $minute, 0, $month, $day, $year);
|
||||||
|
|
||||||
$content = '<img src="' . $image . '" alt="' . $article->find('h2', 0)->plaintext . ' thumbnail" />';
|
$content = '<img src="' . $image . '" alt="' . $article->find('h2', 0)->plaintext . ' thumbnail" />';
|
||||||
|
|
||||||
$this->items[] = [
|
$this->items[] = [
|
||||||
'title' => $article->find('h2', 0)->plaintext,
|
'title' => $title,
|
||||||
'uri' => $article->find('p.main-index-article-datetitle-date > a', 0)->href,
|
'uri' => $article->find('p.main-index-article-datetitle-date > a', 0)->href,
|
||||||
'content' => $content,
|
'content' => $content,
|
||||||
'timestamp' => $timestamp,
|
'timestamp' => $timestamp,
|
||||||
|
Loading…
Reference in New Issue
Block a user