mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-21 17:15:25 +03:00
[HumbleBundleBridge] Create new bridge (#4139)
* [HumbleBundleBridge] Create new bridge * [HumbleBundleBridge] Use less redundant bundle type handling
This commit is contained in:
parent
d60f0b0e74
commit
2a84350cb2
1 changed files with 68 additions and 0 deletions
68
bridges/HumbleBundleBridge.php
Normal file
68
bridges/HumbleBundleBridge.php
Normal file
|
@ -0,0 +1,68 @@
|
|||
<?php
|
||||
|
||||
class HumbleBundleBridge extends BridgeAbstract
|
||||
{
|
||||
const NAME = 'Humble Bundle';
|
||||
const MAINTAINER = 'phantop';
|
||||
const URI = 'https://humblebundle.com/';
|
||||
const DESCRIPTION = 'Returns bundles from Humble Bundle.';
|
||||
const PARAMETERS = [[
|
||||
'type' => [
|
||||
'name' => 'Bundle type',
|
||||
'type' => 'list',
|
||||
'defaultValue' => 'bundles',
|
||||
'values' => [
|
||||
'All' => 'bundles',
|
||||
'Books' => 'books',
|
||||
'Games' => 'games',
|
||||
'Software' => 'software',
|
||||
]
|
||||
]
|
||||
]];
|
||||
|
||||
public function collectData()
|
||||
{
|
||||
$page = getSimpleHTMLDOMCached($this->getURI());
|
||||
$json_text = $page->find('#landingPage-json-data', 0)->innertext;
|
||||
$json = json_decode(html_entity_decode($json_text), true)['data'];
|
||||
|
||||
$products = [];
|
||||
$types = ['books', 'games', 'software'];
|
||||
$types = $this->getInput('type') === 'bundles' ? $types : [$this->getInput('type')];
|
||||
foreach ($types as $type) {
|
||||
$products = array_merge($products, $json[$type]['mosaic'][0]['products']);
|
||||
}
|
||||
|
||||
foreach ($products as $element) {
|
||||
$item = [];
|
||||
$item['author'] = $element['author'];
|
||||
$item['timestamp'] = $element['start_date|datetime'];
|
||||
$item['title'] = $element['tile_short_name'];
|
||||
$item['uid'] = $element['machine_name'];
|
||||
$item['uri'] = parent::getURI() . $element['product_url'];
|
||||
|
||||
$item['content'] = $element['marketing_blurb'];
|
||||
$item['content'] .= '<br>' . $element['detailed_marketing_blurb'];
|
||||
|
||||
$item['categories'] = $element['hover_highlights'];
|
||||
array_unshift($item['categories'], explode(':', $element['tile_name'])[0]);
|
||||
array_unshift($item['categories'], $element['tile_stamp']);
|
||||
|
||||
$item['enclosures'] = [$element['tile_logo'], $element['high_res_tile_image']];
|
||||
$this->items[] = $item;
|
||||
}
|
||||
}
|
||||
|
||||
public function getName()
|
||||
{
|
||||
$name = parent::getName();
|
||||
$name .= $this->getInput('type') ? ' - ' . $this->getInput('type') : '';
|
||||
return $name;
|
||||
}
|
||||
|
||||
public function getURI()
|
||||
{
|
||||
$uri = parent::getURI() . $this->getInput('type');
|
||||
return $uri;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue