mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
957ac9f5d8
* Remove unnecessary save() on invoice * Update copyright * Working on Credit Repository * Implement credits as a paymentable entity * Add credit_id to transformer * fix rules for update payment * Fix random deleted_at keys in transformers * Fix for password_protect check
70 lines
1.7 KiB
PHP
70 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Models\User;
|
|
use App\Models\CompanyUser;
|
|
use App\Factory\CompanyUserFactory;
|
|
use Illuminate\Http\Request;
|
|
|
|
/**
|
|
* UserRepository
|
|
*/
|
|
class UserRepository extends BaseRepository
|
|
{
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Gets the class name.
|
|
*
|
|
* @return string The class name.
|
|
*/
|
|
public function getClassName()
|
|
{
|
|
return User::class;
|
|
}
|
|
|
|
/**
|
|
* Saves the user and its contacts
|
|
*
|
|
* @param array $data The data
|
|
* @param \App\Models\user $user The user
|
|
*
|
|
* @return user|\App\Models\user|null user Object
|
|
*/
|
|
public function save(array $data, User $user) : ?User
|
|
{
|
|
$user->fill($data);
|
|
$user->save();
|
|
|
|
if (isset($data['company_user'])) {
|
|
$company = auth()->user()->company();
|
|
$account_id = $company->account->id;
|
|
|
|
$cu = CompanyUser::whereUserId($user->id)->whereCompanyId($company->id)->first();
|
|
|
|
/*No company user exists - attach the user*/
|
|
if (!$cu) {
|
|
$data['company_user']['account_id'] = $account_id;
|
|
$user->companies()->attach($company->id, $data['company_user']);
|
|
} else {
|
|
$cu->fill($data['company_user']);
|
|
$cu->save();
|
|
}
|
|
}
|
|
|
|
return $user;
|
|
}
|
|
}
|