akaunting/app/Jobs/Common/UpdateContact.php

110 lines
2.7 KiB
PHP
Raw Normal View History

2019-11-16 10:21:14 +03:00
<?php
namespace App\Jobs\Common;
use App\Abstracts\Job;
use App\Models\Auth\Role;
2019-12-23 12:46:00 +03:00
use App\Models\Auth\User;
2019-11-16 10:21:14 +03:00
use App\Models\Common\Contact;
use Illuminate\Support\Str;
2019-11-16 10:21:14 +03:00
class UpdateContact extends Job
{
protected $contact;
protected $request;
/**
* Create a new job instance.
*
* @param $contact
* @param $request
*/
public function __construct($contact, $request)
{
$this->contact = $contact;
$this->request = $this->getRequestInstance($request);
}
/**
* Execute the job.
*
* @return Contact
*/
public function handle()
{
$this->authorize();
2020-06-26 13:40:19 +03:00
\DB::transaction(function () {
if ($this->request->get('create_user', 'false') === 'true') {
$this->createUser();
2021-04-29 11:43:52 +03:00
} elseif ($this->contact->user) {
$this->contact->user->update($this->request->all());
2020-06-26 13:40:19 +03:00
}
2019-11-16 10:21:14 +03:00
// Upload logo
if ($this->request->file('logo')) {
$media = $this->getMedia($this->request->file('logo'), Str::plural($this->contact->type));
2021-04-29 11:43:52 +03:00
$this->contact->attachMedia($media, 'logo');
}
2020-06-26 13:40:19 +03:00
$this->contact->update($this->request->all());
});
2019-11-16 10:21:14 +03:00
return $this->contact;
}
/**
* Determine if this action is applicable.
*
* @return void
*/
public function authorize()
{
if (($this->request['enabled'] == 0) && ($relationships = $this->getRelationships())) {
$message = trans('messages.warning.disabled', ['name' => $this->contact->name, 'text' => implode(', ', $relationships)]);
throw new \Exception($message);
}
}
public function createUser()
{
// Check if user exist
if ($user = User::where('email', $this->request['email'])->first()) {
$message = trans('messages.error.customer', ['name' => $user->name]);
throw new \Exception($message);
}
$data = $this->request->all();
$data['locale'] = setting('default.locale', 'en-GB');
$customer_role = Role::all()->filter(function ($role) {
return $role->hasPermission('read-client-portal');
})->first();
2019-11-16 10:21:14 +03:00
$user = User::create($data);
$user->roles()->attach($customer_role);
2020-12-25 12:08:15 +03:00
$user->companies()->attach($data['company_id']);
2019-11-16 10:21:14 +03:00
$this->request['user_id'] = $user->id;
}
public function getRelationships()
{
$rels = [
'transactions' => 'transactions',
];
if ($this->contact->type == 'customer') {
$rels['invoices'] = 'invoices';
} else {
$rels['bills'] = 'bills';
}
return $this->countRelationships($this->contact, $rels);
}
}