107 lines
2.5 KiB
PHP
107 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
// use Illuminate\Contracts\Auth\MustVerifyEmail;
|
|
use Filament\Models\Contracts\FilamentUser;
|
|
use Filament\Panel;
|
|
use Illuminate\Database\Eloquent\Concerns\HasUlids;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
use Laravel\Sanctum\HasApiTokens;
|
|
|
|
class User extends Authenticatable implements FilamentUser
|
|
{
|
|
/** @use HasFactory<\Database\Factories\UserFactory> */
|
|
use HasApiTokens, HasFactory, HasUlids, Notifiable;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var list<string>
|
|
*/
|
|
protected $fillable = [
|
|
'name',
|
|
'email',
|
|
'password',
|
|
'avatar_url',
|
|
'height',
|
|
'bio',
|
|
'daily_calorie_goal',
|
|
'daily_protein_goal',
|
|
'daily_carbs_goal',
|
|
'daily_fats_goal',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be hidden for serialization.
|
|
*
|
|
* @var list<string>
|
|
*/
|
|
protected $hidden = [
|
|
'password',
|
|
'remember_token',
|
|
];
|
|
|
|
/**
|
|
* Get the attributes that should be cast.
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'email_verified_at' => 'datetime',
|
|
'password' => 'hashed',
|
|
'daily_calorie_goal' => 'integer',
|
|
'daily_protein_goal' => 'float',
|
|
'daily_carbs_goal' => 'float',
|
|
'daily_fats_goal' => 'float',
|
|
];
|
|
}
|
|
|
|
public function deviceTokens(): HasMany
|
|
{
|
|
return $this->hasMany(DeviceToken::class);
|
|
}
|
|
|
|
public function mealPosts(): HasMany
|
|
{
|
|
return $this->hasMany(MealPosts::class);
|
|
}
|
|
|
|
public function workouts(): HasMany
|
|
{
|
|
return $this->hasMany(WorkoutSessions::class);
|
|
}
|
|
|
|
public function likedMealPosts(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(MealPosts::class, 'meal_post_likes', 'user_id', 'meal_posts_id')
|
|
->withTimestamps();
|
|
}
|
|
|
|
public function routeNotificationForExpoPush(): array
|
|
{
|
|
return $this->deviceTokens()
|
|
->orderBy('id')
|
|
->pluck('expo_push_token')
|
|
->all();
|
|
}
|
|
|
|
public function isAdmin()
|
|
{
|
|
return true;
|
|
// return $this->role === 'admin';
|
|
}
|
|
|
|
public function canAccessPanel(Panel $panel): bool
|
|
{
|
|
|
|
return true;
|
|
}
|
|
}
|