* xmlrpcs.inc, xmlrpcs.inc: remove code that was left for compatibility with php...
[plcapi.git] / lib / xmlrpcs.inc
index ea6ec13..2fafdae 100644 (file)
 \r
        $GLOBALS['_xmlrpcs_occurred_errors'] = '';\r
        $GLOBALS['_xmlrpcs_prev_ehandler'] = '';\r
+\r
        /**\r
        * Error handler used to track errors that occur during server-side execution of PHP code.\r
        * This allows to report back to the client whether an internal error has occurred or not\r
                        return;\r
 \r
                //if($errcode != E_NOTICE && $errcode != E_WARNING && $errcode != E_USER_NOTICE && $errcode != E_USER_WARNING)\r
-               if($errcode != 2048) // do not use E_STRICT by name, since on PHP 4 it will not be defined\r
+               if($errcode != E_STRICT)\r
                {\r
                        $GLOBALS['_xmlrpcs_occurred_errors'] = $GLOBALS['_xmlrpcs_occurred_errors'] . $errstring . "\n";\r
                }\r
                * valid strings are 'xmlrpcvals', 'phpvals' or 'epivals'\r
                */\r
                var $functions_parameters_type='xmlrpcvals';\r
-           /**\r
-           * Option used for fine-tuning the encoding the php values returned from\r
-           * functions registered in the dispatch map when the functions_parameters_types\r
-            member is set to 'phpvals'\r
-           * @see php_xmlrpc_encode for a list of values\r
-           */\r
-           var $phpvals_encoding_options = array( 'auto_dates' );\r
+               /**\r
+               * Option used for fine-tuning the encoding the php values returned from\r
+               * functions registered in the dispatch map when the functions_parameters_types\r
+               * member is set to 'phpvals'\r
+               * @see php_xmlrpc_encode for a list of values\r
+               */\r
+               var $phpvals_encoding_options = array( 'auto_dates' );\r
                /// controls wether the server is going to echo debugging messages back to the client as comments in response body. valid values: 0,1,2,3\r
                var $debug = 1;\r
                /**\r
+               * Controls behaviour of server when invoked user function throws an exception:\r
+               * 0 = catch it and return an 'internal error' xmlrpc response (default)\r
+               * 1 = catch it and return an xmlrpc response with the error corresponding to the exception\r
+               * 2 = allow the exception to float to the upper layers\r
+               */\r
+               var $exception_handling = 0;\r
+               /**\r
                * When set to true, it will enable HTTP compression of the response, in case\r
                * the client has declared its support for compression in the request.\r
                */\r
                        }\r
                        else\r
                        {\r
-                               error_log('XML-RPC: xmlrpc_server::service: http headers already sent before response is fully generated. Check for php warning or error messages');\r
+                               error_log('XML-RPC: '.__METHOD__.': http headers already sent before response is fully generated. Check for php warning or error messages');\r
                        }\r
 \r
                        print $payload;\r
                        }\r
                        if ($sigdoc)\r
                        {\r
-                           $this->dmap[$methodname]['signature_docs'] = $sigdoc;\r
+                               $this->dmap[$methodname]['signature_docs'] = $sigdoc;\r
                        }\r
                }\r
 \r
                */\r
                function parseRequestHeaders(&$data, &$req_encoding, &$resp_encoding, &$resp_compression)\r
                {\r
-                       // Play nice to PHP 4.0.x: superglobals were not yet invented...\r
-                       if(!isset($_SERVER))\r
+                       // check if $_SERVER is populated: it might have been disabled via ini file\r
+                       // (this is true even when in CLI mode)\r
+                       if (count($_SERVER) == 0)\r
                        {\r
-                               $_SERVER = $GLOBALS['HTTP_SERVER_VARS'];\r
+                               error_log('XML-RPC: '.__METHOD__.': cannot parse request headers as $_SERVER is not populated');\r
                        }\r
 \r
                        if($this->debug > 1)\r
                                // makes the lib about 200% slower...\r
                                //if (!is_valid_charset($req_encoding, array('UTF-8', 'ISO-8859-1', 'US-ASCII')))\r
                                {\r
-                                       error_log('XML-RPC: xmlrpc_server::parseRequest: invalid charset encoding of received request: '.$req_encoding);\r
+                                       error_log('XML-RPC: '.__METHOD__.': invalid charset encoding of received request: '.$req_encoding);\r
                                        $req_encoding = $GLOBALS['xmlrpc_defencoding'];\r
                                }\r
                                /// @BUG this will fail on PHP 5 if charset is not specified in the xml prologue,\r
                        else\r
                        {\r
                                xml_parser_free($parser);\r
-                           // small layering violation in favor of speed and memory usage:\r
-                           // we should allow the 'execute' method handle this, but in the\r
-                           // most common scenario (xmlrpcvals type server with some methods\r
-                           // registered as phpvals) that would mean a useless encode+decode pass\r
+                               // small layering violation in favor of speed and memory usage:\r
+                               // we should allow the 'execute' method handle this, but in the\r
+                               // most common scenario (xmlrpcvals type server with some methods\r
+                               // registered as phpvals) that would mean a useless encode+decode pass\r
                                if ($this->functions_parameters_type != 'xmlrpcvals' || (isset($this->dmap[$GLOBALS['_xh']['method']]['parameters_type']) && ($this->dmap[$GLOBALS['_xh']['method']]['parameters_type'] == 'phpvals')))\r
                                {\r
                                        if($this->debug > 1)\r
                        // verify that function to be invoked is in fact callable\r
                        if(!is_callable($func))\r
                        {\r
-                               error_log("XML-RPC: xmlrpc_server::execute: function $func registered as method handler is not callable");\r
+                               error_log("XML-RPC: ".__METHOD__.": function $func registered as method handler is not callable");\r
                                return new xmlrpcresp(\r
                                        0,\r
                                        $GLOBALS['xmlrpcerr']['server_error'],\r
                        {\r
                                $GLOBALS['_xmlrpcs_prev_ehandler'] = set_error_handler('_xmlrpcs_errorHandler');\r
                        }\r
-                   // Allow mixed-convention servers\r
-                       if (is_object($m))\r
+                       try\r
                        {\r
-                               if($sysCall)\r
-                               {\r
-                                       $r = call_user_func($func, $this, $m);\r
-                               }\r
-                               else\r
-                               {\r
-                                       $r = call_user_func($func, $m);\r
-                               }\r
-                               if (!is_a($r, 'xmlrpcresp'))\r
+                               // Allow mixed-convention servers\r
+                               if (is_object($m))\r
                                {\r
-                                       error_log("XML-RPC: xmlrpc_server::execute: function $func registered as method handler does not return an xmlrpcresp object");\r
-                                       if (is_a($r, 'xmlrpcval'))\r
+                                       if($sysCall)\r
                                        {\r
-                                               $r = new xmlrpcresp($r);\r
+                                               $r = call_user_func($func, $this, $m);\r
                                        }\r
                                        else\r
                                        {\r
-                                               $r = new xmlrpcresp(\r
-                                                       0,\r
-                                                       $GLOBALS['xmlrpcerr']['server_error'],\r
-                                                       $GLOBALS['xmlrpcstr']['server_error'] . ": function does not return xmlrpcresp object"\r
-                                               );\r
+                                               $r = call_user_func($func, $m);\r
+                                       }\r
+                                       if (!is_a($r, 'xmlrpcresp'))\r
+                                       {\r
+                                               error_log("XML-RPC: ".__METHOD__.": function $func registered as method handler does not return an xmlrpcresp object");\r
+                                               if (is_a($r, 'xmlrpcval'))\r
+                                               {\r
+                                                       $r = new xmlrpcresp($r);\r
+                                               }\r
+                                               else\r
+                                               {\r
+                                                       $r = new xmlrpcresp(\r
+                                                               0,\r
+                                                               $GLOBALS['xmlrpcerr']['server_error'],\r
+                                                               $GLOBALS['xmlrpcstr']['server_error'] . ": function does not return xmlrpcresp object"\r
+                                                       );\r
+                                               }\r
                                        }\r
-                               }\r
-                       }\r
-                       else\r
-                       {\r
-                               // call a 'plain php' function\r
-                               if($sysCall)\r
-                               {\r
-                                       array_unshift($params, $this);\r
-                                       $r = call_user_func_array($func, $params);\r
                                }\r
                                else\r
                                {\r
-                                       // 3rd API convention for method-handling functions: EPI-style\r
-                                       if ($this->functions_parameters_type == 'epivals')\r
+                                       // call a 'plain php' function\r
+                                       if($sysCall)\r
+                                       {\r
+                                               array_unshift($params, $this);\r
+                                               $r = call_user_func_array($func, $params);\r
+                                       }\r
+                                       else\r
                                        {\r
-                                               $r = call_user_func_array($func, array($methName, $params, $this->user_data));\r
-                                               // mimic EPI behaviour: if we get an array that looks like an error, make it\r
-                                               // an eror response\r
-                                               if (is_array($r) && array_key_exists('faultCode', $r) && array_key_exists('faultString', $r))\r
+                                               // 3rd API convention for method-handling functions: EPI-style\r
+                                               if ($this->functions_parameters_type == 'epivals')\r
                                                {\r
-                                                       $r = new xmlrpcresp(0, (integer)$r['faultCode'], (string)$r['faultString']);\r
+                                                       $r = call_user_func_array($func, array($methName, $params, $this->user_data));\r
+                                                       // mimic EPI behaviour: if we get an array that looks like an error, make it\r
+                                                       // an eror response\r
+                                                       if (is_array($r) && array_key_exists('faultCode', $r) && array_key_exists('faultString', $r))\r
+                                                       {\r
+                                                               $r = new xmlrpcresp(0, (integer)$r['faultCode'], (string)$r['faultString']);\r
+                                                       }\r
+                                                       else\r
+                                                       {\r
+                                                               // functions using EPI api should NOT return resp objects,\r
+                                                               // so make sure we encode the return type correctly\r
+                                                               $r = new xmlrpcresp(php_xmlrpc_encode($r, array('extension_api')));\r
+                                                       }\r
                                                }\r
                                                else\r
                                                {\r
-                                                       // functions using EPI api should NOT return resp objects,\r
-                                                       // so make sure we encode the return type correctly\r
-                                                       $r = new xmlrpcresp(php_xmlrpc_encode($r, array('extension_api')));\r
+                                                       $r = call_user_func_array($func, $params);\r
                                                }\r
                                        }\r
-                                       else\r
+                                       // the return type can be either an xmlrpcresp object or a plain php value...\r
+                                       if (!is_a($r, 'xmlrpcresp'))\r
                                        {\r
-                                               $r = call_user_func_array($func, $params);\r
+                                               // what should we assume here about automatic encoding of datetimes\r
+                                               // and php classes instances???\r
+                                               $r = new xmlrpcresp(php_xmlrpc_encode($r, $this->phpvals_encoding_options));\r
                                        }\r
                                }\r
-                               // the return type can be either an xmlrpcresp object or a plain php value...\r
-                               if (!is_a($r, 'xmlrpcresp'))\r
+                       }\r
+                       catch(Exception $e)\r
+                       {\r
+                               // (barring errors in the lib) an uncatched exception happened\r
+                               // in the called function, we wrap it in a proper error-response\r
+                               switch($this->exception_handling)\r
                                {\r
-                                       // what should we assume here about automatic encoding of datetimes\r
-                                       // and php classes instances???\r
-                                       $r = new xmlrpcresp(php_xmlrpc_encode($r, $this->phpvals_encoding_options));\r
+                                       case 2:\r
+                                               throw $e;\r
+                                               break;\r
+                                       case 1:\r
+                                               $r = new xmlrpcresp(0, $e->getCode(), $e->getMessage());\r
+                                               break;\r
+                                       default:\r
+                                               $r = new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['server_error'], $GLOBALS['xmlrpcstr']['server_error']);\r
                                }\r
                        }\r
                        if($this->debug > 2)\r