mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-22 05:56:08 +01:00
Daniel Siepmann
b83093e023
* Update everything for TYPO3 v12 + v13 --------- Co-authored-by: Daniel Siepmann <daniel.siepmann@codappix.com>
99 lines
3.2 KiB
PHP
99 lines
3.2 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\Dashboard\Provider;
|
|
|
|
use Exception;
|
|
use TYPO3\CMS\Core\Database\Connection;
|
|
use TYPO3\CMS\Core\Database\Query\QueryBuilder;
|
|
use TYPO3\CMS\Dashboard\Widgets\ListDataProviderInterface;
|
|
|
|
class NewestPageviews implements ListDataProviderInterface
|
|
{
|
|
/**
|
|
* @param int[] $languageLimitation
|
|
*/
|
|
public function __construct(
|
|
private readonly QueryBuilder $queryBuilder,
|
|
private readonly int $maxResults = 6,
|
|
private readonly array $pagesToExclude = [],
|
|
private readonly array $languageLimitation = []
|
|
) {
|
|
}
|
|
|
|
public function getItems(): array
|
|
{
|
|
$preparedItems = [];
|
|
|
|
$constraints = [];
|
|
if (count($this->pagesToExclude)) {
|
|
$constraints[] = $this->queryBuilder->expr()->notIn(
|
|
'tx_tracking_pageview.pid',
|
|
$this->queryBuilder->createNamedParameter(
|
|
$this->pagesToExclude,
|
|
Connection::PARAM_INT_ARRAY
|
|
)
|
|
);
|
|
}
|
|
|
|
if (count($this->languageLimitation)) {
|
|
$constraints[] = $this->queryBuilder->expr()->in(
|
|
'tx_tracking_pageview.sys_language_uid',
|
|
$this->queryBuilder->createNamedParameter(
|
|
$this->languageLimitation,
|
|
Connection::PARAM_INT_ARRAY
|
|
)
|
|
);
|
|
}
|
|
|
|
$this->queryBuilder
|
|
->select('url', 'user_agent')
|
|
->from('tx_tracking_pageview')
|
|
->orderBy('crdate', 'desc')
|
|
->addOrderBy('uid', 'desc')
|
|
->setMaxResults($this->maxResults)
|
|
;
|
|
|
|
if ($constraints !== []) {
|
|
$this->queryBuilder->where(...$constraints);
|
|
}
|
|
|
|
$items = $this->queryBuilder->executeQuery()->fetchAllAssociative();
|
|
foreach ($items as $item) {
|
|
if (is_string($item['url']) === false) {
|
|
throw new Exception('url of item was not string: ' . var_export($item['url'], true), 1707327319);
|
|
}
|
|
if (is_string($item['user_agent']) === false) {
|
|
throw new Exception('user_agent of item was not string: ' . var_export($item['user_agent'], true), 1707327344);
|
|
}
|
|
|
|
$preparedItems[] = sprintf(
|
|
'%s - %s',
|
|
$item['url'],
|
|
$item['user_agent']
|
|
);
|
|
}
|
|
|
|
return $preparedItems;
|
|
}
|
|
}
|