2014-02-09 15:33:02 +01:00
|
|
|
<?php
|
2017-02-11 16:16:56 +01:00
|
|
|
class BandcampBridge extends BridgeAbstract {
|
|
|
|
|
|
|
|
const MAINTAINER = 'sebsauvage';
|
|
|
|
const NAME = 'Bandcamp Tag';
|
2017-03-18 20:02:18 +01:00
|
|
|
const URI = 'https://bandcamp.com/';
|
2017-02-11 16:16:56 +01:00
|
|
|
const CACHE_TIMEOUT = 600; // 10min
|
|
|
|
const DESCRIPTION = 'New bandcamp release by tag';
|
|
|
|
const PARAMETERS = array( array(
|
|
|
|
'tag' => array(
|
|
|
|
'name' => 'tag',
|
|
|
|
'type' => 'text',
|
|
|
|
'required' => true
|
|
|
|
)
|
|
|
|
));
|
|
|
|
|
|
|
|
public function collectData(){
|
|
|
|
$html = getSimpleHTMLDOM($this->getURI())
|
|
|
|
or returnServerError('No results for this query.');
|
|
|
|
|
2017-07-29 19:28:00 +02:00
|
|
|
foreach($html->find('li.item') as $release) {
|
2017-02-11 16:16:56 +01:00
|
|
|
$script = $release->find('div.art', 0)->getAttribute('onclick');
|
|
|
|
$uri = ltrim($script, "return 'url(");
|
|
|
|
$uri = rtrim($uri, "')");
|
|
|
|
|
|
|
|
$item = array();
|
|
|
|
$item['author'] = $release->find('div.itemsubtext', 0)->plaintext
|
|
|
|
. ' - '
|
|
|
|
. $release->find('div.itemtext', 0)->plaintext;
|
|
|
|
|
|
|
|
$item['title'] = $release->find('div.itemsubtext', 0)->plaintext
|
|
|
|
. ' - '
|
|
|
|
. $release->find('div.itemtext', 0)->plaintext;
|
|
|
|
|
|
|
|
$item['content'] = '<img src="'
|
|
|
|
. $uri
|
|
|
|
. '"/><br/>'
|
|
|
|
. $release->find('div.itemsubtext', 0)->plaintext
|
|
|
|
. ' - '
|
|
|
|
. $release->find('div.itemtext', 0)->plaintext;
|
|
|
|
|
|
|
|
$item['id'] = $release->find('a', 0)->getAttribute('href');
|
|
|
|
$item['uri'] = $release->find('a', 0)->getAttribute('href');
|
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getURI(){
|
2017-07-29 19:28:00 +02:00
|
|
|
if(!is_null($this->getInput('tag'))) {
|
2017-02-14 22:36:33 +01:00
|
|
|
return self::URI . 'tag/' . urlencode($this->getInput('tag')) . '?sort_field=date';
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getURI();
|
2017-02-11 16:16:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
2017-07-29 19:28:00 +02:00
|
|
|
if(!is_null($this->getInput('tag'))) {
|
2017-02-14 22:20:55 +01:00
|
|
|
return $this->getInput('tag') . ' - Bandcamp Tag';
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getName();
|
2017-02-11 16:16:56 +01:00
|
|
|
}
|
2014-02-09 15:33:02 +01:00
|
|
|
}
|