-
Notifications
You must be signed in to change notification settings - Fork 3
Adds pull command #21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
gcavanunez
wants to merge
4
commits into
tighten:main
Choose a base branch
from
gcavanunez:gc/pull-recipe
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<?php | ||
|
||
namespace App\Commands; | ||
|
||
use App\Services\MiseService; | ||
use Illuminate\Support\Facades\Process; | ||
use Illuminate\Support\Facades\Storage; | ||
use LaravelZero\Framework\Commands\Command; | ||
|
||
use function Laravel\Prompts\confirm; | ||
use function Laravel\Prompts\error; | ||
use function Laravel\Prompts\info; | ||
use function Laravel\Prompts\multiselect; | ||
use function Laravel\Prompts\note; | ||
|
||
class PullCommand extends Command | ||
{ | ||
protected $signature = | ||
'pull {recipe?*}' . | ||
'{--no-process : prevent processes from executing}'; | ||
|
||
protected $description = 'Pull a recipe from mise.dev'; | ||
|
||
public function handle(): void | ||
{ | ||
if ($this->option('no-process')) { | ||
info('Dry run enabled'); | ||
Process::fake(); | ||
} | ||
|
||
$remoteRecipes = $this->selectRemoteRecipes(); | ||
|
||
foreach ($remoteRecipes as $recipe) { | ||
$this->install($recipe); | ||
} | ||
|
||
if (confirm('Do you want to run the recipe now?')) { | ||
$this->call('apply', [ | ||
'recipe' => $remoteRecipes, | ||
'--no-process' => $this->option('no-process'), | ||
]); | ||
} | ||
} | ||
|
||
protected function selectRemoteRecipes(): array | ||
{ | ||
$selectedRemoteRecipes = $this->argument('recipe'); | ||
|
||
if (empty($selectedRemoteRecipes)) { | ||
return multiselect( | ||
label: 'Which recipe(s) should I pull?', | ||
options: app(MiseService::class)->allForSelect(), | ||
); | ||
} | ||
|
||
if (count($missingRecipes = array_diff($selectedRemoteRecipes, app(MiseService::class)->keys())) > 0) { | ||
error('The following keys were not found and will be skipped'); | ||
note(collect($missingRecipes)->map(fn ($key) => " {$key}")->implode("\n")); | ||
} | ||
|
||
return app(MiseService::class)->keys()->filter( | ||
fn (string $key) => in_array($key, $selectedRemoteRecipes) | ||
)->toArray(); | ||
} | ||
|
||
private function install($key) | ||
{ | ||
info('Installing recipe: ' . $key); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm never totally sure about best practices here, but is there any value in us shipping a hash of the file contents? I know people do that, but I'm trying to figure out if there's any way that helps us in this context. |
||
|
||
$data = app(MiseService::class)->findByKey($key); | ||
|
||
Storage::drive('local-recipes')->put($data['class'] . '.php', $data['file']); | ||
|
||
collect($data['steps'])->each(function ($step) { | ||
Storage::drive('local-recipes')->put($step['class'] . '.php', $step['file']); | ||
}); | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
|
||
namespace App\Services; | ||
|
||
use Illuminate\Support\Collection; | ||
use Illuminate\Support\Facades\Http; | ||
|
||
class MiseService | ||
{ | ||
protected string $url; | ||
|
||
public function __construct() | ||
{ | ||
$this->url = config('app.mise-url'); | ||
} | ||
|
||
public function all(): Collection | ||
{ | ||
$data = Http::get($this->url . '/api/recipes') | ||
->throw() | ||
->json('data'); | ||
|
||
return collect($data); | ||
} | ||
|
||
public function findByKey(string $recipe): Collection | ||
{ | ||
$data = Http::get($this->url . '/api/recipes/' . $recipe) | ||
->throw() | ||
->json('data'); | ||
|
||
return collect($data); | ||
} | ||
|
||
public function allForSelect(): Collection | ||
{ | ||
return $this->all()->pluck('name', 'key'); | ||
} | ||
|
||
public function keys(): Collection | ||
{ | ||
return $this->all()->pluck('key'); | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, so there are a few things I have questions about.
How do we handle: