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

86 lines
2.3 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).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
2018-10-24 05:50:15 +02:00
namespace App\Jobs\User;
use App\DataMapper\CompanySettings;
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;
2019-02-17 12:07:58 +01:00
use App\Models\User;
2020-07-08 14:02:16 +02:00
use App\Utils\Ninja;
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;
protected $company_owner;
2018-10-24 05:50:15 +02:00
/**
* Create a new job instance.
*
2020-10-28 11:10:49 +01:00
* @param array $request
* @param $account
* @param $company
* @param bool $company_owner
2018-10-24 05:50:15 +02:00
*/
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.
*
2020-10-28 11:10:49 +01:00
* @return User|null
2018-10-24 05:50:15 +02:00
*/
public function handle() : ?User
2018-10-24 05:50:15 +02:00
{
$user = new User();
$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);
$user->email = $this->request['email']; //todo need to remove this in production
2019-10-04 13:54:03 +02:00
$user->last_login = now();
$user->ip = request()->ip();
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' => '',
'notifications' => CompanySettings::notificationDefaults(),
//'settings' => DefaultSettings::userSettings(),
'settings' => null,
2018-11-02 12:57:59 +01:00
]);
2021-01-14 10:31:27 +01:00
event(new UserWasCreated($user, $user, $this->company, Ninja::eventVars()));
2018-10-24 05:50:15 +02:00
return $user;
}
}