mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-21 17:15:25 +03:00
951092eef3
$ composer require --dev friendsofphp/php-cs-fixer $ echo >.php-cs-fixer.dist.php "<?php $finder = PhpCsFixer\Finder::create() ->in(__DIR__); $rules = [ '@PSR12' => true, // '@PSR12:risky' => true, '@PHP74Migration' => true, // '@PHP74Migration:risky' => true, // buggy, duplicates existing comment sometimes 'no_break_comment' => false, 'array_syntax' => true, 'lowercase_static_reference' => true, 'visibility_required' => false, // Too much noise 'binary_operator_spaces' => false, 'heredoc_indentation' => false, 'trailing_comma_in_multiline' => false, ]; $config = new PhpCsFixer\Config(); return $config ->setRules($rules) // ->setRiskyAllowed(true) ->setFinder($finder); " $ vendor/bin/php-cs-fixer --version PHP CS Fixer 3.8.0 BerSzcz against war! by Fabien Potencier and Dariusz Ruminski. PHP runtime: 8.1.7 $ vendor/bin/php-cs-fixer fix $ rm .php-cs-fixer.cache $ vendor/bin/php-cs-fixer fix
76 lines
2.2 KiB
PHP
76 lines
2.2 KiB
PHP
<?php
|
|
|
|
class MallTvBridge extends BridgeAbstract
|
|
{
|
|
const NAME = 'MALL.TV Bridge';
|
|
const URI = 'https://www.mall.tv';
|
|
const CACHE_TIMEOUT = 3600;
|
|
const DESCRIPTION = 'Return newest videos';
|
|
const MAINTAINER = 'kolarcz';
|
|
|
|
const PARAMETERS = [
|
|
[
|
|
'url' => [
|
|
'name' => 'url to the show',
|
|
'required' => true,
|
|
'exampleValue' => 'https://www.mall.tv/zivot-je-hra'
|
|
]
|
|
]
|
|
];
|
|
|
|
private function fixChars($text)
|
|
{
|
|
return html_entity_decode($text, ENT_QUOTES, 'UTF-8');
|
|
}
|
|
|
|
private function getUploadTimeFromUrl($url)
|
|
{
|
|
$html = getSimpleHTMLDOM($url);
|
|
|
|
$scriptLdJson = $html->find('script[type="application/ld+json"]', 0)->innertext;
|
|
if (!preg_match('/[\'"]uploadDate[\'"]\s*:\s*[\'"](\d{4}-\d{2}-\d{2})[\'"]/', $scriptLdJson, $match)) {
|
|
returnServerError('Could not get date from MALL.TV detail page');
|
|
}
|
|
|
|
return strtotime($match[1]);
|
|
}
|
|
|
|
public function collectData()
|
|
{
|
|
$url = $this->getInput('url');
|
|
|
|
if (!preg_match('/^https:\/\/www\.mall\.tv\/[a-z0-9-]+(\/[a-z0-9-]+)?\/?$/', $url)) {
|
|
returnServerError('Invalid url');
|
|
}
|
|
|
|
$html = getSimpleHTMLDOM($url);
|
|
|
|
$this->feedUri = $url;
|
|
$this->feedName = $this->fixChars($html->find('title', 0)->plaintext);
|
|
|
|
foreach ($html->find('section.isVideo .video-card') as $element) {
|
|
$itemTitle = $element->find('.video-card__details-link', 0);
|
|
$itemThumbnail = $element->find('.video-card__thumbnail', 0);
|
|
$itemUri = self::URI . $itemTitle->getAttribute('href');
|
|
|
|
$item = [
|
|
'title' => $this->fixChars($itemTitle->plaintext),
|
|
'uri' => $itemUri,
|
|
'content' => '<img src="' . $itemThumbnail->getAttribute('data-src') . '" />',
|
|
'timestamp' => $this->getUploadTimeFromUrl($itemUri)
|
|
];
|
|
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
|
|
public function getURI()
|
|
{
|
|
return $this->feedUri ?? parent::getURI();
|
|
}
|
|
|
|
public function getName()
|
|
{
|
|
return $this->feedName ?? parent::getName();
|
|
}
|
|
}
|