diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-11-29 09:01:52 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-11-29 09:01:52 +0000 |
commit | f37409cbbf5e265beff95aa5a8ede513da5a8ed7 (patch) | |
tree | 18c03255826a9cc2407059f4b0656ca2677bd5e7 | |
parent | 1f6887b12d6b0c31d8bd2f6ecc33bf899a5fdb69 (diff) | |
download | ampache-f37409cbbf5e265beff95aa5a8ede513da5a8ed7.tar.gz ampache-f37409cbbf5e265beff95aa5a8ede513da5a8ed7.tar.bz2 ampache-f37409cbbf5e265beff95aa5a8ede513da5a8ed7.zip |
this needs to be moved but well yea :P
-rw-r--r-- | modules/amazon/jamendoSearch.class.php | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/modules/amazon/jamendoSearch.class.php b/modules/amazon/jamendoSearch.class.php new file mode 100644 index 00000000..b89f1a67 --- /dev/null +++ b/modules/amazon/jamendoSearch.class.php @@ -0,0 +1,63 @@ +<?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 + +?> |