183 lines
6.6 KiB
PHP
183 lines
6.6 KiB
PHP
<?php
|
|
defined(page_security_key) or exit;
|
|
|
|
//ini_set('display_errors', '1');
|
|
//ini_set('display_startup_errors', '1');
|
|
//error_reporting(E_ALL);
|
|
|
|
include_once './assets/functions.php';
|
|
include_once './settings/settings.php';
|
|
|
|
//SET PAGE ORIGIN FOR NAVIGATION AND SECURITY
|
|
$prev_page = (isset($_SESSION['origin']) && $_SESSION['origin'] == 'equipments') ? $_SESSION['prev_origin_equipment'] : ((isset($_SESSION['origin']) && $_SESSION['origin'] == 'account')? $_SESSION['prev_origin'] :'');
|
|
$page = 'users';
|
|
|
|
//create backbutton to prev_origin
|
|
$back_btn_orgin = ($prev_page != '')? '<a href="'.$prev_page.'" class="btn alt mar-right-2">'.$button_back.'</a>':'';
|
|
|
|
//Check if allowed
|
|
if (isAllowed($page,$_SESSION['profile'],$_SESSION['permission'],'R') === 0){
|
|
header('location: index.php');
|
|
exit;
|
|
}
|
|
//PAGE Security
|
|
$update_allowed = isAllowed($page ,$_SESSION['profile'],$_SESSION['permission'],'U');
|
|
$delete_allowed = isAllowed($page ,$_SESSION['profile'],$_SESSION['permission'],'D');
|
|
$create_allowed = isAllowed($page ,$_SESSION['profile'],$_SESSION['permission'],'C');
|
|
|
|
|
|
//GET PARAMETERS
|
|
$pagination_page = isset($_GET['p']) ? $_GET['p'] : 1;
|
|
$status = isset($_GET['status']) ? '&status='.$_GET['status'] : '';
|
|
$search = isset($_GET['search']) ? '&search='.$_GET['search'] : '';
|
|
|
|
// Determine the URL
|
|
$url = 'index.php?page=users'.$status.$search;
|
|
//GET Details from URL
|
|
$GET_VALUES = urlGETdetails($_GET) ?? '';
|
|
//CALL TO API
|
|
$api_url = '/v1/users/'.$GET_VALUES;
|
|
$responses = ioServer($api_url,'');
|
|
//Decode Payload
|
|
if (!empty($responses)){$responses = decode_payload($responses);}else{$responses = null;}
|
|
|
|
//Return QueryTotal from API
|
|
$api_url = '/v1/users/'.$GET_VALUES.'&totals=';
|
|
$query_total = ioServer($api_url,'');
|
|
//Decode Payload
|
|
if (!empty($query_total)){$query_total = decode_payload($query_total);}else{$query_total = null;}
|
|
|
|
// Handle success messages
|
|
if (isset($_GET['success_msg'])) {
|
|
if ($_GET['success_msg'] == 1) {
|
|
$success_msg = $message_us_1;
|
|
}
|
|
if ($_GET['success_msg'] == 2) {
|
|
$success_msg = $message_us_2;
|
|
}
|
|
if ($_GET['success_msg'] == 3) {
|
|
$success_msg = $message_us_3;
|
|
}
|
|
}
|
|
|
|
template_header('Users', 'users','view');
|
|
$view = '
|
|
<div class="content-title">
|
|
<div class="title">
|
|
<i class="fa-solid fa-users-gear"></i>
|
|
<div class="txt">
|
|
<h2>'.$users_h2.' ('.$query_total.')</h2>
|
|
<p>'.$users_p.'</p>
|
|
</div>
|
|
</div>
|
|
'.$back_btn_orgin.'
|
|
</div>';
|
|
|
|
if (isset($success_msg)){
|
|
$view .= ' <div class="msg success">
|
|
<i class="fas fa-check-circle"></i>
|
|
<p>'.$success_msg.'</p>
|
|
<i class="fas fa-times"></i>
|
|
</div>';
|
|
}
|
|
$view .= '
|
|
<div class="content-header responsive-flex-column pad-top-5">';
|
|
if ($create_allowed ===1){
|
|
$view .= '<a href="index.php?page=user" class="btn">'.$button_create_user.'</a>';
|
|
}
|
|
$view .= '
|
|
<form action="" method="get">
|
|
<input type="hidden" name="page" value="users">
|
|
<div class="filters">
|
|
<a href="#"><i class="fa-solid fa-filter"></i>'.$general_filters.'</a>
|
|
<div class="list">
|
|
<select name="userkey">
|
|
<option value="" disabled selected>Active</option>
|
|
<option value="0"'.($status==0?' selected':'').'>'.$disabled.'</option>
|
|
<option value="1"'.($status==1?' selected':'').'>'.$enabled.'</option>
|
|
</select>
|
|
<button type="submit">'.$button_apply.'</button>
|
|
</div>
|
|
</div>
|
|
<div class="search">
|
|
<label for="search">
|
|
<input id="search" type="text" name="search" placeholder="'.$users_search.'" value="" class="responsive-width-100">
|
|
<i class="fas fa-search"></i>
|
|
</label>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
';
|
|
|
|
$view .= '
|
|
<div class="content-block">
|
|
<div class="table">
|
|
<table class="sortable">
|
|
<thead>
|
|
<tr>
|
|
<th class="responsive-hidden"></th>
|
|
<th class="responsive-hidden">'.$User_update.'</th>
|
|
<th class="responsive-hidden">'.$User_service.'</th>
|
|
<th>'.$User_username.'</th>
|
|
<th>'.$User_partnerhierarchy.'</th>
|
|
<th>'.$User_permission.'</th>
|
|
<th>'.$User_profile.'</th>
|
|
<th class="responsive-hidden">'.$User_lastlogin.'</th>
|
|
<th>'.$general_actions.'</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
';
|
|
|
|
if (empty($responses)){
|
|
|
|
$view .= '
|
|
<tr>
|
|
<td colspan="8" style="text-align:center;">'.$message_no_users.'</td>
|
|
</tr>';
|
|
}
|
|
else {
|
|
foreach ($responses as $response){
|
|
|
|
$permission_user = 'permission'.$response->view;
|
|
$view .= '
|
|
<tr>
|
|
<td class="responsive-hidden"></td>
|
|
<td class="responsive-hidden">'.(($response->login_count > 4)? '<span class="status disabled">'.$User_block:(($response->userkey && $response->userkey !='')? '<span class="status enabled">'.$enabled:'<span class="status">'.$disabled)).'</td>
|
|
<td class="responsive-hidden">'.(($response->service && $response->service !='')? '<span class="status enabled">'.$enabled:'<span class="status">'.$disabled).'</td>
|
|
<td>'.$response->username.'</td>
|
|
<td>'.$response->partnerhierarchy.'</td>
|
|
<td>'.$$permission_user.'</td>
|
|
<td>'.$response->settings.'</td>
|
|
<td class="responsive-hidden">'.$response->lastlogin.'</td>
|
|
<td><a href="index.php?page=user&id='.$response->id.'" class="btn_link">'.$general_view .'</a></td>
|
|
</tr>
|
|
';
|
|
}
|
|
}
|
|
$view .= '
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
';
|
|
|
|
$view.='<div class="pagination">';
|
|
if ($pagination_page > 1) {
|
|
$page = $pagination_page-1;
|
|
$view .= '<a href="'.$url.'&p=1">'.$general_first.'</a>';
|
|
$view .= '<a href="'.$url.'&p='.$page.'">'.$general_prev.'</a>';
|
|
}
|
|
$totals = ceil($query_total / $page_rows_users) == 0 ? 1 : ceil($query_total / $page_rows_users);
|
|
$view .= '<span> '.$general_page.$pagination_page.$general_page_of.$totals.'</span>';
|
|
if ($pagination_page * $page_rows_users < $query_total){
|
|
$page = $pagination_page+1;
|
|
$view .= '<a href="'.$url.'&p='.$page.'">'.$general_next.'</a>';
|
|
$view .= '<a href="'.$url.'&p='.$totals.'">'.$general_last.'</a>';
|
|
}
|
|
$view .= '</div>';
|
|
//OUTPUT
|
|
echo $view;
|
|
|
|
template_footer();
|
|
?>
|