add file preview

Reviewed-on: sites/file-explorer#6
This commit is contained in:
2024-12-06 13:04:56 +00:00
parent a574c3a89a
commit 12730b8bcd
10 changed files with 94 additions and 19 deletions

View File

@ -20,6 +20,12 @@ class HomeController extends AbstractController
)]
public function __invoke(FileSystemService $fileSystemService, string $dirs): Response
{
if ($fileSystemService->isFile(substr_replace($dirs, '', -1))) {
return $this->render('file.html.twig', [
'file' => $fileSystemService->getFile((string) substr_replace($dirs, '', -1)),
]);
}
return $this->render('home.html.twig', [
'content' => $fileSystemService->getDirs($dirs),
'fileForm' => $this->createForm(UploadFileForm::class),

View File

@ -23,7 +23,7 @@ class UploadController extends AbstractController
$form = $this->createForm(UploadFileForm::class, $fileData)->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
$fileSystemService->uploadFile($fileData->file);
$fileSystemService->uploadFile($fileData->files);
}
return $this->redirectToRoute('app_home');

View File

@ -17,7 +17,7 @@ class UploadFileForm extends AbstractType
{
$builder
->setAction($this->urlGenerator->generate('app_upload'))
->add('file', FileType::class, [
->add('files', FileType::class, [
'attr' => ['class' => 'hidden'],
'multiple' => true,
]);

View File

@ -6,22 +6,25 @@ namespace App\Objects;
use SplFileInfo;
class DirContent
readonly class DirContent
{
private function __construct(
private readonly string $name,
private readonly int $size,
private readonly string $type,
)
{
private string $name,
private int $size,
private string $type,
private string $path,
private string $content,
) {
}
public static function make(SplFileInfo $fileInfo): DirContent
public static function make(SplFileInfo $fileInfo, string $content = ''): DirContent
{
return new self(
$fileInfo->getBasename(),
$fileInfo->getSize() ?? 0,
$fileInfo->getType() ?? 'N/A',
$fileInfo->getPath(),
$content
);
}
@ -44,10 +47,20 @@ class DirContent
return $this->type;
}
private function getHumanReadableSize()
public function getPath(): string
{
return $this->path;
}
public function getContent(): string
{
return $this->content;
}
private function getHumanReadableSize(): string
{
$bytes = $this->size;
$size = array('B', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB');
$size = ['B', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
$factor = floor((strlen((string) $bytes) - 1) / 3);
return sprintf("%.1f %s", $bytes / (1024 ** $factor), $size[$factor]);

View File

@ -7,7 +7,7 @@ use Symfony\Component\HttpFoundation\File\UploadedFile;
class UploadedFileData
{
/**
* @var UploadedFile[] $file
* @var UploadedFile[] $files
*/
public array $file;
public array $files;
}

View File

@ -4,6 +4,7 @@ namespace App\Service;
use App\Objects\DirContent;
use Symfony\Component\DependencyInjection\Attribute\Autowire;
use Symfony\Component\Filesystem\Exception\IOException;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\Finder\Finder;
use Symfony\Component\HttpFoundation\File\UploadedFile;
@ -23,7 +24,7 @@ class FileSystemService
public function getDirs(string $dirs): array
{
$finder = new Finder();
$finder->in($this->dir . '/' . $dirs);
$finder->in($this->getTotalPath($dirs));
$contents = [];
@ -40,7 +41,40 @@ class FileSystemService
public function uploadFile(array $files): void
{
foreach ($files as $file) {
$this->filesystem->dumpFile($this->dir . '/' . $file->getClientOriginalName(), $file->getContent());
$this->filesystem->dumpFile($this->getTotalPath($file->getClientOriginalName()), $file->getContent());
}
}
public function isFile(string $dirs): bool
{
try {
$this->filesystem->readFile($this->getTotalPath($dirs));
} catch (IOException) {
return false;
}
return true;
}
public function getFile(string $filePath): DirContent
{
$dirs = explode('/', $filePath);
$fileName = array_pop($dirs);
$finder = new Finder();
$finder->in($this->getTotalPath(implode('/', $dirs)));
foreach ($finder as $file) {
if ($file->getFilename() === $fileName) {
return DirContent::make($file, $this->filesystem->readFile($this->getTotalPath($filePath)));
}
}
throw new \RuntimeException('File not found');
}
private function getTotalPath(string $filePath): string
{
return $this->dir . '/' . $filePath;
}
}

View File

@ -16,7 +16,9 @@ class RoutingService
{
$dirsString = $request->attributes->get('dirs', '');
$dirs = explode('/', $dirsString);
array_pop($dirs);
if (array_pop($dirs) === '') {
array_pop($dirs);
}
return $this->urlGenerator->generate('app_home', ['dirs' => implode('/', $dirs)]);
}