Skip to content

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
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 78 additions & 0 deletions app/Commands/PullCommand.php
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(),
Copy link
Member

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:

  • Recipes that we already have locally and haven't changed
  • Recipes that we already have locally and have changed
  • Recipes that we have a local one with the same name but it's not the same

);
}

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);
Copy link
Member

Choose a reason for hiding this comment

The 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']);
});
}
}
3 changes: 2 additions & 1 deletion app/Recipes.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
use App\Recipes\Recipe;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Facades\Storage;

class Recipes
{
public function all(): Collection
{
$customRecipesDir = $_SERVER['HOME'] . '/.mise/Recipes';
$customRecipesDir = Storage::disk('local-recipes')->path('');

if (is_dir($customRecipesDir)) {
$this->loadFilesInPath($customRecipesDir);
Expand Down
44 changes: 44 additions & 0 deletions app/Services/MiseService.php
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');
}
}
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"php": "^8.2.0"
},
"require-dev": {
"illuminate/http": "^11.5",
"laravel-zero/framework": "^11.36.1",
"friendsofphp/php-cs-fixer": "^3.75",
"illuminate/log": "^11.5",
Expand Down
Loading