2020-07-29 10:07:14 +02:00
|
|
|
<?php
|
|
|
|
|
2022-09-16 13:53:49 +02:00
|
|
|
declare(strict_types=1);
|
2020-07-29 10:07:14 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 Daniel Siepmann <coding@daniel-siepmann.de>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2022-09-16 13:53:49 +02:00
|
|
|
namespace DanielSiepmann\Tracking\Domain\Recordview;
|
|
|
|
|
2022-09-16 14:59:54 +02:00
|
|
|
use DanielSiepmann\Tracking\Domain\ExpressionLanguage\Factory as ExpressionFactory;
|
2020-07-29 10:07:14 +02:00
|
|
|
use DanielSiepmann\Tracking\Domain\Model\RecordRule;
|
|
|
|
use DanielSiepmann\Tracking\Domain\Model\Recordview;
|
2022-12-07 13:37:19 +01:00
|
|
|
use DateTimeImmutable;
|
2020-07-29 10:07:14 +02:00
|
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
|
|
use TYPO3\CMS\Core\Routing\PageArguments;
|
2021-11-25 14:40:00 +01:00
|
|
|
use TYPO3\CMS\Core\Site\Entity\SiteLanguage;
|
2022-12-07 13:37:19 +01:00
|
|
|
use UnexpectedValueException;
|
2020-07-29 10:07:14 +02:00
|
|
|
|
|
|
|
class Factory
|
|
|
|
{
|
2022-09-16 14:59:54 +02:00
|
|
|
/**
|
|
|
|
* @var ExpressionFactory
|
|
|
|
*/
|
|
|
|
private $expressionFactory;
|
|
|
|
|
|
|
|
public function __construct(
|
|
|
|
ExpressionFactory $expressionFactory
|
|
|
|
) {
|
|
|
|
$this->expressionFactory = $expressionFactory;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function fromRequest(
|
2020-07-29 10:07:14 +02:00
|
|
|
ServerRequestInterface $request,
|
|
|
|
RecordRule $rule
|
|
|
|
): Recordview {
|
2022-09-16 14:59:54 +02:00
|
|
|
$recordUid = $this->expressionFactory->create(
|
2020-07-29 10:07:14 +02:00
|
|
|
$rule->getUidExpression(),
|
|
|
|
['request' => $request]
|
2022-09-16 14:59:54 +02:00
|
|
|
)->evaluate();
|
2020-07-29 10:07:14 +02:00
|
|
|
|
2021-11-25 14:40:00 +01:00
|
|
|
if (is_numeric($recordUid) === false) {
|
2022-12-07 13:37:19 +01:00
|
|
|
throw new UnexpectedValueException(
|
2021-11-25 14:40:00 +01:00
|
|
|
sprintf(
|
|
|
|
'Could not determine record uid based on expression: "%1$s", got type "%2$s".',
|
|
|
|
$rule->getUidExpression(),
|
|
|
|
gettype($recordUid)
|
|
|
|
),
|
|
|
|
1637846881
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-07-29 10:07:14 +02:00
|
|
|
return new Recordview(
|
2021-11-25 14:40:00 +01:00
|
|
|
self::getRouting($request)->getPageId(),
|
|
|
|
self::getLanguage($request),
|
2022-12-07 13:37:19 +01:00
|
|
|
new DateTimeImmutable(),
|
2023-04-26 17:29:23 +02:00
|
|
|
(string)$request->getUri(),
|
2020-07-29 10:07:14 +02:00
|
|
|
$request->getHeader('User-Agent')[0] ?? '',
|
2023-04-26 17:29:23 +02:00
|
|
|
(int)$recordUid,
|
2020-07-29 10:07:14 +02:00
|
|
|
$rule->getTableName()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-11-25 14:40:00 +01:00
|
|
|
private static function getLanguage(ServerRequestInterface $request): SiteLanguage
|
|
|
|
{
|
|
|
|
$language = $request->getAttribute('language');
|
|
|
|
|
|
|
|
if (!$language instanceof SiteLanguage) {
|
2022-12-07 13:37:19 +01:00
|
|
|
throw new UnexpectedValueException('Could not fetch SiteLanguage from request attributes.', 1637847002);
|
2021-11-25 14:40:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $language;
|
|
|
|
}
|
|
|
|
|
2020-07-29 10:07:14 +02:00
|
|
|
private static function getRouting(ServerRequestInterface $request): PageArguments
|
|
|
|
{
|
2021-11-25 14:40:00 +01:00
|
|
|
$routing = $request->getAttribute('routing');
|
|
|
|
|
|
|
|
if (!$routing instanceof PageArguments) {
|
2022-12-07 13:37:19 +01:00
|
|
|
throw new UnexpectedValueException('Could not fetch PageArguments from request attributes.', 1637847002);
|
2021-11-25 14:40:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $routing;
|
2020-07-29 10:07:14 +02:00
|
|
|
}
|
|
|
|
}
|