2023-03-17 14:33:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2023-06-12 10:00:01 +00:00
|
|
|
use App\Notifications\Channels\SendsEmail;
|
2023-08-08 09:51:36 +00:00
|
|
|
use App\Notifications\TrnsactionalEmails\ResetPassword;
|
2023-03-17 14:33:48 +00:00
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
|
|
use Illuminate\Notifications\Notifiable;
|
2023-06-01 10:15:33 +00:00
|
|
|
use Laravel\Fortify\TwoFactorAuthenticatable;
|
2023-08-08 09:51:36 +00:00
|
|
|
use Laravel\Sanctum\HasApiTokens;
|
2023-03-17 14:33:48 +00:00
|
|
|
|
2023-06-12 10:00:01 +00:00
|
|
|
class User extends Authenticatable implements SendsEmail
|
2023-03-17 14:33:48 +00:00
|
|
|
{
|
2023-06-01 10:15:33 +00:00
|
|
|
use HasApiTokens, HasFactory, Notifiable, TwoFactorAuthenticatable;
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-03-17 14:33:48 +00:00
|
|
|
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-08-08 09:51:36 +00:00
|
|
|
|
2023-03-24 13:54:17 +00:00
|
|
|
protected static function boot()
|
|
|
|
{
|
|
|
|
parent::boot();
|
2023-06-09 13:55:21 +00:00
|
|
|
static::created(function (User $user) {
|
|
|
|
$team = [
|
|
|
|
'name' => $user->name . "'s Team",
|
|
|
|
'personal_team' => true,
|
|
|
|
];
|
|
|
|
if ($user->id === 0) {
|
|
|
|
$team['id'] = 0;
|
|
|
|
$team['name'] = 'Root Team';
|
|
|
|
}
|
|
|
|
$new_team = Team::create($team);
|
|
|
|
$user->teams()->attach($new_team, ['role' => 'owner']);
|
|
|
|
});
|
2023-03-24 13:54:17 +00:00
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
|
|
|
public function teams()
|
|
|
|
{
|
|
|
|
return $this->belongsToMany(Team::class)->withPivot('role');
|
|
|
|
}
|
|
|
|
|
2023-07-28 08:55:26 +00:00
|
|
|
public function getRecepients($notification)
|
2023-06-12 10:00:01 +00:00
|
|
|
{
|
|
|
|
return $this->email;
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-07-28 08:55:26 +00:00
|
|
|
public function sendPasswordResetNotification($token): void
|
|
|
|
{
|
|
|
|
$this->notify(new ResetPassword($token));
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-07-14 09:27:08 +00:00
|
|
|
public function isAdmin()
|
|
|
|
{
|
2023-07-13 20:03:27 +00:00
|
|
|
return $this->pivot->role === 'admin' || $this->pivot->role === 'owner';
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-07-13 20:03:27 +00:00
|
|
|
public function isAdminFromSession()
|
2023-06-08 09:43:14 +00:00
|
|
|
{
|
2023-06-09 13:55:21 +00:00
|
|
|
if (auth()->user()->id === 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
$teams = $this->teams()->get();
|
|
|
|
|
|
|
|
$is_part_of_root_team = $teams->where('id', 0)->first();
|
|
|
|
$is_admin_of_root_team = $is_part_of_root_team &&
|
|
|
|
($is_part_of_root_team->pivot->role === 'admin' || $is_part_of_root_team->pivot->role === 'owner');
|
|
|
|
|
|
|
|
if ($is_part_of_root_team && $is_admin_of_root_team) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
$role = $teams->where('id', session('currentTeam')->id)->first()->pivot->role;
|
|
|
|
return $role === 'admin' || $role === 'owner';
|
2023-06-08 09:43:14 +00:00
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-06-08 09:43:14 +00:00
|
|
|
public function isInstanceAdmin()
|
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-08-08 09:51:36 +00:00
|
|
|
|
2023-07-14 09:27:08 +00:00
|
|
|
public function personalTeam()
|
|
|
|
{
|
2023-07-13 20:03:27 +00:00
|
|
|
return $this->teams()->where('personal_team', true)->first();
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-06-09 13:55:21 +00:00
|
|
|
public function currentTeam()
|
|
|
|
{
|
|
|
|
return $this->teams()->where('team_id', session('currentTeam')->id)->first();
|
2023-03-24 13:54:17 +00:00
|
|
|
}
|
2023-08-08 09:51:36 +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-08-08 09:51:36 +00:00
|
|
|
|
2023-06-09 13:55:21 +00:00
|
|
|
public function role()
|
|
|
|
{
|
|
|
|
if ($this->teams()->where('team_id', 0)->first()) {
|
|
|
|
return 'admin';
|
|
|
|
}
|
|
|
|
return $this->teams()->where('team_id', session('currentTeam')->id)->first()->pivot->role;
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
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-08-08 09:51:36 +00:00
|
|
|
}
|