SoundcloudBridge & Add icon to Atom Format
This commit is contained in:
parent
4b0ac11b82
commit
c06343128a
2 changed files with 58 additions and 0 deletions
55
bridges/SoundcloudBridge.php
Normal file
55
bridges/SoundcloudBridge.php
Normal file
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
/**
|
||||
* SoundcloudBridge
|
||||
* Returns the newest music from user
|
||||
*
|
||||
* @name Soundcloud Bridge
|
||||
* @homepage http://www.soundcloud.com/
|
||||
* @description Returns 10 newest music from user profile
|
||||
* @maintainer kranack
|
||||
* @update 2014-07-24
|
||||
* @use1(u="username")
|
||||
*
|
||||
*/
|
||||
class SoundCloudBridge extends BridgeAbstract{
|
||||
|
||||
private $request;
|
||||
private $name;
|
||||
|
||||
public function collectData(array $param){
|
||||
|
||||
if (isset($param['u']) && !empty($param['u']))
|
||||
{
|
||||
$this->request = $param['u'];
|
||||
|
||||
$res = json_decode(file_get_contents('http://api.soundcloud.com/resolve.json?url=http://www.soundcloud.com/'. urlencode($this->request) .'&consumer_key=apigee')) or $this->returnError('No results for this query', 404);
|
||||
$tracks = json_decode(file_get_contents('http://api.soundcloud.com/users/'. urlencode($res->id) .'/tracks.json?consumer_key=apigee')) or $this->returnError('No results for this user', 404);
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->returnError('You must specify username', 400);
|
||||
}
|
||||
|
||||
for ($i=0; $i < 10; $i++) {
|
||||
$item = new \Item();
|
||||
$item->name = $tracks[$i]->user->username .' - '. $tracks[$i]->title;
|
||||
$item->title = $tracks[$i]->user->username .' - '. $tracks[$i]->title;
|
||||
$item->content = '<audio src="'. $tracks[$i]->uri .'/stream?consumer_key=apigee">';
|
||||
$item->id = 'https://soundcloud.com/'. urlencode($this->request) .'/'. urlencode($tracks[$i]->permalink);
|
||||
$item->uri = 'https://soundcloud.com/'. urlencode($this->request) .'/'. urlencode($tracks[$i]->permalink);
|
||||
$this->items[] = $item;
|
||||
}
|
||||
|
||||
}
|
||||
public function getName(){
|
||||
return (!empty($this->name) ? $this->name .' - ' : '') .'Soundcloud Bridge';
|
||||
}
|
||||
|
||||
public function getURI(){
|
||||
return 'http://www.soundcloud.com/';
|
||||
}
|
||||
|
||||
public function getCacheDuration(){
|
||||
return 600; // 10 minutes
|
||||
}
|
||||
}
|
|
@ -18,6 +18,7 @@ class AtomFormat extends FormatAbstract{
|
|||
$extraInfos = $this->getExtraInfos();
|
||||
$title = htmlspecialchars($extraInfos['name']);
|
||||
$uri = htmlspecialchars($extraInfos['uri']);
|
||||
$icon = 'http://g.etfv.co/'. $uri .'?icon.jpg';
|
||||
|
||||
$entries = '';
|
||||
foreach($this->getDatas() as $data){
|
||||
|
@ -64,6 +65,8 @@ $feedTimestamp = date(DATE_ATOM, time());
|
|||
|
||||
<title type="text">{$title}</title>
|
||||
<id>http{$https}://{$httpHost}{$httpInfo}/</id>
|
||||
<icon>{$icon}</icon>
|
||||
<logo>{$icon}</logo>
|
||||
<updated>{$feedTimestamp}</updated>
|
||||
<link rel="alternate" type="text/html" href="{$uri}" />
|
||||
<link rel="self" href="http{$https}://{$httpHost}{$serverRequestUri}" />
|
||||
|
|
Loading…
Reference in a new issue