Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: made script which can create required directories, container and warmup application cache, so we can initialize applicaton without installing or updating it. #3870

Merged
merged 1 commit into from
Aug 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions scripts/taoInit.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<?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) 2023 (original work) Open Assessment Technologies SA;
*/

require_once dirname(__FILE__) . '/../includes/raw_start.php';

use oat\generis\scripts\tools;
use oat\oatbox\cache\SetupFileCache;
use oat\oatbox\reporting\Report;
use oat\oatbox\service\ServiceManager;
use oat\tao\model\routing\CliController;

$report = Report::createSuccess('Initialize tao application');

$serviceManager = ServiceManager::getServiceManager();
$serviceManager->get(SetupFileCache::class)->createDirectory(GENERIS_CACHE_PATH);
$report->add(Report::createSuccess('Init filesystem complete.'));

$actionList = [
tools\ContainerCacheWarmup::class => [],
tools\ApplicationCacheWarmup::class => [],
];

$cliController = new CliController();
$cliController->setServiceLocator($serviceManager);

foreach ($actionList as $actionIdentifier => $actionParams) {
$report->add($cliController->runAction($actionIdentifier, $actionParams));
}

echo helpers_Report::renderToCommandline($report);
Loading