2019-08-06 18:47:09 +02:00
|
|
|
<?php
|
2020-01-05 15:46:58 +01:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-08-06 18:47:09 +02:00
|
|
|
/**
|
2019-11-09 00:47:20 +01:00
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
2019-08-06 18:47:09 +02:00
|
|
|
*
|
2019-11-01 13:40:30 +01:00
|
|
|
* Copyright (C) 2019 Jan Böhmer (https://github.com/jbtronics)
|
2019-08-06 18:47:09 +02:00
|
|
|
*
|
|
|
|
* 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; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2019-10-19 23:29:51 +02:00
|
|
|
namespace App\Services\Attachments;
|
2019-08-06 18:47:09 +02:00
|
|
|
|
2019-08-12 18:04:53 +02:00
|
|
|
use App\Entity\Attachments\Attachment;
|
2019-08-06 18:47:09 +02:00
|
|
|
|
2019-10-19 23:29:30 +02:00
|
|
|
/**
|
|
|
|
* This service contains basic commonly used functions to work with attachments.
|
|
|
|
* Especially this services gives you important infos about attachments, that can not be retrieved via the entities
|
|
|
|
* (like filesize or if a file is existing).
|
|
|
|
*
|
|
|
|
* Special operations like getting attachment urls or handling file uploading/downloading are in their own services.
|
|
|
|
*/
|
|
|
|
class AttachmentManager
|
2019-08-06 18:47:09 +02:00
|
|
|
{
|
2019-09-28 16:06:37 +02:00
|
|
|
protected $pathResolver;
|
2019-08-06 18:47:09 +02:00
|
|
|
|
2019-09-28 16:06:37 +02:00
|
|
|
public function __construct(AttachmentPathResolver $pathResolver)
|
2019-08-27 18:54:02 +02:00
|
|
|
{
|
2019-09-28 16:06:37 +02:00
|
|
|
$this->pathResolver = $pathResolver;
|
2019-08-27 18:54:02 +02:00
|
|
|
}
|
|
|
|
|
2019-08-27 22:24:56 +02:00
|
|
|
/**
|
|
|
|
* Gets an SPLFileInfo object representing the file associated with the attachment.
|
2019-11-09 00:47:20 +01:00
|
|
|
*
|
2019-08-27 22:24:56 +02:00
|
|
|
* @param Attachment $attachment The attachment for which the file should be generated
|
2019-11-09 00:47:20 +01:00
|
|
|
*
|
2019-08-27 22:24:56 +02:00
|
|
|
* @return \SplFileInfo|null The fileinfo for the attachment file. Null, if the attachment is external or has
|
2019-11-09 00:47:20 +01:00
|
|
|
* invalid file.
|
2019-08-27 22:24:56 +02:00
|
|
|
*/
|
2019-11-09 00:47:20 +01:00
|
|
|
public function attachmentToFile(Attachment $attachment): ?\SplFileInfo
|
2019-08-27 22:24:56 +02:00
|
|
|
{
|
2020-01-05 15:46:58 +01:00
|
|
|
if ($attachment->isExternal() || ! $this->isFileExisting($attachment)) {
|
2019-08-27 22:24:56 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new \SplFileInfo($this->toAbsoluteFilePath($attachment));
|
|
|
|
}
|
|
|
|
|
2019-08-06 18:47:09 +02:00
|
|
|
/**
|
2019-10-05 20:30:27 +02:00
|
|
|
* Returns the absolute filepath of the attachment. Null is returned, if the attachment is externally saved,
|
|
|
|
* or is not existing.
|
2019-11-09 00:47:20 +01:00
|
|
|
*
|
2019-08-06 18:47:09 +02:00
|
|
|
* @param Attachment $attachment The attachment for which the filepath should be determined
|
|
|
|
*/
|
|
|
|
public function toAbsoluteFilePath(Attachment $attachment): ?string
|
|
|
|
{
|
2019-08-26 23:46:38 +02:00
|
|
|
if (empty($attachment->getPath())) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-08-06 18:47:09 +02:00
|
|
|
if ($attachment->isExternal()) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-10-03 14:27:20 +02:00
|
|
|
$path = $this->pathResolver->placeholderToRealPath($attachment->getPath());
|
|
|
|
|
|
|
|
//realpath does not work with null as argument
|
2019-11-09 00:47:20 +01:00
|
|
|
if (null === $path) {
|
2019-10-03 14:27:20 +02:00
|
|
|
return null;
|
|
|
|
}
|
2019-10-05 20:30:27 +02:00
|
|
|
|
|
|
|
$tmp = realpath($path);
|
|
|
|
//If path is not existing realpath returns false.
|
2019-11-09 00:47:20 +01:00
|
|
|
if (false === $tmp) {
|
2019-10-05 20:30:27 +02:00
|
|
|
return null;
|
|
|
|
}
|
2019-11-09 00:47:20 +01:00
|
|
|
|
2019-10-05 20:30:27 +02:00
|
|
|
return $tmp;
|
2019-08-06 18:47:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the file in this attachement is existing. This works for files on the HDD, and for URLs
|
|
|
|
* (it's not checked if the ressource behind the URL is really existing, so for every external attachment true is returned).
|
|
|
|
*
|
|
|
|
* @param Attachment $attachment The attachment for which the existence should be checked
|
|
|
|
*
|
2020-01-04 20:24:09 +01:00
|
|
|
* @return bool true if the file is existing
|
2019-08-06 18:47:09 +02:00
|
|
|
*/
|
|
|
|
public function isFileExisting(Attachment $attachment): bool
|
|
|
|
{
|
2019-08-26 23:46:38 +02:00
|
|
|
if (empty($attachment->getPath())) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-01-05 21:09:19 +01:00
|
|
|
$absolute_path = $this->toAbsoluteFilePath($attachment);
|
|
|
|
|
|
|
|
if ($absolute_path === null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return file_exists($absolute_path) || $attachment->isExternal();
|
2019-08-06 18:47:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the filesize of the attachments in bytes.
|
2019-10-03 14:27:20 +02:00
|
|
|
* For external attachments or not existing attachments, null is returned.
|
2019-08-06 18:47:09 +02:00
|
|
|
*
|
2020-01-04 20:24:09 +01:00
|
|
|
* @param Attachment $attachment the filesize for which the filesize should be calculated
|
2019-08-06 18:47:09 +02:00
|
|
|
*/
|
|
|
|
public function getFileSize(Attachment $attachment): ?int
|
|
|
|
{
|
|
|
|
if ($attachment->isExternal()) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-01-05 15:46:58 +01:00
|
|
|
if (! $this->isFileExisting($attachment)) {
|
2019-10-03 14:27:20 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$tmp = filesize($this->toAbsoluteFilePath($attachment));
|
2019-11-09 00:47:20 +01:00
|
|
|
|
|
|
|
return false !== $tmp ? $tmp : null;
|
2019-08-06 18:47:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a human readable version of the attachment file size.
|
|
|
|
* For external attachments, null is returned.
|
|
|
|
*
|
|
|
|
* @param int $decimals The number of decimals numbers that should be printed
|
2019-11-09 00:47:20 +01:00
|
|
|
*
|
2019-08-06 18:47:09 +02:00
|
|
|
* @return string|null A string like 1.3M
|
|
|
|
*/
|
|
|
|
public function getHumanFileSize(Attachment $attachment, $decimals = 2): ?string
|
|
|
|
{
|
|
|
|
$bytes = $this->getFileSize($attachment);
|
|
|
|
|
2020-01-05 15:46:58 +01:00
|
|
|
if (null === $bytes) {
|
2019-08-06 18:47:09 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Format filesize for human reading
|
|
|
|
//Taken from: https://www.php.net/manual/de/function.filesize.php#106569 and slightly modified
|
|
|
|
|
|
|
|
$sz = 'BKMGTP';
|
2019-11-09 00:47:20 +01:00
|
|
|
$factor = (int) floor((\strlen($bytes) - 1) / 3);
|
|
|
|
|
|
|
|
return sprintf("%.{$decimals}f", $bytes / 1024 ** $factor).@$sz[$factor];
|
2019-08-06 18:47:09 +02:00
|
|
|
}
|
2019-11-09 00:47:20 +01:00
|
|
|
}
|