Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
65 lines
2.0 KiB
PHP
65 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Contact\Occupation;
|
|
|
|
use App\Services\BaseService;
|
|
use App\Models\Contact\Contact;
|
|
use Illuminate\Validation\Rule;
|
|
use App\Models\Contact\Occupation;
|
|
|
|
class CreateOccupation extends BaseService
|
|
{
|
|
/**
|
|
* Get the validation rules that apply to the service.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
'account_id' => 'required|integer|exists:accounts,id',
|
|
'contact_id' => 'required|integer|exists:contacts,id',
|
|
'company_id' => 'required|integer|exists:companies,id',
|
|
'title' => 'required|string|max:255',
|
|
'description' => 'nullable|string|max:1000',
|
|
'salary' => 'nullable|integer',
|
|
'salary_unit' => [
|
|
'nullable',
|
|
Rule::in(Occupation::$salaryUnits),
|
|
],
|
|
'currently_works_here' => 'nullable|boolean',
|
|
'start_date' => 'nullable|date_format:Y-m-d',
|
|
'end_date' => 'nullable|date_format:Y-m-d',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Create a occupation.
|
|
*
|
|
* @param array $data
|
|
* @return Occupation
|
|
*/
|
|
public function execute(array $data): Occupation
|
|
{
|
|
$this->validate($data);
|
|
|
|
$contact = Contact::where('account_id', $data['account_id'])
|
|
->findOrFail($data['contact_id']);
|
|
|
|
$contact->throwInactive();
|
|
|
|
return Occupation::create([
|
|
'account_id' => $data['account_id'],
|
|
'contact_id' => $data['contact_id'],
|
|
'company_id' => $data['company_id'],
|
|
'title' => $data['title'],
|
|
'description' => $this->nullOrValue($data, 'description'),
|
|
'salary' => $this->nullOrValue($data, 'salary'),
|
|
'salary_unit' => $this->nullOrValue($data, 'salary_unit'),
|
|
'currently_works_here' => $this->nullOrValue($data, 'currently_works_here'),
|
|
'start_date' => $this->nullOrDate($data, 'start_date'),
|
|
'end_date' => $this->nullOrDate($data, 'end_date'),
|
|
]);
|
|
}
|
|
}
|