format, add headers

This commit is contained in:
Miles Lott 2001-10-17 22:08:38 +00:00
parent e7534433bc
commit 6d40e78fe9

View File

@ -1,279 +1,293 @@
<?php <?php
/* /*
this is a class that loads a wsdl file and makes it's data available to an application SOAPx4
it should provide methods that allow both client and server usage of it by Dietrich Ayala (C) 2001 dietrich@ganx4.com
also should have methods for creating a wsdl file from scratch and This project began based on code from the 2 projects below,
serializing wsdl into valid markup and still contains some original code. The licenses of both must be respected.
XML-RPC for PHP
originally by Edd Dumbill (C) 1999-2000
SOAP for PHP
by Victor Zou (C) 2000-2001 <victor@gigaideas.com.cn>
this is a class that loads a wsdl file and makes it's data available to an application
it should provide methods that allow both client and server usage of it
also should have methods for creating a wsdl file from scratch and
serializing wsdl into valid markup
*/ */
/* $Id$ */
class wsdl class wsdl
{
// constructor
function wsdl($wsdl=false)
{ {
// define internal arrays of bindings, ports, operations, messages, etc. // constructor
$this->complexTypes = array(); function wsdl($wsdl=False)
$this->messages = array();
$this->currentMessage;
$this->portOperations = array();
$this->currentOperation;
$this->portTypes = array();
$this->currentPortType;
$this->bindings = array();
$this->currentBinding;
// debug switch
$this->debug_flag = false;
// parser vars
$this->parser;
$this->position;
$this->depth;
$this->depth_array = array();
if($wsdl == "-1")
{ {
$wsdl=false; // define internal arrays of bindings, ports, operations, messages, etc.
} $this->complexTypes = array();
// Check whether content has been read. $this->messages = array();
if($wsdl) $this->currentMessage;
{ $this->portOperations = array();
$wsdl_string = join("",file($wsdl)); $this->currentOperation;
// Create an XML parser. $this->portTypes = array();
$this->parser = xml_parser_create(); $this->currentPortType;
// Set the options for parsing the XML data. $this->bindings = array();
//xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 1); $this->currentBinding;
xml_parser_set_option($this->parser, XML_OPTION_CASE_FOLDING, 0); // debug switch
// Set the object for the parser. $this->debug_flag = False;
xml_set_object($this->parser, &$this); // parser vars
// Set the element handlers for the parser. $this->parser;
xml_set_element_handler($this->parser, "start_element","end_element"); $this->position;
xml_set_character_data_handler($this->parser,"character_data"); $this->depth;
//xml_set_default_handler($this->parser, "default_handler"); $this->depth_array = array();
// Parse the XML file. if($wsdl == "-1")
if(!xml_parse($this->parser,$wsdl_string,true))
{ {
// Display an error message. $wsdl=False;
$this->debug(sprintf("XML error on line %d: %s", }
xml_get_current_line_number($this->parser), // Check whether content has been read.
xml_error_string(xml_get_error_code($this->parser)))); if($wsdl)
$this->fault = true; {
} $wsdl_string = join("",file($wsdl));
xml_parser_free($this->parser); // Create an XML parser.
} $this->parser = xml_parser_create();
} // Set the options for parsing the XML data.
//xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 1);
xml_parser_set_option($this->parser, XML_OPTION_CASE_FOLDING, 0);
// Set the object for the parser.
xml_set_object($this->parser, &$this);
// Set the element handlers for the parser.
xml_set_element_handler($this->parser, 'start_element','end_element');
xml_set_character_data_handler($this->parser,'character_data');
//xml_set_default_handler($this->parser, 'default_handler');
// start-element handler // Parse the XML file.
function start_element($parser, $name, $attrs) if(!xml_parse($this->parser,$wsdl_string,True))
{ {
// position in the total number of elements, starting from 0 // Display an error message.
$pos = $this->position++; $this->debug(sprintf('XML error on line %d: %s',
$depth = $this->depth++; xml_get_current_line_number($this->parser),
// set self as current value for this depth xml_error_string(xml_get_error_code($this->parser))));
$this->depth_array[$depth] = $pos; $this->fault = True;
}
xml_parser_free($this->parser);
}
}
// find status, register data // start-element handler
switch($this->status) function start_element($parser, $name, $attrs)
{ {
case "types": // position in the total number of elements, starting from 0
$pos = $this->position++;
$depth = $this->depth++;
// set self as current value for this depth
$this->depth_array[$depth] = $pos;
// find status, register data
switch($this->status)
{
case 'types':
switch($name) switch($name)
{ {
case "schema": case 'schema':
$this->schema = true; $this->schema = True;
break; break;
case "complexType": case 'complexType':
$this->currentElement = $attrs["name"]; $this->currentElement = $attrs['name'];
$this->schemaStatus = "complexType"; $this->schemaStatus = 'complexType';
break; break;
case "element": case 'element':
$this->complexTypes[$this->currentElement]["elements"][$attrs["name"]] = $attrs; $this->complexTypes[$this->currentElement]['elements'][$attrs['name']] = $attrs;
break; break;
case "complexContent": case 'complexContent':
break;
break; case 'restriction':
case "restriction": $this->complexTypes[$this->currentElement]['restrictionBase'] = $attrs['base'];
$this->complexTypes[$this->currentElement]["restrictionBase"] = $attrs["base"]; break;
break; case 'sequence':
case "sequence": $this->complexTypes[$this->currentElement]['order'] = 'sequence';
$this->complexTypes[$this->currentElement]["order"] = "sequence"; break;
break;
case "all": case "all":
$this->complexTypes[$this->currentElement]["order"] = "all"; $this->complexTypes[$this->currentElement]['order'] = 'all';
break; break;
case "attribute": case 'attribute':
if($attrs["ref"]){ if($attrs['ref'])
$this->complexTypes[$this->currentElement]["attrs"][$attrs["ref"]] = $attrs; {
} elseif($attrs["name"]){ $this->complexTypes[$this->currentElement]['attrs'][$attrs['ref']] = $attrs;
$this->complexTypes[$this->currentElement]["attrs"][$attrs["name"]] = $attrs;
} }
elseif($attrs['name'])
{
$this->complexTypes[$this->currentElement]['attrs'][$attrs['name']] = $attrs;
}
break;
}
break; break;
} case 'message':
break; if($name == 'part')
case "message": {
if($name == "part") $this->messages[$this->currentMessage][$attrs['name']] = $attrs['type'];
{ }
$this->messages[$this->currentMessage][$attrs["name"]] = $attrs["type"];
}
break;
case "portType":
switch($name)
{
case "operation":
$this->currentOperation = $attrs["name"];
$this->portTypes[$this->currentPortType][$attrs["name"]] = $attrs["parameterOrder"];
break; break;
default: case 'portType':
$this->portOperations[$this->currentOperation][$name]= $attrs; switch($name)
{
case 'operation':
$this->currentOperation = $attrs['name'];
$this->portTypes[$this->currentPortType][$attrs['name']] = $attrs['parameterOrder'];
break;
default:
$this->portOperations[$this->currentOperation][$name]= $attrs;
break;
}
break; break;
} case 'binding':
break; switch($name)
case "binding": {
switch($name) case 'soap:binding':
{ $this->bindings[$this->currentBinding] = array_merge($this->bindings[$this->currentBinding],$attrs);
case "soap:binding": break;
$this->bindings[$this->currentBinding] = array_merge($this->bindings[$this->currentBinding],$attrs); case 'operation':
$this->currentOperation = $attrs['name'];
$this->bindings[$this->currentBinding]['operations'][$attrs['name']] = array();
break;
case 'soap:operation':
$this->bindings[$this->currentBinding]['operations'][$this->currentOperation]['soapAction'] = $attrs['soapAction'];
break;
case 'input':
$this->opStatus = 'input';
case 'soap:body':
$this->bindings[$this->currentBinding]['operations'][$this->currentOperation][$this->opStatus] = $attrs;
break;
case 'output':
$this->opStatus = 'output';
break;
}
break; break;
case "operation": case 'service':
$this->currentOperation = $attrs["name"]; switch($name)
$this->bindings[$this->currentBinding]["operations"][$attrs["name"]] = array(); {
case 'port':
$this->currentPort = $attrs['name'];
$this->ports[$attrs['name']] = $attrs;
break;
case 'soap:address':
$this->ports[$this->currentPort]['location'] = $attrs['location'];
break;
}
break; break;
case "soap:operation": }
$this->bindings[$this->currentBinding]["operations"][$this->currentOperation]["soapAction"] = $attrs["soapAction"]; // set status
break; switch($name)
case "input":
$this->opStatus = "input";
case "soap:body":
$this->bindings[$this->currentBinding]["operations"][$this->currentOperation][$this->opStatus] = $attrs;
break;
case "output":
$this->opStatus = "output";
break;
}
break;
case "service":
switch($name)
{
case "port":
$this->currentPort = $attrs["name"];
$this->ports[$attrs["name"]] = $attrs;
break;
case "soap:address":
$this->ports[$this->currentPort]["location"] = $attrs["location"];
break;
}
break;
}
// set status
switch($name)
{
case "types":
$this->status = "types";
break;
case "message":
$this->status = "message";
$this->messages[$attrs["name"]] = array();
$this->currentMessage = $attrs["name"];
break;
case "portType":
$this->status = "portType";
$this->portTypes[$attrs["name"]] = array();
$this->currentPortType = $attrs["name"];
break;
case "binding":
$this->status = "binding";
$this->currentBinding = $attrs["name"];
$this->bindings[$attrs["name"]]["type"] = $attrs["type"];
break;
case "service":
$this->status = "service";
break;
}
// get element prefix
if(ereg(":",$name))
{
$prefix = substr($name,0,strpos($name,":"));
}
}
function getEndpoint($portName)
{
if($endpoint = $this->ports[$portName]["location"])
{
return $endpoint;
}
return false;
}
function getPortName($operation)
{
@reset($this->ports);
while(list($port,$portAttrs) = @each($this->ports));
/* foreach($this->ports as $port => $portAttrs) */
{
$binding = substr($portAttrs["binding"],4);
@reset($this->bindings[$binding]["operations"]);
while(list($op,$opAttrs) = @each($this->bindings[$binding]["operations"]))
/* foreach($this->bindings[$binding]["operations"] as $op => $opAttrs) */
{ {
if($op == $operation) case 'types':
$this->status = 'types';
break;
case 'message':
$this->status = 'message';
$this->messages[$attrs['name']] = array();
$this->currentMessage = $attrs['name'];
break;
case 'portType':
$this->status = 'portType';
$this->portTypes[$attrs['name']] = array();
$this->currentPortType = $attrs['name'];
break;
case 'binding':
$this->status = 'binding';
$this->currentBinding = $attrs['name'];
$this->bindings[$attrs['name']]['type'] = $attrs['type'];
break;
case 'service':
$this->status = 'service';
break;
}
// get element prefix
if(ereg(":",$name))
{
$prefix = substr($name,0,strpos($name,':'));
}
}
function getEndpoint($portName)
{
if($endpoint = $this->ports[$portName]['location'])
{
return $endpoint;
}
return False;
}
function getPortName($operation)
{
@reset($this->ports);
while(list($port,$portAttrs) = @each($this->ports));
/* foreach($this->ports as $port => $portAttrs) */
{
$binding = substr($portAttrs['binding'],4);
@reset($this->bindings[$binding]['operations']);
while(list($op,$opAttrs) = @each($this->bindings[$binding]['operations']))
/* foreach($this->bindings[$binding]["operations"] as $op => $opAttrs) */
{ {
return $port; if($op == $operation)
{
return $port;
}
} }
} }
} }
}
function getSoapAction($portName,$operation) function getSoapAction($portName,$operation)
{
if($binding = substr($this->ports[$portName]["binding"],4))
{ {
if($soapAction = $this->bindings[$binding]["operations"][$operation]["soapAction"]) if($binding = substr($this->ports[$portName]['binding'],4))
{ {
return $soapAction; if($soapAction = $this->bindings[$binding]['operations'][$operation]['soapAction'])
{
return $soapAction;
}
return False;
} }
return false; return False;
} }
return false;
}
function getNamespace($portName,$operation) function getNamespace($portName,$operation)
{
if($binding = substr($this->ports[$portName]["binding"],4))
{ {
//$this->debug("looking for namespace using binding '$binding', port '$portName', operation '$operation'"); if($binding = substr($this->ports[$portName]['binding'],4))
if($namespace = $this->bindings[$binding]["operations"][$operation]["input"]["namespace"])
{ {
return $namespace; //$this->debug("looking for namespace using binding '$binding', port '$portName', operation '$operation'");
if($namespace = $this->bindings[$binding]['operations'][$operation]['input']['namespace'])
{
return $namespace;
}
return False;
} }
return false; return False;
} }
return false;
}
// end-element handler // end-element handler
function end_element($parser, $name) function end_element($parser, $name)
{
// position of current element is equal to the last value left in depth_array for my depth
$pos = $this->depth_array[$this->depth];
// bring depth down a notch
$this->depth--;
}
// element content handler
function character_data($parser, $data)
{
$pos = $this->depth_array[$this->depth];
$this->message[$pos]["cdata"] .= $data;
}
function debug($string)
{
if($this->debug_flag)
{ {
$this->debug_str .= "$string\n"; // position of current element is equal to the last value left in depth_array for my depth
$pos = $this->depth_array[$this->depth];
// bring depth down a notch
$this->depth--;
}
// element content handler
function character_data($parser, $data)
{
$pos = $this->depth_array[$this->depth];
$this->message[$pos]['cdata'] .= $data;
}
function debug($string)
{
if($this->debug_flag)
{
$this->debug_str .= "$string\n";
}
} }
} }
}
?> ?>