mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-12 18:26:09 +01:00
Daniel Siepmann
f3d69eed45
Allow integrator to limit results in widget to certain languages. If only one language is allowed, labels will be translated. Otherwise default system language is used. E.g. one record will be displayed in multiple languages, it would be confusing to show him multiple times for each language. Add TYPO3 extension for phpstan as many things would break within tests. Relates: #15
92 lines
2.6 KiB
PHP
92 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace DanielSiepmann\Tracking\Dashboard\Provider;
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
use TYPO3\CMS\Core\Database\Connection;
|
|
use TYPO3\CMS\Core\Database\Query\QueryBuilder;
|
|
use TYPO3\CMS\Dashboard\Widgets\ListDataProviderInterface;
|
|
|
|
class NewestPageviews implements ListDataProviderInterface
|
|
{
|
|
/**
|
|
* @var QueryBuilder
|
|
*/
|
|
private $queryBuilder;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
private $maxResults;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $pagesToExclude;
|
|
|
|
public function __construct(
|
|
QueryBuilder $queryBuilder,
|
|
int $maxResults = 6,
|
|
array $pagesToExclude = []
|
|
) {
|
|
$this->queryBuilder = $queryBuilder;
|
|
$this->maxResults = $maxResults;
|
|
$this->pagesToExclude = $pagesToExclude;
|
|
}
|
|
|
|
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
|
|
)
|
|
);
|
|
}
|
|
|
|
$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->execute()->fetchAll();
|
|
foreach ($items as $item) {
|
|
$preparedItems[] = sprintf(
|
|
'%s - %s',
|
|
$item['url'],
|
|
$item['user_agent']
|
|
);
|
|
}
|
|
|
|
return $preparedItems;
|
|
}
|
|
}
|