2019-08-27 18:54:02 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Command;
|
|
|
|
|
|
|
|
use App\Services\AttachmentHelper;
|
|
|
|
use App\Services\AttachmentReverseSearch;
|
2019-09-28 16:06:37 +02:00
|
|
|
use App\Services\Attachments\AttachmentPathResolver;
|
2019-08-27 18:54:02 +02:00
|
|
|
use Symfony\Component\Console\Command\Command;
|
|
|
|
use Symfony\Component\Console\Helper\Table;
|
|
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
use Symfony\Component\Console\Style\SymfonyStyle;
|
|
|
|
use Symfony\Component\Filesystem\Filesystem;
|
|
|
|
use Symfony\Component\Finder\Finder;
|
|
|
|
use Symfony\Component\Mime\FileinfoMimeTypeGuesser;
|
|
|
|
use Symfony\Component\Mime\MimeTypes;
|
|
|
|
use Symfony\Component\Mime\MimeTypesInterface;
|
|
|
|
|
|
|
|
class CleanAttachmentsCommand extends Command
|
|
|
|
{
|
|
|
|
protected static $defaultName = 'app:clean-attachments';
|
|
|
|
|
|
|
|
protected $attachment_helper;
|
|
|
|
protected $reverseSearch;
|
|
|
|
protected $mimeTypeGuesser;
|
2019-09-28 16:06:37 +02:00
|
|
|
protected $pathResolver;
|
2019-08-27 18:54:02 +02:00
|
|
|
|
2019-09-28 16:06:37 +02:00
|
|
|
public function __construct(AttachmentHelper $attachmentHelper, AttachmentReverseSearch $reverseSearch, AttachmentPathResolver $pathResolver)
|
2019-08-27 18:54:02 +02:00
|
|
|
{
|
|
|
|
$this->attachment_helper = $attachmentHelper;
|
2019-09-28 16:06:37 +02:00
|
|
|
$this->pathResolver = $pathResolver;
|
2019-08-27 18:54:02 +02:00
|
|
|
$this->reverseSearch = $reverseSearch;
|
|
|
|
$this->mimeTypeGuesser = new MimeTypes();
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function configure()
|
|
|
|
{
|
|
|
|
$this
|
|
|
|
->setDescription('Lists (and deletes if wanted) attachments files that are not used anymore (abandoned files).')
|
|
|
|
->setHelp('This command allows to find all files in the media folder which are not associated with an attachment anymore.'.
|
|
|
|
' These files are not needed and can eventually deleted.');
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output)
|
|
|
|
{
|
|
|
|
$io = new SymfonyStyle($input, $output);
|
|
|
|
|
2019-09-28 16:06:37 +02:00
|
|
|
$mediaPath = $this->pathResolver->getMediaPath();
|
2019-08-27 18:54:02 +02:00
|
|
|
$io->note("The media path is " . $mediaPath);
|
2019-10-19 19:36:33 +02:00
|
|
|
$securePath = $this->pathResolver->getSecurePath();
|
|
|
|
$io->note("The secure media path is ". $securePath);
|
2019-08-27 18:54:02 +02:00
|
|
|
|
|
|
|
$finder = new Finder();
|
|
|
|
//We look for files in the media folder only
|
2019-10-19 19:36:33 +02:00
|
|
|
$finder->files()->in([$mediaPath, $securePath]);
|
|
|
|
//Ignore image cache folder
|
|
|
|
$finder->exclude('cache');
|
|
|
|
|
2019-08-27 18:54:02 +02:00
|
|
|
$fs = new Filesystem();
|
|
|
|
|
|
|
|
$file_list = array();
|
|
|
|
|
|
|
|
$table = new Table($output);
|
|
|
|
$table->setHeaders(['Filename', 'MIME Type', 'Last modified date']);
|
|
|
|
$dateformatter = \IntlDateFormatter::create(null, \IntlDateFormatter::SHORT, \IntlDateFormatter::SHORT);
|
|
|
|
|
2019-10-19 19:36:33 +02:00
|
|
|
foreach ($finder as $file) {
|
2019-08-27 18:54:02 +02:00
|
|
|
//If not attachment object uses this file, print it
|
|
|
|
if (count($this->reverseSearch->findAttachmentsByFile($file)) == 0) {
|
|
|
|
$file_list[] = $file;
|
|
|
|
$table->addRow([
|
|
|
|
$fs->makePathRelative($file->getPathname(), $mediaPath),
|
|
|
|
$this->mimeTypeGuesser->guessMimeType($file->getPathname()),
|
|
|
|
$dateformatter->format($file->getMTime())
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($file_list) > 0) {
|
|
|
|
$table->render();
|
|
|
|
|
|
|
|
$continue = $io->confirm(sprintf("Found %d abandoned files. Do you want to delete them? This can not be undone!", count($file_list)), false);
|
|
|
|
|
|
|
|
if (!$continue) {
|
|
|
|
//We are finished here, when no files should be deleted
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Delete the files
|
|
|
|
$fs->remove($file_list);
|
|
|
|
//Delete empty folders:
|
|
|
|
$this->removeEmptySubFolders($mediaPath);
|
|
|
|
|
|
|
|
$io->success("All abandoned files were removed.");
|
|
|
|
|
|
|
|
} else {
|
|
|
|
$io->success("No abandoned files found.");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function removes all empty folders inside $path. Taken from https://stackoverflow.com/a/1833681
|
|
|
|
* @param string $path The path in which the empty folders should be deleted
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
protected function removeEmptySubFolders($path)
|
|
|
|
{
|
|
|
|
$empty=true;
|
|
|
|
foreach (glob($path . DIRECTORY_SEPARATOR . "*") as $file)
|
|
|
|
{
|
|
|
|
$empty &= is_dir($file) && $this->removeEmptySubFolders($file);
|
|
|
|
}
|
|
|
|
return $empty && rmdir($path);
|
|
|
|
}
|
|
|
|
}
|