2010-10-08 14:24:42 +02:00
|
|
|
<?php
|
2010-10-08 17:01:27 +02:00
|
|
|
/*
|
2011-07-18 22:43:12 +02:00
|
|
|
* This file is part of the BeSimpleSoapBundle.
|
2010-10-08 17:01:27 +02:00
|
|
|
*
|
|
|
|
* (c) Christian Kerl <christian-kerl@web.de>
|
|
|
|
*
|
|
|
|
* This source file is subject to the MIT license that is bundled
|
|
|
|
* with this source code in the file LICENSE.
|
|
|
|
*/
|
2010-10-08 14:24:42 +02:00
|
|
|
|
2011-07-18 22:43:12 +02:00
|
|
|
namespace BeSimple\SoapBundle\ServiceBinding;
|
2010-10-08 14:24:42 +02:00
|
|
|
|
2011-07-18 22:43:12 +02:00
|
|
|
use BeSimple\SoapBundle\ServiceDefinition\Method;
|
2011-07-23 20:06:42 +02:00
|
|
|
use BeSimple\SoapBundle\ServiceDefinition\Strategy\MethodComplexType;
|
|
|
|
use BeSimple\SoapBundle\ServiceDefinition\Strategy\PropertyComplexType;
|
2010-10-08 14:24:42 +02:00
|
|
|
|
|
|
|
class RpcLiteralRequestMessageBinder implements MessageBinderInterface
|
|
|
|
{
|
2011-07-23 20:06:42 +02:00
|
|
|
public function processMessage(Method $messageDefinition, $message, array $definitionComplexTypes = array())
|
2010-10-08 14:24:42 +02:00
|
|
|
{
|
|
|
|
$result = array();
|
2011-07-17 10:46:54 +02:00
|
|
|
$i = 0;
|
2010-10-08 14:24:42 +02:00
|
|
|
|
2011-07-14 17:45:03 +02:00
|
|
|
foreach($messageDefinition->getArguments() as $argument) {
|
2011-07-17 10:46:54 +02:00
|
|
|
if (isset($message[$i])) {
|
2011-07-23 20:06:42 +02:00
|
|
|
if (preg_match('/^([^\[]+)\[\]$/', $argument->getType()->getPhpType(), $match)) {
|
|
|
|
$isArray = true;
|
|
|
|
$type = $match[1];
|
|
|
|
} else {
|
|
|
|
$isArray = false;
|
|
|
|
$type = $argument->getType()->getPhpType();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($definitionComplexTypes[$type])) {
|
|
|
|
if ($isArray) {
|
|
|
|
$array = array();
|
|
|
|
|
|
|
|
foreach ($message[$i]->item as $complexType) {
|
|
|
|
$array[] = $this->getInstanceOfType($type, $complexType, $definitionComplexTypes);
|
|
|
|
}
|
|
|
|
|
|
|
|
$message[$i] = $array;
|
|
|
|
} else {
|
|
|
|
$message[$i] = $this->getInstanceOfType($type, $message[$i], $definitionComplexTypes);
|
|
|
|
}
|
|
|
|
} elseif ($isArray) {
|
|
|
|
$message[$i] = $message[$i]->item;
|
|
|
|
}
|
|
|
|
|
2011-07-17 10:46:54 +02:00
|
|
|
$result[$argument->getName()] = $message[$i];
|
|
|
|
}
|
2011-07-14 17:45:03 +02:00
|
|
|
|
2010-10-08 14:24:42 +02:00
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
2011-07-23 20:06:42 +02:00
|
|
|
|
|
|
|
private function getInstanceOfType($type, $message, array $definitionComplexTypes)
|
|
|
|
{
|
|
|
|
$typeClass = $type;
|
|
|
|
$instanceType = new $typeClass();
|
|
|
|
|
|
|
|
foreach ($definitionComplexTypes[$type] as $type) {
|
|
|
|
if ($type instanceof PropertyComplexType) {
|
|
|
|
if (isset($definitionComplexTypes[$type->getValue()])) {
|
|
|
|
$value = $this->getInstanceOfType($type->getValue(), $message->{$type->getName()}, $definitionComplexTypes);
|
|
|
|
} else {
|
|
|
|
$value = $message->{$type->getName()};
|
|
|
|
}
|
|
|
|
|
|
|
|
$instanceType->{$type->getOriginalName()} = $value;
|
|
|
|
} elseif ($type instanceof MethodComplexType) {
|
|
|
|
if (!$type->getSetter()) {
|
|
|
|
throw new \LogicException();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($definitionComplexTypes[$type->getValue()])) {
|
|
|
|
$value = $this->getInstanceOfType($type->getValue(), $message->{$type->getName()}, $definitionComplexTypes);
|
|
|
|
} else {
|
|
|
|
$value = $message->{$type->getName()};
|
|
|
|
}
|
|
|
|
|
|
|
|
$instanceType->{$type->getSetter()}($value);
|
|
|
|
} else {
|
|
|
|
throw new \InvalidArgumentException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $instanceType;
|
|
|
|
}
|
2010-10-08 14:24:42 +02:00
|
|
|
}
|