Created
March 29, 2014 20:57
-
-
Save marcus-at-localhost/9862842 to your computer and use it in GitHub Desktop.
*EASY WSDL2PHP* generates the objects and function calls from your WSDL https://sourceforge.net/projects/easywsdl2php/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class EasyWsdl2PHP | |
{ | |
static public function generate($url,$sname) | |
{ | |
$soapClient = new SoapClient($url); | |
$classesArr = array(); | |
$functions = $soapClient->__getFunctions(); | |
$nl="\n"; | |
$code =''; | |
$simpletypes = array('string','int','double','dateTime','float'); | |
foreach($functions as $func) | |
{ | |
$temp = split(' ' ,$func,2); | |
//less process whateever is inside () | |
$start = strpos($temp[1],'('); | |
$end = strpos($temp[1],'('); | |
$parameters = substr($temp[1],$start,$end); | |
$t1 = str_replace(')','',$temp[1]); | |
$t1 = str_replace('(',':',$t1); | |
$t2 = split(':',$t1); | |
$func = $t2[0]; | |
$par = $t2[1]; | |
$params = split(' ', $par); | |
$p1 = '$' . $params[0]; | |
$code .= $nl .'function ' . $func . '(' . $p1 .')' | |
. "{$nl}{\n"; | |
if ($temp[0] == 'void') | |
$code .= $nl ."\$this->soapClient->$func({$p1});{$nl}}"; | |
else | |
{ | |
$code .= $nl . '$' . $temp[0] . ' = ' . "\$this->soapClient->$func({$p1});"; | |
$code .= $nl ."return \${$temp[0]};\n{$nl}}"; | |
} | |
} | |
$code .= "}\n{$nl}"; | |
// print_r($functions); | |
// echo "<hr>"; | |
$types = $soapClient->__getTypes(); | |
// print_r($types); | |
$codeType =''; | |
foreach ($types as $type) | |
{ | |
if (substr($type,0,6) == 'struct') | |
{ | |
$data = trim(str_replace(array('{','}'),'',substr($type,strpos($type, '{')+1))); | |
$data_members = split(';',$data); | |
//print_r($data_members); | |
// echo "[" . $data . "]"; | |
$classname = trim(substr($type,6,strpos($type,'{')-6)); | |
//write object | |
$codeType .= $nl . 'class ' . $classname .'{'; | |
$classesArr [] = $classname; | |
foreach($data_members as $member) | |
{ | |
$member = trim($member); | |
if (strlen($member)< 1) continue; | |
list($data_type,$member_name) = split(' ' , $member); | |
$codeType .= "{$nl}var \${$member_name};//{$data_type}"; | |
} | |
$codeType .= $nl . '}'; | |
} | |
} | |
$mapstr = "\n" . 'private static $classmap = array('; | |
$classMAPCode = array(); | |
foreach($classesArr as $cname) | |
{ | |
// $mapstr .= "\n,'$cname'=>'$cname'"; | |
$classMAPCode[] = "'$cname'=>'$cname'\n"; | |
} | |
//print_r($classMAPCode); | |
$mapstr .= implode (',',$classMAPCode); | |
$mapstr .= "\n);"; | |
$fullcode = <<< EOT | |
<?php | |
$codeType | |
class $sname $nl { | |
var \$soapClient; | |
$mapstr | |
function __construct(\$url='{$url}') | |
{ | |
\$this->soapClient = new SoapClient(\$url,array("classmap"=>self::\$classmap,"trace" => true,"exceptions" => true)); | |
} | |
$code | |
?> | |
EOT; | |
return $fullcode; | |
} | |
} | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE> | |
<html> | |
<head> | |
<title>WSDSL2PHP</title> | |
</head> | |
<body> | |
<?php | |
error_reporting(0); | |
if (!empty($_POST['url'])) | |
{ | |
$url = $_POST['url']; | |
$sname = $_POST['sname']; | |
} | |
else | |
{ | |
$url=''; | |
$sname = ''; | |
} | |
?> | |
<h2>Easy WSDL2PHP Generator</h2> | |
<p> ej. http://soap.amazon.com/schemas2/AmazonWebServices.wsdl</p> | |
<form action="wsdl2php.php" method="post"> | |
<p>Url: <input type="text" name="url" size="60" value="<?php echo $url?>" /></p> | |
<p>Class Name: <input type="text" name="sname" size="60" value="<?php echo $sname?>" /></p> | |
<input type="submit" name="generatebtn" value="Generate Code" /> | |
</form> | |
<?php if (isset($_POST['generatebtn'])){?> | |
<form method="post" action="http://thephppro.com/tools/beautify.php"> | |
<textarea rows="10" cols="80" name="code"> | |
<?php | |
include 'EasyWsdl2PHP.php'; | |
echo EasyWsdl2PHP::generate(trim($url),$sname); | |
?> | |
</textarea> | |
</form> | |
Beautify at <a target="_blank" href="http://thephppro.com/tools/beautify.php">http://thephppro.com/tools/beautify.php</a> | |
<?php }?> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment