# fluent-support/1.10.2/app/Services/Includes/UploadService.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version 1.10.2. 180 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/1.10.2/code/app/Services/Includes/UploadService.php
- Raw: https://pluginprobe.com/plugins/fluent-support/1.10.2/raw/app/Services/Includes/UploadService.php
- Modified: 2025-03-20T09:34:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-support/1.10.2/code/app/Services/Includes/UploadService.php#L10-L20`.

```php
<?php

namespace FluentSupport\App\Services\Includes;

use FluentSupport\App\Models\Meta;
use FluentSupport\Framework\Support\Arr;

class UploadService
{

    public static function copyFileTicketFolder($tempPath, $ticketId)
    {
        if (!file_exists($tempPath)) {
            return false;
        }

        return FileSystem::setSubDir('ticket_' . $ticketId)->copy($tempPath);
    }

    public static function handleTempFileUpload($file)
    {

        $uploadDir = wp_upload_dir();
        $fluentSupportFolder = $uploadDir['basedir'] . DIRECTORY_SEPARATOR . FLUENT_SUPPORT_UPLOAD_DIR;
        if (!file_exists($fluentSupportFolder . DIRECTORY_SEPARATOR . 'index.html')) {
            if (!is_dir($fluentSupportFolder)) {
                // create the folder
                @mkdir($fluentSupportFolder, 0755);
            }

            @file_put_contents($fluentSupportFolder . DIRECTORY_SEPARATOR . 'index.html', '');
            @file_put_contents($fluentSupportFolder . DIRECTORY_SEPARATOR . '.htaccess', 'deny from all');
        }


        $uploadInfo = FileSystem::setSubDir('temp_files')->put($file);
        if (!empty($uploadInfo) && is_array($uploadInfo)) {
            return $uploadInfo;
        }

        return new \WP_Error('file_upload_error', __('File upload failed', 'fluent-support'));
    }

    private function handleUploadToLocal($ticketId, $file)
    {
        $uploadInfo = FileSystem::setSubDir('ticket_' . $ticketId)->put($file);
        if (!empty($uploadInfo) && is_array($uploadInfo)) {
            return $uploadInfo;
        } else {
            return [
                'file_path' => '',
                'url'       => '',
                'name'      => '',
                'type'      => '',
                'size'      => '',
            ];
        }
    }

    /**
     *
     *
     * @param array $file file data from request
     * @param int $ticketId ticket id
     * @return array $uploadedFiles uploaded file data
     */
    public function _handleFileUpload($file, $ticketId)
    {
        $this->uploadedFiles = $this->handleUploadToLocal($ticketId, $file);

        return $this->uploadedFiles;
    }

    /**
     * Handle email attachments
     * @param array $file file data from request
     * @param int $ticketId ticket id
     * @param array $acceptedMimes accepted mime types for file upload
     * @return array|null $uploadedFiles uploaded file data
     */
    public function _handleEmailAttachments($file, $ticketId = null, $acceptedMimes = [])
    {
        $fileContent = $this->requestContent($file['url'], $acceptedMimes);

        if (!$fileContent) {
            return null;
        }

        $targetFolder = 'temp_files';

        if ($ticketId) {
            $targetFolder = 'ticket_' . $ticketId;
        }

        $fileData = FileSystem::setSubDir($targetFolder)->putAsContent($file['filename'], $fileContent);

        if (!$fileData || empty($fileData['file'])) {
            return null;
        }

        $contentType = $fileData['type'];
        if (!$contentType) {
            $contentType = $file['contentType'];
        }

        // this is the file data from email attachment and required for upload to cloud
        return [
            'name' => $file['filename'],
            'type' => $contentType,
            'file' => $fileData['file'],
            'url'  => $fileData['url'],
        ];
    }

    /**
     * Get file content from url
     * @param array $attachment file data from request
     * @param array $acceptedMimes accepted mime types for file upload
     * @return array $uploadedFiles uploaded file data
     */
    public function requestContent($contentUrl, $acceptedMimes = [])
    {
        $response = wp_remote_request($contentUrl, [
            'sslverify' => false,
            'method'    => 'GET',
            'timeout'   => 30
        ]);

        if (is_wp_error($response)) {
            return;
        }

        $contentType = wp_remote_retrieve_header($response, 'content-type');

        if ($acceptedMimes && !in_array($contentType, $acceptedMimes)) {
            return;
        }

        if (wp_remote_retrieve_response_code($response) >= 300) {
            return;
        }

        return wp_remote_retrieve_body($response);
    }


    // Verify if local upload is enable or not
    public static function isLocalUploadDisable()
    {
        return Meta::where('key', 'disable_local_upload')
            ->where('object_type', 'enabled_upload_drivers')
            ->exists();
    }

    // Verify if there's any integrated drivers enable
    public static function isIntegratedDriversEnable()
    {
        return Meta::where('key', '!=', 'disable_local_upload')
            ->where('object_type', 'enabled_upload_drivers')
            ->exists();
    }


    public static function __callStatic($method, $params)
    {
        $instance = new static;

        return call_user_func_array([$instance, $method], $params);
    }

    public function __call($method, $params)
    {
        $hiddenMethod = "_" . $method;

        $method = method_exists($this, $hiddenMethod) ? $hiddenMethod : $method;

        return call_user_func_array([$this, $method], $params);
    }
}

```
