mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
f0e5ef0fc5
* [Various] getKey replacements and docu * more bridges and fix to the abstract * linting * revert bandcampdaily. doing more than i thought
124 lines
3.8 KiB
PHP
124 lines
3.8 KiB
PHP
<?php
|
|
|
|
class BrutBridge extends BridgeAbstract
|
|
{
|
|
const NAME = 'Brut Bridge';
|
|
const URI = 'https://www.brut.media';
|
|
const DESCRIPTION = 'Returns 10 newest videos by category and edition';
|
|
const MAINTAINER = 'VerifiedJoseph';
|
|
const PARAMETERS = [[
|
|
'category' => [
|
|
'name' => 'Category',
|
|
'type' => 'list',
|
|
'values' => [
|
|
'News' => 'news',
|
|
'International' => 'international',
|
|
'Economy' => 'economy',
|
|
'Science and Technology' => 'science-and-technology',
|
|
'Entertainment' => 'entertainment',
|
|
'Sports' => 'sport',
|
|
'Nature' => 'nature',
|
|
'Health' => 'health',
|
|
],
|
|
'defaultValue' => 'news',
|
|
],
|
|
'edition' => [
|
|
'name' => ' Edition',
|
|
'type' => 'list',
|
|
'values' => [
|
|
'United States' => 'us',
|
|
'United Kingdom' => 'uk',
|
|
'France' => 'fr',
|
|
'Spain' => 'es',
|
|
'India' => 'in',
|
|
'Mexico' => 'mx',
|
|
],
|
|
'defaultValue' => 'us',
|
|
]
|
|
]
|
|
];
|
|
|
|
const CACHE_TIMEOUT = 1800; // 30 mins
|
|
|
|
private $jsonRegex = '/window\.__PRELOADED_STATE__ = ((?:.*)});/';
|
|
|
|
public function collectData()
|
|
{
|
|
$html = getSimpleHTMLDOM($this->getURI());
|
|
|
|
$results = $html->find('div.results', 0);
|
|
|
|
foreach ($results->find('li.col-6.col-sm-4.col-md-3.col-lg-2.px-2.pb-4') as $li) {
|
|
$item = [];
|
|
|
|
$videoPath = self::URI . $li->children(0)->href;
|
|
$videoPageHtml = getSimpleHTMLDOMCached($videoPath, 3600);
|
|
|
|
$json = $this->extractJson($videoPageHtml);
|
|
$id = array_keys((array) $json->media->index)[0];
|
|
|
|
$item['uri'] = $videoPath;
|
|
$item['title'] = $json->media->index->$id->title;
|
|
$item['timestamp'] = $json->media->index->$id->published_at;
|
|
$item['enclosures'][] = $json->media->index->$id->media->thumbnail;
|
|
|
|
$description = $json->media->index->$id->description;
|
|
$article = '';
|
|
|
|
if (is_null($json->media->index->$id->media->seo_article) === false) {
|
|
$article = markdownToHtml($json->media->index->$id->media->seo_article);
|
|
}
|
|
|
|
$item['content'] = <<<EOD
|
|
<video controls poster="{$json->media->index->$id->media->thumbnail}" preload="none">
|
|
<source src="{$json->media->index->$id->media->mp4_url}" type="video/mp4">
|
|
</video>
|
|
<p>{$description}</p>
|
|
{$article}
|
|
EOD;
|
|
|
|
$this->items[] = $item;
|
|
|
|
if (count($this->items) >= 10) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
public function getURI()
|
|
{
|
|
if (!is_null($this->getInput('edition')) && !is_null($this->getInput('category'))) {
|
|
return self::URI . '/' . $this->getInput('edition') . '/' . $this->getInput('category');
|
|
}
|
|
|
|
return parent::getURI();
|
|
}
|
|
|
|
public function getName()
|
|
{
|
|
if (!is_null($this->getInput('edition')) && !is_null($this->getInput('category'))) {
|
|
return $this->getKey('category') . ' - ' .
|
|
$this->getKey('edition') . ' - Brut.';
|
|
}
|
|
|
|
return parent::getName();
|
|
}
|
|
|
|
/**
|
|
* Extract JSON from page
|
|
*/
|
|
private function extractJson($html)
|
|
{
|
|
if (!preg_match($this->jsonRegex, $html, $parts)) {
|
|
returnServerError('Failed to extract data from page');
|
|
}
|
|
|
|
$data = json_decode($parts[1]);
|
|
|
|
if ($data === false) {
|
|
returnServerError('Failed to decode extracted data');
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
}
|