File: /home/artinside/www/sabbry/vendor/coffeecode/uploader/src/File.php
<?php
namespace CoffeeCode\Uploader;
/**
* Class CoffeeCode File
*
* @author Robson V. Leite <https://github.com/robsonvleite>
* @package CoffeeCode\Uploader
*/
class File extends Uploader
{
/**
* Allow zip, rar, bzip, pdf, doc, docx files
* @var array allowed file types
* https://www.freeformatter.com/mime-types-list.html
*/
protected static $allowTypes = [
"application/zip",
'application/x-rar-compressed',
'application/x-bzip',
"application/pdf",
"application/msword",
"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
"image/svg+xml",
];
/**
* Allowed extensions to types.
* @var array
*/
protected static $extensions = [
"zip",
"rar",
"bz",
"pdf",
"doc",
"docx",
"svg"
];
/**
* @param array $file
* @param string $name
* @return null|string
* @throws \Exception
*/
public function upload(array $file, string $name): string
{
$this->ext = mb_strtolower(pathinfo($file['name'])['extension']);
if (!in_array($file['type'], static::$allowTypes) || !in_array($this->ext, static::$extensions)) {
throw new \Exception("Formato inválido");
}
$this->name($name);
move_uploaded_file($file['tmp_name'], "{$this->path}/{$this->name}");
return "{$this->path}/{$this->name}";
}
}