mirror of
https://github.com/laravel/valet.git
synced 2026-02-06 16:50:09 +01:00
69 lines
1.6 KiB
PHP
69 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Valet;
|
|
|
|
class Valet
|
|
{
|
|
var $cli, $files;
|
|
|
|
var $valetBin = '/usr/local/bin/valet';
|
|
|
|
/**
|
|
* Create a new Valet instance.
|
|
*
|
|
* @param CommandLine $cli
|
|
* @param Filesystem $files
|
|
*/
|
|
function __construct(CommandLine $cli, Filesystem $files)
|
|
{
|
|
$this->cli = $cli;
|
|
$this->files = $files;
|
|
}
|
|
|
|
/**
|
|
* Symlink the Valet Bash script into the user's local bin.
|
|
*
|
|
* @return void
|
|
*/
|
|
function symlinkToUsersBin()
|
|
{
|
|
$this->cli->quietlyAsUser('rm '.$this->valetBin);
|
|
|
|
$this->cli->runAsUser('ln -s '.realpath(__DIR__.'/../../valet').' '.$this->valetBin);
|
|
}
|
|
|
|
/**
|
|
* Get the paths to all of the Valet extensions.
|
|
*
|
|
* @return array
|
|
*/
|
|
function extensions()
|
|
{
|
|
if (! $this->files->isDir(VALET_HOME_PATH.'/Extensions')) {
|
|
return [];
|
|
}
|
|
|
|
return collect($this->files->scandir(VALET_HOME_PATH.'/Extensions'))
|
|
->reject(function ($file) {
|
|
return is_dir($file);
|
|
})
|
|
->map(function ($file) {
|
|
return VALET_HOME_PATH.'/Extensions/'.$file;
|
|
})
|
|
->values()->all();
|
|
}
|
|
|
|
/**
|
|
* Determine if this is the latest version of Valet.
|
|
*
|
|
* @param string $currentVersion
|
|
* @return bool
|
|
*/
|
|
function onLatestVersion($currentVersion)
|
|
{
|
|
$response = \Httpful\Request::get('https://api.github.com/repos/laravel/valet/releases/latest')->send();
|
|
|
|
return version_compare($currentVersion, trim($response->body->tag_name, 'v'), '>=');
|
|
}
|
|
}
|