Add 'php/phpxmlrpc/' from commit 'cd5dbb4a511e7a616a61187a5de1a611a9748cbd'
[plcapi.git] / php / phpxmlrpc / debugger / action.php
1 <?php
2 /**
3  * @author Gaetano Giunta
4  * @copyright (C) 2005-2015 G. Giunta
5  * @license code licensed under the BSD License: see file license.txt
6  *
7  * @todo switch params for http compression from 0,1,2 to values to be used directly
8  * @todo use ob_start to catch debug info and echo it AFTER method call results?
9  * @todo be smarter in creating client stub for proxy/auth cases: only set appropriate property of client obj
10  **/
11
12 header('Content-Type: text/html; charset=utf-8');
13
14 ?>
15 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
16     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
17 <html xmlns="http://www.w3.org/1999/xhtml">
18 <head>
19     <title>XMLRPC Debugger</title>
20     <meta name="robots" content="index,nofollow"/>
21     <style type="text/css">
22         <!--
23         body {
24             border-top: 1px solid gray;
25             padding: 1em;
26             font-family: Verdana, Arial, Helvetica;
27             font-size: 8pt;
28         }
29
30         h3 {
31             font-size: 9.5pt;
32         }
33
34         h2 {
35             font-size: 12pt;
36         }
37
38         .dbginfo {
39             padding: 1em;
40             background-color: #EEEEEE;
41             border: 1px dashed silver;
42             font-family: monospace;
43         }
44
45         #response {
46             padding: 1em;
47             margin-top: 1em;
48             background-color: #DDDDDD;
49             border: 1px solid gray;
50             white-space: pre;
51             font-family: monospace;
52         }
53
54         table {
55             padding: 2px;
56             margin-top: 1em;
57         }
58
59         th {
60             background-color: navy;
61             color: white;
62             padding: 0.5em;
63         }
64
65         td {
66             padding: 0.5em;
67             font-family: monospace;
68         }
69
70         td form {
71             margin: 0;
72         }
73
74         .oddrow {
75             background-color: #EEEEEE;
76         }
77
78         .evidence {
79             color: blue;
80         }
81
82         #phpcode {
83             background-color: #EEEEEE;
84             padding: 1em;
85             margin-top: 1em;
86         }
87
88         -->
89     </style>
90 </head>
91 <body>
92 <?php
93
94 include __DIR__ . '/common.php';
95 if ($action) {
96
97     include_once __DIR__ . "/../src/Autoloader.php";
98     PhpXmlRpc\Autoloader::register();
99
100     // make sure the script waits long enough for the call to complete...
101     if ($timeout) {
102         set_time_limit($timeout + 10);
103     }
104
105     if ($wstype == 1) {
106         @include 'jsonrpc.inc';
107         if (!class_exists('jsonrpc_client')) {
108             die('Error: to debug the jsonrpc protocol the jsonrpc.inc file is needed');
109         }
110         $clientClass = 'PhpJsRpc\Client';
111         $requestClass = 'PhpJsRpc\Request';
112         $protoName = 'JSONRPC';
113     } else {
114         $clientClass = 'PhpXmlRpc\Client';
115         $requestClass = 'PhpXmlRpc\Request';
116         $protoName = 'XMLRPC';
117     }
118
119     if ($port != "") {
120         $client = new $clientClass($path, $host, $port);
121         $server = "$host:$port$path";
122     } else {
123         $client = new $clientClass($path, $host);
124         $server = "$host$path";
125     }
126     if ($protocol == 2) {
127         $server = 'https://' . $server;
128     } else {
129         $server = 'http://' . $server;
130     }
131     if ($proxy != '') {
132         $pproxy = explode(':', $proxy);
133         if (count($pproxy) > 1) {
134             $pport = $pproxy[1];
135         } else {
136             $pport = 8080;
137         }
138         $client->setProxy($pproxy[0], $pport, $proxyuser, $proxypwd);
139     }
140
141     if ($protocol == 2) {
142         $client->setSSLVerifyPeer($verifypeer);
143         $client->setSSLVerifyHost($verifyhost);
144         if ($cainfo) {
145             $client->setCaCertificate($cainfo);
146         }
147         $httpprotocol = 'https';
148     } elseif ($protocol == 1) {
149         $httpprotocol = 'http11';
150     } else {
151         $httpprotocol = 'http';
152     }
153
154     if ($username) {
155         $client->setCredentials($username, $password, $authtype);
156     }
157
158     $client->setDebug($debug);
159
160     switch ($requestcompression) {
161         case 0:
162             $client->request_compression = '';
163             break;
164         case 1:
165             $client->request_compression = 'gzip';
166             break;
167         case 2:
168             $client->request_compression = 'deflate';
169             break;
170     }
171
172     switch ($responsecompression) {
173         case 0:
174             $client->accepted_compression = '';
175             break;
176         case 1:
177             $client->accepted_compression = array('gzip');
178             break;
179         case 2:
180             $client->accepted_compression = array('deflate');
181             break;
182         case 3:
183             $client->accepted_compression = array('gzip', 'deflate');
184             break;
185     }
186
187     $cookies = explode(',', $clientcookies);
188     foreach ($cookies as $cookie) {
189         if (strpos($cookie, '=')) {
190             $cookie = explode('=', $cookie);
191             $client->setCookie(trim($cookie[0]), trim(@$cookie[1]));
192         }
193     }
194
195     $msg = array();
196     switch ($action) {
197         // fall thru intentionally
198         case 'describe':
199         case 'wrap':
200             $msg[0] = new $requestClass('system.methodHelp', array(), $id);
201             $msg[0]->addparam(new PhpXmlRpc\Value($method));
202             $msg[1] = new $requestClass('system.methodSignature', array(), $id + 1);
203             $msg[1]->addparam(new PhpXmlRpc\Value($method));
204             $actionname = 'Description of method "' . $method . '"';
205             break;
206         case 'list':
207             $msg[0] = new $requestClass('system.listMethods', array(), $id);
208             $actionname = 'List of available methods';
209             break;
210         case 'execute':
211             if (!payload_is_safe($payload)) {
212                 die("Tsk tsk tsk, please stop it or I will have to call in the cops!");
213             }
214             $msg[0] = new $requestClass($method, array(), $id);
215             // hack! build xml payload by hand
216             if ($wstype == 1) {
217                 $msg[0]->payload = "{\n" .
218                     '"method": "' . $method . "\",\n\"params\": [" .
219                     $payload .
220                     "\n],\n\"id\": ";
221                 // fix: if user gave an empty string, use NULL, or we'll break json syntax
222                 if ($id == "") {
223                     $msg[0]->payload .= "null\n}";
224                 } else {
225                     if (is_numeric($id) || $id == 'false' || $id == 'true' || $id == 'null') {
226                         $msg[0]->payload .= "$id\n}";
227                     } else {
228                         $msg[0]->payload .= "\"$id\"\n}";
229                     }
230                 }
231             } else {
232                 $msg[0]->payload = $msg[0]->xml_header($inputcharset) .
233                     '<methodName>' . $method . "</methodName>\n<params>" .
234                     $payload .
235                     "</params>\n" . $msg[0]->xml_footer();
236             }
237             $actionname = 'Execution of method ' . $method;
238             break;
239         default: // give a warning
240             $actionname = '[ERROR: unknown action] "' . $action . '"';
241     }
242
243     // Before calling execute, echo out brief description of action taken + date and time ???
244     // this gives good user feedback for long-running methods...
245     echo '<h2>' . htmlspecialchars($actionname, ENT_COMPAT, $inputcharset) . ' on server ' . htmlspecialchars($server, ENT_COMPAT, $inputcharset) . " ...</h2>\n";
246     flush();
247
248     $response = null;
249     // execute method(s)
250     if ($debug) {
251         echo '<div class="dbginfo"><h2>Debug info:</h2>';
252     }  /// @todo use ob_start instead
253     $resp = array();
254     $time = microtime(true);
255     foreach ($msg as $message) {
256         // catch errors: for older xmlrpc libs, send does not return by ref
257         @$response = $client->send($message, $timeout, $httpprotocol);
258         $resp[] = $response;
259         if (!$response || $response->faultCode()) {
260             break;
261         }
262     }
263     $time = microtime(true) - $time;
264     if ($debug) {
265         echo "</div>\n";
266     }
267
268     if ($response) {
269         if ($response->faultCode()) {
270             // call failed! echo out error msg!
271             //echo '<h2>'.htmlspecialchars($actionname, ENT_COMPAT, $inputcharset).' on server '.htmlspecialchars($server, ENT_COMPAT, $inputcharset).'</h2>';
272             echo "<h3>$protoName call FAILED!</h3>\n";
273             echo "<p>Fault code: [" . htmlspecialchars($response->faultCode(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) .
274                 "] Reason: '" . htmlspecialchars($response->faultString(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) . "'</p>\n";
275             echo(strftime("%d/%b/%Y:%H:%M:%S\n"));
276         } else {
277             // call succeeded: parse results
278             //echo '<h2>'.htmlspecialchars($actionname, ENT_COMPAT, $inputcharset).' on server '.htmlspecialchars($server, ENT_COMPAT, $inputcharset).'</h2>';
279             printf("<h3>%s call(s) OK (%.2f secs.)</h3>\n", $protoName, $time);
280             echo(strftime("%d/%b/%Y:%H:%M:%S\n"));
281
282             switch ($action) {
283                 case 'list':
284
285                     $v = $response->value();
286                     if ($v->kindOf() == "array") {
287                         $max = $v->count();
288                         echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n";
289                         echo "<thead>\n<tr><th>Method ($max)</th><th>Description</th></tr>\n</thead>\n<tbody>\n";
290                         foreach($v as $i => $rec) {
291                             if ($i % 2) {
292                                 $class = ' class="oddrow"';
293                             } else {
294                                 $class = ' class="evenrow"';
295                             }
296                             echo("<tr><td$class>" . htmlspecialchars($rec->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) . "</td><td$class><form action=\"controller.php\" method=\"get\" target=\"frmcontroller\">" .
297                                 "<input type=\"hidden\" name=\"host\" value=\"" . htmlspecialchars($host, ENT_COMPAT, $inputcharset) . "\" />" .
298                                 "<input type=\"hidden\" name=\"port\" value=\"" . htmlspecialchars($port, ENT_COMPAT, $inputcharset) . "\" />" .
299                                 "<input type=\"hidden\" name=\"path\" value=\"" . htmlspecialchars($path, ENT_COMPAT, $inputcharset) . "\" />" .
300                                 "<input type=\"hidden\" name=\"id\" value=\"" . htmlspecialchars($id, ENT_COMPAT, $inputcharset) . "\" />" .
301                                 "<input type=\"hidden\" name=\"debug\" value=\"$debug\" />" .
302                                 "<input type=\"hidden\" name=\"username\" value=\"" . htmlspecialchars($username, ENT_COMPAT, $inputcharset) . "\" />" .
303                                 "<input type=\"hidden\" name=\"password\" value=\"" . htmlspecialchars($password, ENT_COMPAT, $inputcharset) . "\" />" .
304                                 "<input type=\"hidden\" name=\"authtype\" value=\"$authtype\" />" .
305                                 "<input type=\"hidden\" name=\"verifyhost\" value=\"$verifyhost\" />" .
306                                 "<input type=\"hidden\" name=\"verifypeer\" value=\"$verifypeer\" />" .
307                                 "<input type=\"hidden\" name=\"cainfo\" value=\"" . htmlspecialchars($cainfo, ENT_COMPAT, $inputcharset) . "\" />" .
308                                 "<input type=\"hidden\" name=\"proxy\" value=\"" . htmlspecialchars($proxy, ENT_COMPAT, $inputcharset) . "\" />" .
309                                 "<input type=\"hidden\" name=\"proxyuser\" value=\"" . htmlspecialchars($proxyuser, ENT_COMPAT, $inputcharset) . "\" />" .
310                                 "<input type=\"hidden\" name=\"proxypwd\" value=\"" . htmlspecialchars($proxypwd, ENT_COMPAT, $inputcharset) . "\" />" .
311                                 "<input type=\"hidden\" name=\"responsecompression\" value=\"$responsecompression\" />" .
312                                 "<input type=\"hidden\" name=\"requestcompression\" value=\"$requestcompression\" />" .
313                                 "<input type=\"hidden\" name=\"clientcookies\" value=\"" . htmlspecialchars($clientcookies, ENT_COMPAT, $inputcharset) . "\" />" .
314                                 "<input type=\"hidden\" name=\"protocol\" value=\"$protocol\" />" .
315                                 "<input type=\"hidden\" name=\"timeout\" value=\"" . htmlspecialchars($timeout, ENT_COMPAT, $inputcharset) . "\" />" .
316                                 "<input type=\"hidden\" name=\"method\" value=\"" . htmlspecialchars($rec->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) . "\" />" .
317                                 "<input type=\"hidden\" name=\"wstype\" value=\"$wstype\" />" .
318                                 "<input type=\"hidden\" name=\"action\" value=\"describe\" />" .
319                                 "<input type=\"hidden\" name=\"run\" value=\"now\" />" .
320                                 "<input type=\"submit\" value=\"Describe\" /></form></td>");
321                             //echo("</tr>\n");
322
323                             // generate the skeleton for method payload per possible tests
324                             //$methodpayload="<methodCall>\n<methodName>".$rec->scalarval()."</methodName>\n<params>\n<param><value></value></param>\n</params>\n</methodCall>";
325
326                             /*echo ("<form action=\"{$_SERVER['PHP_SELF']}\" method=\"get\"><td>".
327                               "<input type=\"hidden\" name=\"host\" value=\"$host\" />".
328                               "<input type=\"hidden\" name=\"port\" value=\"$port\" />".
329                               "<input type=\"hidden\" name=\"path\" value=\"$path\" />".
330                               "<input type=\"hidden\" name=\"method\" value=\"".$rec->scalarval()."\" />".
331                               "<input type=\"hidden\" name=\"methodpayload\" value=\"$payload\" />".
332                               "<input type=\"hidden\" name=\"action\" value=\"execute\" />".
333                               "<input type=\"submit\" value=\"Test\" /></td></form>");*/
334                             echo("</tr>\n");
335                         }
336                         echo "</tbody>\n</table>";
337                     }
338                     break;
339
340                 case 'describe':
341
342                     $r1 = $resp[0]->value();
343                     $r2 = $resp[1]->value();
344
345                     echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n";
346                     echo "<thead>\n<tr><th>Method</th><th>" . htmlspecialchars($method, ENT_COMPAT, $inputcharset) . "</th><th>&nbsp;</th><th>&nbsp;</th></tr>\n</thead>\n<tbody>\n";
347                     $desc = htmlspecialchars($r1->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding);
348                     if ($desc == "") {
349                         $desc = "-";
350                     }
351                     echo "<tr><td class=\"evenrow\">Description</td><td colspan=\"3\" class=\"evenrow\">$desc</td></tr>\n";
352
353                     if ($r2->kindOf() != "array") {
354                         echo "<tr><td class=\"oddrow\">Signature</td><td class=\"oddrow\">Unknown</td><td class=\"oddrow\">&nbsp;</td></tr>\n";
355                     } else {
356                         foreach($r2 as $i => $x) {
357                             $payload = "";
358                             $alt_payload = "";
359                             if ($i + 1 % 2) {
360                                 $class = ' class="oddrow"';
361                             } else {
362                                 $class = ' class="evenrow"';
363                             }
364                             echo "<tr><td$class>Signature&nbsp;" . ($i + 1) . "</td><td$class>";
365                             if ($x->kindOf() == "array") {
366                                 $ret = $x[0];
367                                 echo "<code>OUT:&nbsp;" . htmlspecialchars($ret->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) . "<br />IN: (";
368                                 if ($x->count() > 1) {
369                                     foreach($x as $k => $y) {
370                                         if ($k == 0) continue;
371                                         echo htmlspecialchars($y->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding);
372                                         if ($wstype != 1) {
373                                             $type = $y->scalarval();
374                                             $payload .= '<param><value>';
375                                             switch($type) {
376                                                 case 'undefined':
377                                                     break;
378                                                 case 'null';
379                                                     $type = 'nil';
380                                                     // fall thru intentionally
381                                                 default:
382                                                     $payload .= '<' .
383                                                         htmlspecialchars($type, ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) .
384                                                         '></' . htmlspecialchars($type, ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) .
385                                                         '>';
386                                             }
387                                             $payload .= "</value></param>\n";
388                                         }
389                                         $alt_payload .= $y->scalarval();
390                                         if ($k < $x->count() - 1) {
391                                             $alt_payload .= ';';
392                                             echo ", ";
393                                         }
394                                     }
395                                 }
396                                 echo ")</code>";
397                             } else {
398                                 echo 'Unknown';
399                             }
400                             echo '</td>';
401                             // button to test this method
402                             //$payload="<methodCall>\n<methodName>$method</methodName>\n<params>\n$payload</params>\n</methodCall>";
403                             echo "<td$class><form action=\"controller.php\" target=\"frmcontroller\" method=\"get\">" .
404                                 "<input type=\"hidden\" name=\"host\" value=\"" . htmlspecialchars($host, ENT_COMPAT, $inputcharset) . "\" />" .
405                                 "<input type=\"hidden\" name=\"port\" value=\"" . htmlspecialchars($port, ENT_COMPAT, $inputcharset) . "\" />" .
406                                 "<input type=\"hidden\" name=\"path\" value=\"" . htmlspecialchars($path, ENT_COMPAT, $inputcharset) . "\" />" .
407                                 "<input type=\"hidden\" name=\"id\" value=\"" . htmlspecialchars($id, ENT_COMPAT, $inputcharset) . "\" />" .
408                                 "<input type=\"hidden\" name=\"debug\" value=\"$debug\" />" .
409                                 "<input type=\"hidden\" name=\"username\" value=\"" . htmlspecialchars($username, ENT_COMPAT, $inputcharset) . "\" />" .
410                                 "<input type=\"hidden\" name=\"password\" value=\"" . htmlspecialchars($password, ENT_COMPAT, $inputcharset) . "\" />" .
411                                 "<input type=\"hidden\" name=\"authtype\" value=\"$authtype\" />" .
412                                 "<input type=\"hidden\" name=\"verifyhost\" value=\"$verifyhost\" />" .
413                                 "<input type=\"hidden\" name=\"verifypeer\" value=\"$verifypeer\" />" .
414                                 "<input type=\"hidden\" name=\"cainfo\" value=\"" . htmlspecialchars($cainfo, ENT_COMPAT, $inputcharset) . "\" />" .
415                                 "<input type=\"hidden\" name=\"proxy\" value=\"" . htmlspecialchars($proxy, ENT_COMPAT, $inputcharset) . "\" />" .
416                                 "<input type=\"hidden\" name=\"proxyuser\" value=\"" . htmlspecialchars($proxyuser, ENT_COMPAT, $inputcharset) . "\" />" .
417                                 "<input type=\"hidden\" name=\"proxypwd\" value=\"" . htmlspecialchars($proxypwd, ENT_COMPAT, $inputcharset) . "\" />" .
418                                 "<input type=\"hidden\" name=\"responsecompression\" value=\"$responsecompression\" />" .
419                                 "<input type=\"hidden\" name=\"requestcompression\" value=\"$requestcompression\" />" .
420                                 "<input type=\"hidden\" name=\"clientcookies\" value=\"" . htmlspecialchars($clientcookies, ENT_COMPAT, $inputcharset) . "\" />" .
421                                 "<input type=\"hidden\" name=\"protocol\" value=\"$protocol\" />" .
422                                 "<input type=\"hidden\" name=\"timeout\" value=\"" . htmlspecialchars($timeout, ENT_COMPAT, $inputcharset) . "\" />" .
423                                 "<input type=\"hidden\" name=\"method\" value=\"" . htmlspecialchars($method, ENT_COMPAT, $inputcharset) . "\" />" .
424                                 "<input type=\"hidden\" name=\"methodpayload\" value=\"" . htmlspecialchars($payload, ENT_COMPAT, $inputcharset) . "\" />" .
425                                 "<input type=\"hidden\" name=\"altmethodpayload\" value=\"" . htmlspecialchars($alt_payload, ENT_COMPAT, $inputcharset) . "\" />" .
426                                 "<input type=\"hidden\" name=\"wstype\" value=\"$wstype\" />" .
427                                 "<input type=\"hidden\" name=\"action\" value=\"execute\" />";
428                             if ($wstype != 1) {
429                                 echo "<input type=\"submit\" value=\"Load method synopsis\" />";
430                             }
431                             echo "</form></td>\n";
432
433                             echo "<td$class><form action=\"controller.php\" target=\"frmcontroller\" method=\"get\">" .
434                                 "<input type=\"hidden\" name=\"host\" value=\"" . htmlspecialchars($host, ENT_COMPAT, $inputcharset) . "\" />" .
435                                 "<input type=\"hidden\" name=\"port\" value=\"" . htmlspecialchars($port, ENT_COMPAT, $inputcharset) . "\" />" .
436                                 "<input type=\"hidden\" name=\"path\" value=\"" . htmlspecialchars($path, ENT_COMPAT, $inputcharset) . "\" />" .
437                                 "<input type=\"hidden\" name=\"id\" value=\"" . htmlspecialchars($id, ENT_COMPAT, $inputcharset) . "\" />" .
438                                 "<input type=\"hidden\" name=\"debug\" value=\"$debug\" />" .
439                                 "<input type=\"hidden\" name=\"username\" value=\"" . htmlspecialchars($username, ENT_COMPAT, $inputcharset) . "\" />" .
440                                 "<input type=\"hidden\" name=\"password\" value=\"" . htmlspecialchars($password, ENT_COMPAT, $inputcharset) . "\" />" .
441                                 "<input type=\"hidden\" name=\"authtype\" value=\"$authtype\" />" .
442                                 "<input type=\"hidden\" name=\"verifyhost\" value=\"$verifyhost\" />" .
443                                 "<input type=\"hidden\" name=\"verifypeer\" value=\"$verifypeer\" />" .
444                                 "<input type=\"hidden\" name=\"cainfo\" value=\"" . htmlspecialchars($cainfo, ENT_COMPAT, $inputcharset) . "\" />" .
445                                 "<input type=\"hidden\" name=\"proxy\" value=\"" . htmlspecialchars($proxy, ENT_COMPAT, $inputcharset) . "\" />" .
446                                 "<input type=\"hidden\" name=\"proxyuser\" value=\"" . htmlspecialchars($proxyuser, ENT_COMPAT, $inputcharset) . "\" />" .
447                                 "<input type=\"hidden\" name=\"proxypwd\" value=\"" . htmlspecialchars($proxypwd, ENT_COMPAT, $inputcharset) . "\" />" .
448                                 "<input type=\"hidden\" name=\"responsecompression\" value=\"$responsecompression\" />" .
449                                 "<input type=\"hidden\" name=\"requestcompression\" value=\"$requestcompression\" />" .
450                                 "<input type=\"hidden\" name=\"clientcookies\" value=\"" . htmlspecialchars($clientcookies, ENT_COMPAT, $inputcharset) . "\" />" .
451                                 "<input type=\"hidden\" name=\"protocol\" value=\"$protocol\" />" .
452                                 "<input type=\"hidden\" name=\"timeout\" value=\"" . htmlspecialchars($timeout, ENT_COMPAT, $inputcharset) . "\" />" .
453                                 "<input type=\"hidden\" name=\"method\" value=\"" . htmlspecialchars($method, ENT_COMPAT, $inputcharset) . "\" />" .
454                                 "<input type=\"hidden\" name=\"methodsig\" value=\"" . $i . "\" />" .
455                                 "<input type=\"hidden\" name=\"methodpayload\" value=\"" . htmlspecialchars($payload, ENT_COMPAT, $inputcharset) . "\" />" .
456                                 "<input type=\"hidden\" name=\"altmethodpayload\" value=\"" . htmlspecialchars($alt_payload, ENT_COMPAT, $inputcharset) . "\" />" .
457                                 "<input type=\"hidden\" name=\"wstype\" value=\"$wstype\" />" .
458                                 "<input type=\"hidden\" name=\"run\" value=\"now\" />" .
459                                 "<input type=\"hidden\" name=\"action\" value=\"wrap\" />" .
460                                 "<input type=\"submit\" value=\"Generate method call stub code\" />";
461                             echo "</form></td></tr>\n";
462                         }
463                     }
464                     echo "</tbody>\n</table>";
465
466                     break;
467
468                 case 'wrap':
469                     $r1 = $resp[0]->value();
470                     $r2 = $resp[1]->value();
471                     if ($r2->kindOf() != "array" || $r2->count() <= $methodsig) {
472                         echo "Error: signature unknown\n";
473                     } else {
474                         $mdesc = $r1->scalarval();
475                         $encoder = new PhpXmlRpc\Encoder();
476                         $msig = $encoder->decode($r2);
477                         $msig = $msig[$methodsig];
478                         $proto = $protocol == 2 ? 'https' : $protocol == 1 ? 'http11' : '';
479                         if ($proxy == '' && $username == '' && !$requestcompression && !$responsecompression &&
480                             $clientcookies == ''
481                         ) {
482                             $opts = 1; // simple client copy in stub code
483                         } else {
484                             $opts = 0; // complete client copy in stub code
485                         }
486                         if ($wstype == 1) {
487                             $prefix = 'jsonrpc';
488                         } else {
489                             $prefix = 'xmlrpc';
490                         }
491                         $wrapper = new PhpXmlRpc\Wrapper();
492                         $code = $wrapper->buildWrapMethodSource($client, $method, array('timeout' => $timeout, 'protocol' => $proto, 'simple_client_copy' => $opts, 'prefix' => $prefix), str_replace('.', '_', $prefix . '_' . $method), $msig, $mdesc);
493                         //if ($code)
494                         //{
495                         echo "<div id=\"phpcode\">\n";
496                         highlight_string("<?php\n" . $code['docstring'] . $code['source'] . '?>');
497                         echo "\n</div>";
498                         //}
499                         //else
500                         //{
501                         //  echo 'Error while building php code stub...';
502                     }
503
504                     break;
505
506                 case 'execute':
507                     echo '<div id="response"><h2>Response:</h2>' . htmlspecialchars($response->serialize()) . '</div>';
508                     break;
509
510                 default: // give a warning
511             }
512         } // if !$response->faultCode()
513     } // if $response
514 } else {
515     // no action taken yet: give some instructions on debugger usage
516     ?>
517
518     <h3>Instructions on usage of the debugger</h3>
519     <ol>
520         <li>Run a 'list available methods' action against desired server</li>
521         <li>If list of methods appears, click on 'describe method' for desired method</li>
522         <li>To run method: click on 'load method synopsis' for desired method. This will load a skeleton for method call
523             parameters in the form above. Complete all xmlrpc values with appropriate data and click 'Execute'
524         </li>
525     </ol>
526     <?php
527     if (!extension_loaded('curl')) {
528         echo "<p class=\"evidence\">You will need to enable the CURL extension to use the HTTPS and HTTP 1.1 transports</p>\n";
529     }
530     ?>
531
532     <h3>Example</h3>
533     <p>
534         Server Address: phpxmlrpc.sourceforge.net<br/>
535         Path: /server.php
536     </p>
537
538     <h3>Notice</h3>
539     <p>all usernames and passwords entered on the above form will be written to the web server logs of this server. Use
540         with care.</p>
541
542     <h3>Changelog</h3>
543     <ul>
544         <li>2015-05-30: fix problems with generating method payloads for NIL and Undefined parameters</li>
545         <li>2015-04-19: fix problems with LATIN-1 characters in payload</li>
546         <li>2007-02-20: add visual editor for method payload; allow strings, bools as jsonrpc msg id</li>
547         <li>2006-06-26: support building php code stub for calling remote methods</li>
548         <li>2006-05-25: better support for long running queries; check for no-curl installs</li>
549         <li>2006-05-02: added support for JSON-RPC. Note that many interesting json-rpc features are not implemented
550             yet, such as notifications or multicall.
551         </li>
552         <li>2006-04-22: added option for setting custom CA certs to verify peer with in SSLmode</li>
553         <li>2006-03-05: added option for setting Basic/Digest/NTLM auth type</li>
554         <li>2006-01-18: added option echoing to screen xmlrpc request before sending it ('More' debug)</li>
555         <li>2005-10-01: added option for setting cookies to be sent to server</li>
556         <li>2005-08-07: added switches for compression of requests and responses and http 1.1</li>
557         <li>2005-06-27: fixed possible security breach in parsing malformed xml</li>
558         <li>2005-06-24: fixed error with calling methods having parameters...</li>
559     </ul>
560 <?php
561
562 }
563 ?>
564 </body>
565 </html>