allowed mimetypes from database

This commit is contained in:
Arno Kaimbacher 2019-04-02 18:03:29 +02:00
parent 2f930457d1
commit 415016a4c2
9 changed files with 128 additions and 202 deletions

View file

@ -3,7 +3,8 @@
namespace App\Rules;
use Illuminate\Contracts\Validation\Rule;
use Illuminate\Support\Facades\Config;
//use Illuminate\Support\Facades\Config;
use App\Models\MimeType;
class RdrFiletypes implements Rule
{
@ -16,7 +17,10 @@ class RdrFiletypes implements Rule
*/
public function __construct()
{
$this->mimetypes = Config::get('enums.mimetypes_allowed', ['application/pdf']);
//$this->mimetypes = Config::get('enums.mimetypes_allowed', ['application/pdf']);
$this->mimetypes = MimeType::where('enabled', 1)
->pluck('name')
->toArray();
// $this->maxFileSize = Config::get('enums.max_filesize');
}
@ -30,9 +34,9 @@ class RdrFiletypes implements Rule
public function passes($attribute, $value)
{
//return Rule::in($this->filetypes);
$test = $value->getMimeType();//"application/pdf"
$mimeType = $value->getMimeType();//"application/pdf"
return $value->getPath() != '' &&
in_array($value->getMimeType(), $this->mimetypes);
in_array($mimeType, $this->mimetypes);
// in_array($value->guessExtension(), $this->filetypes); //file extension
@ -49,23 +53,4 @@ class RdrFiletypes implements Rule
{
return 'attribute :attribute has not a valid mime type.';
}
/**
* Get the size of an attribute.
*
* @param string $attribute
* @param mixed $value
* @return mixed
*/
private function getSize($attribute, $value)
{
if (is_numeric($value) && $hasNumeric) {
return array_get($this->data, $attribute);
} elseif (is_array($value)) {
return count($value);
} elseif ($value instanceof File) {
return $value->getSize() / 1024;
}
return mb_strlen($value);
}
}