server.php
20.1 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
<?php
/*
Copyright 2000, 2001, 2002, 2003, 2004, 2005 Dataprev - Empresa de Tecnologia e Informações da Previdência Social, Brasil
Este arquivo é parte do programa CACIC - Configurador Automático e Coletor de Informações Computacionais
O CACIC é um software livre; você pode redistribui-lo e/ou modifica-lo dentro dos termos da Licença Pública Geral GNU como
publicada pela Fundação do Software Livre (FSF); na versão 2 da Licença, ou (na sua opnião) qualquer versão.
Este programa é distribuido na esperança que possa ser util, mas SEM NENHUMA GARANTIA; sem uma garantia implicita de ADEQUAÇÂO a qualquer
MERCADO ou APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU para maiores detalhes.
Você deve ter recebido uma cópia da Licença Pública Geral GNU, sob o título "LICENCA.txt", junto com este programa, se não, escreva para a Fundação do Software
Livre(FSF) Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
//
// +----------------------------------------------------------------------+
// | PHP Version 4 |
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2002 The PHP Group |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.02 of the PHP license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available at through the world-wide-web at |
// | http://www.php.net/license/2_02.txt. |
// | If you did not receive a copy of the PHP license and are unable to |
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Authors: Shane Caraveo <Shane@Caraveo.com> Port to PEAR and more |
// | Authors: Dietrich Ayala <dietrich@ganx4.com> Original Author |
// +----------------------------------------------------------------------+
//
// $Id: Server.php,v 1.8 2002/03/19 06:47:16 shane Exp $
//
require_once('SOAP/globals.php');
require_once('SOAP/Parser.php');
require_once('SOAP/Message.php');
require_once('SOAP/Value.php');
// make errors handle properly in windows
error_reporting(2039);
/**
* SOAP::Server
* SOAP Server Class
*
* originaly based on SOAPx4 by Dietrich Ayala http://dietrich.ganx4.com/soapx4
*
* @access public
* @version $Id: Server.php,v 1.8 2002/03/19 06:47:16 shane Exp $
* @package SOAP::Client
* @author Shane Caraveo <shane@php.net> Conversion to PEAR and updates
* @author Dietrich Ayala <dietrich@ganx4.com> Original Author
*/
class SOAP_Server {
/**
*
* @var array
*/
var $dispatch_map = array(); // create empty dispatch map
var $dispatch_objects = array();
var $soapobject = NULL;
/**
* Store debugging messages in $debug_str?
*
* @var boolean
* @see $debug_str, SOAP_Server()
*/
var $debug_flag = SOAP_DEBUG;
/**
* Debugging messages
*
* @var string
* @see $debug_flag, SOAP_Server()
*/
var $debug_data = '';
/**
*
* @var string
*/
var $headers = '';
/**
*
* @var string
*/
var $request = '';
/**
*
* @var string XML-Encoding
*/
var $xml_encoding = 'UTF-8';
/**
*
* @var boolean
*/
var $fault = false;
/**
*
* @var string fault-code
*/
var $fault_code = '';
/**
*
* @var string fault-string
*/
var $fault_str = '';
/**
*
*/
var $fault_actor = '';
var $result = 'successful'; // for logging interop results to db
function SOAP_Server($debug = SOAP_DEBUG) {
// turn on debugging?
$this->debug_flag = $debug;
}
// parses request and posts response
function service($data)
{
global $_ENV, $_SERVER;
// if this is not a POST with Content-Type text/xml, try to return a WSDL file
if ($_SERVER['REQUEST_METHOD'] != 'POST' ||
strncmp($_ENV['HTTP_CONTENT_TYPE'], 'text/xml', 8) != 0) {
// this is not possibly a valid soap request, try to return a WSDL file
$this->makeFault('Server',"Invalid SOAP request");
$response = $this->fault();
} else {
// $response is a soap_msg object
$response = $this->parseRequest($data);
}
$this->debug("parsed request and got an object of this class '" . get_class($response) . "'");
$this->debug('server sending...');
// pass along the debug string
if ($this->debug_flag) {
$response->debug($this->debug_data);
}
$payload = $response->serialize();
// print headers
if ($this->fault) {
//$header[] = "HTTP/1.0 500 Internal Server Error\r\n";
$header[] = 'Status: 500 Internal Server Error\r\n';
} else {
//$header[] = "HTTP/1.0 200 OK\r\n";
$header[] = 'Status: 200 OK\r\n';
}
$header[] = 'Server: ' . SOAP_LIBRARY_NAME . "\r\n";
$header[] = 'Connection: Close\r\n';
$header[] = "Content-Type: text/xml; charset=$this->xml_encoding\r\n";
$header[] = 'Content-Length: ' . strlen($payload) . "\r\n\r\n";
reset($header);
foreach ($header as $hdr) {
header($hdr);
}
$this->response = join("\n", $header) . $payload;
print $payload;
}
function parseRequest($data='')
{
global $_ENV, $_SERVER;
$this->debug('entering parseRequest() on ' . date('H:i Y-m-d'));
$this->debug('request uri: ' . $_SERVER['PATH_INFO']);
// get headers
// get SOAPAction header
if ($headers_array['SOAPAction']) {
$this->SOAPAction = str_replace('"','',$_ENV['HTTP_SOAPACTION']);
$this->service = $this->SOAPAction;
}
// get the character encoding of the incoming request
if (ereg('=',$_ENV['HTTP_CONTENT_TYPE'])) {
$enc = str_replace('"','',substr(strstr($_ENV['HTTP_CONTENT_TYPE'],'='),1));
if (eregi("^(ISO-8859-1|US-ASCII|UTF-8)$",$enc)) {
$this->xml_encoding = $enc;
} else {
$this->xml_encoding = 'us-ascii';
}
}
$this->debug("got encoding: $this->xml_encoding");
$this->request = $dump."\r\n\r\n".$data;
// parse response, get soap parser obj
$parser = new SOAP_Parser($data,$this->xml_encoding);
// if fault occurred during message parsing
if ($parser->fault()) {
// parser debug
$this->debug($parser->debug_data);
$this->result = 'fault: error in msg parsing';
$this->makeFault('Server',"error in msg parsing:\n".$parser->getResponse());
// return soapresp
return $this->fault();
// else successfully parsed request into SOAP_Value object
} else {
// evaluate message, getting back a SOAP_Value object
$this->debug('calling parser->getResponse()');
$this->methodname = $parser->root_struct_name[0];
$this->debug("method name: $this->methodname");
// does method exist?
if (!$this->methodname || !$this->validateMethod($this->methodname)) {
// "method not found" fault here
$this->debug("method '$this->methodname' not found!");
$this->result = 'fault: method not found';
$this->makeFault('Server',"method '$this->methodname' not defined in service '$this->service'");
return $this->fault();
}
$this->debug("method '$this->methodname' exists");
if (!$request_val = $parser->getResponse()) {
return $this->fault();
}
// parser debug
$this->debug($parser->debug_data);
/* set namespaces
if ($parser->namespaces['xsd'] != '') {
//print 'got '.$parser->namespaces['xsd'];
global $SOAP_namespaces;
$this->XMLSchemaVersion = $parser->namespaces['xsd'];
$tmpNS = array_flip($SOAP_namespaces);
$tmpNS['xsd'] = $this->XMLSchemaVersion;
$tmpNS['xsi'] = $this->XMLSchemaVersion.'-instance';
$SOAP_namespaces = array_flip($tmpNS);
}*/
if (strcasecmp(get_class($request_val),'SOAP_Value')==0) {
// verify that SOAP_Value objects in request match the methods signature
if ($this->verifyMethod($request_val)) {
$this->debug("request data - name: $request_val->name, type: $request_val->type, value: $request_val->value");
// need to set special error detection inside the value class
// so as to differentiate between no params passed, and an error decoding
$request_data = $request_val->decode();
$this->debug($request_val->debug_data);
$this->debug("request data: $request_data");
$this->debug("about to call method '$this->methodname'");
// if there are parameters to pass
if ($request_data) {
// call method with parameters
$this->debug("calling '$this->methodname' with params");
if (is_object($this->soapobject)) {
$method_response = call_user_func_array(array(&$this->soapobject, $this->methodname),$request_data);
} else {
$method_response = call_user_func_array($this->methodname,$request_data);
}
} else {
// call method w/ no parameters
$this->debug("calling $this->methodname w/ no params");
if (is_object($this->soapobject)) {
$method_response = call_user_func(array(&$this->soapobject, $this->methodname));
} else {
$method_response = call_user_func($this->methodname);
}
}
$this->debug("done calling method: $this->methodname");
// if return val is SOAP_Message
if (strcasecmp(get_class($method_response),'SOAP_Message')==0) {
if (eregi('fault',$method_response->value->name)) {
$this->fault = true;
}
$return_msg = $method_response;
} else {
// if return val is SOAP_Value object
if (strcasecmp(get_class($method_response),'SOAP_Value')==0) {
$return_val = array($method_response);
// create soap_val object w/ return values from method, use method signature to determine type
} else {
$this->debug("creating new SOAP_Value to return, of type $this->return_type");
if (is_array($this->return_type) && is_array($method_response)) {
$i = 0;
foreach ($this->return_type as $key => $type) {
if (is_numeric($key)) $key = 'item';
$return_val[] = new SOAP_Value($key,$type,$method_response[$i++]);
}
} else {
$return_name = 'return';
if (is_array($this->return_type)) {
$keys = array_keys($this->return_type);
if (!is_numeric($keys[0])) $return_name = $keys[0];
$values = array_values($this->return_type);
$this->return_type = $values[0];
}
$return_val = array(new SOAP_Value($return_name,$this->return_type,$method_response));
}
}
if ($this->debug_flag) {
$this->debug($return_val->debug_data);
}
$this->debug("creating return soap_msg object: ".$this->methodname.'Response');
// response object is a soap_msg object
$return_msg = new SOAP_Message($this->methodname.'Response',$return_val,"$this->service");
}
if ($this->debug_flag) {
$return_msg->debug_flag = true;
}
$this->result = 'successful';
return $return_msg;
} else {
// debug
$this->debug('ERROR: request not verified against method signature');
$this->result = 'fault: request failed validation against method signature';
// return soapresp
return $this->fault();
}
} else {
// debug
$this->debug("ERROR: parser did not return SOAP_Value object: $request_val ".get_class($request_val));
$this->result = "fault: parser did not return SOAP_Value object: $request_val";
// return fault
$this->makeFault('Server',"parser did not return SOAP_Value object: $request_val");
return $this->fault();
}
}
}
function verifyMethod($request)
{
global $SOAP_typemap;
//return true;
$this->debug('entered verifyMethod() w/ request name: '.$request->name);
$params = $request->value;
// if there are input parameters required...
if ($sig = $this->dispatch_map[$this->methodname]['in']) {
$this->input_value = count($sig);
$this->return_type = $this->getReturnType($this->methodname);
if (is_array($params)) {
if ($this->debug_flag) {
$this->debug('entered verifyMethod() with '.count($params).' parameters');
foreach ($params as $v) {
$this->debug("param '$v->name' of type '$v->type'");
}
}
// validate the number of parameters
if (count($params) == count($sig)) {
$this->debug('got correct number of parameters: '.count($sig));
// make array of param types
foreach ($params as $param) {
$p[] = strtolower($param->type);
}
$sig_t = array_values($sig);
// validate each param's type
for($i=0; $i < count($p); $i++) {
// type not match
// if soap types do not match, we ok it if the mapped php types match
// this allows using plain php variables to work (ie. stuff like Decimal would fail otherwise)
// XXX we should do further validation of the value of the type
if (strcasecmp($sig_t[$i],$p[$i])!=0 &&
!(isset($SOAP_typemap[SOAP_XML_SCHEMA_VERSION][$sig_t[$i]]) &&
strcasecmp($SOAP_typemap[SOAP_XML_SCHEMA_VERSION][$sig_t[$i]],$SOAP_typemap[SOAP_XML_SCHEMA_VERSION][$p[$i]])==0)) {
$param = $params[$i];
$this->debug("mismatched parameter types: [{$sig_t[$i]}] != [{$p[$i]}]");
$this->makeFault('Client',"soap request contained mismatching parameters of name $param->name had type [{$p[$i]}], which did not match signature's type: [{$sig_t[$i]}], matched? ".(strcasecmp($sig_t[$i],$p[$i])));
return false;
}
$this->debug("parameter type match: $sig_t[$i] = $p[$i]");
}
return true;
// oops, wrong number of paramss
} else {
$this->debug('oops, wrong number of parameters!');
$this->makeFault('Client',"soap request contained incorrect number of parameters. method '$this->methodname' required ".count($sig).' and request provided '.count($params));
return false;
}
// oops, no params...
} else {
$this->debug("oops, no parameters sent! Method '$this->methodname' requires ".count($sig).' input parameters!');
$this->makeFault('Client',"soap request contained incorrect number of parameters. method '$this->methodname' requires ".count($sig).' parameters, and request provided none');
return false;
}
// no params
} elseif (count($params)==0) {
$this->input_values = 0;
return true;
}
// we'll try it anyway
return true;
}
// get string return type from dispatch map
function getReturnType()
{
if (is_array($this->dispatch_map[$this->methodname]['out'])) {
if (count($this->dispatch_map[$this->methodname]['out']) > 1) {
$this->debug("got multiple return types from dispatch map: '$type'");
return $this->dispatch_map[$this->methodname]['out'];
}
$type = array_shift($this->dispatch_map[$this->methodname]['out']);
$this->debug("got return type from dispatch map: '$type'");
return $type;
}
return false;
}
// dbg
function debug($string)
{
if ($this->debug_flag) {
$this->debug_data .= "SOAP_Server: $string\n";
}
}
function validateMethod($methodname)
{
$this->soapobject = NULL;
/* if it's in our function list, ok */
if (array_key_exists($methodname, $this->dispatch_map))
return TRUE;
/* if it's in an object, it's ok */
foreach ($this->dispatch_objects as $obj) {
if (method_exists(&$obj, $methodname)) {
$this->soapobject = &$obj;
return TRUE;
}
}
return FALSE;
}
function addObjectMap(&$obj)
{
$this->dispatch_objects[] = &$obj;
}
// add a method to the dispatch map
function addToMap($methodname, $in, $out)
{
if (!function_exists($methodname)) {
$this->makeFault('Server',"error mapping function\n");
return $this->fault();
}
$this->dispatch_map[$methodname]['in'] = $in;
$this->dispatch_map[$methodname]['out'] = $out;
return TRUE;
}
// set up a fault
function fault()
{
return new SOAP_Message('Fault',
array(
'faultcode' => $this->fault_code,
'faultstring' => $this->fault_str,
'faultactor' => $this->fault_actor,
'faultdetail' => $this->fault_detail . $this->debug_data
),
'http://schemas.xmlsoap.org/SOAP/envelope/'
);
}
function makeFault($fault_code, $fault_string)
{
$this->fault_code = $fault_code;
$this->fault_str = $fault_string;
$this->fault = true;
}
}
?>