Fallback to zlib extension to unpack gzip on non Windows systems

main
Chris Smith 9 years ago
parent 8debdf8764
commit e4877473cf

@ -47,18 +47,19 @@ class GzipDownloader extends ArchiveDownloader
return; return;
} }
if (extension_loaded('zlib')) {
// Fallback to using the PHP extension.
$this->extractUsingExt($file, $targetFilepath);
return;
}
$processError = 'Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput(); $processError = 'Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput();
throw new \RuntimeException($processError); throw new \RuntimeException($processError);
} }
// Windows version of PHP has built-in support of gzip functions // Windows version of PHP has built-in support of gzip functions
$archiveFile = gzopen($file, 'rb'); $this->extractUsingExt($file, $targetFilepath);
$targetFile = fopen($targetFilepath, 'wb');
while ($string = gzread($archiveFile, 4096)) {
fwrite($targetFile, $string, strlen($string));
}
gzclose($archiveFile);
fclose($targetFile);
} }
/** /**
@ -68,4 +69,15 @@ class GzipDownloader extends ArchiveDownloader
{ {
return $path.'/'.pathinfo(parse_url($package->getDistUrl(), PHP_URL_PATH), PATHINFO_BASENAME); return $path.'/'.pathinfo(parse_url($package->getDistUrl(), PHP_URL_PATH), PATHINFO_BASENAME);
} }
private function extractUsingExt($file, $targetFilepath)
{
$archiveFile = gzopen($file, 'rb');
$targetFile = fopen($targetFilepath, 'wb');
while ($string = gzread($archiveFile, 4096)) {
fwrite($targetFile, $string, strlen($string));
}
gzclose($archiveFile);
fclose($targetFile);
}
} }

Loading…
Cancel
Save