72 lines
2.2 KiB
PHP
72 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire\Project\Shared\ScheduledTask;
|
|
|
|
use App\Models\ScheduledTask;
|
|
use Illuminate\Support\Collection;
|
|
use Livewire\Component;
|
|
|
|
class All extends Component
|
|
{
|
|
public $resource;
|
|
|
|
public Collection $containerNames;
|
|
|
|
public ?string $variables = null;
|
|
|
|
public array $parameters;
|
|
|
|
protected $listeners = ['refreshTasks', 'saveScheduledTask' => 'submit'];
|
|
|
|
public function mount()
|
|
{
|
|
$this->parameters = get_route_parameters();
|
|
if ($this->resource->type() == 'service') {
|
|
$this->containerNames = $this->resource->applications()->pluck('name');
|
|
$this->containerNames = $this->containerNames->merge($this->resource->databases()->pluck('name'));
|
|
} elseif ($this->resource->type() == 'application') {
|
|
if ($this->resource->build_pack === 'dockercompose') {
|
|
$parsed = $this->resource->parseCompose();
|
|
$containers = collect(data_get($parsed, 'services'))->keys();
|
|
$this->containerNames = $containers;
|
|
} else {
|
|
$this->containerNames = collect([]);
|
|
}
|
|
}
|
|
}
|
|
|
|
public function refreshTasks()
|
|
{
|
|
$this->resource->refresh();
|
|
}
|
|
|
|
public function submit($data)
|
|
{
|
|
try {
|
|
$task = new ScheduledTask();
|
|
$task->name = $data['name'];
|
|
$task->command = $data['command'];
|
|
$task->frequency = $data['frequency'];
|
|
$task->container = $data['container'];
|
|
$task->team_id = currentTeam()->id;
|
|
|
|
switch ($this->resource->type()) {
|
|
case 'application':
|
|
$task->application_id = $this->resource->id;
|
|
break;
|
|
case 'standalone-postgresql':
|
|
$task->standalone_postgresql_id = $this->resource->id;
|
|
break;
|
|
case 'service':
|
|
$task->service_id = $this->resource->id;
|
|
break;
|
|
}
|
|
$task->save();
|
|
$this->refreshTasks();
|
|
$this->dispatch('success', 'Scheduled task added.');
|
|
} catch (\Throwable $e) {
|
|
return handleError($e, $this);
|
|
}
|
|
}
|
|
}
|