fusionpbx/core/users/users.php

262 lines
9.1 KiB
PHP
Raw Normal View History

<?php
/*
FusionPBX
Version: MPL 1.1
The contents of this file are subject to the Mozilla Public License Version
1.1 (the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the
License.
The Original Code is FusionPBX
The Initial Developer of the Original Code is
Mark J Crane <markjcrane@fusionpbx.com>
2019-02-28 11:57:41 +01:00
Portions created by the Initial Developer are Copyright (C) 2008-2019
the Initial Developer. All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
*/
//includes
include "root.php";
require_once "resources/require.php";
require_once "resources/check_auth.php";
require_once "resources/paging.php";
//check permissions
if (permission_exists("user_view") || if_group("superadmin")) {
//access granted
}
else {
echo "access denied";
exit;
}
//add multi-lingual support
$language = new text;
$text = $language->get();
//include the header
require_once "resources/header.php";
$document['title'] = $text['title-user_manager'];
//set the variables
$order_by = check_str($_GET["order_by"]);
$order = check_str($_GET["order"]);
2018-12-05 07:25:38 +01:00
$search = check_str($_REQUEST["search"]);
//get the list of superadmins
$superadmins = superadmin_list($db);
2018-12-21 06:25:32 +01:00
//get the user count from the database
2015-03-31 08:05:08 +02:00
$sql = "select count(*) as num_rows from v_users where 1 = 1 ";
2017-12-09 20:10:56 +01:00
if (!(permission_exists('user_all') && $_GET['show'] == 'all')) {
2015-03-31 08:05:08 +02:00
$sql .= "and domain_uuid = '".$_SESSION['domain_uuid']."' ";
}
$prep_statement = $db->prepare($sql);
if ($prep_statement) {
$prep_statement->execute();
$row = $prep_statement->fetch(PDO::FETCH_ASSOC);
$total_users = $row['num_rows'];
}
unset($prep_statement, $row);
//get the users from the database (reuse $sql from above)
2018-12-05 07:25:38 +01:00
if (strlen($search) > 0) {
$search = strtolower($search);
$sql .= "and lower(username) = '".$search."' ";
}
2015-03-31 08:05:08 +02:00
if (strlen($order_by) > 0) { $sql .= "order by ".$order_by." ".$order." "; }
$prep_statement = $db->prepare($sql);
if ($prep_statement) {
$prep_statement->execute();
$row = $prep_statement->fetch(PDO::FETCH_ASSOC);
if ($row['num_rows'] > 0) {
$num_rows = $row['num_rows'];
}
else {
$num_rows = '0';
}
}
unset ($prep_statement, $result, $sql);
$rows_per_page = ($_SESSION['domain']['paging']['numeric'] != '') ? $_SESSION['domain']['paging']['numeric'] : 50;
2018-12-05 07:25:38 +01:00
$param = "search=".escape($search);
2017-12-09 20:10:56 +01:00
if (permission_exists('user_all') && $_GET['show'] == 'all') {
$param .= "&show=all";
2015-03-31 08:05:08 +02:00
}
$page = $_GET['page'];
if (strlen($page) == 0) { $page = 0; $_GET['page'] = 0; }
list($paging_controls, $rows_per_page, $var_3) = paging($num_rows, $param, $rows_per_page);
$offset = $rows_per_page * $page;
2019-03-02 00:51:15 +01:00
$sql = "select u.domain_uuid, u.user_uuid, u.username, u.user_enabled, contact_organization, contact_name_given, contact_name_family, \n";
2019-03-01 23:09:58 +01:00
$sql .= "( \n";
$sql .= "select \n";
$sql .= " string_agg(g.group_name, ', ') \n";
$sql .= "from \n";
$sql .= " v_user_groups as ug, \n";
$sql .= " v_groups as g \n";
$sql .= "where \n";
$sql .= " ug.group_uuid = g.group_uuid \n";
$sql .= " and u.user_uuid = ug.user_uuid \n";
$sql .= ") AS groups \n";
$sql .= "from v_contacts as c \n";
$sql .= "right join v_users u on u.contact_uuid = c.contact_uuid \n";
$sql .= "inner join v_domains as d on d.domain_uuid = u.domain_uuid \n";
$sql .= "where 1 = 1 \n";
2017-12-09 20:10:56 +01:00
if (!(permission_exists('user_all') && $_GET['show'] == 'all')) {
2019-03-01 23:09:58 +01:00
$sql .= "and u.domain_uuid = '".$_SESSION['domain_uuid']."' \n";
2015-03-31 08:05:08 +02:00
}
2018-12-05 07:25:38 +01:00
if (strlen($search) > 0) {
2019-03-01 23:09:58 +01:00
$sql .= "and lower(u.username) like '%".$search."%' \n";
}
if (strlen($order_by)> 0) {
2019-03-01 23:09:58 +01:00
$sql .= "order by ".$order_by." ".$order." \n";
}
else {
2019-03-02 00:51:15 +01:00
$sql .= "order by u.username asc \n";
}
2019-03-02 00:51:15 +01:00
$sql .= "limit ".$rows_per_page." offset ".$offset." ";
//echo "<pre>\n";
//print_r($sql);
//echo "</pre>\n";
$prep_statement = $db->prepare(check_sql($sql));
$prep_statement->execute();
$users = $prep_statement->fetchAll(PDO::FETCH_NAMED);
2019-03-01 23:09:58 +01:00
if (!$users) {
echo "<pre>\n";
print_r($prep_statement->errorInfo());
echo "</pre>\n";
exit;
}
unset ($prep_statement, $sql);
//page title and description
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<form method='post' action=''>";
echo "<tr>\n";
echo "<td align='left' width='90%' nowrap='nowrap' valign='top'><b>".$text['header-user_manager']." (".$num_rows.")</b></td>\n";
echo "<td align='right' nowrap='nowrap'>";
if (permission_exists('user_all')) {
2017-12-09 20:10:56 +01:00
if ($_GET['show'] == 'all') {
echo "<input type='button' class='btn' value='".$text['button-back']."' onclick=\"window.location='users.php';\">\n";
2017-12-09 20:10:56 +01:00
echo "<input type='hidden' name='show' value='all'>";
}
else {
2017-12-09 20:10:56 +01:00
echo "<input type='button' class='btn' value='".$text['button-show_all']."' onclick=\"window.location='users.php?show=all';\">\n";
}
}
2018-02-22 17:49:28 +01:00
if (permission_exists('user_import')) {
2018-09-28 19:07:07 +02:00
echo "<input type='button' class='btn' alt='".$text['button-import']."' onclick=\"window.location='user_imports.php'\" value='".$text['button-import']."'>\n";
2018-02-22 17:49:28 +01:00
}
2018-12-05 07:25:38 +01:00
echo "<input type='text' class='txt' style='width: 150px; margin-left: 15px; margin-right: 3px;' name='search' value=\"".escape($search)."\">";
echo "<input type='submit' class='btn' name='submit' value='".$text['button-search']."'>";
echo "</td>";
echo "</tr>\n";
echo "</form>";
echo "<tr>\n";
echo "<td align='left' colspan='4'>\n";
echo $text['description-user_manager']."\n";
echo "<br />\n";
echo "<br />\n";
echo "</td>\n";
echo "</tr>\n";
//alternate the row style
$c = 0;
$row_style["0"] = "row_style0";
$row_style["1"] = "row_style1";
2018-12-18 06:07:13 +01:00
//show the users
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n";
2017-12-09 20:10:56 +01:00
if (permission_exists('user_all') && $_GET['show'] == 'all') {
2015-03-31 08:05:08 +02:00
echo th_order_by('domain_name', $text['label-domain'], $order_by, $order, '', '', $param);
}
echo th_order_by('username', $text['label-username'], $order_by, $order);
echo "<th>".$text['label-groups']."</th>\n";
2018-12-18 06:07:13 +01:00
echo "<th>".$text['label-organization']."</th>\n";
echo "<th>".$text['label-name']."</th>\n";
2015-03-31 08:05:08 +02:00
echo th_order_by('user_enabled', $text['label-enabled'], $order_by, $order, '', '', $param);
2014-02-26 03:35:26 +01:00
echo "<td class='list_control_icons'>";
if (permission_exists('user_add')) {
if ($_SESSION['limit']['users']['numeric'] == '' || ($_SESSION['limit']['users']['numeric'] != '' && $total_users < $_SESSION['limit']['users']['numeric'])) {
echo "<a href='user_edit.php' alt='".$text['button-add']."'>".$v_link_label_add."</a>";
}
}
echo "</td>\n";
2014-06-22 03:16:49 +02:00
echo "</tr>\n";
2018-06-04 00:23:00 +02:00
if (is_array($users)) {
foreach($users as $row) {
if (if_superadmin($superadmins, $row['user_uuid']) && !if_group("superadmin")) {
//hide
} else {
2018-06-04 00:23:00 +02:00
$tr_link = (permission_exists('user_edit')) ? "href='user_edit.php?id=".escape($row['user_uuid'])."'" : null;
echo "<tr ".$tr_link.">\n";
2017-12-09 20:10:56 +01:00
if (permission_exists('user_all') && $_GET['show'] == 'all') {
2019-01-02 23:09:07 +01:00
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['domain_name'])."</td>\n";
2015-03-31 08:05:08 +02:00
}
echo " <td valign='top' class='".$row_style[$c]."'>";
if (permission_exists('user_edit')) {
2018-06-04 00:23:00 +02:00
echo "<a href='user_edit.php?id=".escape($row['user_uuid'])."'>".escape($row['username'])."</a>";
}
else {
2018-06-04 00:23:00 +02:00
echo escape($row['username']);
}
echo " </td>\n";
2019-03-01 23:09:58 +01:00
echo " <td valign='top' class='".$row_style[$c]."'>\n";
echo " ".$row['groups']."&nbsp;\n";
echo " </td>\n";
2018-12-18 06:07:13 +01:00
2019-02-28 11:57:41 +01:00
echo "<td class='".$row_style[$c]."'><a href='/app/contacts/contact_edit.php?id=".$row['contact_uuid']."'>".$row['contact_organization']."</a> &nbsp;</td>\n";
echo "<td class='".$row_style[$c]."'><a href='/app/contacts/contact_edit.php?id=".$row['contact_uuid']."'>".$row['contact_name_given']." ".$row['contact_name_family']."</a> &nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>";
if ($row['user_enabled'] == 'true') {
echo $text['option-true'];
}
else {
echo $text['option-false'];
}
echo "&nbsp;</td>\n";
echo " <td valign='top' align='right' class='tr_link_void'>";
if (permission_exists('user_edit')) {
echo "<a href='user_edit.php?id=".$row['user_uuid']."' alt='".$text['button-edit']."'>$v_link_label_edit</a>";
}
if (permission_exists('user_delete')) {
if ($_SESSION["user"]["user_uuid"] != $row['user_uuid']) {
echo "<a href='user_delete.php?id=".$row['user_uuid']."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">".$v_link_label_delete."</a>";
}
else {
echo "<span onclick=\"alert('".$text['message-cannot_delete_own_account']."');\">".str_replace("list_control_icon", "list_control_icon_disabled", $v_link_label_delete)."</span>";
}
}
echo " </td>\n";
echo "</tr>\n";
if ($c==0) { $c=1; } else { $c=0; }
}
} //end foreach
2018-12-18 06:07:13 +01:00
unset($sql, $users);
} //end if results
echo "<tr>\n";
echo "</table>\n";
echo "<br />\n";
echo $paging_controls."\n";
echo "<br /><br />\n";
//include the footer
include "resources/footer.php";
2017-12-09 20:10:56 +01:00
?>