2020-05-27 10:07:17 +03:00
|
|
|
<?php
|
2020-07-10 15:13:29 +03:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-05-27 10:07:17 +03:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2020 Julius Härtl <jus@bitgrid.net>
|
|
|
|
*
|
2020-12-16 16:54:15 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2020-05-27 10:07:17 +03:00
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 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
|
2020-08-24 15:54:25 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2020-05-27 10:07:17 +03:00
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Dashboard;
|
|
|
|
|
2020-06-26 17:01:52 +03:00
|
|
|
use InvalidArgumentException;
|
2020-06-23 16:23:28 +03:00
|
|
|
use OCP\AppFramework\QueryException;
|
2020-05-27 10:07:17 +03:00
|
|
|
use OCP\Dashboard\IManager;
|
2020-08-04 16:20:05 +03:00
|
|
|
use OCP\Dashboard\IWidget;
|
2020-06-24 14:00:22 +03:00
|
|
|
use OCP\ILogger;
|
2020-06-23 16:23:28 +03:00
|
|
|
use OCP\IServerContainer;
|
2020-06-26 17:01:52 +03:00
|
|
|
use Throwable;
|
2020-05-27 10:07:17 +03:00
|
|
|
|
|
|
|
class Manager implements IManager {
|
2020-06-23 16:23:28 +03:00
|
|
|
|
|
|
|
/** @var array */
|
2020-08-04 16:20:05 +03:00
|
|
|
private $lazyWidgets = [];
|
2020-06-23 16:23:28 +03:00
|
|
|
|
2020-08-04 16:20:05 +03:00
|
|
|
/** @var IWidget[] */
|
|
|
|
private $widgets = [];
|
2020-05-27 10:07:17 +03:00
|
|
|
|
2020-06-23 16:23:28 +03:00
|
|
|
/** @var IServerContainer */
|
|
|
|
private $serverContainer;
|
|
|
|
|
|
|
|
public function __construct(IServerContainer $serverContainer) {
|
|
|
|
$this->serverContainer = $serverContainer;
|
|
|
|
}
|
|
|
|
|
2020-08-04 16:20:05 +03:00
|
|
|
private function registerWidget(IWidget $widget): void {
|
|
|
|
if (array_key_exists($widget->getId(), $this->widgets)) {
|
|
|
|
throw new InvalidArgumentException('Dashboard widget with this id has already been registered');
|
2020-05-27 10:07:17 +03:00
|
|
|
}
|
|
|
|
|
2020-08-04 16:20:05 +03:00
|
|
|
$this->widgets[$widget->getId()] = $widget;
|
2020-05-27 10:07:17 +03:00
|
|
|
}
|
|
|
|
|
2020-08-04 16:20:05 +03:00
|
|
|
public function lazyRegisterWidget(string $widgetClass): void {
|
|
|
|
$this->lazyWidgets[] = $widgetClass;
|
2020-06-23 16:23:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function loadLazyPanels(): void {
|
2020-08-04 16:20:05 +03:00
|
|
|
$classes = $this->lazyWidgets;
|
2020-06-23 16:23:28 +03:00
|
|
|
foreach ($classes as $class) {
|
|
|
|
try {
|
2020-08-04 16:20:05 +03:00
|
|
|
/** @var IWidget $widget */
|
|
|
|
$widget = $this->serverContainer->query($class);
|
2020-06-23 16:23:28 +03:00
|
|
|
} catch (QueryException $e) {
|
|
|
|
/*
|
|
|
|
* There is a circular dependency between the logger and the registry, so
|
|
|
|
* we can not inject it. Thus the static call.
|
|
|
|
*/
|
|
|
|
\OC::$server->getLogger()->logException($e, [
|
2020-08-04 16:20:05 +03:00
|
|
|
'message' => 'Could not load lazy dashbaord widget: ' . $e->getMessage(),
|
2020-06-23 16:23:28 +03:00
|
|
|
'level' => ILogger::FATAL,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Try to register the loaded reporter. Theoretically it could be of a wrong
|
|
|
|
* type, so we might get a TypeError here that we should catch.
|
|
|
|
*/
|
|
|
|
try {
|
2020-08-04 16:20:05 +03:00
|
|
|
$this->registerWidget($widget);
|
2020-06-23 16:23:28 +03:00
|
|
|
} catch (Throwable $e) {
|
|
|
|
/*
|
|
|
|
* There is a circular dependency between the logger and the registry, so
|
|
|
|
* we can not inject it. Thus the static call.
|
|
|
|
*/
|
|
|
|
\OC::$server->getLogger()->logException($e, [
|
2020-08-04 16:20:05 +03:00
|
|
|
'message' => 'Could not register lazy dashboard widget: ' . $e->getMessage(),
|
2020-06-23 16:23:28 +03:00
|
|
|
'level' => ILogger::FATAL,
|
|
|
|
]);
|
|
|
|
}
|
2020-06-26 17:01:52 +03:00
|
|
|
|
|
|
|
try {
|
2020-09-23 13:14:01 +03:00
|
|
|
$startTime = microtime(true);
|
2020-08-04 16:20:05 +03:00
|
|
|
$widget->load();
|
2020-09-23 13:14:01 +03:00
|
|
|
$endTime = microtime(true);
|
|
|
|
$duration = $endTime - $startTime;
|
|
|
|
if ($duration > 1) {
|
|
|
|
\OC::$server->getLogger()->error('Dashboard widget {widget} took {duration} seconds to load.', [
|
|
|
|
'widget' => $widget->getId(),
|
|
|
|
'duration' => round($duration, 2),
|
|
|
|
]);
|
|
|
|
}
|
2020-06-26 17:01:52 +03:00
|
|
|
} catch (Throwable $e) {
|
|
|
|
\OC::$server->getLogger()->logException($e, [
|
2020-08-04 16:20:05 +03:00
|
|
|
'message' => 'Error during dashboard widget loading: ' . $e->getMessage(),
|
2020-06-26 17:01:52 +03:00
|
|
|
'level' => ILogger::FATAL,
|
|
|
|
]);
|
|
|
|
}
|
2020-06-23 16:23:28 +03:00
|
|
|
}
|
2020-08-04 16:20:05 +03:00
|
|
|
$this->lazyWidgets = [];
|
2020-06-23 16:23:28 +03:00
|
|
|
}
|
|
|
|
|
2020-08-04 16:20:05 +03:00
|
|
|
public function getWidgets(): array {
|
2020-06-23 16:23:28 +03:00
|
|
|
$this->loadLazyPanels();
|
2020-08-04 16:20:05 +03:00
|
|
|
return $this->widgets;
|
2020-05-27 10:07:17 +03:00
|
|
|
}
|
|
|
|
}
|