<?php
declare(strict_types=1);
namespace Hofff\Contao\Consent\Core\Action;
use Hofff\Contao\Consent\Bridge\ConsentToolManager;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
use Symfony\Component\Routing\RouterInterface;
use function json_encode;
use function sprintf;
use function str_replace;
/** @internal */
final class StatusAction extends AbstractConsentToolAwareAction
{
/** @var string */
private $cookieName;
/** @var RouterInterface */
private $router;
/** @var string */
private $bannerPosition;
public function __construct(
ConsentToolManager $consentToolManager,
RouterInterface $router,
string $cookieName,
string $bannerPosition
) {
parent::__construct($consentToolManager);
$this->cookieName = $cookieName;
$this->router = $router;
$this->bannerPosition = $bannerPosition;
}
public function __invoke(Request $request): Response
{
$consentTool = $this->createConsentTool($request);
$rootTag = $consentTool->rootTag();
if ($rootTag === null) {
throw new BadRequestHttpException();
}
$response = new Response(
sprintf(
'var HOFFF_CONTENT_CONSENT_STATUS = %s',
json_encode(
[
'cookieName' => $this->cookieName . '_' . str_replace(
'tag:',
'',
$rootTag->tagId()->toString()
),
'tags' => $rootTag,
'theme' => $rootTag->theme(),
'effectiveFrom' => $rootTag->effectiveFrom()->format('Y-m-d\TH:i:sP'),
'consentIds' => $rootTag->consentIds(),
'banner' => $request->query->getBoolean('banner', true),
'bannerUrl' => $this->router->generate(
'hofff_contao_consent_banner',
[
'pageId' => $request->query->getInt('pageId'),
'v' => $rootTag->effectiveFrom()->getTimestamp(),
],
RouterInterface::ABSOLUTE_URL
),
'bannerPosition' => $this->bannerPosition,
'privacySettingsUrl' => $rootTag->privacySettingsPageUrl(),
],
JsonResponse::DEFAULT_ENCODING_OPTIONS
)
),
200,
['content-type' => 'application/javascript']
);
$response->headers->set('Cache-Control', 'no-cache, no-store');
$response->setPrivate();
return $response;
}
}