%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/admin1/vendor/spatie/laravel-backup/src/Helpers/ |
Upload File : |
<?php
namespace Spatie\Backup\Helpers;
use Exception;
use Illuminate\Contracts\Filesystem\Filesystem;
class File
{
protected static array $allowedMimeTypes = [
'application/zip',
'application/x-zip',
'application/x-gzip',
];
public function isZipFile(?Filesystem $disk, string $path): bool
{
if ($this->hasZipExtension($path)) {
return true;
}
return $this->hasAllowedMimeType($disk, $path);
}
protected function hasZipExtension(string $path): bool
{
return pathinfo($path, PATHINFO_EXTENSION) === 'zip';
}
protected function hasAllowedMimeType(?Filesystem $disk, string $path): bool
{
return in_array($this->mimeType($disk, $path), self::$allowedMimeTypes);
}
protected function mimeType(?Filesystem $disk, string $path): bool | string
{
try {
if ($disk && method_exists($disk, 'mimeType')) {
return $disk->mimeType($path) ?: false;
}
} catch (Exception) {
// Some drivers throw exceptions when checking mime types, we'll
// just fallback to `false`.
}
return false;
}
}