MOON
Server: Apache
System: Linux server1.studioinfinity.com.br 2.6.32-954.3.5.lve1.4.90.el6.x86_64 #1 SMP Tue Feb 21 12:26:30 UTC 2023 x86_64
User: artinside (517)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/artinside/www/sabbry/vendor/coffeecode/uploader/src/Send.php
<?php

namespace CoffeeCode\Uploader;

/**
 * Class CoffeeCode Send
 *
 * @author Robson V. Leite <https://github.com/robsonvleite>
 * @package CoffeeCode\Uploader
 */
class Send extends Uploader
{
    /**
     * Send constructor.
     *
     * @param string $uploadDir
     * @param string $fileTypeDir
     * @param array $allowTypes
     * @param array $extensions
     * @param bool $monthYearPath
     * https://www.freeformatter.com/mime-types-list.html
     */
    public function __construct(
        string $uploadDir,
        string $fileTypeDir,
        array $allowTypes,
        array $extensions,
        bool $monthYearPath = true
    ) {
        parent::__construct($uploadDir, $fileTypeDir, $monthYearPath);
        self::$allowTypes = $allowTypes;
        self::$extensions = $extensions;
    }

    /**
     * @param array $file
     * @param string $name
     * @return 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("Not a valid file type or extension");
        }

        $this->name($name);
        move_uploaded_file($file['tmp_name'], "{$this->path}/{$this->name}");
        return "{$this->path}/{$this->name}";
    }
}