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\Repository;
|
|
|
|
|
2020-07-29 10:07:14 +02:00
|
|
|
use DanielSiepmann\Tracking\Domain\Model\Recordview as Model;
|
2021-08-16 09:56:19 +02:00
|
|
|
use DanielSiepmann\Tracking\Domain\Recordview\Factory;
|
|
|
|
use DanielSiepmann\Tracking\Extension;
|
2020-07-29 10:07:14 +02:00
|
|
|
use TYPO3\CMS\Core\Database\Connection;
|
|
|
|
|
2021-08-16 09:56:19 +02:00
|
|
|
// TODO: Move common code to API class.
|
|
|
|
// Call API Class with table name
|
|
|
|
|
2020-07-29 10:07:14 +02:00
|
|
|
class Recordview
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var Connection
|
|
|
|
*/
|
|
|
|
private $connection;
|
|
|
|
|
2021-08-16 09:56:19 +02:00
|
|
|
/**
|
|
|
|
* @var Factory
|
|
|
|
*/
|
|
|
|
private $factory;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Tag
|
|
|
|
*/
|
|
|
|
private $tagRepository;
|
|
|
|
|
2020-07-29 10:07:14 +02:00
|
|
|
public function __construct(
|
2021-08-16 09:56:19 +02:00
|
|
|
Connection $connection,
|
|
|
|
Factory $factory,
|
|
|
|
Tag $tagRepository
|
2020-07-29 10:07:14 +02:00
|
|
|
) {
|
|
|
|
$this->connection = $connection;
|
2021-08-16 09:56:19 +02:00
|
|
|
$this->factory = $factory;
|
|
|
|
$this->tagRepository = $tagRepository;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function findLegacyCount(): int
|
|
|
|
{
|
|
|
|
$queryBuilder = $this->connection->createQueryBuilder();
|
|
|
|
$queryBuilder->count('*');
|
|
|
|
$queryBuilder->from('tx_tracking_recordview');
|
|
|
|
$queryBuilder->where($queryBuilder->expr()->neq('compatible_version', $queryBuilder->createNamedParameter(Extension::getCompatibleVersionNow())));
|
|
|
|
$queryBuilder->setMaxResults(Extension::getMaximumRowsForUpdate());
|
|
|
|
|
|
|
|
$recordviews = $queryBuilder->execute()->fetchColumn();
|
|
|
|
if (is_numeric($recordviews) === false) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($recordviews > Extension::getMaximumRowsForUpdate()) {
|
|
|
|
return Extension::getMaximumRowsForUpdate();
|
|
|
|
}
|
|
|
|
return (int) $recordviews;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function findLegacy(): \Generator
|
|
|
|
{
|
|
|
|
$queryBuilder = $this->connection->createQueryBuilder();
|
|
|
|
$queryBuilder->select('*');
|
|
|
|
$queryBuilder->from('tx_tracking_recordview');
|
|
|
|
$queryBuilder->where($queryBuilder->expr()->neq('compatible_version', $queryBuilder->createNamedParameter(Extension::getCompatibleVersionNow())));
|
|
|
|
$queryBuilder->setMaxResults(Extension::getMaximumRowsForUpdate());
|
|
|
|
|
|
|
|
$recordviews = $queryBuilder->execute();
|
|
|
|
|
|
|
|
while ($pageView = $recordviews->fetch()) {
|
|
|
|
if (is_array($pageView) === false) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
yield $this->factory->fromDbRow($pageView);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function update(Model $model): void
|
|
|
|
{
|
|
|
|
if ($model->getUid() === 0) {
|
|
|
|
throw new \InvalidArgumentException('Can not update recordview if uid is 0.', 1585770573);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->connection->update(
|
|
|
|
'tx_tracking_recordview',
|
|
|
|
$this->getFieldsFromModel($model),
|
|
|
|
['uid' => $model->getUid()]
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->tagRepository->updateForRecordview($model);
|
2020-07-29 10:07:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function add(Model $recordview): void
|
|
|
|
{
|
|
|
|
$this->connection->insert(
|
|
|
|
'tx_tracking_recordview',
|
|
|
|
$this->getFieldsFromModel($recordview)
|
|
|
|
);
|
2021-08-16 09:56:19 +02:00
|
|
|
|
|
|
|
$this->tagRepository->addForRecordview(
|
|
|
|
$recordview,
|
|
|
|
(int) $this->connection->lastInsertId('tx_tracking_recordview')
|
|
|
|
);
|
2020-07-29 10:07:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private function getFieldsFromModel(Model $recordview): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'pid' => $recordview->getPageUid(),
|
|
|
|
'crdate' => $recordview->getCrdate()->format('U'),
|
|
|
|
'tstamp' => $recordview->getCrdate()->format('U'),
|
|
|
|
'sys_language_uid' => $recordview->getLanguage()->getLanguageId(),
|
|
|
|
'url' => $recordview->getUrl(),
|
|
|
|
'user_agent' => $recordview->getUserAgent(),
|
|
|
|
'record_uid' => $recordview->getRecordUid(),
|
|
|
|
'record_table_name' => $recordview->getTableName(),
|
|
|
|
'record' => $recordview->getTableName() . '_' . $recordview->getRecordUid(),
|
2021-08-16 09:56:19 +02:00
|
|
|
'compatible_version' => Extension::getCompatibleVersionNow(),
|
2020-07-29 10:07:14 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|