mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
0606973035
* Fix for CORs error where file download were being prevented by headers * Fixes for CORs and File downloads * give contextual error messages for invalid route actions * Clean up LoginController for OAuth Testing * Quote Actions * Invoice and Quote Actions * Fixes for Token Name * Change test data seeder to create separate small,medium,large companies
102 lines
2.4 KiB
PHP
102 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* 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
|
|
*/
|
|
|
|
namespace App\Jobs\Account;
|
|
|
|
use App\Events\Account\AccountCreated;
|
|
use App\Jobs\Company\CreateCompany;
|
|
use App\Jobs\Company\CreateCompanyToken;
|
|
use App\Jobs\User\CreateUser;
|
|
use App\Models\Account;
|
|
use App\Models\User;
|
|
use App\Notifications\NewAccountCreated;
|
|
use App\Utils\Traits\UserSessionAttributes;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Log;
|
|
use Illuminate\Support\Facades\Notification;
|
|
|
|
class CreateAccount
|
|
{
|
|
|
|
use Dispatchable;
|
|
|
|
protected $request;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
|
|
public function __construct(array $request)
|
|
{
|
|
|
|
$this->request = $request;
|
|
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle() : ?Account
|
|
{
|
|
/*
|
|
* Create account
|
|
*/
|
|
$account = Account::create($this->request);
|
|
/*
|
|
* Create company
|
|
*/
|
|
$company = CreateCompany::dispatchNow($this->request, $account);
|
|
$company->load('account');
|
|
/*
|
|
* Set default company
|
|
*/
|
|
$account->default_company_id = $company->id;
|
|
$account->save();
|
|
/*
|
|
* Create user
|
|
*/
|
|
$user = CreateUser::dispatchNow($this->request, $account, $company, true); //make user company_owner
|
|
/*
|
|
* Required dependencies
|
|
*/
|
|
if($user)
|
|
auth()->login($user, false);
|
|
|
|
$user->setCompany($company);
|
|
|
|
/*
|
|
* Create token
|
|
*/
|
|
$user_agent = isset($this->request['token_name']) ? $this->request['token_name'] : request()->server('HTTP_USER_AGENT');
|
|
|
|
$company_token = CreateCompanyToken::dispatchNow($company, $user, $user_agent);
|
|
|
|
/*
|
|
* Fire related events
|
|
*/
|
|
if($user)
|
|
event(new AccountCreated($user));
|
|
|
|
$user->fresh();
|
|
|
|
Notification::route('slack', config('ninja.notification.slack'))
|
|
->notify(new NewAccountCreated($user, $company));
|
|
|
|
return $account;
|
|
}
|
|
}
|