2023-03-17 14:33:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
2023-03-24 13:54:17 +00:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2023-03-17 14:33:48 +00:00
|
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
use Laravel\Sanctum\HasApiTokens;
|
2023-03-24 15:56:56 +00:00
|
|
|
use Visus\Cuid2\Cuid2;
|
2023-03-17 14:33:48 +00:00
|
|
|
|
|
|
|
class User extends Authenticatable
|
|
|
|
{
|
|
|
|
use HasApiTokens, HasFactory, Notifiable;
|
|
|
|
protected $fillable = [
|
2023-04-14 10:54:29 +00:00
|
|
|
'id',
|
2023-03-17 14:33:48 +00:00
|
|
|
'name',
|
|
|
|
'email',
|
|
|
|
'password',
|
|
|
|
];
|
|
|
|
protected $hidden = [
|
|
|
|
'password',
|
|
|
|
'remember_token',
|
|
|
|
];
|
|
|
|
protected $casts = [
|
|
|
|
'email_verified_at' => 'datetime',
|
|
|
|
];
|
2023-03-24 13:54:17 +00:00
|
|
|
protected static function boot()
|
|
|
|
{
|
|
|
|
parent::boot();
|
|
|
|
|
|
|
|
static::creating(function (Model $model) {
|
2023-03-29 10:52:22 +00:00
|
|
|
$model->uuid = (string) new Cuid2(7);
|
2023-03-24 13:54:17 +00:00
|
|
|
});
|
|
|
|
}
|
2023-05-22 10:00:59 +00:00
|
|
|
public function isPartOfRootTeam()
|
2023-04-26 13:38:50 +00:00
|
|
|
{
|
2023-05-22 10:00:59 +00: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 07:38:05 +00:00
|
|
|
}
|
2023-03-24 13:54:17 +00:00
|
|
|
public function teams()
|
|
|
|
{
|
|
|
|
return $this->belongsToMany(Team::class);
|
|
|
|
}
|
2023-03-30 19:24:43 +00:00
|
|
|
|
2023-03-24 13:54:17 +00:00
|
|
|
public function currentTeam()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Team::class);
|
|
|
|
}
|
2023-03-30 19:24:43 +00:00
|
|
|
|
2023-03-24 13:54:17 +00:00
|
|
|
public function otherTeams()
|
|
|
|
{
|
2023-05-22 20:30:33 +00:00
|
|
|
$team_id = session('currentTeam')->id;
|
2023-03-24 13:54:17 +00:00
|
|
|
return auth()->user()->teams->filter(function ($team) use ($team_id) {
|
|
|
|
return $team->id != $team_id;
|
|
|
|
});
|
|
|
|
}
|
2023-05-10 17:26:28 +00:00
|
|
|
public function resources()
|
|
|
|
{
|
2023-05-22 20:30:33 +00:00
|
|
|
$team_id = session('currentTeam')->id;
|
2023-05-10 17:26:28 +00:00
|
|
|
$data = Application::where('team_id', $team_id)->get();
|
|
|
|
return $data;
|
|
|
|
}
|
2023-03-17 14:33:48 +00:00
|
|
|
}
|