Files
einundzwanzig-portal/app/Policies/CourseEventPolicy.php
HolgerHatGarKeineNode d89d54710a feat: Update CourseEventPolicy and Docker compose settings
Update the 'update' method in CourseEventPolicy to check if the event was created by the user. Adjust the service name in docker-compose from 'laravel.test' to 'laravel'.
2024-01-15 20:33:46 +01:00

83 lines
1.9 KiB
PHP

<?php
namespace App\Policies;
use App\Models\CourseEvent;
use App\Models\User;
use Illuminate\Auth\Access\HandlesAuthorization;
class CourseEventPolicy extends BasePolicy
{
use HandlesAuthorization;
/**
* Determine whether the user can view any models.
*
* @return \Illuminate\Auth\Access\Response|bool
*/
public function viewAny(User $user): bool
{
return true;
}
/**
* Determine whether the user can view the model.
*
* @return \Illuminate\Auth\Access\Response|bool
*/
public function view(User $user, CourseEvent $courseEvent): bool
{
return $user->is_lecturer;
}
/**
* Determine whether the user can create models.
*
* @return \Illuminate\Auth\Access\Response|bool
*/
public function create(User $user): bool
{
return $user->is_lecturer;
}
/**
* Determine whether the user can update the model.
*
* @return \Illuminate\Auth\Access\Response|bool
*/
public function update(User $user, CourseEvent $courseEvent): bool
{
return $courseEvent->created_by === $user->id || $user->can((new \ReflectionClass($this))->getShortName() . '.' . __FUNCTION__);
}
/**
* Determine whether the user can delete the model.
*
* @return \Illuminate\Auth\Access\Response|bool
*/
public function delete(User $user, CourseEvent $courseEvent): bool
{
return false;
}
/**
* Determine whether the user can restore the model.
*
* @return \Illuminate\Auth\Access\Response|bool
*/
public function restore(User $user, CourseEvent $courseEvent): bool
{
return false;
}
/**
* Determine whether the user can permanently delete the model.
*
* @return \Illuminate\Auth\Access\Response|bool
*/
public function forceDelete(User $user, CourseEvent $courseEvent): bool
{
return false;
}
}