1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Jobs/User/CreateUser.php
David Bomba 4abe61f493
Fix for tests, set return types (#2524)
* View composers

* Saving client and contacts

*  saving client and contacts

* update client job

* unique emails

* fix for tests
2018-11-27 18:24:26 +11:00

64 lines
1.4 KiB
PHP

<?php
namespace App\Jobs\User;
use App\Events\User\UserCreated;
use App\Models\User;
use App\Models\CompanyUser;
use App\Utils\Traits\MakesHash;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Http\Request;
class CreateUser
{
use MakesHash;
use Dispatchable;
protected $request;
protected $account;
protected $company;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct(Request $request, $account, $company)
{
$this->request = $request;
$this->account = $account;
$this->company = $company;
}
/**
* Execute the job.
*
* @return void
*/
public function handle() : ?User
{
$user = new User();
$user->account_id = $this->account->id;
$user->password = bcrypt($this->request->input('password'));
$user->accepted_terms_version = config('ninja.terms_version');
$user->confirmation_code = $this->createDbHash(config('database.default'));
$user->db = config('database.default');
$user->fill($this->request->all());
$user->save();
$user->companies()->attach($this->company->id, [
'account_id' => $this->account->id,
'is_owner' => 1,
'is_admin' => 1,
]);
event(new UserCreated($user));
return $user;
}
}