mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-22 13:56:09 +01:00
Add list widget with newest page views
Still very basic, no custom template or fancy information or styling.
This commit is contained in:
parent
db2b0e13ed
commit
763769b4d2
4 changed files with 130 additions and 0 deletions
102
Classes/Dashboard/Widgets/NewestPageviewsList.php
Normal file
102
Classes/Dashboard/Widgets/NewestPageviewsList.php
Normal file
|
@ -0,0 +1,102 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace DanielSiepmann\Tracking\Dashboard\Widgets;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 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 DanielSiepmann\Tracking\Extension;
|
||||||
|
use TYPO3\CMS\Core\Database\Connection;
|
||||||
|
use TYPO3\CMS\Core\Database\Query\QueryBuilder;
|
||||||
|
use TYPO3\CMS\Core\Utility\ArrayUtility;
|
||||||
|
use TYPO3\CMS\Dashboard\Widgets\AbstractListWidget;
|
||||||
|
|
||||||
|
class NewestPageviewsList extends AbstractListWidget
|
||||||
|
{
|
||||||
|
protected $title = Extension::LANGUAGE_PATH . ':dashboard.widgets.newestPageviewsList.title';
|
||||||
|
|
||||||
|
protected $description = Extension::LANGUAGE_PATH . ':dashboard.widgets.newestPageviewsList.description';
|
||||||
|
|
||||||
|
protected $width = 2;
|
||||||
|
|
||||||
|
protected $height = 4;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var QueryBuilder
|
||||||
|
*/
|
||||||
|
protected $queryBuilder;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var \ArrayObject
|
||||||
|
*/
|
||||||
|
private $settings;
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
string $identifier,
|
||||||
|
QueryBuilder $queryBuilder,
|
||||||
|
\ArrayObject $settings
|
||||||
|
) {
|
||||||
|
parent::__construct($identifier);
|
||||||
|
|
||||||
|
$this->queryBuilder = $queryBuilder;
|
||||||
|
$this->settings = $settings;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function renderWidgetContent(): string
|
||||||
|
{
|
||||||
|
$this->generateItems();
|
||||||
|
return parent::renderWidgetContent();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function generateItems(): void
|
||||||
|
{
|
||||||
|
$constraints = [];
|
||||||
|
if (count($this->settings['blackListedPages'])) {
|
||||||
|
$constraints[] = $this->queryBuilder->expr()->notIn(
|
||||||
|
'tx_tracking_pageview.pid',
|
||||||
|
$this->queryBuilder->createNamedParameter(
|
||||||
|
$this->settings['blackListedPages'],
|
||||||
|
Connection::PARAM_INT_ARRAY
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->queryBuilder
|
||||||
|
->select('*')
|
||||||
|
->from('tx_tracking_pageview')
|
||||||
|
->orderBy('crdate desc')
|
||||||
|
->setMaxResults($this->settings['maxResults']);
|
||||||
|
|
||||||
|
if ($constraints !== []) {
|
||||||
|
$this->queryBuilder->where(... $constraints);
|
||||||
|
}
|
||||||
|
|
||||||
|
$items = $this->queryBuilder->execute()->fetchAll();
|
||||||
|
foreach ($items as $item) {
|
||||||
|
$this->items[] = [
|
||||||
|
'link' => $item['url'],
|
||||||
|
'title' => sprintf(
|
||||||
|
'%s - %s',
|
||||||
|
$item['url'],
|
||||||
|
$item['user_agent']
|
||||||
|
),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -36,6 +36,10 @@ class SettingsFactory
|
||||||
'blackListedPages' => [],
|
'blackListedPages' => [],
|
||||||
'maxResults' => 6,
|
'maxResults' => 6,
|
||||||
],
|
],
|
||||||
|
'newestPageviewsList' => [
|
||||||
|
'blackListedPages' => [],
|
||||||
|
'maxResults' => 6,
|
||||||
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
public function fromArray(string $widgetIdentifier, array $settings): \ArrayObject
|
public function fromArray(string $widgetIdentifier, array $settings): \ArrayObject
|
||||||
|
|
|
@ -23,6 +23,13 @@ services:
|
||||||
arguments:
|
arguments:
|
||||||
$widgetIdentifier: 'pageViewsPerPageDoughnut'
|
$widgetIdentifier: 'pageViewsPerPageDoughnut'
|
||||||
$settings: []
|
$settings: []
|
||||||
|
DanielSiepmann\Tracking\DI\Dashboard\Widgets\Settings\NewestPageviewsList:
|
||||||
|
factory:
|
||||||
|
- '@DanielSiepmann\Tracking\Dashboard\Widgets\SettingsFactory'
|
||||||
|
- 'fromArray'
|
||||||
|
arguments:
|
||||||
|
$widgetIdentifier: 'newestPageviewsList'
|
||||||
|
$settings: []
|
||||||
|
|
||||||
DanielSiepmann\Tracking\DI\DatabaseConnection\Pageview:
|
DanielSiepmann\Tracking\DI\DatabaseConnection\Pageview:
|
||||||
factory:
|
factory:
|
||||||
|
@ -75,3 +82,14 @@ services:
|
||||||
- name: 'dashboard.widget'
|
- name: 'dashboard.widget'
|
||||||
identifier: 'pageViewsPerPageDoughnut'
|
identifier: 'pageViewsPerPageDoughnut'
|
||||||
widgetGroups: 'tracking'
|
widgetGroups: 'tracking'
|
||||||
|
|
||||||
|
DanielSiepmann\Tracking\Dashboard\Widgets\NewestPageviewsList:
|
||||||
|
class: 'DanielSiepmann\Tracking\Dashboard\Widgets\NewestPageviewsList'
|
||||||
|
arguments:
|
||||||
|
$identifier: 'newestPageviewsList'
|
||||||
|
$queryBuilder: '@DanielSiepmann\Tracking\DI\QueryBuilder\PageView'
|
||||||
|
$settings: '@DanielSiepmann\Tracking\DI\Dashboard\Widgets\Settings\NewestPageviewsList'
|
||||||
|
tags:
|
||||||
|
- name: 'dashboard.widget'
|
||||||
|
identifier: 'newestPageviewsList'
|
||||||
|
widgetGroups: 'tracking'
|
||||||
|
|
|
@ -21,6 +21,12 @@
|
||||||
<trans-unit id="dashboard.widgets.pageViewsPerPageDoughnut.description">
|
<trans-unit id="dashboard.widgets.pageViewsPerPageDoughnut.description">
|
||||||
<source>Displays total page views per page.</source>
|
<source>Displays total page views per page.</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="dashboard.widgets.newestPageviewsList.title">
|
||||||
|
<source>Newest Page Views</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="dashboard.widgets.newestPageviewsList.description">
|
||||||
|
<source>Displays newest Page Views as list.</source>
|
||||||
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
</xliff>
|
</xliff>
|
||||||
|
|
Loading…
Reference in a new issue