Spaces:
No application file
No application file
File size: 2,258 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
<?php
namespace Mautic\CoreBundle\Update\Step;
use Mautic\CoreBundle\Helper\PathsHelper;
use Psr\Log\LoggerInterface;
use Symfony\Component\Console\Helper\ProgressBar;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Contracts\Translation\TranslatorInterface;
final class RemoveDeletedFilesStep implements StepInterface
{
private string $appRoot;
public function __construct(
private TranslatorInterface $translator,
PathsHelper $pathsHelper,
private LoggerInterface $logger
) {
$this->appRoot = $pathsHelper->getRootPath();
}
public function getOrder(): int
{
return 20;
}
public function shouldExecuteInFinalStage(): bool
{
return false;
}
public function execute(ProgressBar $progressBar, InputInterface $input, OutputInterface $output): void
{
// Make sure we have a deleted_files list otherwise we can't process this step
if (!file_exists($this->appRoot.'/deleted_files.txt')) {
return;
}
$progressBar->setMessage($this->translator->trans('mautic.core.update.remove.deleted.files'));
$progressBar->advance();
$deletedFiles = json_decode(file_get_contents($this->appRoot.'/deleted_files.txt'), true);
// Before looping over the deleted files, add in our upgrade specific files
$deletedFiles += ['deleted_files.txt', 'upgrade.php'];
foreach ($deletedFiles as $file) {
$this->deleteFile($file);
}
@unlink($this->appRoot.'/deleted_files.txt');
}
private function deleteFile(string $file): void
{
$path = $this->appRoot.'/'.$file;
if (!file_exists($path)) {
return;
}
// Try setting the permissions to 777 just to make sure we can get rid of the file
@chmod($path, 0777);
if (@unlink($path)) {
return;
}
// Failed to delete, reset the permissions to 644 for safety
@chmod($path, 0644);
$this->logger->error(
'UPDATE ERROR: '.$this->translator->trans('mautic.core.update.error.removing.file', ['%path%' => $file])
);
}
}
|