mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-04 23:54:08 +01:00
Controllers are being splited into commands to better dependency management. Signed-off-by: Rubén D <nuxsmin@syspass.org>
80 lines
2.2 KiB
PHP
80 lines
2.2 KiB
PHP
<?php
|
|
/*
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link https://syspass.org
|
|
* @copyright 2012-2022, Rubén Domínguez nuxsmin@$syspass.org
|
|
*
|
|
* This file is part of sysPass.
|
|
*
|
|
* sysPass 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* sysPass 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 sysPass. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
namespace SP\Domain\Upgrade\Services;
|
|
|
|
use Exception;
|
|
use SP\Core\Application;
|
|
use SP\Core\Events\Event;
|
|
use SP\Core\Events\EventMessage;
|
|
use SP\Domain\Common\Services\Service;
|
|
use SP\Domain\Plugin\UpgradePluginServiceInterface;
|
|
use SP\Plugin\PluginManager;
|
|
|
|
/**
|
|
* Class UpgradePlugin
|
|
*
|
|
* @package SP\Domain\Upgrade\Services
|
|
*/
|
|
final class UpgradePluginService extends Service implements UpgradePluginServiceInterface
|
|
{
|
|
private PluginManager $pluginManager;
|
|
|
|
public function __construct(Application $application, PluginManager $pluginManager)
|
|
{
|
|
parent::__construct($application);
|
|
|
|
$this->pluginManager = $pluginManager;
|
|
}
|
|
|
|
/**
|
|
* upgrade_300_18010101
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function upgrade_310_19012201(): void
|
|
{
|
|
$this->eventDispatcher->notifyEvent(
|
|
'upgrade.plugin.start',
|
|
new Event(
|
|
$this,
|
|
EventMessage::factory()
|
|
->addDescription(__u('Plugins upgrade'))
|
|
->addDescription(__FUNCTION__)
|
|
)
|
|
);
|
|
|
|
$this->pluginManager->upgradePlugins('310.19012201');
|
|
|
|
$this->eventDispatcher->notifyEvent(
|
|
'upgrade.plugin.end',
|
|
new Event(
|
|
$this,
|
|
EventMessage::factory()
|
|
->addDescription(__u('Plugins upgrade'))
|
|
->addDescription(__FUNCTION__)
|
|
)
|
|
);
|
|
}
|
|
} |