pixelfed/app/User.php

135 lines
3 KiB
PHP
Raw Normal View History

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