mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-05 19:41:55 +02:00
63 lines
1.5 KiB
PHP
63 lines
1.5 KiB
PHP
<?php
|
|
/*
|
|
|
|
Copyright (c) 2001 - 2006 Ampache.org
|
|
All rights reserved.
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License v2
|
|
as published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
/**
|
|
* jamendoSearch
|
|
* This class does XML lookups against the jamendo website
|
|
* and returns information
|
|
*/
|
|
class jamendoSearch {
|
|
|
|
|
|
|
|
/* Constructed */
|
|
var $_client;
|
|
|
|
/**
|
|
* Constructor
|
|
* This function inits the searcher
|
|
*/
|
|
function jamendoSearch() {
|
|
|
|
/* Load the XMLRPC client */
|
|
$this->_client = new xmlrpc_client('/xmlrpc/','www.jamendo.com',80);
|
|
|
|
} // jamendoSearch
|
|
|
|
/**
|
|
* query
|
|
* This runs a XMLRPC query and returns decoded data
|
|
*/
|
|
function query($command,$options) {
|
|
|
|
$encoded_command = new xmlrpcval($command);
|
|
$encoded_options = new xmlrpcval($options,'struct');
|
|
$message = new xmlrpcmsg('jamendo.get',array($encoded_command,$encoded_options));
|
|
$response = $this->_client->send($message,15);
|
|
$value = $response->value();
|
|
|
|
return php_xmlrpc_decode($value);
|
|
|
|
} // query
|
|
|
|
} // jamendoSearch
|
|
|
|
?>
|