2022-05-19 00:32:40 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2022-05-19 00:32:40 +02:00
|
|
|
*
|
2022-05-26 04:16:19 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2022-05-19 00:32:40 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
use App\Services\Scheduler\SchedulerService;
|
2022-05-25 23:25:54 +02:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2022-05-19 00:32:40 +02:00
|
|
|
|
|
|
|
/**
|
2022-06-21 11:57:17 +02:00
|
|
|
* @property bool paused
|
|
|
|
* @property bool is_deleted
|
2022-05-19 00:32:40 +02:00
|
|
|
* @property \Carbon\Carbon|mixed start_from
|
2023-01-13 02:43:38 +01:00
|
|
|
* @property int frequency_id
|
|
|
|
* @property \Carbon\Carbon|mixed next_run
|
2022-06-21 11:57:17 +02:00
|
|
|
* @property int company_id
|
|
|
|
* @property int updated_at
|
|
|
|
* @property int created_at
|
|
|
|
* @property int deleted_at
|
2022-05-30 20:45:38 +02:00
|
|
|
* @property string action_name
|
|
|
|
* @property mixed company
|
|
|
|
* @property array parameters
|
|
|
|
* @property string action_class
|
2022-05-19 00:32:40 +02:00
|
|
|
*/
|
2022-05-25 23:25:54 +02:00
|
|
|
class Scheduler extends BaseModel
|
2022-05-19 00:32:40 +02:00
|
|
|
{
|
2023-01-13 02:43:38 +01:00
|
|
|
use SoftDeletes;
|
2022-05-19 00:32:40 +02:00
|
|
|
|
|
|
|
protected $fillable = [
|
2023-01-13 10:16:17 +01:00
|
|
|
'name',
|
|
|
|
'frequency_id',
|
|
|
|
'next_run',
|
2023-01-17 09:42:34 +01:00
|
|
|
'next_run_client',
|
2023-01-13 10:16:17 +01:00
|
|
|
'template',
|
|
|
|
'is_paused',
|
2022-05-30 20:45:38 +02:00
|
|
|
'parameters',
|
2023-02-16 23:34:50 +01:00
|
|
|
'remaining_cycles',
|
2022-05-19 00:32:40 +02:00
|
|
|
];
|
2022-05-27 05:10:32 +02:00
|
|
|
|
2022-05-25 23:25:54 +02:00
|
|
|
protected $casts = [
|
2023-01-13 02:43:38 +01:00
|
|
|
'next_run' => 'datetime',
|
2023-01-17 09:42:34 +01:00
|
|
|
'next_run_client' => 'datetime',
|
2022-05-27 02:50:03 +02:00
|
|
|
'created_at' => 'timestamp',
|
|
|
|
'updated_at' => 'timestamp',
|
|
|
|
'deleted_at' => 'timestamp',
|
2023-01-13 10:16:17 +01:00
|
|
|
'is_paused' => 'boolean',
|
2022-05-26 04:16:19 +02:00
|
|
|
'is_deleted' => 'boolean',
|
2022-05-30 20:45:38 +02:00
|
|
|
'parameters' => 'array',
|
2022-05-25 23:25:54 +02:00
|
|
|
];
|
2022-05-30 20:45:38 +02:00
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
protected $appends = [
|
|
|
|
'hashed_id',
|
|
|
|
];
|
2022-05-23 01:08:08 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Service entry points.
|
|
|
|
*/
|
2023-01-13 02:43:38 +01:00
|
|
|
public function service(): SchedulerService
|
2022-05-23 01:08:08 +02:00
|
|
|
{
|
2023-01-13 02:43:38 +01:00
|
|
|
return new SchedulerService($this);
|
2022-05-23 01:08:08 +02:00
|
|
|
}
|
|
|
|
|
2023-01-17 12:40:40 +01:00
|
|
|
public function company()
|
2022-05-25 23:25:54 +02:00
|
|
|
{
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
}
|
2023-02-16 23:34:50 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* remainingCycles
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function remainingCycles() : int
|
|
|
|
{
|
|
|
|
if ($this->remaining_cycles == 0) {
|
|
|
|
return 0;
|
|
|
|
} elseif ($this->remaining_cycles == -1) {
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
return $this->remaining_cycles - 1;
|
|
|
|
}
|
|
|
|
}
|
2022-05-19 00:32:40 +02:00
|
|
|
}
|