2019-11-16 10:21:14 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Jobs\Setting;
|
|
|
|
|
|
|
|
use App\Abstracts\Job;
|
2022-12-07 11:43:38 +03:00
|
|
|
use App\Events\Setting\CategoryUpdated;
|
|
|
|
use App\Events\Setting\CategoryUpdating;
|
2021-09-06 11:53:57 +03:00
|
|
|
use App\Interfaces\Job\ShouldUpdate;
|
2019-11-16 10:21:14 +03:00
|
|
|
use App\Models\Setting\Category;
|
|
|
|
|
2021-09-06 11:53:57 +03:00
|
|
|
class UpdateCategory extends Job implements ShouldUpdate
|
2019-11-16 10:21:14 +03:00
|
|
|
{
|
2021-09-06 11:53:57 +03:00
|
|
|
public function handle(): Category
|
2019-11-16 10:21:14 +03:00
|
|
|
{
|
|
|
|
$this->authorize();
|
|
|
|
|
2022-12-07 11:43:38 +03:00
|
|
|
event(new CategoryUpdating($this->model, $this->request));
|
|
|
|
|
2020-06-26 13:40:19 +03:00
|
|
|
\DB::transaction(function () {
|
2021-09-06 11:53:57 +03:00
|
|
|
$this->model->update($this->request->all());
|
2020-06-26 13:40:19 +03:00
|
|
|
});
|
2019-11-16 10:21:14 +03:00
|
|
|
|
2022-12-07 11:43:38 +03:00
|
|
|
event(new CategoryUpdated($this->model, $this->request));
|
|
|
|
|
2021-09-06 11:53:57 +03:00
|
|
|
return $this->model;
|
2019-11-16 10:21:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if this action is applicable.
|
|
|
|
*/
|
2021-09-06 11:53:57 +03:00
|
|
|
public function authorize(): void
|
2019-11-16 10:21:14 +03:00
|
|
|
{
|
2021-09-06 11:53:57 +03:00
|
|
|
if (! $relationships = $this->getRelationships()) {
|
2019-11-16 10:21:14 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-09-06 11:53:57 +03:00
|
|
|
if ($this->request->has('type') && ($this->request->get('type') != $this->model->type)) {
|
2019-11-16 10:21:14 +03:00
|
|
|
$message = trans('messages.error.change_type', ['text' => implode(', ', $relationships)]);
|
|
|
|
|
|
|
|
throw new \Exception($message);
|
|
|
|
}
|
|
|
|
|
2021-09-06 11:53:57 +03:00
|
|
|
if (! $this->request->get('enabled')) {
|
|
|
|
$message = trans('messages.warning.disabled', ['name' => $this->model->name, 'text' => implode(', ', $relationships)]);
|
2019-11-16 10:21:14 +03:00
|
|
|
|
|
|
|
throw new \Exception($message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-06 11:53:57 +03:00
|
|
|
public function getRelationships(): array
|
2019-11-16 10:21:14 +03:00
|
|
|
{
|
|
|
|
$rels = [
|
|
|
|
'items' => 'items',
|
|
|
|
'invoices' => 'invoices',
|
|
|
|
'bills' => 'bills',
|
|
|
|
'transactions' => 'transactions',
|
|
|
|
];
|
|
|
|
|
2021-09-06 11:53:57 +03:00
|
|
|
return $this->countRelationships($this->model, $rels);
|
2019-11-16 10:21:14 +03:00
|
|
|
}
|
|
|
|
}
|