1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/app/Jobs/User/CreateUser.php
David Bomba 849f6e5439
Fixes for Tests, implement MakeHash trait (#2469)
* Fixes for Feature and browser tests

* Change .env.example variable names, implement hash encoding of db numbers for URIs
2018-10-26 15:53:29 +11:00

68 lines
1.4 KiB
PHP

<?php
namespace App\Jobs\User;
use App\Models\User;
use App\Models\UserCompany;
use App\Utils\Traits\MakesHash;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Http\Request;
use App\Models\Account;
use Illuminate\Support\Facades\Hash;
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 = 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();
UserCompany::create([
'user_id' => $user->id,
'account_id' => $this->account->id,
'company_id' => $this->company->id,
'is_admin' => true,
'is_owner' => true,
'permissions' => '',
]);
return $user;
}
}