Skip to content

Commit

Permalink
[HumbleBundleBridge] Create new bridge (RSS-Bridge#4139)
Browse files Browse the repository at this point in the history
* [HumbleBundleBridge] Create new bridge

* [HumbleBundleBridge] Use less redundant bundle type handling
  • Loading branch information
Phantop authored Jun 21, 2024
1 parent d60f0b0 commit 2a84350
Showing 1 changed file with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions bridges/HumbleBundleBridge.php
Original file line number Diff line number Diff line change
@@ -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;
}
}

0 comments on commit 2a84350

Please sign in to comment.