mirror of
https://github.com/freescout-helpdesk/freescout.git
synced 2024-11-25 03:43:33 +01:00
105 lines
2.1 KiB
PHP
105 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Policies;
|
|
|
|
use App\Mailbox;
|
|
use App\User;
|
|
use Illuminate\Auth\Access\HandlesAuthorization;
|
|
|
|
class MailboxPolicy
|
|
{
|
|
use HandlesAuthorization;
|
|
|
|
/**
|
|
* Determine whether the user can create mailboxes.
|
|
*
|
|
* @param \App\User $user
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function create(User $user)
|
|
{
|
|
if ($user->isAdmin()) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can view mailbox conversations.
|
|
*
|
|
* @param \App\User $user
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function view(User $user, Mailbox $mailbox)
|
|
{
|
|
if ($user->isAdmin()) {
|
|
return true;
|
|
} else {
|
|
// Use cached users for Realtime events
|
|
if ($mailbox->users->contains($user)) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can view mailbox conversations.
|
|
*
|
|
* @param \App\User $user
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function viewCached(User $user, Mailbox $mailbox)
|
|
{
|
|
if ($user->isAdmin()) {
|
|
return true;
|
|
} else {
|
|
// Use cached users for Realtime events
|
|
if ($mailbox->users_cached->contains($user)) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can update the mailbox.
|
|
*
|
|
* @param \App\User $user
|
|
* @param \App\Mailbox $mailbox
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function update(User $user, Mailbox $mailbox)
|
|
{
|
|
if ($user->isAdmin()) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can delete the mailbox.
|
|
*
|
|
* @param \App\User $user
|
|
* @param \App\Mailbox $mailbox
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function delete(User $user, Mailbox $mailbox)
|
|
{
|
|
if ($user->isAdmin()) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
}
|