2018-04-15 17:56:48 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
2018-08-31 18:38:07 -06:00
|
|
|
use Laravel\Passport\HasApiTokens;
|
|
|
|
use Illuminate\Notifications\Notifiable;
|
2018-06-13 18:52:42 -06:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2018-04-15 17:56:48 -06:00
|
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
2019-06-19 02:45:51 -06:00
|
|
|
use App\Util\RateLimit\User as UserRateLimit;
|
2023-05-05 00:00:11 -06:00
|
|
|
use App\Services\AvatarService;
|
2018-04-15 17:56:48 -06:00
|
|
|
|
|
|
|
class User extends Authenticatable
|
|
|
|
{
|
2019-06-19 02:45:51 -06:00
|
|
|
use Notifiable, SoftDeletes, HasApiTokens, UserRateLimit;
|
2018-06-13 18:52:42 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes that should be mutated to dates.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2023-04-19 22:30:37 -06:00
|
|
|
protected $casts = [
|
2023-07-14 04:33:05 -06:00
|
|
|
'deleted_at' => 'datetime',
|
|
|
|
'email_verified_at' => 'datetime',
|
|
|
|
'2fa_setup_at' => 'datetime',
|
|
|
|
'last_active_at' => 'datetime',
|
2023-04-19 22:30:37 -06:00
|
|
|
];
|
2018-04-15 17:56:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes that are mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $fillable = [
|
2023-07-16 18:42:43 -06:00
|
|
|
'name',
|
|
|
|
'username',
|
|
|
|
'email',
|
|
|
|
'password',
|
|
|
|
'app_register_ip',
|
|
|
|
'email_verified_at',
|
|
|
|
'last_active_at',
|
|
|
|
'register_source'
|
2018-04-15 17:56:48 -06:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes that should be hidden for arrays.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $hidden = [
|
2023-07-14 04:33:05 -06:00
|
|
|
'email', 'password', 'is_admin', 'remember_token',
|
|
|
|
'email_verified_at', '2fa_enabled', '2fa_secret',
|
2018-10-09 19:28:11 -06:00
|
|
|
'2fa_backup_codes', '2fa_setup_at', 'deleted_at',
|
|
|
|
'updated_at'
|
2018-04-15 17:56:48 -06:00
|
|
|
];
|
2018-04-15 18:52:22 -06:00
|
|
|
|
|
|
|
public function profile()
|
|
|
|
{
|
|
|
|
return $this->hasOne(Profile::class);
|
|
|
|
}
|
2018-04-18 23:57:31 -06:00
|
|
|
|
|
|
|
public function url()
|
|
|
|
{
|
2018-08-28 03:07:36 +00:00
|
|
|
return url(config('app.url').'/'.$this->username);
|
2018-04-18 23:57:31 -06:00
|
|
|
}
|
2018-07-23 18:52:29 -06:00
|
|
|
|
|
|
|
public function settings()
|
|
|
|
{
|
|
|
|
return $this->hasOne(UserSetting::class);
|
|
|
|
}
|
2018-10-09 19:28:11 -06:00
|
|
|
|
2018-12-17 23:27:58 -07:00
|
|
|
public function statuses()
|
|
|
|
{
|
|
|
|
return $this->hasManyThrough(
|
|
|
|
Status::class,
|
|
|
|
Profile::class
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-01-31 12:55:20 -07:00
|
|
|
public function filters()
|
|
|
|
{
|
2019-09-25 00:24:13 -06:00
|
|
|
return $this->hasMany(UserFilter::class, 'user_id', 'profile_id');
|
2019-01-31 12:55:20 -07:00
|
|
|
}
|
|
|
|
|
2018-10-09 19:28:11 -06:00
|
|
|
public function receivesBroadcastNotificationsOn()
|
|
|
|
{
|
|
|
|
return 'App.User.'.$this->id;
|
|
|
|
}
|
2019-03-06 00:55:03 -07:00
|
|
|
|
|
|
|
public function devices()
|
|
|
|
{
|
|
|
|
return $this->hasMany(UserDevice::class);
|
|
|
|
}
|
2019-06-19 02:45:51 -06:00
|
|
|
|
2019-09-05 23:12:23 -06:00
|
|
|
public function storageUsedKey()
|
|
|
|
{
|
|
|
|
return 'profile:storage:used:' . $this->id;
|
|
|
|
}
|
|
|
|
|
2020-02-18 00:22:47 -07:00
|
|
|
public function accountLog()
|
|
|
|
{
|
|
|
|
return $this->hasMany(AccountLog::class);
|
|
|
|
}
|
|
|
|
|
2020-12-05 00:13:24 -07:00
|
|
|
public function interstitials()
|
|
|
|
{
|
|
|
|
return $this->hasMany(AccountInterstitial::class);
|
|
|
|
}
|
|
|
|
|
2023-05-05 00:00:11 -06:00
|
|
|
public function avatarUrl()
|
|
|
|
{
|
2023-07-14 04:33:05 -06:00
|
|
|
if(!$this->profile_id || $this->status) {
|
|
|
|
return config('app.url') . '/storage/avatars/default.jpg';
|
|
|
|
}
|
2023-05-05 00:00:11 -06:00
|
|
|
|
2023-07-14 04:33:05 -06:00
|
|
|
return AvatarService::get($this->profile_id);
|
2023-05-05 00:00:11 -06:00
|
|
|
}
|
|
|
|
|
2018-04-15 17:56:48 -06:00
|
|
|
}
|