1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?php
/*
Copyright 2001 - 2007 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/xmlrpc/xmlrpcs.inc";
require_once Config::get('prefix') . "/modules/xmlrpc/xmlrpc.inc";
}
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',$_SERVER['REMOTE_ADDR'],'','5','')) {
// 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);
}
} // end foreach of classes
$server = new xmlrpc_server($functions);
} // test for ACL
?>
|