iflrandevu/application/helpers/permission_helper.php

73 lines
2.0 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php defined('BASEPATH') or exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
* IFLRandevu - İzmir Fen Lisesi Randevu Portalı
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) Alex Tselegidis
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
* @link https://easyappointments.org
* @since v1.5.0
* ---------------------------------------------------------------------------- */
if (!function_exists('can')) {
/**
* Check if the currently logged-in user can perform an action
*
* Example:
*
* if (can('edit', 'appointments') === FALSE) abort(403);
*
* @param string $action
* @param string $resource
* @param int|null $user_id
*
* @return bool
*/
function can(string $action, string $resource, int $user_id = null): bool
{
/** @var EA_Controller $CI */
$CI = &get_instance();
$CI->load->model('roles_model');
$CI->load->model('users_model');
if (empty($user_id)) {
$role_slug = session('role_slug');
} else {
$user = $CI->users_model->find($user_id);
$role_slug = $CI->roles_model->value($user['id_roles'], 'slug');
}
if (empty($role_slug)) {
return false;
}
$permissions = $CI->roles_model->get_permissions_by_slug($role_slug);
return $permissions[$resource][$action] ?? false;
}
}
if (!function_exists('cannot')) {
/**
* Check if the currently logged-in user can perform an action
*
* Example:
*
* if (cannot('edit', 'appointments')) abort(403);
*
* @param string $action
* @param string $resource
* @param int|null $user_id
*
* @return bool
*/
function cannot(string $action, string $resource, int $user_id = null): bool
{
return !can($action, $resource, $user_id);
}
}