phpOMS/Utils/IO/Zip/Tar.php
Dennis Eichhorn b5944503d8 bug fixes
2023-12-08 21:52:34 +00:00

139 lines
3.7 KiB
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.1
*
* @package phpOMS\Utils\IO\Zip
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\Utils\IO\Zip;
use phpOMS\System\File\FileUtils;
use phpOMS\System\File\Local\Directory;
/**
* Tar class for handling zip files.
*
* Providing basic zip support
*
* IMPORTANT:
* PharData seems to cache created files, which means even if the previously created file is deleted,
* it cannot create a new file with the same destination.
* bug? https://bugs.php.net/bug.php?id=75101
*
* @package phpOMS\Utils\IO\Zip
* @license OMS License 2.0
* @link https://jingga.app
* @since 1.0.0
*/
final class Tar implements ArchiveInterface
{
/**
* Constructor.
*
* @since 1.0.0
* @codeCoverageIgnore
*/
private function __construct()
{
}
/**
* {@inheritdoc}
*/
public static function pack(string | array $sources, string $destination, bool $overwrite = false) : bool
{
$destination = FileUtils::absolute(\strtr($destination, '\\', '/'));
if ((!$overwrite && \is_file($destination))
|| \is_dir($destination)
) {
return false;
}
if (\is_string($sources)) {
$sources = [$sources => ''];
}
$tar = new \PharData($destination);
/**
* @var string $relative
*/
foreach ($sources as $source => $relative) {
if (\is_int($source)) {
$source = $relative;
}
$source = FileUtils::absolute(\strtr($source, '\\', '/'));
$relative = \strtr($relative, '\\', '/');
if (\is_dir($source)) {
/** @var string[] $files */
$files = new \RecursiveIteratorIterator(
new \RecursiveDirectoryIterator($source, \FilesystemIterator::CURRENT_AS_PATHNAME),
\RecursiveIteratorIterator::SELF_FIRST
);
foreach ($files as $file) {
$file = \strtr($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 = \ltrim(\rtrim($relative, '/\\') . '/' . \ltrim(\str_replace($source . '/', '', $absolute), '/\\'), '/\\');
if (\is_dir($absolute)) {
$tar->addEmptyDir($dir . '/');
} elseif (\is_file($absolute)) {
$tar->addFile($absolute, $dir);
}
}
} elseif (\is_file($source)) {
$tar->addFile($source, $relative);
} else {
continue;
}
}
return true;
}
/**
* {@inheritdoc}
*/
public static function unpack(string $source, string $destination) : bool
{
if (!\is_file($source)) {
return false;
}
if (!\is_dir($destination)) {
Directory::create($destination, recursive: true);
}
try {
$destination = \strtr($destination, '\\', '/');
$destination = \rtrim($destination, '/');
$tar = new \PharData($source);
$tar->extractTo($destination . '/');
return true;
} catch (\Throwable $_) {
return false;
}
}
}