tethys/app/Rules/RdrFilesize.php

68 lines
1.6 KiB
PHP
Raw Normal View History

2018-08-29 15:18:15 +00:00
<?php
namespace App\Rules;
use Illuminate\Contracts\Validation\Rule;
use Illuminate\Support\Facades\Config;
class RdrFilesize implements Rule
{
protected $maxFileSize;
/**
* Create a new rule instance.
*
* @return void
*/
2018-11-28 16:06:00 +00:00
public function __construct($fileIndex)
2018-08-29 15:18:15 +00:00
{
$this->maxFileSize = Config::get('enums.max_filesize');
2018-11-28 16:06:00 +00:00
$this->fileIndex = $fileIndex;
2018-08-29 15:18:15 +00:00
}
/**
* Determine if the validation rule passes.
*
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
//return Rule::in($this->filetypes);
2018-11-28 16:06:00 +00:00
// $upload_max_size = ini_get('upload_max_filesize');
$fileSize = filesize($value);
return $fileSize <= $this->maxFileSize * 1024;
// return $this->getSize($attribute, $value) <= $this->maxFileSize;
2018-08-29 15:18:15 +00:00
}
/**
* Get the validation error message.
*
* @return string
*/
public function message()
{
2018-11-28 16:06:00 +00:00
return 'file number '. $this->fileIndex .' is too large for the destination storage system.';
2018-08-29 15:18:15 +00:00
}
/**
* 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);
}
}