57 lines
1.9 KiB
PHP
57 lines
1.9 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the TYPO3 CMS project.
|
|
*
|
|
* It is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU General Public License, either version 2
|
|
* of the License, or any later version.
|
|
*
|
|
* For the full copyright and license information, please read the
|
|
* LICENSE.txt file that was distributed with this source code.
|
|
*
|
|
* The TYPO3 project - inspiring people to share!
|
|
*/
|
|
|
|
namespace TYPO3\CMS\Backend\Command;
|
|
|
|
use Symfony\Component\Console\Attribute\AsCommand;
|
|
use Symfony\Component\Console\Command\Command;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
use Symfony\Component\Console\Style\SymfonyStyle;
|
|
use TYPO3\CMS\Backend\Authentication\BackendLocker;
|
|
|
|
/**
|
|
* Core function for unlocking the TYPO3 Backend
|
|
*/
|
|
#[AsCommand('backend:unlock', 'Unlock the TYPO3 Backend')]
|
|
class UnlockBackendCommand extends Command
|
|
{
|
|
public function __construct(protected readonly BackendLocker $lockService, ?string $name = null)
|
|
{
|
|
parent::__construct($name);
|
|
}
|
|
|
|
/**
|
|
* Executes the command for removing the lock file
|
|
*/
|
|
protected function execute(InputInterface $input, OutputInterface $output): int
|
|
{
|
|
$io = new SymfonyStyle($input, $output);
|
|
$io->title($this->getDescription());
|
|
$lockFile = $this->lockService->getAbsolutePathToLockFile();
|
|
if ($this->lockService->isLocked()) {
|
|
$this->lockService->unlock();
|
|
if ($this->lockService->isLocked()) {
|
|
$io->caution('Could not remove lock file "' . $lockFile . '"!');
|
|
return Command::FAILURE;
|
|
}
|
|
$io->success('Removed lock file "' . $lockFile . '".');
|
|
} else {
|
|
$io->note('No lock file "' . $lockFile . '" was found.' . LF . 'Hence no lock can be removed.');
|
|
}
|
|
return Command::SUCCESS;
|
|
}
|
|
}
|