2019-04-27 19:20:03 +10:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2020-01-07 11:13:47 +11:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
|
*/
|
2019-04-27 19:20:03 +10:00
|
|
|
|
|
|
|
|
namespace App\Http\Requests\User;
|
|
|
|
|
|
2019-06-12 14:22:05 +10:00
|
|
|
use App\DataMapper\DefaultSettings;
|
2019-12-08 21:28:52 +11:00
|
|
|
use App\Factory\UserFactory;
|
2019-04-27 19:20:03 +10:00
|
|
|
use App\Http\Requests\Request;
|
2019-12-08 21:28:52 +11:00
|
|
|
use App\Http\ValidationRules\ValidUserForCompany;
|
|
|
|
|
use App\Libraries\MultiDB;
|
2019-04-27 19:20:03 +10:00
|
|
|
use App\Models\User;
|
2020-12-10 21:28:19 +11:00
|
|
|
use Illuminate\Validation\Rule;
|
2019-04-27 19:20:03 +10:00
|
|
|
|
|
|
|
|
class StoreUserRequest extends Request
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
|
*
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function authorize() : bool
|
2020-09-06 19:38:10 +10:00
|
|
|
{
|
2019-11-21 19:38:57 +11:00
|
|
|
return auth()->user()->isAdmin();
|
2019-04-27 19:20:03 +10:00
|
|
|
}
|
|
|
|
|
|
2019-04-28 20:25:18 +10:00
|
|
|
public function rules()
|
|
|
|
|
{
|
2019-12-08 21:28:52 +11:00
|
|
|
$rules = [];
|
|
|
|
|
|
|
|
|
|
$rules['first_name'] = 'required|string|max:100';
|
|
|
|
|
$rules['last_name'] = 'required|string|max:100';
|
|
|
|
|
|
2020-12-16 12:52:40 +01:00
|
|
|
if (config('ninja.db.multi_db_enabled')) {
|
2020-12-10 21:28:19 +11:00
|
|
|
$rules['email'] = [new ValidUserForCompany(), Rule::unique('users')];
|
2020-12-16 12:52:40 +01:00
|
|
|
} else {
|
2020-12-10 21:28:19 +11:00
|
|
|
$rules['email'] = Rule::unique('users');
|
2020-12-16 12:52:40 +01:00
|
|
|
}
|
2020-12-10 21:28:19 +11:00
|
|
|
|
2019-12-08 21:28:52 +11:00
|
|
|
|
2020-09-06 19:38:10 +10:00
|
|
|
if (auth()->user()->company()->account->isFreeHostedClient()) {
|
2020-04-23 08:54:10 +10:00
|
|
|
$rules['hosted_users'] = new CanAddUserRule(auth()->user()->company()->account);
|
2020-06-27 14:09:16 +10:00
|
|
|
}
|
2020-04-23 08:54:10 +10:00
|
|
|
|
2019-12-08 21:28:52 +11:00
|
|
|
return $rules;
|
2019-06-12 14:22:05 +10:00
|
|
|
}
|
2019-04-27 19:20:03 +10:00
|
|
|
|
2019-12-20 22:23:09 +11:00
|
|
|
protected function prepareForValidation()
|
2019-04-27 19:20:03 +10:00
|
|
|
{
|
2019-06-12 14:22:05 +10:00
|
|
|
$input = $this->all();
|
2019-04-27 19:20:03 +10:00
|
|
|
|
2019-12-31 08:59:12 +11:00
|
|
|
if (isset($input['company_user'])) {
|
2020-09-06 19:38:10 +10:00
|
|
|
if (! isset($input['company_user']['is_admin'])) {
|
2019-11-23 08:10:53 +11:00
|
|
|
$input['company_user']['is_admin'] = false;
|
2019-12-31 08:59:12 +11:00
|
|
|
}
|
2019-06-12 14:22:05 +10:00
|
|
|
|
2020-09-06 19:38:10 +10:00
|
|
|
if (! isset($input['company_user']['permissions'])) {
|
2019-11-21 19:38:57 +11:00
|
|
|
$input['company_user']['permissions'] = '';
|
2019-12-31 08:59:12 +11:00
|
|
|
}
|
2019-06-12 14:22:05 +10:00
|
|
|
|
2020-09-06 19:38:10 +10:00
|
|
|
if (! isset($input['company_user']['settings'])) {
|
2020-02-26 14:26:07 +11:00
|
|
|
//$input['company_user']['settings'] = DefaultSettings::userSettings();
|
|
|
|
|
$input['company_user']['settings'] = null;
|
2019-12-31 08:59:12 +11:00
|
|
|
}
|
|
|
|
|
} else {
|
2019-11-21 19:38:57 +11:00
|
|
|
$input['company_user'] = [
|
2020-02-26 14:26:07 +11:00
|
|
|
//'settings' => DefaultSettings::userSettings(),
|
|
|
|
|
'settings' => null,
|
2019-11-21 19:38:57 +11:00
|
|
|
'permissions' => '',
|
|
|
|
|
];
|
|
|
|
|
}
|
2019-04-27 19:20:03 +10:00
|
|
|
|
2019-12-31 08:59:12 +11:00
|
|
|
$this->replace($input);
|
2019-11-21 19:38:57 +11:00
|
|
|
}
|
|
|
|
|
|
2020-03-04 22:09:43 +11:00
|
|
|
//@todo make sure the user links back to the account ID for this company!!!!!!
|
2019-12-08 21:28:52 +11:00
|
|
|
public function fetchUser() :User
|
|
|
|
|
{
|
|
|
|
|
$user = MultiDB::hasUser(['email' => $this->input('email')]);
|
|
|
|
|
|
2020-09-06 19:38:10 +10:00
|
|
|
if (! $user) {
|
2020-03-25 00:25:20 +11:00
|
|
|
$user = UserFactory::create(auth()->user()->account->id);
|
2019-12-31 08:59:12 +11:00
|
|
|
}
|
2019-12-08 21:28:52 +11:00
|
|
|
|
|
|
|
|
return $user;
|
|
|
|
|
}
|
2019-12-31 08:59:12 +11:00
|
|
|
}
|