Newer
Older

Yassine Doghri
committed
<?php

Yassine Doghri
committed
declare(strict_types=1);

Yassine Doghri
committed
namespace App\Filters;

Yassine Doghri
committed
use App\Models\PodcastModel;
use CodeIgniter\Filters\FilterInterface;

Yassine Doghri
committed
use CodeIgniter\HTTP\RequestInterface;
use CodeIgniter\HTTP\ResponseInterface;
use Config\Services;

Yassine Doghri
committed
use Myth\Auth\Exceptions\PermissionException;
class PermissionFilter implements FilterInterface

Yassine Doghri
committed
{
/**
* Do whatever processing this filter needs to do. By default it should not return anything during normal execution.
* However, when an abnormal state is found, it should return an instance of CodeIgniter\HTTP\Response. If it does,
* script execution will end and that Response will be sent back to the client, allowing for error pages, redirects,
* etc.

Yassine Doghri
committed
*
* @param string[]|null $params

Yassine Doghri
committed
* @return void|mixed

Yassine Doghri
committed
*/
public function before(RequestInterface $request, $params = null)
{
helper('auth');

Yassine Doghri
committed
if ($params === null) {

Yassine Doghri
committed
return;
}
$authenticate = Services::authentication();
// if no user is logged in then send to the login form
if (! $authenticate->check()) {

Yassine Doghri
committed
session()->set('redirect_url', current_url());
return redirect('login');
}
helper('misc');
$authorize = Services::authorization();
$router = Services::router();
$routerParams = $router->params();
$result = false;
// Check if user has at least one of the permissions
foreach ($params as $permission) {
// check if permission is for a specific podcast
if (
(str_starts_with($permission, 'podcast-') ||
str_starts_with($permission, 'podcast_episodes-')) &&

Yassine Doghri
committed
count($routerParams) > 0
) {
if (

Yassine Doghri
committed
($groupId = (new PodcastModel())->getContributorGroupId(

Yassine Doghri
committed
$authenticate->id(),

Yassine Doghri
committed
$routerParams[0],
)) &&
$authorize->groupHasPermission($permission, $groupId)

Yassine Doghri
committed
) {

Yassine Doghri
committed
$result = true;
break;

Yassine Doghri
committed
}
} elseif (
$authorize->hasPermission($permission, $authenticate->id())
) {
$result = true;
break;
}
}
if (! $result) {

Yassine Doghri
committed
if ($authenticate->silent()) {
$redirectURL = session('redirect_url') ?? '/';
unset($_SESSION['redirect_url']);
return redirect()
->to($redirectURL)
->with('error', lang('Auth.notEnoughPrivilege'));
}

Yassine Doghri
committed
throw new PermissionException(lang('Auth.notEnoughPrivilege'));

Yassine Doghri
committed
}
}
//--------------------------------------------------------------------

Yassine Doghri
committed
/**
* Allows After filters to inspect and modify the response object as needed. This method does not allow any way to
* stop execution of other after filters, short of throwing an Exception or Error.

Yassine Doghri
committed
*
* @param string[]|null $arguments

Yassine Doghri
committed
*/
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
{

Yassine Doghri
committed
}
//--------------------------------------------------------------------
}