60 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Livewire\Project\Shared\ScheduledTask;
 | 
						|
 | 
						|
use Livewire\Component;
 | 
						|
 | 
						|
class Add extends Component
 | 
						|
{
 | 
						|
    public $parameters;
 | 
						|
    public string $name;
 | 
						|
    public string $command;
 | 
						|
    public string $frequency;
 | 
						|
    public ?string $container = '';
 | 
						|
 | 
						|
    protected $listeners = ['clearScheduledTask' => 'clear'];
 | 
						|
    protected $rules = [
 | 
						|
        'name' => 'required|string',
 | 
						|
        'command' => 'required|string',
 | 
						|
        'frequency' => 'required|string',
 | 
						|
        'container' => 'nullable|string',
 | 
						|
    ];
 | 
						|
    protected $validationAttributes = [
 | 
						|
        'name' => 'name',
 | 
						|
        'command' => 'command',
 | 
						|
        'frequency' => 'frequency',
 | 
						|
        'container' => 'container',
 | 
						|
    ];
 | 
						|
 | 
						|
    public function mount()
 | 
						|
    {
 | 
						|
        $this->parameters = get_route_parameters();
 | 
						|
    }
 | 
						|
 | 
						|
    public function submit()
 | 
						|
    {
 | 
						|
        error_log("*** IN SUBMIT");
 | 
						|
        $this->validate();
 | 
						|
        $isValid = validate_cron_expression($this->frequency);
 | 
						|
        if (!$isValid) {
 | 
						|
            $this->dispatch('error', 'Invalid Cron / Human expression.');
 | 
						|
            return;
 | 
						|
        }
 | 
						|
        $this->dispatch('saveScheduledTask', [
 | 
						|
            'name' => $this->name,
 | 
						|
            'command' => $this->command,
 | 
						|
            'frequency' => $this->frequency,
 | 
						|
            'container' => $this->container,
 | 
						|
        ]);
 | 
						|
        $this->clear();
 | 
						|
    }
 | 
						|
 | 
						|
    public function clear()
 | 
						|
    {
 | 
						|
        $this->name = '';
 | 
						|
        $this->command = '';
 | 
						|
        $this->frequency = '';
 | 
						|
        $this->container = '';
 | 
						|
    }
 | 
						|
}
 |