Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439 Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
77 lines
1.8 KiB
PHP
77 lines
1.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the xAPI package.
|
|
*
|
|
* (c) Christian Flothmann <christian.flothmann@xabbuh.de>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace XApi\LrsBundle\Response;
|
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Xabbuh\XApi\Model\Attachment;
|
|
|
|
/**
|
|
* @author Jérôme Parmentier <jerome.parmentier@acensi.fr>
|
|
*/
|
|
class AttachmentResponse extends Response
|
|
{
|
|
protected $attachment;
|
|
|
|
public function __construct(Attachment $attachment)
|
|
{
|
|
parent::__construct(null);
|
|
|
|
$this->attachment = $attachment;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function prepare(Request $request)
|
|
{
|
|
if (!$this->headers->has('Content-Type')) {
|
|
$this->headers->set('Content-Type', $this->attachment->getContentType());
|
|
}
|
|
|
|
$this->headers->set('Content-Transfer-Encoding', 'binary');
|
|
$this->headers->set('X-Experience-API-Hash', $this->attachment->getSha2());
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* @throws \LogicException
|
|
*/
|
|
public function sendContent()
|
|
{
|
|
throw new \LogicException('An AttachmentResponse is only meant to be part of a multipart Response.');
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* @throws \LogicException when the content is not null
|
|
*/
|
|
public function setContent($content)
|
|
{
|
|
if (null !== $content) {
|
|
throw new \LogicException('The content cannot be set on an AttachmentResponse instance.');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getContent()
|
|
{
|
|
return $this->attachment->getContent();
|
|
}
|
|
}
|