coolify/app/Models/User.php

71 lines
1.7 KiB
PHP
Raw Normal View History

2023-03-17 15:33:48 +01:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
2023-03-17 15:33:48 +01:00
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Laravel\Sanctum\HasApiTokens;
use Visus\Cuid2\Cuid2;
2023-06-01 12:15:33 +02:00
use Laravel\Fortify\TwoFactorAuthenticatable;
2023-03-17 15:33:48 +01:00
class User extends Authenticatable
{
2023-06-01 12:15:33 +02:00
use HasApiTokens, HasFactory, Notifiable, TwoFactorAuthenticatable;
2023-03-17 15:33:48 +01:00
protected $fillable = [
'id',
2023-03-17 15:33:48 +01:00
'name',
'email',
'password',
];
protected $hidden = [
'password',
'remember_token',
];
protected $casts = [
'email_verified_at' => 'datetime',
];
protected static function boot()
{
parent::boot();
static::creating(function (Model $model) {
$model->uuid = (string) new Cuid2(7);
});
}
2023-06-07 15:08:35 +02:00
public function isAdmin()
{
2023-05-22 12:00:59 +02:00
$found_root_team = auth()->user()->teams->filter(function ($team) {
if ($team->id == 0) {
return true;
}
return false;
});
return $found_root_team->count() > 0;
2023-04-25 09:38:05 +02:00
}
public function teams()
{
return $this->belongsToMany(Team::class);
}
2023-03-30 21:24:43 +02:00
public function currentTeam()
{
return $this->belongsTo(Team::class);
}
2023-03-30 21:24:43 +02:00
public function otherTeams()
{
2023-05-22 22:30:33 +02:00
$team_id = session('currentTeam')->id;
return auth()->user()->teams->filter(function ($team) use ($team_id) {
return $team->id != $team_id;
});
}
2023-05-10 19:26:28 +02:00
public function resources()
{
2023-05-22 22:30:33 +02:00
$team_id = session('currentTeam')->id;
2023-05-10 19:26:28 +02:00
$data = Application::where('team_id', $team_id)->get();
return $data;
}
2023-03-17 15:33:48 +01:00
}