//implementation of ampache's xml api
class OC_MEDIA_AMPACHE{
+ /**
+ * fix the string to be XML compatible
+ * @param string name
+ * @return string
+ */
+
+ /* this is an ugly hack(tm), this should be: */
+ /* htmlentities($name, ENT_XML1, 'UTF-8'); */
+ /* with PHP 5.4 and later */
+ public static function fixXmlString($name){
+ $result=str_replace("&", "&", $name);
+ $result=str_replace("'", "'", $result);
+ $result=str_replace("<", "<", $result);
+ $result=str_replace(">", ">", $result);
+ $result=str_replace("\"", """, $result);
+ $result=str_replace("Ä", "Ä", $result);
+ $result=str_replace("Ö", "Ö", $result);
+ $result=str_replace("Ü", "Ü", $result);
+ $result=str_replace("ä", "ä", $result);
+ $result=str_replace("ö", "ö", $result);
+ $result=str_replace("ü", "ü", $result);
+ $result=str_replace("ß", "ß", $result);
+ return $result;
+ }
+
/**
* do the initial handshake
* @param array params
$time=(isset($params['timestamp']))?$params['timestamp']:false;
$now=time();
if($now-$time>(10*60)){
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo("<root>
<error code='400'>timestamp is more then 10 minutes old</error>
</root>");
$query=OC_DB::prepare("INSERT INTO *PREFIX*media_sessions (`session_id`, `token`, `user_id`, `start`) VALUES (NULL, ?, ?, now());");
$query->execute(array($token,$user));
$expire=date('c',time()+600);
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo("<root>
<auth>$token</auth>
<version>350001</version>
return;
}
}
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo("<root>
<error code='400'>Invalid login</error>
</root>");
}else{
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo("<root>
<error code='400'>Missing arguments</error>
</root>");
if(self::checkAuth($params['auth'])){
self::updateAuth($params['auth']);
}else{
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo("<root>
<error code='400'>Invalid login</error>
</root>");
return;
}
}
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo('<root>');
echo('<version>350001</version>');
echo('</root>');
$albums=count(OC_MEDIA_COLLECTION::getAlbums($artist['artist_id']));
$songs=count(OC_MEDIA_COLLECTION::getSongs($artist['artist_id']));
$id=$artist['artist_id'];
- $name=htmlentities($artist['artist_name'], ENT_COMPAT, 'UTF-8');
+ $name=self::fixXmlString($artist['artist_name']);
echo("\t<artist id='$id'>\n");
echo("\t\t<name>$name</name>\n");
echo("\t\t<albums>$albums</albums>\n");
if(!$artistName){
$artistName=OC_MEDIA_COLLECTION::getArtistName($album['album_artist']);
}
- $artistName=htmlentities($artistName, ENT_COMPAT, 'UTF-8');
+ $artistName=self::fixXmlString($artistName);
$songs=count(OC_MEDIA_COLLECTION::getSongs($album['album_artist'],$album['album_id']));
$id=$album['album_id'];
- $name=htmlentities($album['album_name'], ENT_COMPAT, 'UTF-8');
+ $name=self::fixXmlString($album['album_name']);
$artist=$album['album_artist'];
echo("\t<album id='$id'>\n");
echo("\t\t<name>$name</name>\n");
echo("\t\t<artist id='$artist'>$artistName</artist>\n");
echo("\t\t<tracks>$songs</tracks>\n");
echo("\t\t<rating>0</rating>\n");
+ echo("\t\t<year>0</year>\n"); /* make Viridian happy */
+ echo("\t\t<disk>1</disk>\n"); /* make Viridian happy */
+ echo("\t\t<art> </art>\n"); /* single space to make quickplay happy enough */
echo("\t\t<preciserating>0</preciserating>\n");
echo("\t</album>\n");
}
if(!$albumName){
$albumName=OC_MEDIA_COLLECTION::getAlbumName($song['song_album']);
}
- $artistName=htmlentities($artistName, ENT_COMPAT, 'UTF-8');
- $albumName=htmlentities($albumName, ENT_COMPAT, 'UTF-8');
+ $artistName=self::fixXmlString($artistName);
+ $albumName=self::fixXmlString($albumName);
$id=$song['song_id'];
- $name=htmlentities($song['song_name'], ENT_COMPAT, 'UTF-8');
+ $name=self::fixXmlString($song['song_name']);
$artist=$song['song_artist'];
$album=$song['song_album'];
echo("\t<song id='$id'>\n");
echo("\t\t<artist id='$artist'>$artistName</artist>\n");
echo("\t\t<album id='$album'>$albumName</album>\n");
$url=OC_Helper::linkTo('media', 'server/xml.server.php', null, true)."?action=play&song=$id&auth={$_GET['auth']}";
- $url=htmlentities($url);
+ $url=self::fixXmlString($url);
echo("\t\t<url>$url</url>\n");
echo("\t\t<time>{$song['song_length']}</time>\n");
echo("\t\t<track>{$song['song_track']}</track>\n");
echo("\t\t<size>{$song['song_size']}</size>\n");
- echo("\t\t<art></art>\n");
+ echo("\t\t<art> </art>\n"); /* single space to make Viridian happy enough */
echo("\t\t<rating>0</rating>\n");
echo("\t\t<preciserating>0</preciserating>\n");
echo("\t</song>\n");
public static function artists($params){
if(!self::checkAuth($params)){
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo("<root>
<error code='400'>Invalid login</error>
</root>");
$filter=isset($params['filter'])?$params['filter']:'';
$exact=isset($params['exact'])?($params['exact']=='true'):false;
$artists=OC_MEDIA_COLLECTION::getArtists($filter,$exact);
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo('<root>');
foreach($artists as $artist){
self::printArtist($artist);
public static function artist_songs($params){
if(!self::checkAuth($params)){
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo("<root>
<error code='400'>Invalid login</error>
</root>");
$filter=isset($params['filter'])?$params['filter']:'';
$songs=OC_MEDIA_COLLECTION::getSongs($filter);
$artist=OC_MEDIA_COLLECTION::getArtistName($filter);
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo('<root>');
foreach($songs as $song){
self::printSong($song,$artist);
public static function artist_albums($params){
if(!self::checkAuth($params)){
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo("<root>
<error code='400'>Invalid login</error>
</root>");
$filter=$params['filter'];
$albums=OC_MEDIA_COLLECTION::getAlbums($filter);
$artist=OC_MEDIA_COLLECTION::getArtistName($filter);
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo('<root>');
foreach($albums as $album){
self::printAlbum($album,$artist);
public static function albums($params){
if(!self::checkAuth($params)){
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo("<root>
<error code='400'>Invalid login</error>
</root>");
$filter=isset($params['filter'])?$params['filter']:'';
$exact=isset($params['exact'])?($params['exact']=='true'):false;
$albums=OC_MEDIA_COLLECTION::getAlbums(0,$filter,$exact);
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo('<root>');
foreach($albums as $album){
- self::printAlbum($album,$artist);
+ self::printAlbum($album,false);
}
echo('</root>');
}
public static function album_songs($params){
if(!self::checkAuth($params)){
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo("<root>
<error code='400'>Invalid login</error>
</root>");
if(count($songs)>0){
$artist=OC_MEDIA_COLLECTION::getArtistName($songs[0]['song_artist']);
}
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo('<root>');
foreach($songs as $song){
self::printSong($song,$artist);
public static function songs($params){
if(!self::checkAuth($params)){
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo("<root>
<error code='400'>Invalid login</error>
</root>");
$filter=isset($params['filter'])?$params['filter']:'';
$exact=isset($params['exact'])?($params['exact']=='true'):false;
$songs=OC_MEDIA_COLLECTION::getSongs(0,0,$filter,$exact);
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo('<root>');
foreach($songs as $song){
self::printSong($song);
public static function song($params){
if(!self::checkAuth($params)){
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo("<root>
<error code='400'>Invalid login</error>
</root>");
return;
}
if($song=OC_MEDIA_COLLECTION::getSong($params['filter'])){
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo('<root>');
self::printSong($song);
echo('</root>');
public static function play($params){
$username=!self::checkAuth($params);
if($username){
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo("<root>
<error code='400'>Invalid login</error>
</root>");
public static function url_to_song($params){
if(!self::checkAuth($params)){
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo("<root>
<error code='400'>Invalid login</error>
</root>");
$url=$params['url'];
$songId=substr($url,strrpos($url,'song=')+5);
if($song=OC_MEDIA_COLLECTION::getSong($songId)){
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo('<root>');
self::printSong($song);
echo('</root>');
public static function search_songs($params){
if(!self::checkAuth($params)){
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo("<root>
<error code='400'>Invalid login</error>
</root>");
foreach($albums as $album){
$songs=array_merge($songs,OC_MEDIA_COLLECTION::getSongs($album['album_artist'],$album['album_id']));
}
+ echo('<?xml version="1.0" encoding="UTF-8"?>');
echo('<root>');
foreach($songs as $song){
self::printSong($song);