0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
b2evolution
/
3.3.1-5
/
standard
/
htdocs
/
xmlsrv
/
[
Home
]
File: xmlrpc.php
<?php /** * XML-RPC APIs * * This file implements the XML-RPC handler, to be called by remote clients. * * b2evolution - {@link http://b2evolution.net/} * Released under GNU GPL License - {@link http://b2evolution.net/about/license.html} * @copyright (c)2003-2009 by Francois PLANQUE - {@link http://fplanque.net/} * * @package xmlsrv * * @version $Id: xmlrpc.php,v 1.149 2009/03/08 23:58:16 fplanque Exp $ */ // use xmlrpc_debugmsg() to add debug messages to responses; /** * Initialize everything: */ // Disable Cookies $_COOKIE = array(); if( ! isset($HTTP_RAW_POST_DATA) ) { $HTTP_RAW_POST_DATA = implode("\r\n", file('php://input')); } // Trim requests (used by XML-RPC library); fix for mozBlog and other cases where '<?xml' isn't on the very first line $HTTP_RAW_POST_DATA = trim( $HTTP_RAW_POST_DATA ); require_once dirname(__FILE__).'/../conf/_config.php'; require_once $inc_path.'_main.inc.php'; load_funcs('xmlrpc/model/_xmlrpc.funcs.php'); if( CANUSEXMLRPC !== TRUE ) { // We cannot use XML-RPC: send a error response ( "1 Unknown method" ). //this should be structured as an xml response $errResponse = new xmlrpcresp( 0, 1, 'Cannot use XML-RPC. Probably the server is missing the XML extension. Error: '.CANUSEXMLRPC ); die( $errResponse->serialize() ); } // We can't display standard error messages. We must return XMLRPC responses. $DB->halt_on_error = false; $DB->show_errors = false; $post_default_title = ''; // posts submitted via the xmlrpc interface get that title /** * Array defining the available Remote Procedure Calls: */ $xmlrpc_procs = array(); // Load APIs: include_once $inc_path.'xmlrpc/apis/_blogger.api.php'; include_once $inc_path.'xmlrpc/apis/_b2.api.php'; include_once $inc_path.'xmlrpc/apis/_metaweblog.api.php'; include_once $inc_path.'xmlrpc/apis/_mt.api.php'; // fp> xmlrpc.php should actually only load the function/api/plugin to execute once it has been identified // fp> maybe it would make sense to register xmlrpc apis/functions in a DB table (before making plugins) // fp> it would probably make sense to have *all* xmlrpc methods implemented as plugins (maybe 1 plugin per API; it should be possible to add a single func to an API with an additional plugin) load_funcs('xmlrpc/model/_xmlrpcs.funcs.php'); // This will add generic remote calls // DO THE SERVING: $s = new xmlrpc_server( $xmlrpc_procs ); ?>