2016-11-02 16:08:21 +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\SoapServer;
|
|
|
|
|
2016-11-08 15:42:52 +01:00
|
|
|
use BeSimple\SoapBundle\Soap\SoapAttachment;
|
|
|
|
use BeSimple\SoapCommon\Mime\Part;
|
2016-11-02 16:08:21 +01:00
|
|
|
use BeSimple\SoapCommon\SoapMessage;
|
|
|
|
|
|
|
|
class SoapResponseFactory
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Factory function for SoapResponse.
|
|
|
|
*
|
|
|
|
* @param string $content Content
|
|
|
|
* @param string $location Location
|
|
|
|
* @param string $action SOAP action
|
|
|
|
* @param string $version SOAP version
|
2016-11-08 15:42:52 +01:00
|
|
|
* @param SoapAttachment[] $attachments SOAP attachments
|
2016-11-02 16:08:21 +01:00
|
|
|
*
|
|
|
|
* @return SoapResponse
|
|
|
|
*/
|
|
|
|
public static function create($content, $location, $action, $version, $attachments = [])
|
|
|
|
{
|
|
|
|
$response = new SoapResponse();
|
|
|
|
$response->setContent($content);
|
|
|
|
$response->setLocation($location);
|
|
|
|
$response->setAction($action);
|
|
|
|
$response->setVersion($version);
|
|
|
|
$contentType = SoapMessage::getContentTypeForVersion($version);
|
|
|
|
$response->setContentType($contentType);
|
|
|
|
|
2016-11-08 15:42:52 +01:00
|
|
|
if (count($attachments) > 0) {
|
|
|
|
$response->setAttachments(
|
|
|
|
self::createAttachmentParts($attachments)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-11-02 16:08:21 +01:00
|
|
|
return $response;
|
|
|
|
}
|
2016-11-08 15:42:52 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param SoapAttachment[] $attachments SOAP attachments
|
|
|
|
* @return Part[]
|
|
|
|
*/
|
2016-11-24 11:04:57 +01:00
|
|
|
private static function createAttachmentParts(array $attachments = [])
|
2016-11-08 15:42:52 +01:00
|
|
|
{
|
|
|
|
$parts = [];
|
|
|
|
foreach ($attachments as $attachment) {
|
|
|
|
$part = new Part(
|
|
|
|
$attachment->getContent(),
|
|
|
|
'application/pdf',
|
|
|
|
'utf-8',
|
|
|
|
Part::ENCODING_BINARY,
|
|
|
|
$attachment->getId()
|
|
|
|
);
|
|
|
|
$parts[] = $part;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $parts;
|
|
|
|
}
|
2016-11-02 16:08:21 +01:00
|
|
|
}
|