mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 01:57:30 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			92 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://www.elastic.co/licensing/elastic-license
 | |
|  */
 | |
| 
 | |
| namespace App\Jobs\User;
 | |
| 
 | |
| use App\DataMapper\CompanySettings;
 | |
| use App\Events\User\UserWasCreated;
 | |
| use App\Models\User;
 | |
| use App\Utils\Ninja;
 | |
| use App\Utils\Traits\MakesHash;
 | |
| use Illuminate\Foundation\Bus\Dispatchable;
 | |
| use Illuminate\Support\Str;
 | |
| 
 | |
| class CreateUser
 | |
| {
 | |
|     use MakesHash;
 | |
|     use Dispatchable;
 | |
| 
 | |
|     protected $request;
 | |
| 
 | |
|     protected $account;
 | |
| 
 | |
|     protected $company;
 | |
| 
 | |
|     protected $company_owner;
 | |
| 
 | |
|     /**
 | |
|      * Create a new job instance.
 | |
|      *
 | |
|      * @param array $request
 | |
|      * @param $account
 | |
|      * @param $company
 | |
|      * @param bool $company_owner
 | |
|      */
 | |
|     public function __construct(array $request, $account, $company, $company_owner = false)
 | |
|     {
 | |
|         $this->request = $request;
 | |
|         $this->account = $account;
 | |
|         $this->company = $company;
 | |
|         $this->company_owner = $company_owner;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Execute the job.
 | |
|      *
 | |
|      * @return User|null
 | |
|      */
 | |
|     public function handle(): ?User
 | |
|     {
 | |
|         $user = new User();
 | |
|         $user->account_id = $this->account->id;
 | |
|         $user->password = $this->request['password'] ? bcrypt($this->request['password']) : '';
 | |
|         $user->accepted_terms_version = config('ninja.terms_version');
 | |
|         $user->confirmation_code = $this->createDbHash($this->company->db);
 | |
|         $user->fill($this->request);
 | |
|         $user->email = $this->request['email']; //todo need to remove this in production
 | |
|         $user->last_login = now();
 | |
|         $user->referral_code = Str::lower(Str::random(32));
 | |
|         $user->ip = request()->ip();
 | |
| 
 | |
|         if (Ninja::isSelfHost()) {
 | |
|             $user->email_verified_at = now();
 | |
|         }
 | |
| 
 | |
|         $user->save();
 | |
| 
 | |
|         $user->companies()->attach($this->company->id, [
 | |
|             'account_id' => $this->account->id,
 | |
|             'is_owner' => $this->company_owner,
 | |
|             'is_admin' => 1,
 | |
|             'is_locked' => 0,
 | |
|             'permissions' => '',
 | |
|             'notifications' => CompanySettings::notificationAdminDefaults(),
 | |
|             'settings' => null,
 | |
|         ]);
 | |
| 
 | |
|         if (! Ninja::isSelfHost()) {
 | |
|             event(new UserWasCreated($user, $user, $this->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null), request()->hasHeader('X-REACT') ?? false));
 | |
|         }
 | |
| 
 | |
|         return $user;
 | |
|     }
 | |
| }
 |