1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Jobs/User/CreateUser.php

82 lines
2.0 KiB
PHP
Raw Normal View History

2018-10-24 05:50:15 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
2018-10-24 05:50:15 +02:00
namespace App\Jobs\User;
2019-02-17 12:07:58 +01:00
use App\DataMapper\DefaultSettings;
2019-04-19 11:09:55 +02:00
use App\Events\User\UserWasCreated;
use App\Models\CompanyUser;
2019-02-17 12:07:58 +01:00
use App\Models\User;
use App\Utils\Traits\MakesHash;
2018-10-24 05:50:15 +02:00
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Http\Request;
class CreateUser
{
use MakesHash;
2018-10-24 05:50:15 +02:00
use Dispatchable;
protected $request;
protected $account;
protected $company;
2018-10-24 05:50:15 +02:00
/**
* Create a new job instance.
*
* @return void
*/
2019-04-18 13:57:22 +02:00
public function __construct(array $request, $account, $company, $company_owner = false)
2018-10-24 05:50:15 +02:00
{
$this->request = $request;
$this->account = $account;
$this->company = $company;
2019-04-18 13:57:22 +02:00
$this->company_owner = $company_owner;
2018-10-24 05:50:15 +02:00
}
/**
* Execute the job.
*
* @return void
*/
public function handle() : ?User
2018-10-24 05:50:15 +02:00
{
2019-04-19 03:59:07 +02:00
$x = mt_rand(1,10000);//todo
2019-04-18 07:01:40 +02:00
2019-04-19 03:59:07 +02:00
$email = 'turbo124+'. $x .'@gmail.com'; //todo
2018-10-24 05:50:15 +02:00
$user = new User();
2019-04-26 12:51:02 +02:00
// $user->account_id = $this->account->id;
$user->password = bcrypt($this->request['password']);
2018-10-24 05:50:15 +02:00
$user->accepted_terms_version = config('ninja.terms_version');
$user->confirmation_code = $this->createDbHash(config('database.default'));
$user->fill($this->request);
2019-04-18 07:01:40 +02:00
$user->email = $email;//todo need to remove this in production
2018-10-24 05:50:15 +02:00
$user->save();
2018-11-02 12:57:59 +01:00
$user->companies()->attach($this->company->id, [
'account_id' => $this->account->id,
2019-04-18 13:57:22 +02:00
'is_owner' => $this->company_owner,
2018-11-02 12:57:59 +01:00
'is_admin' => 1,
'is_locked' => 0,
'permissions' => json_encode([]),
2019-02-17 12:07:58 +01:00
'settings' => json_encode(DefaultSettings::userSettings()),
2018-11-02 12:57:59 +01:00
]);
2019-04-19 11:09:55 +02:00
event(new UserWasCreated($user,$this->company));
2018-10-24 05:50:15 +02:00
return $user;
}
}