github.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php namespace Laravel\CLI\Tasks\Bundle\Providers;
  2. use Laravel\Request;
  3. class Github extends Provider {
  4. /**
  5. * Install the given bundle into the application.
  6. *
  7. * @param string $bundle
  8. * @return void
  9. */
  10. public function install($bundle)
  11. {
  12. $method = (Request::server('cli.zip')) ? 'zipball' : 'submodule';
  13. $this->$method($bundle);
  14. }
  15. /**
  16. * Install a Github hosted bundle from Zip.
  17. *
  18. * @param string $bundle
  19. * @return void
  20. */
  21. protected function zipball($bundle)
  22. {
  23. $zip = "https://github.com/{$bundle['location']}/zipball/master";
  24. parent::zipball($zip, true);
  25. }
  26. /**
  27. * Install a Github hosted bundle using submodules.
  28. *
  29. * @param string $bundle
  30. * @return void
  31. */
  32. protected function submodule($bundle)
  33. {
  34. $repository = "git@github.com:{$bundle['location']}.git";
  35. $this->directory($bundle);
  36. // We need to just extract the basename of the bundle path when
  37. // adding the submodule. Of course, we can't add a submodule to
  38. // a location outside of the Git repository, so we don't need
  39. // the full bundle path.
  40. $root = basename(path('bundle')).'/';
  41. passthru('git submodule add '.$repository.' '.$root.$this->path($bundle));
  42. passthru('git submodule update');
  43. }
  44. }