mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
122 lines
3.3 KiB
PHP
122 lines
3.3 KiB
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package phpOMS\Utils\IO\Zip
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Utils\IO\Zip;
|
|
|
|
use phpOMS\System\File\FileUtils;
|
|
|
|
/**
|
|
* Zip class for handling zip files.
|
|
*
|
|
* Providing basic zip support
|
|
*
|
|
* @package phpOMS\Utils\IO\Zip
|
|
* @license OMS License 1.0
|
|
* @link https://orange-management.org
|
|
* @since 1.0.0
|
|
*/
|
|
class Zip implements ArchiveInterface
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function pack($sources, string $destination, bool $overwrite = false) : bool
|
|
{
|
|
$destination = FileUtils::absolute(\str_replace('\\', '/', $destination));
|
|
|
|
if (!$overwrite && \file_exists($destination)) {
|
|
return false;
|
|
}
|
|
|
|
$zip = new \ZipArchive();
|
|
if (!$zip->open($destination, $overwrite ? \ZipArchive::CREATE | \ZipArchive::OVERWRITE : \ZipArchive::CREATE)) {
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @var string $relative
|
|
*/
|
|
foreach ($sources as $source => $relative) {
|
|
if (\is_int($source)) {
|
|
$source = $relative;
|
|
}
|
|
|
|
if (($source = \realpath($source)) === false
|
|
|| ($source = \str_replace('\\', '/', $source)) === false
|
|
|| !\file_exists($source)
|
|
) {
|
|
continue;
|
|
}
|
|
|
|
if (\is_dir($source)) {
|
|
$files = new \RecursiveIteratorIterator(
|
|
new \RecursiveDirectoryIterator($source),
|
|
\RecursiveIteratorIterator::SELF_FIRST
|
|
);
|
|
|
|
foreach ($files as $file) {
|
|
$file = \str_replace('\\', '/', $file);
|
|
|
|
/* Ignore . and .. */
|
|
if (($pos = \mb_strrpos($file, '/')) === false
|
|
|| \in_array(\mb_substr($file, $pos + 1), ['.', '..'])
|
|
) {
|
|
continue;
|
|
}
|
|
|
|
$absolute = \realpath($file);
|
|
$absolute = \str_replace('\\', '/', (string) $absolute);
|
|
$dir = \str_replace($source . '/', '', $relative . '/' . $absolute);
|
|
|
|
if (\is_dir($absolute)) {
|
|
$zip->addEmptyDir($dir . '/');
|
|
} elseif (\is_file($absolute)) {
|
|
$zip->addFile($absolute, $dir);
|
|
}
|
|
}
|
|
} elseif (\is_file($source)) {
|
|
$zip->addFile($source, $relative);
|
|
}
|
|
}
|
|
|
|
return $zip->close();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function unpack(string $source, string $destination) : bool
|
|
{
|
|
if (!\file_exists($source)) {
|
|
return false;
|
|
}
|
|
|
|
$destination = \str_replace('\\', '/', $destination);
|
|
$destination = \rtrim($destination, '/');
|
|
|
|
try {
|
|
$zip = new \ZipArchive();
|
|
if (!$zip->open($source)) {
|
|
return false;
|
|
}
|
|
|
|
$zip->extractTo($destination . '/');
|
|
|
|
return $zip->close();
|
|
} catch (\Throwable $t) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|