2014-02-09 15:33:02 +01:00
|
|
|
<?php
|
|
|
|
class BandcampBridge extends BridgeAbstract{
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-30 11:23:55 +02:00
|
|
|
const MAINTAINER = "sebsauvage";
|
|
|
|
const NAME = "Bandcamp Tag";
|
|
|
|
const URI = "http://bandcamp.com/";
|
2016-09-25 17:04:28 +02:00
|
|
|
const CACHE_TIMEOUT = 600; // 10min
|
2016-08-30 11:23:55 +02:00
|
|
|
const DESCRIPTION = "New bandcamp release by tag";
|
|
|
|
const PARAMETERS = array( array(
|
2016-08-27 21:03:26 +02:00
|
|
|
'tag'=>array(
|
2016-08-22 01:25:56 +02:00
|
|
|
'name'=>'tag',
|
2016-08-28 01:54:17 +02:00
|
|
|
'type'=>'text',
|
|
|
|
'required'=>true
|
2016-08-27 21:03:26 +02:00
|
|
|
)
|
|
|
|
));
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2016-09-25 23:22:33 +02:00
|
|
|
$html = getSimpleHTMLDOM($this->getURI())
|
|
|
|
or returnServerError('No results for this query.');
|
2014-02-09 15:33:02 +01:00
|
|
|
|
|
|
|
foreach($html->find('li.item') as $release) {
|
2016-03-02 13:14:22 +01:00
|
|
|
$script = $release->find('div.art', 0)->getAttribute('onclick');
|
|
|
|
$uri = ltrim($script, "return 'url(");
|
|
|
|
$uri = rtrim($uri, "')");
|
|
|
|
|
2016-08-22 18:55:59 +02:00
|
|
|
$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');
|
2014-02-09 15:33:02 +01:00
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-28 01:54:17 +02:00
|
|
|
public function getURI(){
|
2016-08-30 11:23:55 +02:00
|
|
|
return self::URI.'tag/'.urlencode($this->getInput('tag')).'?sort_field=date';
|
2016-08-28 01:54:17 +02:00
|
|
|
}
|
2016-08-27 10:58:00 +02:00
|
|
|
|
2016-08-28 01:54:17 +02:00
|
|
|
public function getName(){
|
|
|
|
return $this->getInput('tag') .' - '.'Bandcamp Tag';
|
2014-02-09 15:33:02 +01:00
|
|
|
}
|
|
|
|
}
|