provider.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php namespace Laravel\CLI\Tasks\Bundle\Providers;
  2. use Laravel\File;
  3. abstract class Provider {
  4. /**
  5. * Install the given bundle into the application.
  6. *
  7. * @param string $bundle
  8. * @param string $path
  9. * @return void
  10. */
  11. abstract public function install($bundle, $path);
  12. /**
  13. * Install a bundle from by downloading a Zip.
  14. *
  15. * @param string $url
  16. * @param array $bundle
  17. * @param string $path
  18. * @return void
  19. */
  20. protected function zipball($url, $bundle, $path)
  21. {
  22. $work = path('storage').'work/';
  23. // When installing a bundle from a Zip archive, we'll first clone
  24. // down the bundle zip into the bundles "working" directory so
  25. // we have a spot to do all of our bundle extraction work.
  26. $target = $work.'laravel-bundle.zip';
  27. File::put($target, $this->download($url));
  28. $zip = new \ZipArchive;
  29. $zip->open($target);
  30. // Once we have the Zip archive, we can open it and extract it
  31. // into the working directory. By convention, we expect the
  32. // archive to contain one root directory with the bundle.
  33. mkdir($work.'zip');
  34. $zip->extractTo($work.'zip');
  35. $latest = File::latest($work.'zip')->getRealPath();
  36. @chmod($latest, 0777);
  37. // Once we have the latest modified directory, we should be
  38. // able to move its contents over into the bundles folder
  39. // so the bundle will be usable by the developer.
  40. File::mvdir($latest, $path);
  41. File::rmdir($work.'zip');
  42. $zip->close();
  43. @unlink($target);
  44. }
  45. /**
  46. * Download a remote zip archive from a URL.
  47. *
  48. * @param string $url
  49. * @return string
  50. */
  51. protected function download($url)
  52. {
  53. $remote = file_get_contents($url);
  54. // If we were unable to download the zip archive correctly
  55. // we'll bomb out since we don't want to extract the last
  56. // zip that was put in the storage directory.
  57. if ($remote === false)
  58. {
  59. throw new \Exception("Error downloading the requested bundle.");
  60. }
  61. return $remote;
  62. }
  63. }