firefly-iii/app/User.php

430 lines
13 KiB
PHP
Raw Normal View History

<?php
2018-05-11 03:08:34 -05:00
/**
* User.php
2020-02-16 07:00:57 -06:00
* Copyright (c) 2019 james@firefly-iii.org
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
2017-10-21 01:40:00 -05:00
*
* This program is distributed in the hope that it will be useful,
2017-10-21 01:40:00 -05:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
2017-10-21 01:40:00 -05:00
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2015-02-05 21:39:52 -06:00
2018-05-11 03:08:34 -05:00
declare(strict_types=1);
namespace FireflyIII;
2015-02-05 21:39:52 -06:00
2019-08-17 03:46:32 -05:00
use Eloquent;
use Exception;
2016-11-22 14:21:11 -06:00
use FireflyIII\Events\RequestedNewPassword;
2018-06-06 14:23:00 -05:00
use FireflyIII\Models\Account;
use FireflyIII\Models\Attachment;
use FireflyIII\Models\AvailableBudget;
use FireflyIII\Models\Bill;
use FireflyIII\Models\Budget;
use FireflyIII\Models\Category;
use FireflyIII\Models\CurrencyExchangeRate;
2020-06-20 03:22:07 -05:00
use FireflyIII\Models\ObjectGroup;
2018-06-06 14:23:00 -05:00
use FireflyIII\Models\PiggyBank;
use FireflyIII\Models\Preference;
use FireflyIII\Models\Recurrence;
2018-06-06 14:23:00 -05:00
use FireflyIII\Models\Role;
use FireflyIII\Models\Rule;
use FireflyIII\Models\RuleGroup;
use FireflyIII\Models\Tag;
use FireflyIII\Models\Transaction;
use FireflyIII\Models\TransactionGroup;
2018-06-06 14:23:00 -05:00
use FireflyIII\Models\TransactionJournal;
2020-06-14 12:17:45 -05:00
use Illuminate\Auth\Passwords\CanResetPassword;
2019-08-17 03:46:32 -05:00
use Illuminate\Database\Eloquent\Builder;
2016-02-11 22:49:53 -06:00
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
2016-02-06 03:11:06 -06:00
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\HasManyThrough;
use Illuminate\Foundation\Auth\User as Authenticatable;
2019-08-17 03:46:32 -05:00
use Illuminate\Notifications\DatabaseNotification;
use Illuminate\Notifications\DatabaseNotificationCollection;
2016-09-15 23:19:40 -05:00
use Illuminate\Notifications\Notifiable;
2019-08-17 03:46:32 -05:00
use Illuminate\Support\Carbon;
2018-07-22 11:50:27 -05:00
use Illuminate\Support\Collection;
2019-08-17 03:46:32 -05:00
use Laravel\Passport\Client;
use Laravel\Passport\HasApiTokens;
2019-08-17 03:46:32 -05:00
use Laravel\Passport\Token;
2016-11-22 14:21:11 -06:00
use Request;
2018-01-10 00:51:47 -06:00
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
2015-02-05 22:04:06 -06:00
/**
2017-11-15 05:25:49 -06:00
* Class User.
2018-06-06 14:23:00 -05:00
*
2019-08-17 03:46:32 -05:00
* @property int $id
* @property string $email
* @property bool $isAdmin used in admin user
* controller.
* @property bool $has2FA used in admin user
* controller.
* @property array $prefs used in admin user
* controller.
* @property string password
* @property string $mfa_secret
* @property Collection roles
* @property string blocked_code
* @property bool blocked
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property string|null $remember_token
* @property string|null $reset
* @property-read \Illuminate\Database\Eloquent\Collection|Account[] $accounts
* @property-read \Illuminate\Database\Eloquent\Collection|Attachment[] $attachments
* @property-read \Illuminate\Database\Eloquent\Collection|AvailableBudget[] $availableBudgets
* @property-read \Illuminate\Database\Eloquent\Collection|Bill[] $bills
* @property-read \Illuminate\Database\Eloquent\Collection|Budget[] $budgets
* @property-read \Illuminate\Database\Eloquent\Collection|Category[] $categories
* @property-read \Illuminate\Database\Eloquent\Collection|Client[] $clients
* @property-read \Illuminate\Database\Eloquent\Collection|CurrencyExchangeRate[] $currencyExchangeRates
* @property-read DatabaseNotificationCollection|DatabaseNotification[] $notifications
* @property-read \Illuminate\Database\Eloquent\Collection|PiggyBank[] $piggyBanks
* @property-read \Illuminate\Database\Eloquent\Collection|Preference[] $preferences
* @property-read \Illuminate\Database\Eloquent\Collection|Recurrence[] $recurrences
* @property-read \Illuminate\Database\Eloquent\Collection|RuleGroup[] $ruleGroups
* @property-read \Illuminate\Database\Eloquent\Collection|Rule[] $rules
* @property-read \Illuminate\Database\Eloquent\Collection|Tag[] $tags
* @property-read \Illuminate\Database\Eloquent\Collection|Token[] $tokens
* @property-read \Illuminate\Database\Eloquent\Collection|TransactionGroup[] $transactionGroups
* @property-read \Illuminate\Database\Eloquent\Collection|TransactionJournal[] $transactionJournals
* @property-read \Illuminate\Database\Eloquent\Collection|Transaction[] $transactions
* @method static Builder|User newModelQuery()
* @method static Builder|User newQuery()
* @method static Builder|User query()
* @method static Builder|User whereBlocked($value)
* @method static Builder|User whereBlockedCode($value)
* @method static Builder|User whereCreatedAt($value)
* @method static Builder|User whereEmail($value)
* @method static Builder|User whereId($value)
* @method static Builder|User wherePassword($value)
* @method static Builder|User whereRememberToken($value)
* @method static Builder|User whereReset($value)
* @method static Builder|User whereUpdatedAt($value)
* @mixin Eloquent
2020-03-25 00:58:39 -05:00
* @property string|null $objectguid
* @property-read int|null $accounts_count
* @property-read int|null $attachments_count
* @property-read int|null $available_budgets_count
* @property-read int|null $bills_count
* @property-read int|null $budgets_count
* @property-read int|null $categories_count
* @property-read int|null $clients_count
* @property-read int|null $currency_exchange_rates_count
* @property-read int|null $notifications_count
* @property-read int|null $piggy_banks_count
* @property-read int|null $preferences_count
* @property-read int|null $recurrences_count
* @property-read int|null $roles_count
* @property-read int|null $rule_groups_count
* @property-read int|null $rules_count
* @property-read int|null $tags_count
* @property-read int|null $tokens_count
* @property-read int|null $transaction_groups_count
* @property-read int|null $transaction_journals_count
* @property-read int|null $transactions_count
* @method static \Illuminate\Database\Eloquent\Builder|\FireflyIII\User whereMfaSecret($value)
* @method static \Illuminate\Database\Eloquent\Builder|\FireflyIII\User whereObjectguid($value)
2020-06-07 04:31:01 -05:00
* @property string|null $provider
* @method static \Illuminate\Database\Eloquent\Builder|\FireflyIII\User whereProvider($value)
*/
class User extends Authenticatable
{
use Notifiable, HasApiTokens;
2016-01-09 01:51:49 -06:00
2018-03-03 01:12:18 -06:00
/**
* The attributes that should be casted to native types.
*
* @var array
*/
protected $casts
= [
'created_at' => 'datetime',
'updated_at' => 'datetime',
'blocked' => 'boolean',
];
2015-02-05 22:04:06 -06:00
/**
* The attributes that are mass assignable.
*
* @var array
*/
2015-07-26 08:51:07 -05:00
protected $fillable = ['email', 'password', 'blocked', 'blocked_code'];
2015-02-05 22:04:06 -06:00
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = ['password', 'remember_token'];
2015-02-05 22:14:27 -06:00
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'users';
2015-02-05 22:04:06 -06:00
2018-01-10 00:51:47 -06:00
/**
* @param string $value
*
* @return User
2018-04-02 07:17:11 -05:00
* @throws NotFoundHttpException
2018-01-10 00:51:47 -06:00
*/
2018-02-10 01:21:20 -06:00
public static function routeBinder(string $value): User
2018-01-10 00:51:47 -06:00
{
2018-02-10 01:21:20 -06:00
if (auth()->check()) {
2018-04-02 07:17:11 -05:00
$userId = (int)$value;
2018-01-10 00:51:47 -06:00
$user = self::find($userId);
2018-04-02 07:17:11 -05:00
if (null !== $user) {
2018-01-10 00:51:47 -06:00
return $user;
}
}
throw new NotFoundHttpException;
}
2015-02-11 00:35:10 -06:00
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2017-11-25 13:27:53 -06:00
* Link to accounts.
*
2016-02-06 03:11:06 -06:00
* @return HasMany
2015-02-11 00:35:10 -06:00
*/
2016-02-06 03:11:06 -06:00
public function accounts(): HasMany
2015-02-05 22:04:06 -06:00
{
2018-04-27 23:23:13 -05:00
return $this->hasMany(Account::class);
2015-02-05 22:04:06 -06:00
}
2015-02-05 22:01:24 -06:00
2015-07-18 02:49:19 -05:00
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2017-11-25 13:27:53 -06:00
* Link to attachments
*
2016-02-06 03:11:06 -06:00
* @return HasMany
2015-07-18 02:49:19 -05:00
*/
2016-02-06 03:11:06 -06:00
public function attachments(): HasMany
2015-07-18 02:49:19 -05:00
{
2018-04-27 23:23:13 -05:00
return $this->hasMany(Attachment::class);
2015-07-18 02:49:19 -05:00
}
2020-05-06 23:44:01 -05:00
/**
* @param string $role
*
* @return bool
*/
public function hasRole(string $role): bool
{
return $this->roles()->where('name', $role)->count() === 1;
}
2016-12-30 06:47:23 -06:00
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2017-11-25 13:27:53 -06:00
* Link to available budgets
*
2016-12-30 06:47:23 -06:00
* @return HasMany
*/
public function availableBudgets(): HasMany
{
2018-04-27 23:23:13 -05:00
return $this->hasMany(AvailableBudget::class);
2016-12-30 06:47:23 -06:00
}
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2017-11-25 13:27:53 -06:00
* Link to bills.
*
2016-02-06 03:11:06 -06:00
* @return HasMany
*/
2016-02-06 03:11:06 -06:00
public function bills(): HasMany
{
2018-04-27 23:23:13 -05:00
return $this->hasMany(Bill::class);
}
2016-01-12 14:37:48 -06:00
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2017-11-25 13:27:53 -06:00
* Link to budgets.
*
2016-02-06 03:11:06 -06:00
* @return HasMany
2016-01-12 14:37:48 -06:00
*/
2016-02-06 03:11:06 -06:00
public function budgets(): HasMany
2016-01-12 14:37:48 -06:00
{
2018-04-27 23:23:13 -05:00
return $this->hasMany(Budget::class);
2016-01-12 14:37:48 -06:00
}
2020-06-20 03:22:07 -05:00
/**
* @codeCoverageIgnore
* Link to object groups.
*
* @return HasMany
*/
public function objectGroups(): HasMany
{
return $this->hasMany(ObjectGroup::class);
}
2016-01-12 14:37:48 -06:00
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2017-11-25 13:27:53 -06:00
* Link to categories
*
2016-02-06 03:11:06 -06:00
* @return HasMany
2016-01-12 14:37:48 -06:00
*/
2016-02-06 03:11:06 -06:00
public function categories(): HasMany
2016-01-12 14:37:48 -06:00
{
2018-04-27 23:23:13 -05:00
return $this->hasMany(Category::class);
2016-01-12 14:37:48 -06:00
}
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2017-11-25 13:27:53 -06:00
* Link to currency exchange rates
*
* @return HasMany
*/
public function currencyExchangeRates(): HasMany
{
return $this->hasMany(CurrencyExchangeRate::class);
}
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2017-11-25 13:27:53 -06:00
* Generates access token.
*
* @return string
2019-08-17 03:46:32 -05:00
* @throws Exception
*/
public function generateAccessToken(): string
{
$bytes = random_bytes(16);
2018-08-06 12:14:30 -05:00
return bin2hex($bytes);
}
2015-02-11 00:35:10 -06:00
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2017-11-25 13:27:53 -06:00
* Link to piggy banks.
*
2016-02-06 03:11:06 -06:00
* @return HasManyThrough
2015-02-11 00:35:10 -06:00
*/
2016-02-06 03:11:06 -06:00
public function piggyBanks(): HasManyThrough
2015-02-05 22:14:27 -06:00
{
2018-04-27 23:23:13 -05:00
return $this->hasManyThrough(PiggyBank::class, Account::class);
2015-02-05 22:14:27 -06:00
}
2015-02-11 00:35:10 -06:00
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2017-11-25 13:27:53 -06:00
* Link to preferences.
*
2016-02-06 03:11:06 -06:00
* @return HasMany
2015-02-11 00:35:10 -06:00
*/
2016-02-06 03:11:06 -06:00
public function preferences(): HasMany
2015-02-05 22:14:27 -06:00
{
2018-04-27 23:23:13 -05:00
return $this->hasMany(Preference::class);
2015-02-05 22:14:27 -06:00
}
/**
* @codeCoverageIgnore
* Link to recurring transactions.
*
* @return HasMany
*/
public function recurrences(): HasMany
{
return $this->hasMany(Recurrence::class);
}
2016-02-11 22:49:53 -06:00
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2017-11-25 13:27:53 -06:00
* Link to roles.
*
2019-08-17 03:46:32 -05:00
* @return BelongsToMany
2016-02-11 22:49:53 -06:00
*/
public function roles(): BelongsToMany
{
2018-04-27 23:23:13 -05:00
return $this->belongsToMany(Role::class);
2016-02-11 22:49:53 -06:00
}
2015-02-11 00:35:10 -06:00
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2017-11-25 13:27:53 -06:00
* Link to rule groups.
*
2016-02-06 03:11:06 -06:00
* @return HasMany
2015-02-11 00:35:10 -06:00
*/
2016-02-06 03:11:06 -06:00
public function ruleGroups(): HasMany
2015-02-05 22:14:27 -06:00
{
2018-04-27 23:23:13 -05:00
return $this->hasMany(RuleGroup::class);
2015-02-05 22:14:27 -06:00
}
2015-02-11 00:35:10 -06:00
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2017-11-25 13:27:53 -06:00
* Link to rules.
*
2016-02-06 03:11:06 -06:00
* @return HasMany
2015-02-11 00:35:10 -06:00
*/
2016-02-06 03:11:06 -06:00
public function rules(): HasMany
2015-02-05 22:14:27 -06:00
{
2018-04-27 23:23:13 -05:00
return $this->hasMany(Rule::class);
2015-02-05 22:14:27 -06:00
}
2016-12-14 11:59:12 -06:00
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2016-12-14 11:59:12 -06:00
* Send the password reset notification.
*
2017-11-15 05:25:49 -06:00
* @param string $token
2016-12-14 11:59:12 -06:00
*/
2018-08-04 10:30:06 -05:00
public function sendPasswordResetNotification($token): void
2016-12-14 11:59:12 -06:00
{
$ipAddress = Request::ip();
2016-12-14 11:59:12 -06:00
event(new RequestedNewPassword($this, $token, $ipAddress));
2016-12-14 11:59:12 -06:00
}
2015-03-29 11:28:49 -05:00
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2017-11-25 13:27:53 -06:00
* Link to tags.
*
2016-02-06 03:11:06 -06:00
* @return HasMany
2015-03-29 11:28:49 -05:00
*/
2016-02-06 03:11:06 -06:00
public function tags(): HasMany
2015-03-29 11:28:49 -05:00
{
2018-04-27 23:23:13 -05:00
return $this->hasMany(Tag::class);
2015-03-29 11:28:49 -05:00
}
/**
* @codeCoverageIgnore
* Link to transaction groups.
*
* @return HasMany
*/
public function transactionGroups(): HasMany
{
return $this->hasMany(TransactionGroup::class);
}
2015-02-11 00:35:10 -06:00
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2017-11-25 13:27:53 -06:00
* Link to transaction journals.
*
2016-02-06 03:11:06 -06:00
* @return HasMany
2015-02-11 00:35:10 -06:00
*/
public function transactionJournals(): HasMany
2015-02-05 22:14:27 -06:00
{
2018-04-27 23:23:13 -05:00
return $this->hasMany(TransactionJournal::class);
2015-02-05 22:14:27 -06:00
}
2015-02-11 00:35:10 -06:00
/**
2017-12-27 10:22:44 -06:00
* @codeCoverageIgnore
2017-11-25 13:27:53 -06:00
* Link to transactions.
*
2016-02-06 03:11:06 -06:00
* @return HasManyThrough
2015-02-11 00:35:10 -06:00
*/
2016-02-06 03:11:06 -06:00
public function transactions(): HasManyThrough
2015-02-05 22:14:27 -06:00
{
2018-04-27 23:23:13 -05:00
return $this->hasManyThrough(Transaction::class, TransactionJournal::class);
2015-02-05 22:14:27 -06:00
}
2015-02-05 21:39:52 -06:00
}