mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-10 01:26:10 +01:00
Daniel Siepmann
19b7fff24f
Ignore false positives for extension scanner. Migrate TCA and keep old v11 within condition for backwards compatibility. Relates: #110
66 lines
2.1 KiB
PHP
66 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
namespace DanielSiepmann\Tracking\Domain\Repository;
|
|
|
|
use DanielSiepmann\Tracking\Domain\Model\Recordview as Model;
|
|
use TYPO3\CMS\Core\Database\Connection;
|
|
|
|
class Recordview
|
|
{
|
|
/**
|
|
* @var Connection
|
|
*/
|
|
private $connection;
|
|
|
|
public function __construct(
|
|
Connection $connection
|
|
) {
|
|
$this->connection = $connection;
|
|
}
|
|
|
|
public function add(Model $recordview): void
|
|
{
|
|
$this->connection->insert(
|
|
'tx_tracking_recordview',
|
|
$this->getFieldsFromModel($recordview)
|
|
);
|
|
}
|
|
|
|
private function getFieldsFromModel(Model $recordview): array
|
|
{
|
|
return [
|
|
'pid' => $recordview->getPageUid(),
|
|
'crdate' => $recordview->getCrdate()->format('U'),
|
|
'tstamp' => $recordview->getCrdate()->format('U'),
|
|
// @extensionScannerIgnoreLine
|
|
'sys_language_uid' => $recordview->getLanguage()->getLanguageId(),
|
|
'url' => $recordview->getUrl(),
|
|
'user_agent' => $recordview->getUserAgent(),
|
|
'operating_system' => $recordview->getOperatingSystem(),
|
|
'record_uid' => $recordview->getRecordUid(),
|
|
'record_table_name' => $recordview->getTableName(),
|
|
'record' => $recordview->getTableName() . '_' . $recordview->getRecordUid(),
|
|
];
|
|
}
|
|
}
|