05cc99a5599c366b6087fdd355d805523290d007
[plcapi.git] / 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->arraysize();
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                         for ($i = 0; $i < $max; $i++) {
291                             $rec = $v->arraymem($i);
292                             if ($i % 2) {
293                                 $class = ' class="oddrow"';
294                             } else {
295                                 $class = ' class="evenrow"';
296                             }
297                             echo("<tr><td$class>" . htmlspecialchars($rec->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) . "</td><td$class><form action=\"controller.php\" method=\"get\" target=\"frmcontroller\">" .
298                                 "<input type=\"hidden\" name=\"host\" value=\"" . htmlspecialchars($host, ENT_COMPAT, $inputcharset) . "\" />" .
299                                 "<input type=\"hidden\" name=\"port\" value=\"" . htmlspecialchars($port, ENT_COMPAT, $inputcharset) . "\" />" .
300                                 "<input type=\"hidden\" name=\"path\" value=\"" . htmlspecialchars($path, ENT_COMPAT, $inputcharset) . "\" />" .
301                                 "<input type=\"hidden\" name=\"id\" value=\"" . htmlspecialchars($id, ENT_COMPAT, $inputcharset) . "\" />" .
302                                 "<input type=\"hidden\" name=\"debug\" value=\"$debug\" />" .
303                                 "<input type=\"hidden\" name=\"username\" value=\"" . htmlspecialchars($username, ENT_COMPAT, $inputcharset) . "\" />" .
304                                 "<input type=\"hidden\" name=\"password\" value=\"" . htmlspecialchars($password, ENT_COMPAT, $inputcharset) . "\" />" .
305                                 "<input type=\"hidden\" name=\"authtype\" value=\"$authtype\" />" .
306                                 "<input type=\"hidden\" name=\"verifyhost\" value=\"$verifyhost\" />" .
307                                 "<input type=\"hidden\" name=\"verifypeer\" value=\"$verifypeer\" />" .
308                                 "<input type=\"hidden\" name=\"cainfo\" value=\"" . htmlspecialchars($cainfo, ENT_COMPAT, $inputcharset) . "\" />" .
309                                 "<input type=\"hidden\" name=\"proxy\" value=\"" . htmlspecialchars($proxy, ENT_COMPAT, $inputcharset) . "\" />" .
310                                 "<input type=\"hidden\" name=\"proxyuser\" value=\"" . htmlspecialchars($proxyuser, ENT_COMPAT, $inputcharset) . "\" />" .
311                                 "<input type=\"hidden\" name=\"proxypwd\" value=\"" . htmlspecialchars($proxypwd, ENT_COMPAT, $inputcharset) . "\" />" .
312                                 "<input type=\"hidden\" name=\"responsecompression\" value=\"$responsecompression\" />" .
313                                 "<input type=\"hidden\" name=\"requestcompression\" value=\"$requestcompression\" />" .
314                                 "<input type=\"hidden\" name=\"clientcookies\" value=\"" . htmlspecialchars($clientcookies, ENT_COMPAT, $inputcharset) . "\" />" .
315                                 "<input type=\"hidden\" name=\"protocol\" value=\"$protocol\" />" .
316                                 "<input type=\"hidden\" name=\"timeout\" value=\"" . htmlspecialchars($timeout, ENT_COMPAT, $inputcharset) . "\" />" .
317                                 "<input type=\"hidden\" name=\"method\" value=\"" . htmlspecialchars($rec->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) . "\" />" .
318                                 "<input type=\"hidden\" name=\"wstype\" value=\"$wstype\" />" .
319                                 "<input type=\"hidden\" name=\"action\" value=\"describe\" />" .
320                                 "<input type=\"hidden\" name=\"run\" value=\"now\" />" .
321                                 "<input type=\"submit\" value=\"Describe\" /></form></td>");
322                             //echo("</tr>\n");
323
324                             // generate the skeleton for method payload per possible tests
325                             //$methodpayload="<methodCall>\n<methodName>".$rec->scalarval()."</methodName>\n<params>\n<param><value></value></param>\n</params>\n</methodCall>";
326
327                             /*echo ("<form action=\"{$_SERVER['PHP_SELF']}\" method=\"get\"><td>".
328                               "<input type=\"hidden\" name=\"host\" value=\"$host\" />".
329                               "<input type=\"hidden\" name=\"port\" value=\"$port\" />".
330                               "<input type=\"hidden\" name=\"path\" value=\"$path\" />".
331                               "<input type=\"hidden\" name=\"method\" value=\"".$rec->scalarval()."\" />".
332                               "<input type=\"hidden\" name=\"methodpayload\" value=\"$payload\" />".
333                               "<input type=\"hidden\" name=\"action\" value=\"execute\" />".
334                               "<input type=\"submit\" value=\"Test\" /></td></form>");*/
335                             echo("</tr>\n");
336                         }
337                         echo "</tbody>\n</table>";
338                     }
339                     break;
340
341                 case 'describe':
342
343                     $r1 = $resp[0]->value();
344                     $r2 = $resp[1]->value();
345
346                     echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n";
347                     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";
348                     $desc = htmlspecialchars($r1->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding);
349                     if ($desc == "") {
350                         $desc = "-";
351                     }
352                     echo "<tr><td class=\"evenrow\">Description</td><td colspan=\"3\" class=\"evenrow\">$desc</td></tr>\n";
353                     $payload = "";
354                     $alt_payload = "";
355                     if ($r2->kindOf() != "array") {
356                         echo "<tr><td class=\"oddrow\">Signature</td><td class=\"oddrow\">Unknown</td><td class=\"oddrow\">&nbsp;</td></tr>\n";
357                     } else {
358                         for ($i = 0; $i < $r2->arraysize(); $i++) {
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                             $x = $r2->arraymem($i);
366                             if ($x->kindOf() == "array") {
367                                 $ret = $x->arraymem(0);
368                                 echo "<code>OUT:&nbsp;" . htmlspecialchars($ret->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) . "<br />IN: (";
369                                 if ($x->arraysize() > 1) {
370                                     for ($k = 1; $k < $x->arraysize(); $k++) {
371                                         $y = $x->arraymem($k);
372                                         echo htmlspecialchars($y->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding);
373                                         if ($wstype != 1) {
374                                             $payload = $payload . '<param><value><' .
375                                                 htmlspecialchars($y->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) .
376                                                 '></' . htmlspecialchars($y->scalarval(), ENT_COMPAT, \PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding) .
377                                                 "></value></param>\n";
378                                         }
379                                         $alt_payload .= $y->scalarval();
380                                         if ($k < $x->arraysize() - 1) {
381                                             $alt_payload .= ';';
382                                             echo ", ";
383                                         }
384                                     }
385                                 }
386                                 echo ")</code>";
387                             } else {
388                                 echo 'Unknown';
389                             }
390                             echo '</td>';
391                             // button to test this method
392                             //$payload="<methodCall>\n<methodName>$method</methodName>\n<params>\n$payload</params>\n</methodCall>";
393                             echo "<td$class><form action=\"controller.php\" target=\"frmcontroller\" method=\"get\">" .
394                                 "<input type=\"hidden\" name=\"host\" value=\"" . htmlspecialchars($host, ENT_COMPAT, $inputcharset) . "\" />" .
395                                 "<input type=\"hidden\" name=\"port\" value=\"" . htmlspecialchars($port, ENT_COMPAT, $inputcharset) . "\" />" .
396                                 "<input type=\"hidden\" name=\"path\" value=\"" . htmlspecialchars($path, ENT_COMPAT, $inputcharset) . "\" />" .
397                                 "<input type=\"hidden\" name=\"id\" value=\"" . htmlspecialchars($id, ENT_COMPAT, $inputcharset) . "\" />" .
398                                 "<input type=\"hidden\" name=\"debug\" value=\"$debug\" />" .
399                                 "<input type=\"hidden\" name=\"username\" value=\"" . htmlspecialchars($username, ENT_COMPAT, $inputcharset) . "\" />" .
400                                 "<input type=\"hidden\" name=\"password\" value=\"" . htmlspecialchars($password, ENT_COMPAT, $inputcharset) . "\" />" .
401                                 "<input type=\"hidden\" name=\"authtype\" value=\"$authtype\" />" .
402                                 "<input type=\"hidden\" name=\"verifyhost\" value=\"$verifyhost\" />" .
403                                 "<input type=\"hidden\" name=\"verifypeer\" value=\"$verifypeer\" />" .
404                                 "<input type=\"hidden\" name=\"cainfo\" value=\"" . htmlspecialchars($cainfo, ENT_COMPAT, $inputcharset) . "\" />" .
405                                 "<input type=\"hidden\" name=\"proxy\" value=\"" . htmlspecialchars($proxy, ENT_COMPAT, $inputcharset) . "\" />" .
406                                 "<input type=\"hidden\" name=\"proxyuser\" value=\"" . htmlspecialchars($proxyuser, ENT_COMPAT, $inputcharset) . "\" />" .
407                                 "<input type=\"hidden\" name=\"proxypwd\" value=\"" . htmlspecialchars($proxypwd, ENT_COMPAT, $inputcharset) . "\" />" .
408                                 "<input type=\"hidden\" name=\"responsecompression\" value=\"$responsecompression\" />" .
409                                 "<input type=\"hidden\" name=\"requestcompression\" value=\"$requestcompression\" />" .
410                                 "<input type=\"hidden\" name=\"clientcookies\" value=\"" . htmlspecialchars($clientcookies, ENT_COMPAT, $inputcharset) . "\" />" .
411                                 "<input type=\"hidden\" name=\"protocol\" value=\"$protocol\" />" .
412                                 "<input type=\"hidden\" name=\"timeout\" value=\"" . htmlspecialchars($timeout, ENT_COMPAT, $inputcharset) . "\" />" .
413                                 "<input type=\"hidden\" name=\"method\" value=\"" . htmlspecialchars($method, ENT_COMPAT, $inputcharset) . "\" />" .
414                                 "<input type=\"hidden\" name=\"methodpayload\" value=\"" . htmlspecialchars($payload, ENT_COMPAT, $inputcharset) . "\" />" .
415                                 "<input type=\"hidden\" name=\"altmethodpayload\" value=\"" . htmlspecialchars($alt_payload, ENT_COMPAT, $inputcharset) . "\" />" .
416                                 "<input type=\"hidden\" name=\"wstype\" value=\"$wstype\" />" .
417                                 "<input type=\"hidden\" name=\"action\" value=\"execute\" />";
418                             if ($wstype != 1) {
419                                 echo "<input type=\"submit\" value=\"Load method synopsis\" />";
420                             }
421                             echo "</form></td>\n";
422
423                             echo "<td$class><form action=\"controller.php\" target=\"frmcontroller\" method=\"get\">" .
424                                 "<input type=\"hidden\" name=\"host\" value=\"" . htmlspecialchars($host, ENT_COMPAT, $inputcharset) . "\" />" .
425                                 "<input type=\"hidden\" name=\"port\" value=\"" . htmlspecialchars($port, ENT_COMPAT, $inputcharset) . "\" />" .
426                                 "<input type=\"hidden\" name=\"path\" value=\"" . htmlspecialchars($path, ENT_COMPAT, $inputcharset) . "\" />" .
427                                 "<input type=\"hidden\" name=\"id\" value=\"" . htmlspecialchars($id, ENT_COMPAT, $inputcharset) . "\" />" .
428                                 "<input type=\"hidden\" name=\"debug\" value=\"$debug\" />" .
429                                 "<input type=\"hidden\" name=\"username\" value=\"" . htmlspecialchars($username, ENT_COMPAT, $inputcharset) . "\" />" .
430                                 "<input type=\"hidden\" name=\"password\" value=\"" . htmlspecialchars($password, ENT_COMPAT, $inputcharset) . "\" />" .
431                                 "<input type=\"hidden\" name=\"authtype\" value=\"$authtype\" />" .
432                                 "<input type=\"hidden\" name=\"verifyhost\" value=\"$verifyhost\" />" .
433                                 "<input type=\"hidden\" name=\"verifypeer\" value=\"$verifypeer\" />" .
434                                 "<input type=\"hidden\" name=\"cainfo\" value=\"" . htmlspecialchars($cainfo, ENT_COMPAT, $inputcharset) . "\" />" .
435                                 "<input type=\"hidden\" name=\"proxy\" value=\"" . htmlspecialchars($proxy, ENT_COMPAT, $inputcharset) . "\" />" .
436                                 "<input type=\"hidden\" name=\"proxyuser\" value=\"" . htmlspecialchars($proxyuser, ENT_COMPAT, $inputcharset) . "\" />" .
437                                 "<input type=\"hidden\" name=\"proxypwd\" value=\"" . htmlspecialchars($proxypwd, ENT_COMPAT, $inputcharset) . "\" />" .
438                                 "<input type=\"hidden\" name=\"responsecompression\" value=\"$responsecompression\" />" .
439                                 "<input type=\"hidden\" name=\"requestcompression\" value=\"$requestcompression\" />" .
440                                 "<input type=\"hidden\" name=\"clientcookies\" value=\"" . htmlspecialchars($clientcookies, ENT_COMPAT, $inputcharset) . "\" />" .
441                                 "<input type=\"hidden\" name=\"protocol\" value=\"$protocol\" />" .
442                                 "<input type=\"hidden\" name=\"timeout\" value=\"" . htmlspecialchars($timeout, ENT_COMPAT, $inputcharset) . "\" />" .
443                                 "<input type=\"hidden\" name=\"method\" value=\"" . htmlspecialchars($method, ENT_COMPAT, $inputcharset) . "\" />" .
444                                 "<input type=\"hidden\" name=\"methodsig\" value=\"" . $i . "\" />" .
445                                 "<input type=\"hidden\" name=\"methodpayload\" value=\"" . htmlspecialchars($payload, ENT_COMPAT, $inputcharset) . "\" />" .
446                                 "<input type=\"hidden\" name=\"altmethodpayload\" value=\"" . htmlspecialchars($alt_payload, ENT_COMPAT, $inputcharset) . "\" />" .
447                                 "<input type=\"hidden\" name=\"wstype\" value=\"$wstype\" />" .
448                                 "<input type=\"hidden\" name=\"run\" value=\"now\" />" .
449                                 "<input type=\"hidden\" name=\"action\" value=\"wrap\" />" .
450                                 "<input type=\"submit\" value=\"Generate method call stub code\" />";
451                             echo "</form></td></tr>\n";
452                         }
453                     }
454                     echo "</tbody>\n</table>";
455
456                     break;
457
458                 case 'wrap':
459                     $r1 = $resp[0]->value();
460                     $r2 = $resp[1]->value();
461                     if ($r2->kindOf() != "array" || $r2->arraysize() <= $methodsig) {
462                         echo "Error: signature unknown\n";
463                     } else {
464                         $mdesc = $r1->scalarval();
465                         $encoder = new PhpXmlRpc\Encoder();
466                         $msig = $encoder->decode($r2);
467                         $msig = $msig[$methodsig];
468                         $proto = $protocol == 2 ? 'https' : $protocol == 1 ? 'http11' : '';
469                         if ($proxy == '' && $username == '' && !$requestcompression && !$responsecompression &&
470                             $clientcookies == ''
471                         ) {
472                             $opts = 0; // simple client copy in stub code
473                         } else {
474                             $opts = 1; // complete client copy in stub code
475                         }
476                         if ($wstype == 1) {
477                             $prefix = 'jsonrpc';
478                         } else {
479                             $prefix = 'xmlrpc';
480                         }
481                         //$code = wrap_xmlrpc_method($client, $method, $methodsig, 0, $proto, '', $opts);
482                         $wrapper = new PhpXmlRpc\Wrapper();
483                         $code = $wrapper->build_remote_method_wrapper_code($client, $method, str_replace('.', '_', $prefix . '_' . $method), $msig, $mdesc, $timeout, $proto, $opts, $prefix);
484                         //if ($code)
485                         //{
486                         echo "<div id=\"phpcode\">\n";
487                         highlight_string("<?php\n" . $code['docstring'] . $code['source'] . '?>');
488                         echo "\n</div>";
489                         //}
490                         //else
491                         //{
492                         //  echo 'Error while building php code stub...';
493                     }
494
495                     break;
496
497                 case 'execute':
498                     echo '<div id="response"><h2>Response:</h2>' . htmlspecialchars($response->serialize()) . '</div>';
499                     break;
500
501                 default: // give a warning
502             }
503         } // if !$response->faultCode()
504     } // if $response
505 } else {
506     // no action taken yet: give some instructions on debugger usage
507     ?>
508
509     <h3>Instructions on usage of the debugger</h3>
510     <ol>
511         <li>Run a 'list available methods' action against desired server</li>
512         <li>If list of methods appears, click on 'describe method' for desired method</li>
513         <li>To run method: click on 'load method synopsis' for desired method. This will load a skeleton for method call
514             parameters in the form above. Complete all xmlrpc values with appropriate data and click 'Execute'
515         </li>
516     </ol>
517     <?php
518     if (!extension_loaded('curl')) {
519         echo "<p class=\"evidence\">You will need to enable the CURL extension to use the HTTPS and HTTP 1.1 transports</p>\n";
520     }
521     ?>
522
523     <h3>Example</h3>
524     <p>
525         Server Address: phpxmlrpc.sourceforge.net<br/>
526         Path: /server.php
527     </p>
528
529     <h3>Notice</h3>
530     <p>all usernames and passwords entered on the above form will be written to the web server logs of this server. Use
531         with care.</p>
532
533     <h3>Changelog</h3>
534     <ul>
535         <li>2015-04-19: fix problems with LATIN-1 characters in payload</li>
536         <li>2007-02-20: add visual editor for method payload; allow strings, bools as jsonrpc msg id</li>
537         <li>2006-06-26: support building php code stub for calling remote methods</li>
538         <li>2006-05-25: better support for long running queries; check for no-curl installs</li>
539         <li>2006-05-02: added support for JSON-RPC. Note that many interesting json-rpc features are not implemented
540             yet, such as notifications or multicall.
541         </li>
542         <li>2006-04-22: added option for setting custom CA certs to verify peer with in SSLmode</li>
543         <li>2006-03-05: added option for setting Basic/Digest/NTLM auth type</li>
544         <li>2006-01-18: added option echoing to screen xmlrpc request before sending it ('More' debug)</li>
545         <li>2005-10-01: added option for setting cookies to be sent to server</li>
546         <li>2005-08-07: added switches for compression of requests and responses and http 1.1</li>
547         <li>2005-06-27: fixed possible security breach in parsing malformed xml</li>
548         <li>2005-06-24: fixed error with calling methods having parameters...</li>
549     </ul>
550 <?php
551
552 }
553 ?>
554 </body>
555 </html>