tao-test/app/tao/models/classes/migrations/MigrationsService.php

91 lines
2.9 KiB
PHP
Raw Normal View History

2022-08-29 20:14:13 +02:00
<?php
/**
* 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; under version 2
* of the License (non-upgradable).
*
* 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.
*
* Copyright (c) 2020 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
*/
declare(strict_types = 1);
namespace oat\tao\model\migrations;
use oat\generis\persistence\PersistenceManager;
use oat\oatbox\service\ConfigurableService;
use common_ext_event_ExtensionInstalled as ExtensionInstalled;
use oat\tao\scripts\tools\Migrations;
/**
* Class MigrationsService
*
* @package oat\tao\model\migrations
*/
class MigrationsService extends ConfigurableService
{
public const SERVICE_ID = 'tao/MigrationsService';
public const OPTION_PERSISTENCE_ID = 'persistence_id';
private const DEFAULT_PERSISTENCE_ID = 'default';
/**
* @return \common_persistence_Persistence
*/
public function getPersistence()
{
/** @var PersistenceManager $persistenceManager */
$persistenceManager = $this->getServiceLocator()->get(PersistenceManager::SERVICE_ID);
return $persistenceManager->getPersistenceById($this->getPersistenceId());
}
/**
* Apply all migrations
*
* @return \common_report_Report
*/
public function migrate()
{
$migrations = new Migrations();
$migrations->setServiceLocator($this->getServiceLocator());
return $migrations(['-c', 'migrate']);
}
/**
* Skip extension migrations after installation
* common_ext_event_ExtensionInstalled event callback
*
* @param ExtensionInstalled $event
*/
public function extensionInstalled(ExtensionInstalled $event)
{
$migrations = new Migrations();
$migrations->setServiceLocator($this->getServiceLocator());
if ($event->getExtension()->getId() === 'tao') {
//supposedly application initial install and generis just have been installed.
$migrations->__invoke(['-c', 'init']);
$migrations->__invoke(['-c', 'add', '-e', 'generis']);
}
$migrations->__invoke(['-c', 'add', '-e', $event->getExtension()->getId()]);
}
/**
* @return string
*/
private function getPersistenceId()
{
return $this->hasOption(self::OPTION_PERSISTENCE_ID) ?
$this->getOption(self::OPTION_PERSISTENCE_ID) :
self::DEFAULT_PERSISTENCE_ID;
}
}