267 lines
11 KiB
PHP
267 lines
11 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Composer.
|
|
*
|
|
* (c) Nils Adermann <naderman@naderman.de>
|
|
* Jordi Boggiano <j.boggiano@seld.be>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Composer\Downloader;
|
|
|
|
use Composer\Config;
|
|
use Composer\Cache;
|
|
use Composer\EventDispatcher\EventDispatcher;
|
|
use Composer\Package\PackageInterface;
|
|
use Composer\Util\IniHelper;
|
|
use Composer\Util\Platform;
|
|
use Composer\Util\ProcessExecutor;
|
|
use Composer\Util\Filesystem;
|
|
use Composer\Util\HttpDownloader;
|
|
use Composer\IO\IOInterface;
|
|
use Symfony\Component\Process\ExecutableFinder;
|
|
use ZipArchive;
|
|
|
|
/**
|
|
* @author Jordi Boggiano <j.boggiano@seld.be>
|
|
*/
|
|
class ZipDownloader extends ArchiveDownloader
|
|
{
|
|
protected static $hasSystemUnzip;
|
|
private static $hasZipArchive;
|
|
private static $isWindows;
|
|
|
|
/** @var ZipArchive|null */
|
|
private $zipArchiveObject;
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function download(PackageInterface $package, $path, PackageInterface $prevPackage = null, $output = true)
|
|
{
|
|
if (null === self::$hasSystemUnzip) {
|
|
$finder = new ExecutableFinder;
|
|
self::$hasSystemUnzip = (bool) $finder->find('unzip');
|
|
}
|
|
|
|
if (null === self::$hasZipArchive) {
|
|
self::$hasZipArchive = class_exists('ZipArchive');
|
|
}
|
|
|
|
if (!self::$hasZipArchive && !self::$hasSystemUnzip) {
|
|
// php.ini path is added to the error message to help users find the correct file
|
|
$iniMessage = IniHelper::getMessage();
|
|
$error = "The zip extension and unzip command are both missing, skipping.\n" . $iniMessage;
|
|
|
|
throw new \RuntimeException($error);
|
|
}
|
|
|
|
if (null === self::$isWindows) {
|
|
self::$isWindows = Platform::isWindows();
|
|
|
|
if (!self::$isWindows && !self::$hasSystemUnzip) {
|
|
$this->io->writeError("<warning>As there is no 'unzip' command installed zip files are being unpacked using the PHP zip extension.</warning>");
|
|
$this->io->writeError("<warning>This may cause invalid reports of corrupted archives. Besides, any UNIX permissions (e.g. executable) defined in the archives will be lost.</warning>");
|
|
$this->io->writeError("<warning>Installing 'unzip' may remediate them.</warning>");
|
|
}
|
|
}
|
|
|
|
return parent::download($package, $path, $prevPackage, $output);
|
|
}
|
|
|
|
/**
|
|
* extract $file to $path with "unzip" command
|
|
*
|
|
* @param string $file File to extract
|
|
* @param string $path Path where to extract file
|
|
* @param bool $isLastChance If true it is called as a fallback and should throw an exception
|
|
*/
|
|
private function extractWithSystemUnzip(PackageInterface $package, $file, $path, $isLastChance, $async = false)
|
|
{
|
|
if (!self::$hasZipArchive) {
|
|
// Force Exception throwing if the Other alternative is not available
|
|
$isLastChance = true;
|
|
}
|
|
|
|
if (!self::$hasSystemUnzip && !$isLastChance) {
|
|
// This was call as the favorite extract way, but is not available
|
|
// We switch to the alternative
|
|
return $this->extractWithZipArchive($package, $file, $path, true);
|
|
}
|
|
|
|
// When called after a ZipArchive failed, perhaps there is some files to overwrite
|
|
$overwrite = $isLastChance ? '-o' : '';
|
|
$command = 'unzip -qq '.$overwrite.' '.ProcessExecutor::escape($file).' -d '.ProcessExecutor::escape($path);
|
|
|
|
if ($async) {
|
|
$self = $this;
|
|
$io = $this->io;
|
|
$tryFallback = function ($processError) use ($isLastChance, $io, $self, $file, $path, $package) {
|
|
if ($isLastChance) {
|
|
throw $processError;
|
|
}
|
|
|
|
if (!is_file($file)) {
|
|
$io->writeError(' <warning>'.$processError->getMessage().'</warning>');
|
|
$io->writeError(' <warning>This most likely is due to a custom installer plugin not handling the returned Promise from the downloader</warning>');
|
|
$io->writeError(' <warning>See https://github.com/composer/installers/commit/5006d0c28730ade233a8f42ec31ac68fb1c5c9bb for an example fix</warning>');
|
|
} else {
|
|
$io->writeError(' <warning>'.$processError->getMessage().'</warning>');
|
|
$io->writeError(' The archive may contain identical file names with different capitalization (which fails on case insensitive filesystems)');
|
|
$io->writeError(' Unzip with unzip command failed, falling back to ZipArchive class');
|
|
}
|
|
|
|
return $self->extractWithZipArchive($package, $file, $path, true);
|
|
};
|
|
|
|
try {
|
|
$promise = $this->process->executeAsync($command);
|
|
|
|
return $promise->then(function ($process) use ($tryFallback, $command, $package, $file) {
|
|
if (!$process->isSuccessful()) {
|
|
$output = $process->getErrorOutput();
|
|
$output = str_replace(', '.$file.'.zip or '.$file.'.ZIP', '', $output);
|
|
|
|
return $tryFallback(new \RuntimeException('Failed to extract '.$package->getName().': ('.$process->getExitCode().') '.$command."\n\n".$output));
|
|
}
|
|
});
|
|
} catch (\Exception $e) {
|
|
return $tryFallback($e);
|
|
} catch (\Throwable $e) {
|
|
return $tryFallback($e);
|
|
}
|
|
}
|
|
|
|
$processError = null;
|
|
try {
|
|
if (0 === $exitCode = $this->process->execute($command, $ignoredOutput)) {
|
|
return \React\Promise\resolve();
|
|
}
|
|
|
|
$processError = new \RuntimeException('Failed to execute ('.$exitCode.') '.$command."\n\n".$this->process->getErrorOutput());
|
|
} catch (\Exception $e) {
|
|
$processError = $e;
|
|
}
|
|
|
|
if ($isLastChance) {
|
|
throw $processError;
|
|
}
|
|
|
|
$this->io->writeError(' <warning>'.$processError->getMessage().'</warning>');
|
|
$this->io->writeError(' The archive may contain identical file names with different capitalization (which fails on case insensitive filesystems)');
|
|
$this->io->writeError(' Unzip with unzip command failed, falling back to ZipArchive class');
|
|
|
|
return $this->extractWithZipArchive($package, $file, $path, true);
|
|
}
|
|
|
|
/**
|
|
* extract $file to $path with ZipArchive
|
|
*
|
|
* @param string $file File to extract
|
|
* @param string $path Path where to extract file
|
|
* @param bool $isLastChance If true it is called as a fallback and should throw an exception
|
|
*
|
|
* TODO v3 should make this private once we can drop PHP 5.3 support
|
|
* @protected
|
|
*/
|
|
public function extractWithZipArchive(PackageInterface $package, $file, $path, $isLastChance)
|
|
{
|
|
if (!self::$hasSystemUnzip) {
|
|
// Force Exception throwing if the Other alternative is not available
|
|
$isLastChance = true;
|
|
}
|
|
|
|
if (!self::$hasZipArchive && !$isLastChance) {
|
|
// This was call as the favorite extract way, but is not available
|
|
// We switch to the alternative
|
|
return $this->extractWithSystemUnzip($package, $file, $path, true);
|
|
}
|
|
|
|
$processError = null;
|
|
$zipArchive = $this->zipArchiveObject ?: new ZipArchive();
|
|
|
|
try {
|
|
if (true === ($retval = $zipArchive->open($file))) {
|
|
$extractResult = $zipArchive->extractTo($path);
|
|
|
|
if (true === $extractResult) {
|
|
$zipArchive->close();
|
|
|
|
return \React\Promise\resolve();
|
|
}
|
|
|
|
$processError = new \RuntimeException(rtrim("There was an error extracting the ZIP file, it is either corrupted or using an invalid format.\n"));
|
|
} else {
|
|
$processError = new \UnexpectedValueException(rtrim($this->getErrorMessage($retval, $file)."\n"), $retval);
|
|
}
|
|
} catch (\ErrorException $e) {
|
|
$processError = new \RuntimeException('The archive may contain identical file names with different capitalization (which fails on case insensitive filesystems): '.$e->getMessage(), 0, $e);
|
|
} catch (\Exception $e) {
|
|
$processError = $e;
|
|
} catch (\Throwable $e) {
|
|
$processError = $e;
|
|
}
|
|
|
|
if ($isLastChance) {
|
|
throw $processError;
|
|
}
|
|
|
|
$this->io->writeError(' <warning>'.$processError->getMessage().'</warning>');
|
|
$this->io->writeError(' Unzip with ZipArchive class failed, falling back to unzip command');
|
|
|
|
return $this->extractWithSystemUnzip($package, $file, $path, true);
|
|
}
|
|
|
|
/**
|
|
* extract $file to $path
|
|
*
|
|
* @param string $file File to extract
|
|
* @param string $path Path where to extract file
|
|
*/
|
|
public function extract(PackageInterface $package, $file, $path)
|
|
{
|
|
// Each extract calls its alternative if not available or fails
|
|
if (self::$isWindows) {
|
|
return $this->extractWithZipArchive($package, $file, $path, false);
|
|
}
|
|
|
|
return $this->extractWithSystemUnzip($package, $file, $path, false, true);
|
|
}
|
|
|
|
/**
|
|
* Give a meaningful error message to the user.
|
|
*
|
|
* @param int $retval
|
|
* @param string $file
|
|
* @return string
|
|
*/
|
|
protected function getErrorMessage($retval, $file)
|
|
{
|
|
switch ($retval) {
|
|
case ZipArchive::ER_EXISTS:
|
|
return sprintf("File '%s' already exists.", $file);
|
|
case ZipArchive::ER_INCONS:
|
|
return sprintf("Zip archive '%s' is inconsistent.", $file);
|
|
case ZipArchive::ER_INVAL:
|
|
return sprintf("Invalid argument (%s)", $file);
|
|
case ZipArchive::ER_MEMORY:
|
|
return sprintf("Malloc failure (%s)", $file);
|
|
case ZipArchive::ER_NOENT:
|
|
return sprintf("No such zip file: '%s'", $file);
|
|
case ZipArchive::ER_NOZIP:
|
|
return sprintf("'%s' is not a zip archive.", $file);
|
|
case ZipArchive::ER_OPEN:
|
|
return sprintf("Can't open zip file: %s", $file);
|
|
case ZipArchive::ER_READ:
|
|
return sprintf("Zip read error (%s)", $file);
|
|
case ZipArchive::ER_SEEK:
|
|
return sprintf("Zip seek error (%s)", $file);
|
|
default:
|
|
return sprintf("'%s' is not a valid zip archive, got error code: %s", $file, $retval);
|
|
}
|
|
}
|
|
}
|