split into 2 extract methods

main
Guillaume ZITTA 7 years ago
parent 374ada6914
commit 211c874b93

@ -59,17 +59,16 @@ class ZipDownloader extends ArchiveDownloader
return parent::download($package, $path, $output); return parent::download($package, $path, $output);
} }
/* /**
* extract $file to $path * extract $file to $path with "unzip" command
* *
* @param string $file File to extract * @param string $file File to extract
* @param string $path Path where to extract file * @param string $path Path where to extract file
* @return bool True if succeed
*/ */
protected function extract($file, $path) protected function extractWithUnzip($file, $path)
{ {
$processError = null; $processError = null;
if (self::$hasSystemUnzip && !(class_exists('ZipArchive') && Platform::isWindows())) {
$command = 'unzip -qq '.ProcessExecutor::escape($file).' -d '.ProcessExecutor::escape($path); $command = 'unzip -qq '.ProcessExecutor::escape($file).' -d '.ProcessExecutor::escape($path);
if (!Platform::isWindows()) { if (!Platform::isWindows()) {
$command .= ' && chmod -R u+w ' . ProcessExecutor::escape($path); $command .= ' && chmod -R u+w ' . ProcessExecutor::escape($path);
@ -77,7 +76,7 @@ class ZipDownloader extends ArchiveDownloader
try { try {
if (0 === $this->process->execute($command, $ignoredOutput)) { if (0 === $this->process->execute($command, $ignoredOutput)) {
return; return TRUE;
} }
$processError = 'Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput(); $processError = 'Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput();
@ -88,17 +87,45 @@ class ZipDownloader extends ArchiveDownloader
throw new \RuntimeException($processError); throw new \RuntimeException($processError);
} }
/**
* extract $file to $path with ZipArchive
*
* @param string $file File to extract
* @param string $path Path where to extract file
* @return bool True if succeed
*/
protected function extractWithZipArchive($file, $path)
{
$zipArchive = new ZipArchive(); $zipArchive = new ZipArchive();
if (true !== ($retval = $zipArchive->open($file))) { if (true !== ($retval = $zipArchive->open($file))) {
throw new \UnexpectedValueException(rtrim($this->getErrorMessage($retval, $file)."\n".$processError), $retval); throw new \UnexpectedValueException(rtrim($this->getErrorMessage($retval, $file)."\n"), $retval);
} }
if (true !== $zipArchive->extractTo($path)) { if (true !== $zipArchive->extractTo($path)) {
throw new \RuntimeException(rtrim("There was an error extracting the ZIP file, it is either corrupted or using an invalid format.\n".$processError)); throw new \RuntimeException(rtrim("There was an error extracting the ZIP file, it is either corrupted or using an invalid format.\n"));
} }
$zipArchive->close(); $zipArchive->close();
return TRUE;
}
/**
* extract $file to $path
*
* @param string $file File to extract
* @param string $path Path where to extract file
*/
protected function extract($file, $path)
{
if (self::$hasSystemUnzip && !(class_exists('ZipArchive') && Platform::isWindows())) {
if ( $this->extractWithUnzip($file, $path) ) {
return;
}
}
$this->extractWithZipArchive($file, $path);
} }
/** /**

Loading…
Cancel
Save