mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-05 02:39:47 +02:00
59 lines
No EOL
1.9 KiB
PHP
59 lines
No EOL
1.9 KiB
PHP
<?php
|
|
/*
|
|
|
|
Copyright 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.
|
|
|
|
*/
|
|
define('NO_SESSION','1');
|
|
require_once('../lib/init.php');
|
|
|
|
/* Set the correct headers */
|
|
//header("Content-type: text/xml; charset=" . Config::get('site_charset'));
|
|
//header("Content-Disposition: attachment; filename=xmlrpc-server.xml");
|
|
|
|
if (Config::get('xml_rpc')) {
|
|
require_once Config::get('prefix') . "/modules/pearxmlrpc/rpc.php";
|
|
require_once Config::get('prefix') . "/modules/pearxmlrpc/server.php";
|
|
}
|
|
else {
|
|
debug_event('DENIED','Attempted to Access XMLRPC server with xml_rpc disabled','1');
|
|
exit();
|
|
}
|
|
|
|
// ** check that the remote server has access to this catalog
|
|
if (Access::check_network('init-rpc','','5')) {
|
|
debug_event("init-rpc", "start listing functions ", '4');
|
|
|
|
// Define an array of classes we need to pull from for the
|
|
$classes = array('xmlRpcServer');
|
|
|
|
foreach ($classes as $class) {
|
|
$methods = get_class_methods($class);
|
|
|
|
foreach ($methods as $method) {
|
|
$name = strtolower($class) . '.' . strtolower($method);
|
|
$functions[$name] = array('function'=>$class . '::' . $method);
|
|
debug_event("init-rpc", "add function: " . $name, '4');
|
|
}
|
|
|
|
} // end foreach of classes
|
|
debug_event("init-rpc", "starting rpc class XML_RPC_SERVER", '4');
|
|
$server = new XML_RPC_Server($functions,1);
|
|
debug_event("init-rpc", "done", '4');
|
|
} // test for ACL
|
|
|
|
?>
|