2017-02-03 15:22:37 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the BeSimpleSoapClient.
|
|
|
|
*
|
|
|
|
* (c) Christian Kerl <christian-kerl@web.de>
|
|
|
|
* (c) Francis Besset <francis.besset@gmail.com>
|
|
|
|
*
|
|
|
|
* This source file is subject to the MIT license that is bundled
|
|
|
|
* with this source code in the file LICENSE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace BeSimple\SoapClient;
|
|
|
|
|
|
|
|
use BeSimple\SoapBundle\Soap\SoapAttachment;
|
|
|
|
use BeSimple\SoapCommon\Mime\PartFactory;
|
2017-04-04 18:36:18 +02:00
|
|
|
use BeSimple\SoapCommon\SoapRequest;
|
2017-02-03 15:22:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SoapResponseFactory for SoapClient. Provides factory function for SoapResponse object.
|
|
|
|
*
|
|
|
|
* @author Andreas Schamberger <mail@andreass.net>
|
|
|
|
* @author Petr Bechyně <mail@petrbechyne.com>
|
|
|
|
*/
|
|
|
|
class SoapResponseFactory
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Factory method for SoapClient\SoapResponse.
|
|
|
|
*
|
2017-06-16 13:42:08 +02:00
|
|
|
* @param SoapRequest $soapRequest related request object
|
2017-02-03 15:22:37 +01:00
|
|
|
* @param string $content Content
|
|
|
|
* @param string $contentType Content type header
|
|
|
|
* @param SoapAttachment[] $attachments SOAP attachments
|
|
|
|
* @return SoapResponse
|
|
|
|
*/
|
|
|
|
public static function create(
|
2017-06-16 13:42:08 +02:00
|
|
|
SoapRequest $soapRequest,
|
2017-02-03 15:22:37 +01:00
|
|
|
$content,
|
|
|
|
$contentType,
|
|
|
|
array $attachments = []
|
|
|
|
) {
|
|
|
|
$response = new SoapResponse();
|
2017-06-16 13:42:08 +02:00
|
|
|
$response->setRequest($soapRequest);
|
2017-02-03 15:22:37 +01:00
|
|
|
$response->setContent($content);
|
2017-06-16 13:42:08 +02:00
|
|
|
$response->setLocation($soapRequest->getLocation());
|
|
|
|
$response->setAction($soapRequest->getAction());
|
|
|
|
$response->setVersion($soapRequest->getVersion());
|
2017-02-03 15:22:37 +01:00
|
|
|
$response->setContentType($contentType);
|
|
|
|
if (count($attachments) > 0) {
|
|
|
|
$response->setAttachments(
|
2017-04-04 18:36:18 +02:00
|
|
|
PartFactory::createAttachmentParts($attachments)
|
2017-02-03 15:22:37 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Factory method for SoapClient\SoapResponse with SoapResponseTracingData.
|
|
|
|
*
|
2017-04-04 18:36:18 +02:00
|
|
|
* @param SoapRequest $soapRequest related request object
|
2017-02-03 15:22:37 +01:00
|
|
|
* @param string $content Content
|
|
|
|
* @param string $contentType Content type header
|
|
|
|
* @param SoapResponseTracingData $tracingData Data value object suitable for tracing SOAP traffic
|
|
|
|
* @param SoapAttachment[] $attachments SOAP attachments
|
|
|
|
* @return SoapResponse
|
|
|
|
*/
|
|
|
|
public static function createWithTracingData(
|
2017-04-04 18:36:18 +02:00
|
|
|
SoapRequest $soapRequest,
|
2017-02-03 15:22:37 +01:00
|
|
|
$content,
|
|
|
|
$contentType,
|
|
|
|
SoapResponseTracingData $tracingData,
|
|
|
|
array $attachments = []
|
|
|
|
) {
|
|
|
|
$response = new SoapResponse();
|
2017-04-04 18:36:18 +02:00
|
|
|
$response->setRequest($soapRequest);
|
2017-02-03 15:22:37 +01:00
|
|
|
$response->setContent($content);
|
2017-04-04 18:36:18 +02:00
|
|
|
$response->setLocation($soapRequest->getLocation());
|
|
|
|
$response->setAction($soapRequest->getAction());
|
|
|
|
$response->setVersion($soapRequest->getVersion());
|
2017-02-03 15:22:37 +01:00
|
|
|
$response->setContentType($contentType);
|
2017-06-16 13:42:08 +02:00
|
|
|
$response->setTracingData($tracingData);
|
2017-02-03 15:22:37 +01:00
|
|
|
if (count($attachments) > 0) {
|
|
|
|
$response->setAttachments(
|
|
|
|
PartFactory::createAttachmentParts($attachments)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
}
|