1
0
Fork 0

Fixed line endings

pull/1/head
Jordi Boggiano 2011-05-06 19:55:49 +02:00
parent e43060eb72
commit ea71abb3fd
1 changed files with 63 additions and 63 deletions

View File

@ -1,64 +1,64 @@
<?php <?php
/* /*
* This file is part of Composer. * This file is part of Composer.
* *
* (c) Nils Adermann <naderman@naderman.de> * (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be> * Jordi Boggiano <j.boggiano@seld.be>
* *
* For the full copyright and license information, please view the LICENSE * For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code. * file that was distributed with this source code.
*/ */
namespace Composer\Downloader; namespace Composer\Downloader;
use Composer\Package\PackageInterface; use Composer\Package\PackageInterface;
/** /**
* @author Jordi Boggiano <j.boggiano@seld.be> * @author Jordi Boggiano <j.boggiano@seld.be>
*/ */
class ZipDownloader class ZipDownloader
{ {
public function download(PackageInterface $package, $path) public function download(PackageInterface $package, $path)
{ {
if (!class_exists('ZipArchive')) { if (!class_exists('ZipArchive')) {
throw new \UnexpectedValueException('You need the zip extension enabled to use the ZipDownloader'); throw new \UnexpectedValueException('You need the zip extension enabled to use the ZipDownloader');
} }
$tmpName = tempnam(sys_get_temp_dir(), ''); $tmpName = tempnam(sys_get_temp_dir(), '');
$this->downloadFile($package->getSourceUrl(), $tmpName); $this->downloadFile($package->getSourceUrl(), $tmpName);
if (!file_exists($tmpName)) { if (!file_exists($tmpName)) {
throw new \UnexpectedValueException($path.' could not be saved into '.$tmpName.', make sure the' throw new \UnexpectedValueException($path.' could not be saved into '.$tmpName.', make sure the'
.' directory is writable and you have internet connectivity.'); .' directory is writable and you have internet connectivity.');
} }
$zipArchive = new ZipArchive(); $zipArchive = new ZipArchive();
if (true === ($retval = $zipArchive->open($tmpName))) { if (true === ($retval = $zipArchive->open($tmpName))) {
$zipArchive->extractTo($path.'/'.$package->getName()); $zipArchive->extractTo($path.'/'.$package->getName());
$zipArchive->close(); $zipArchive->close();
} else { } else {
throw new \UnexpectedValueException($tmpName.' is not a valid zip archive, got error code '.$retval); throw new \UnexpectedValueException($tmpName.' is not a valid zip archive, got error code '.$retval);
} }
} }
protected function downloadFile ($url, $path) protected function downloadFile ($url, $path)
{ {
$file = fopen($url, "rb"); $file = fopen($url, "rb");
if ($file) { if ($file) {
$newf = fopen($path, "wb"); $newf = fopen($path, "wb");
if ($newf) { if ($newf) {
while (!feof($file)) { while (!feof($file)) {
fwrite($newf, fread($file, 1024 * 8), 1024 * 8); fwrite($newf, fread($file, 1024 * 8), 1024 * 8);
} }
} }
} }
if ($file) { if ($file) {
fclose($file); fclose($file);
} }
if ($newf) { if ($newf) {
fclose($newf); fclose($newf);
} }
} }
} }