90 lines
3.0 KiB
PHP
90 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire\Team;
|
|
|
|
use App\Enums\Role;
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Livewire\Component;
|
|
|
|
class Member extends Component
|
|
{
|
|
use AuthorizesRequests;
|
|
|
|
public User $member;
|
|
|
|
public function makeAdmin()
|
|
{
|
|
try {
|
|
$this->authorize('manageMembers', currentTeam());
|
|
|
|
if (Role::from(auth()->user()->role())->lt(Role::ADMIN)
|
|
|| Role::from($this->getMemberRole())->gt(auth()->user()->role())) {
|
|
throw new \Exception('You are not authorized to perform this action.');
|
|
}
|
|
$this->member->teams()->updateExistingPivot(currentTeam()->id, ['role' => Role::ADMIN->value]);
|
|
$this->dispatch('reloadWindow');
|
|
} catch (\Exception $e) {
|
|
$this->dispatch('error', $e->getMessage());
|
|
}
|
|
}
|
|
|
|
public function makeOwner()
|
|
{
|
|
try {
|
|
$this->authorize('manageMembers', currentTeam());
|
|
|
|
if (Role::from(auth()->user()->role())->lt(Role::OWNER)
|
|
|| Role::from($this->getMemberRole())->gt(auth()->user()->role())) {
|
|
throw new \Exception('You are not authorized to perform this action.');
|
|
}
|
|
$this->member->teams()->updateExistingPivot(currentTeam()->id, ['role' => Role::OWNER->value]);
|
|
$this->dispatch('reloadWindow');
|
|
} catch (\Exception $e) {
|
|
$this->dispatch('error', $e->getMessage());
|
|
}
|
|
}
|
|
|
|
public function makeReadonly()
|
|
{
|
|
try {
|
|
$this->authorize('manageMembers', currentTeam());
|
|
|
|
if (Role::from(auth()->user()->role())->lt(Role::ADMIN)
|
|
|| Role::from($this->getMemberRole())->gt(auth()->user()->role())) {
|
|
throw new \Exception('You are not authorized to perform this action.');
|
|
}
|
|
$this->member->teams()->updateExistingPivot(currentTeam()->id, ['role' => Role::MEMBER->value]);
|
|
$this->dispatch('reloadWindow');
|
|
} catch (\Exception $e) {
|
|
$this->dispatch('error', $e->getMessage());
|
|
}
|
|
}
|
|
|
|
public function remove()
|
|
{
|
|
try {
|
|
$this->authorize('manageMembers', currentTeam());
|
|
|
|
if (Role::from(auth()->user()->role())->lt(Role::ADMIN)
|
|
|| Role::from($this->getMemberRole())->gt(auth()->user()->role())) {
|
|
throw new \Exception('You are not authorized to perform this action.');
|
|
}
|
|
$this->member->teams()->detach(currentTeam());
|
|
Cache::forget("team:{$this->member->id}");
|
|
Cache::remember('team:'.$this->member->id, 3600, function () {
|
|
return $this->member->teams()->first();
|
|
});
|
|
$this->dispatch('reloadWindow');
|
|
} catch (\Exception $e) {
|
|
$this->dispatch('error', $e->getMessage());
|
|
}
|
|
}
|
|
|
|
private function getMemberRole()
|
|
{
|
|
return $this->member->teams()->where('teams.id', currentTeam()->id)->first()?->pivot?->role;
|
|
}
|
|
}
|