![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/pdf-ai.com/private_html/vendor/spatie/laravel-backup/src/Helpers/ |
<?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;
}
}