1019 lines
38 KiB
PHP
1019 lines
38 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* This file is part of HESK - PHP Help Desk Software.
|
|
*
|
|
* (c) Copyright Klemen Stirn. All rights reserved.
|
|
* https://www.hesk.com
|
|
*
|
|
* For the full copyright and license agreement information visit
|
|
* https://www.hesk.com/eula.php
|
|
*
|
|
*/
|
|
|
|
define('IN_SCRIPT',1);
|
|
define('HESK_PATH','../');
|
|
define('LOAD_TABS',1);
|
|
|
|
/* Get all the required files and functions */
|
|
require(HESK_PATH . 'hesk_settings.inc.php');
|
|
require(HESK_PATH . 'inc/common.inc.php');
|
|
require(HESK_PATH . 'inc/admin_functions.inc.php');
|
|
require(HESK_PATH . 'inc/profile_functions.inc.php');
|
|
hesk_load_database_functions();
|
|
|
|
hesk_session_start();
|
|
hesk_dbConnect();
|
|
hesk_isLoggedIn();
|
|
|
|
/* Check permissions for this feature */
|
|
hesk_checkPermission('can_man_users');
|
|
|
|
/* Possible user features */
|
|
$hesk_settings['features'] = array(
|
|
'can_view_tickets', /* User can read tickets */
|
|
'can_reply_tickets', /* User can reply to tickets */
|
|
'can_del_tickets', /* User can delete tickets */
|
|
'can_edit_tickets', /* User can edit tickets */
|
|
'can_merge_tickets', /* User can merge tickets */
|
|
'can_resolve', /* User can resolve tickets */
|
|
'can_submit_any_cat', /* User can submit a ticket to any category/department */
|
|
'can_del_notes', /* User can delete ticket notes posted by other staff members */
|
|
'can_change_cat', /* User can move ticket to any category/department */
|
|
'can_change_own_cat', /* User can move ticket to a category/department he/she has access to */
|
|
'can_man_kb', /* User can manage knowledgebase articles and categories */
|
|
'can_man_users', /* User can create and edit staff accounts */
|
|
'can_man_cat', /* User can manage categories/departments */
|
|
'can_man_canned', /* User can manage canned responses */
|
|
'can_man_ticket_tpl', /* User can manage ticket templates */
|
|
'can_man_settings', /* User can manage help desk settings */
|
|
'can_add_archive', /* User can mark tickets as "Tagged" */
|
|
'can_assign_self', /* User can assign tickets to himself/herself */
|
|
'can_assign_others', /* User can assign tickets to other staff members */
|
|
'can_view_unassigned', /* User can view unassigned tickets */
|
|
'can_view_ass_others', /* User can view tickets that are assigned to other staff */
|
|
'can_view_ass_by', /* User can view tickets he/she assigned to others */
|
|
'can_run_reports', /* User can run reports and see statistics (only allowed categories and self) */
|
|
'can_run_reports_full', /* User can run reports and see statistics (unrestricted) */
|
|
'can_export', /* User can export own tickets to Excel */
|
|
'can_view_online', /* User can view what staff members are currently online */
|
|
'can_ban_emails', /* User can ban email addresses */
|
|
'can_unban_emails', /* User can delete email address bans. Also enables "can_ban_emails" */
|
|
'can_ban_ips', /* User can ban IP addresses */
|
|
'can_unban_ips', /* User can delete IP bans. Also enables "can_ban_ips" */
|
|
'can_privacy', /* User can use privacy tools (Anonymize tickets) */
|
|
'can_service_msg', /* User can manage service messages shown in customer interface */
|
|
'can_email_tpl', /* User can manage email templates */
|
|
);
|
|
|
|
/* Set default values */
|
|
$default_userdata = array(
|
|
|
|
// Profile info
|
|
'name' => '',
|
|
'email' => '',
|
|
'cleanpass' => '',
|
|
'user' => '',
|
|
'autoassign' => 'Y',
|
|
|
|
// Signature
|
|
'signature' => '',
|
|
|
|
// Permissions
|
|
'isadmin' => 1,
|
|
'categories' => array('1'),
|
|
'features' => array('can_view_tickets','can_reply_tickets','can_change_cat','can_assign_self','can_view_unassigned','can_view_online','can_resolve','can_submit_any_cat'),
|
|
|
|
// Preferences
|
|
'afterreply' => 0,
|
|
|
|
// Defaults
|
|
'autostart' => 1,
|
|
'notify_customer_new' => 1,
|
|
'notify_customer_reply' => 1,
|
|
'show_suggested' => 1,
|
|
'autoreload' => 0,
|
|
|
|
// Notifications
|
|
'notify_new_unassigned' => 1,
|
|
'notify_new_my' => 1,
|
|
'notify_reply_unassigned' => 1,
|
|
'notify_reply_my' => 1,
|
|
'notify_assigned' => 1,
|
|
'notify_note' => 1,
|
|
'notify_pm' => 1,
|
|
);
|
|
|
|
/* A list of all categories */
|
|
$hesk_settings['categories'] = array();
|
|
$res = hesk_dbQuery('SELECT `id`,`name` FROM `'.hesk_dbEscape($hesk_settings['db_pfix']).'categories` ORDER BY `cat_order` ASC');
|
|
while ($row=hesk_dbFetchAssoc($res))
|
|
{
|
|
if ( hesk_okCategory($row['id'], 0) )
|
|
{
|
|
$hesk_settings['categories'][$row['id']] = $row['name'];
|
|
}
|
|
}
|
|
|
|
/* Non-admin users may not create users with more permissions than they have */
|
|
if ( ! $_SESSION['isadmin'])
|
|
{
|
|
/* Can't create admin users */
|
|
if ( isset($_POST['isadmin']) )
|
|
{
|
|
unset($_POST['isadmin']);
|
|
}
|
|
|
|
/* Can only add features he/she has access to */
|
|
$hesk_settings['features'] = array_intersect( explode(',', $_SESSION['heskprivileges']) , $hesk_settings['features']);
|
|
|
|
/* Can user modify auto-assign setting? */
|
|
if ($hesk_settings['autoassign'] && ( ! hesk_checkPermission('can_assign_self', 0) || ! hesk_checkPermission('can_assign_others', 0) ) )
|
|
{
|
|
$hesk_settings['autoassign'] = 0;
|
|
}
|
|
}
|
|
|
|
/* Use any set values, default otherwise */
|
|
foreach ($default_userdata as $k => $v)
|
|
{
|
|
if ( ! isset($_SESSION['userdata'][$k]) )
|
|
{
|
|
$_SESSION['userdata'][$k] = $v;
|
|
}
|
|
}
|
|
|
|
$_SESSION['userdata'] = hesk_stripArray($_SESSION['userdata']);
|
|
|
|
/* What should we do? */
|
|
if ( $action = hesk_REQUEST('a') )
|
|
{
|
|
if ($action == 'reset_form')
|
|
{
|
|
$_SESSION['edit_userdata'] = TRUE;
|
|
header('Location: ./manage_users.php');
|
|
}
|
|
elseif ($action == 'edit') {edit_user();}
|
|
elseif ( defined('HESK_DEMO') ) {hesk_process_messages($hesklang['ddemo'], 'manage_users.php', 'NOTICE');}
|
|
elseif ($action == 'new') {new_user();}
|
|
elseif ($action == 'save') {update_user();}
|
|
elseif ($action == 'remove') {remove();}
|
|
elseif ($action == 'autoassign') {toggle_autoassign();}
|
|
else {hesk_error($hesklang['invalid_action']);}
|
|
}
|
|
|
|
else
|
|
{
|
|
|
|
/* If one came from the Edit page make sure we reset user values */
|
|
|
|
if (isset($_SESSION['save_userdata']))
|
|
{
|
|
$_SESSION['userdata'] = $default_userdata;
|
|
unset($_SESSION['save_userdata']);
|
|
}
|
|
if (isset($_SESSION['edit_userdata']))
|
|
{
|
|
$_SESSION['userdata'] = $default_userdata;
|
|
unset($_SESSION['edit_userdata']);
|
|
}
|
|
|
|
/* Print header */
|
|
require_once(HESK_PATH . 'inc/header.inc.php');
|
|
|
|
/* Print main manage users page */
|
|
require_once(HESK_PATH . 'inc/show_admin_nav.inc.php');
|
|
?>
|
|
|
|
<?php
|
|
/* This will handle error, success and notice messages */
|
|
if (!hesk_SESSION(array('userdata', 'errors'))) {
|
|
hesk_handle_messages();
|
|
}
|
|
|
|
// If POP3 fetching is active, no user should have the same email address
|
|
if ($hesk_settings['pop3'] && hesk_validateEmail($hesk_settings['pop3_user'], 'ERR', 0))
|
|
{
|
|
$res = hesk_dbQuery("SELECT * FROM `".hesk_dbEscape($hesk_settings['db_pfix'])."users` WHERE `email` LIKE '".hesk_dbEscape($hesk_settings['pop3_user'])."'");
|
|
|
|
if (hesk_dbNumRows($res) > 0)
|
|
{
|
|
while ($myuser = hesk_dbFetchAssoc($res))
|
|
{
|
|
if (compare_user_permissions($myuser['id'], $myuser['isadmin'], explode(',', $myuser['categories']) , explode(',', $myuser['heskprivileges'])))
|
|
{
|
|
hesk_show_notice(sprintf($hesklang['pop3_warning'], $myuser['name'], $hesk_settings['pop3_user']) . "<br /><br />" . $hesklang['fetch_warning'], $hesklang['warn']);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// If IMAP fetching is active, no user should have the same email address
|
|
if ($hesk_settings['imap'] && hesk_validateEmail($hesk_settings['imap_user'], 'ERR', 0))
|
|
{
|
|
$res = hesk_dbQuery("SELECT * FROM `".hesk_dbEscape($hesk_settings['db_pfix'])."users` WHERE `email` LIKE '".hesk_dbEscape($hesk_settings['imap_user'])."'");
|
|
|
|
if (hesk_dbNumRows($res) > 0)
|
|
{
|
|
while ($myuser = hesk_dbFetchAssoc($res))
|
|
{
|
|
if (compare_user_permissions($myuser['id'], $myuser['isadmin'], explode(',', $myuser['categories']) , explode(',', $myuser['heskprivileges'])))
|
|
{
|
|
hesk_show_notice(sprintf($hesklang['imap_warning'], $myuser['name'], $hesk_settings['imap_user']) . "<br /><br />" . $hesklang['fetch_warning'], $hesklang['warn']);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
<div class="main__content team">
|
|
<section class="team__head">
|
|
<h2>
|
|
<?php echo $hesklang['team']; ?>
|
|
<div class="tooltype right out-close">
|
|
<svg class="icon icon-info">
|
|
<use xlink:href="<?php echo HESK_PATH; ?>img/sprite.svg#icon-info"></use>
|
|
</svg>
|
|
<div class="tooltype__content">
|
|
<div class="tooltype__wrapper">
|
|
<?php echo $hesklang['users_intro']; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</h2>
|
|
<button class="btn btn btn--blue-border" ripple="ripple" data-action="team-create"><?php echo $hesklang['new_team_member']; ?></button>
|
|
</section>
|
|
<div class="table-wrap">
|
|
<div class="table">
|
|
<table id="default-table" class="table sindu-table">
|
|
<thead>
|
|
<tr>
|
|
<th><?php echo $hesklang['name']; ?></th>
|
|
<th><?php echo $hesklang['email']; ?></th>
|
|
<th><?php echo $hesklang['username']; ?></th>
|
|
<th><?php echo $hesklang['role']; ?></th>
|
|
<?php
|
|
/* Is user rating enabled? */
|
|
if ($hesk_settings['rating']) {
|
|
?>
|
|
<th><?php echo $hesklang['rating']; ?></th>
|
|
<?php
|
|
}
|
|
|
|
/* Is autoassign enabled? */
|
|
if ($hesk_settings['autoassign']) {
|
|
?>
|
|
<th><?php echo $hesklang['aass']; ?></th>
|
|
<?php
|
|
}
|
|
?>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$res = hesk_dbQuery('SELECT * FROM `'.hesk_dbEscape($hesk_settings['db_pfix']).'users` ORDER BY `name` ASC');
|
|
|
|
$cannot_manage = array();
|
|
|
|
while ($myuser = hesk_dbFetchAssoc($res)) {
|
|
|
|
if (!compare_user_permissions($myuser['id'], $myuser['isadmin'], explode(',', $myuser['categories']) , explode(',', $myuser['heskprivileges']))) {
|
|
$cannot_manage[$myuser['id']] = array('name' => $myuser['name'], 'user' => $myuser['user'], 'email' => $myuser['email']);
|
|
continue;
|
|
}
|
|
|
|
$table_row = '';
|
|
if (isset($_SESSION['seluser']) && $myuser['id'] == $_SESSION['seluser']) {
|
|
$table_row = 'class="ticket-new"';
|
|
unset($_SESSION['seluser']);
|
|
}
|
|
|
|
/* User online? */
|
|
if ($hesk_settings['online']) {
|
|
if (isset($hesk_settings['users_online'][$myuser['id']])) {
|
|
$myuser['name'] = '
|
|
<svg class="icon icon-assign" style="fill: #000; margin-right: 10px;">
|
|
<use xlink:href="' . HESK_PATH . 'img/sprite.svg#icon-assign"></use>
|
|
</svg>' .
|
|
$myuser['name'];
|
|
}
|
|
else
|
|
{
|
|
$myuser['name'] = '
|
|
<svg class="icon icon-assign-no" style="fill: #C5CAD4; margin-right: 10px;">
|
|
<use xlink:href="' . HESK_PATH . 'img/sprite.svg#icon-assign-no"></use>
|
|
</svg>' .
|
|
$myuser['name'];
|
|
}
|
|
}
|
|
|
|
/* To edit yourself go to "Profile" page, not here. */
|
|
if ($myuser['id'] == $_SESSION['id']) {
|
|
$edit_code = '
|
|
<a href="profile.php" class="edit tooltip" title="'.$hesklang['edit'].'">
|
|
<svg class="icon icon-edit-ticket">
|
|
<use xlink:href="' . HESK_PATH . 'img/sprite.svg#icon-edit-ticket"></use>
|
|
</svg>
|
|
</a>';
|
|
} else {
|
|
$edit_code = '
|
|
<a href="manage_users.php?a=edit&id='.$myuser['id'].'" class="edit tooltip" title="'.$hesklang['edit'].'">
|
|
<svg class="icon icon-edit-ticket">
|
|
<use xlink:href="' . HESK_PATH . 'img/sprite.svg#icon-edit-ticket"></use>
|
|
</svg>
|
|
</a>';
|
|
}
|
|
|
|
if ($myuser['isadmin']) {
|
|
$myuser['isadmin'] = $hesklang['administrator'];
|
|
} else {
|
|
$myuser['isadmin'] = $hesklang['staff'];
|
|
}
|
|
|
|
/* Deleting user with ID 1 (default administrator) is not allowed */
|
|
if ($myuser['id'] == 1) {
|
|
$remove_code = '';
|
|
} else {
|
|
$modal_id = hesk_generate_delete_modal($hesklang['confirm_deletion'],
|
|
$hesklang['sure_remove_user'],
|
|
'manage_users.php?a=remove&id='.$myuser['id'].'&token='.hesk_token_echo(0));
|
|
$remove_code = '
|
|
<a href="javascript:" data-modal="[data-modal-id=\''.$modal_id.'\']"
|
|
title="'.$hesklang['remove'].'"
|
|
class="delete tooltip">
|
|
<svg class="icon icon-delete">
|
|
<use xlink:href="' . HESK_PATH . 'img/sprite.svg#icon-delete"></use>
|
|
</svg>
|
|
</a>';
|
|
}
|
|
|
|
/* Is auto assign enabled? */
|
|
if ($hesk_settings['autoassign']) {
|
|
if ($myuser['autoassign']) {
|
|
$autoassign_code = '
|
|
<label class="switch-checkbox">
|
|
<a class="tooltip" data-ztt_vertical_offset="-5" id="autoassign-'.$myuser['id'].'" href="manage_users.php?a=autoassign&s=0&id='.$myuser['id'].'&token='.hesk_token_echo(0).'" title="'.$hesklang['aaon'].'">
|
|
<input type="checkbox" checked>
|
|
<div class="switch-checkbox__bullet">
|
|
<i>
|
|
<svg class="icon icon-close">
|
|
<use xlink:href="' . HESK_PATH . 'img/sprite.svg#icon-close"></use>
|
|
</svg>
|
|
<svg class="icon icon-tick">
|
|
<use xlink:href="' . HESK_PATH . 'img/sprite.svg#icon-tick"></use>
|
|
</svg>
|
|
</i>
|
|
</div>
|
|
</a>
|
|
</label>
|
|
';
|
|
} else {
|
|
$autoassign_code = '
|
|
<label class="switch-checkbox">
|
|
<a class="tooltip" data-ztt_vertical_offset="-5" id="autoassign-'.$myuser['id'].'" href="manage_users.php?a=autoassign&s=1&id='.$myuser['id'].'&token='.hesk_token_echo(0).'" title="'.$hesklang['aaoff'].'">
|
|
<input type="checkbox">
|
|
<div class="switch-checkbox__bullet">
|
|
<i>
|
|
<svg class="icon icon-close">
|
|
<use xlink:href="' . HESK_PATH . 'img/sprite.svg#icon-close"></use>
|
|
</svg>
|
|
<svg class="icon icon-tick">
|
|
<use xlink:href="' . HESK_PATH . 'img/sprite.svg#icon-tick"></use>
|
|
</svg>
|
|
</i>
|
|
</div>
|
|
</a>
|
|
</label>';
|
|
}
|
|
} else {
|
|
$autoassign_code = '';
|
|
}
|
|
|
|
echo <<<EOC
|
|
<tr $table_row>
|
|
<td>$myuser[name]</td>
|
|
<td><a href="mailto:$myuser[email]">$myuser[email]</a></td>
|
|
<td>$myuser[user]</td>
|
|
<td>$myuser[isadmin]</td>
|
|
|
|
EOC;
|
|
|
|
if ($hesk_settings['rating']) {
|
|
$alt = $myuser['rating'] ? sprintf($hesklang['rated'], sprintf("%01.1f", $myuser['rating']), ($myuser['ratingneg']+$myuser['ratingpos'])) : $hesklang['not_rated'];
|
|
echo '<td style="text-align:center; white-space:nowrap;">
|
|
'.hesk3_get_rating($myuser['rating']).'
|
|
</td>';
|
|
}
|
|
|
|
if ($hesk_settings['autoassign']) {
|
|
echo '<td>' . $autoassign_code . '</td>';
|
|
}
|
|
|
|
echo <<<EOC
|
|
<td class="nowrap buttons"><p>$edit_code $remove_code</p></td>
|
|
</tr>
|
|
|
|
EOC;
|
|
} // End while
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="right-bar team-create" <?php echo hesk_SESSION(array('userdata','errors')) ? 'style="display: block"' : ''; ?>>
|
|
<div class="right-bar__body form" data-step="1">
|
|
<h3>
|
|
<a href="manage_users.php?a=reset_form">
|
|
<svg class="icon icon-back">
|
|
<use xlink:href="<?php echo HESK_PATH; ?>img/sprite.svg#icon-back"></use>
|
|
</svg>
|
|
<span><?php echo $hesklang['add_user']; ?></span>
|
|
</a>
|
|
</h3>
|
|
<?php
|
|
if (hesk_SESSION(array('userdata', 'errors'))) {
|
|
hesk_handle_messages();
|
|
}
|
|
?>
|
|
<form name="form1" method="post" action="manage_users.php" class="form <?php echo hesk_SESSION(array('userdata','errors')) ? 'invalid' : ''; ?>">
|
|
<?php hesk_profile_tab('userdata', false); ?>
|
|
|
|
<!-- Submit -->
|
|
<div class="right-bar__footer">
|
|
<input type="hidden" name="a" value="new">
|
|
<input type="hidden" name="token" value="<?php hesk_token_echo(); ?>">
|
|
<button type="button" class="btn btn-border" ripple="ripple" data-action="back"><?php echo $hesklang['wizard_back']; ?></button>
|
|
<button type="button" class="btn btn-full next" data-action="next" ripple="ripple"><?php echo $hesklang['wizard_next']; ?></button>
|
|
<button type="submit" class="btn btn-full save" data-action="save" ripple="ripple"><?php echo $hesklang['create_user']; ?></button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
require_once(HESK_PATH . 'inc/footer.inc.php');
|
|
exit();
|
|
|
|
} // End else
|
|
|
|
|
|
/*** START FUNCTIONS ***/
|
|
|
|
|
|
function compare_user_permissions($compare_id, $compare_isadmin, $compare_categories, $compare_features)
|
|
{
|
|
global $hesk_settings;
|
|
|
|
/* Comparing myself? */
|
|
if ($compare_id == $_SESSION['id'])
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/* Admins have full access, no need to compare */
|
|
if ($_SESSION['isadmin'])
|
|
{
|
|
return true;
|
|
}
|
|
elseif ($compare_isadmin)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/* Compare categories */
|
|
foreach ($compare_categories as $catid)
|
|
{
|
|
if ( ! array_key_exists($catid, $hesk_settings['categories']) )
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/* Compare features */
|
|
foreach ($compare_features as $feature)
|
|
{
|
|
if ( ! in_array($feature, $hesk_settings['features']) )
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
|
|
} // END compare_user_permissions()
|
|
|
|
|
|
function edit_user()
|
|
{
|
|
global $hesk_settings, $hesklang, $default_userdata;
|
|
|
|
$id = intval( hesk_GET('id') ) or hesk_error("$hesklang[int_error]: $hesklang[no_valid_id]");
|
|
|
|
/* To edit self fore using "Profile" page */
|
|
if ($id == $_SESSION['id'])
|
|
{
|
|
hesk_process_messages($hesklang['eyou'],'profile.php','NOTICE');
|
|
}
|
|
|
|
$_SESSION['edit_userdata'] = TRUE;
|
|
|
|
if ( ! isset($_SESSION['save_userdata']))
|
|
{
|
|
$res = hesk_dbQuery("SELECT *,`heskprivileges` AS `features` FROM `".hesk_dbEscape($hesk_settings['db_pfix'])."users` WHERE `id`='".intval($id)."' LIMIT 1");
|
|
$_SESSION['userdata'] = hesk_dbFetchAssoc($res);
|
|
|
|
/* Store original username for display until changes are saved successfully */
|
|
$_SESSION['original_user'] = $_SESSION['userdata']['user'];
|
|
|
|
/* A few variables need special attention... */
|
|
if ($_SESSION['userdata']['isadmin'])
|
|
{
|
|
$_SESSION['userdata']['features'] = $default_userdata['features'];
|
|
$_SESSION['userdata']['categories'] = $default_userdata['categories'];
|
|
}
|
|
else
|
|
{
|
|
$_SESSION['userdata']['features'] = explode(',',$_SESSION['userdata']['features']);
|
|
$_SESSION['userdata']['categories'] = explode(',',$_SESSION['userdata']['categories']);
|
|
}
|
|
$_SESSION['userdata']['cleanpass'] = '';
|
|
}
|
|
|
|
/* Make sure we have permission to edit this user */
|
|
if ( ! compare_user_permissions($id, $_SESSION['userdata']['isadmin'], $_SESSION['userdata']['categories'], $_SESSION['userdata']['features']) )
|
|
{
|
|
hesk_process_messages($hesklang['npea'],'manage_users.php');
|
|
}
|
|
|
|
/* Print header */
|
|
require_once(HESK_PATH . 'inc/header.inc.php');
|
|
|
|
/* Print main manage users page */
|
|
require_once(HESK_PATH . 'inc/show_admin_nav.inc.php');
|
|
?>
|
|
<div class="right-bar team-create" style="display: block">
|
|
<div class="right-bar__body form" data-step="1">
|
|
<h3>
|
|
<a href="manage_users.php">
|
|
<svg class="icon icon-back">
|
|
<use xlink:href="<?php echo HESK_PATH; ?>img/sprite.svg#icon-back"></use>
|
|
</svg>
|
|
<span><?php echo $hesklang['editing_user'].' '.$_SESSION['original_user']; ?></span>
|
|
</a>
|
|
</h3>
|
|
<?php
|
|
if (hesk_SESSION(array('userdata', 'errors'))) {
|
|
/* This will handle error, success and notice messages */
|
|
echo '<div style="margin: -24px -24px 10px -16px;">';
|
|
hesk_handle_messages();
|
|
echo '</div>';
|
|
}
|
|
?>
|
|
<form name="form1" method="post" action="manage_users.php" class="form <?php echo hesk_SESSION(array('userdata','errors')) ? 'invalid' : ''; ?>">
|
|
<?php hesk_profile_tab('userdata', false); ?>
|
|
|
|
<!-- Submit -->
|
|
<div class="right-bar__footer">
|
|
<input type="hidden" name="a" value="save">
|
|
<input type="hidden" name="userid" value="<?php echo $id; ?>" />
|
|
<input type="hidden" name="token" value="<?php hesk_token_echo(); ?>">
|
|
<button type="button" class="btn btn-border" ripple="ripple" data-action="back"><?php echo $hesklang['wizard_back']; ?></button>
|
|
<button type="button" class="btn btn-full next" data-action="next" ripple="ripple"><?php echo $hesklang['wizard_next']; ?></button>
|
|
<button type="submit" class="btn btn-full save" data-action="save" ripple="ripple"><?php echo $hesklang['save_changes']; ?></button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
require_once(HESK_PATH . 'inc/footer.inc.php');
|
|
exit();
|
|
} // End edit_user()
|
|
|
|
|
|
function new_user()
|
|
{
|
|
global $hesk_settings, $hesklang;
|
|
|
|
/* A security check */
|
|
hesk_token_check('POST');
|
|
|
|
$myuser = hesk_validateUserInfo();
|
|
|
|
/* Categories and Features will be stored as a string */
|
|
$myuser['categories'] = implode(',',$myuser['categories']);
|
|
$myuser['features'] = implode(',',$myuser['features']);
|
|
|
|
/* Check for duplicate usernames */
|
|
$result = hesk_dbQuery("SELECT * FROM `".hesk_dbEscape($hesk_settings['db_pfix'])."users` WHERE `user` = '".hesk_dbEscape($myuser['user'])."' LIMIT 1");
|
|
if (hesk_dbNumRows($result) != 0)
|
|
{
|
|
hesk_process_messages($hesklang['duplicate_user'],'manage_users.php');
|
|
}
|
|
|
|
/* Admins will have access to all features and categories */
|
|
if ($myuser['isadmin'])
|
|
{
|
|
$myuser['categories'] = '';
|
|
$myuser['features'] = '';
|
|
}
|
|
|
|
hesk_dbQuery("INSERT INTO `".hesk_dbEscape($hesk_settings['db_pfix'])."users` (
|
|
`user`,
|
|
`pass`,
|
|
`isadmin`,
|
|
`name`,
|
|
`email`,
|
|
`signature`,
|
|
`categories`,
|
|
`autoassign`,
|
|
`heskprivileges`,
|
|
`afterreply`,
|
|
`autostart`,
|
|
`autoreload`,
|
|
`notify_customer_new`,
|
|
`notify_customer_reply`,
|
|
`show_suggested`,
|
|
`notify_new_unassigned`,
|
|
`notify_new_my`,
|
|
`notify_reply_unassigned`,
|
|
`notify_reply_my`,
|
|
`notify_assigned`,
|
|
`notify_pm`,
|
|
`notify_note`
|
|
) VALUES (
|
|
'".hesk_dbEscape($myuser['user'])."',
|
|
'".hesk_dbEscape($myuser['pass'])."',
|
|
'".intval($myuser['isadmin'])."',
|
|
'".hesk_dbEscape($myuser['name'])."',
|
|
'".hesk_dbEscape($myuser['email'])."',
|
|
'".hesk_dbEscape($myuser['signature'])."',
|
|
'".hesk_dbEscape($myuser['categories'])."',
|
|
'".intval($myuser['autoassign'])."',
|
|
'".hesk_dbEscape($myuser['features'])."',
|
|
'".($myuser['afterreply'])."' ,
|
|
'".($myuser['autostart'])."' ,
|
|
'".($myuser['autoreload'])."' ,
|
|
'".($myuser['notify_customer_new'])."' ,
|
|
'".($myuser['notify_customer_reply'])."' ,
|
|
'".($myuser['show_suggested'])."' ,
|
|
'".($myuser['notify_new_unassigned'])."' ,
|
|
'".($myuser['notify_new_my'])."' ,
|
|
'".($myuser['notify_reply_unassigned'])."' ,
|
|
'".($myuser['notify_reply_my'])."' ,
|
|
'".($myuser['notify_assigned'])."' ,
|
|
'".($myuser['notify_pm'])."',
|
|
'".($myuser['notify_note'])."'
|
|
)" );
|
|
|
|
$_SESSION['seluser'] = hesk_dbInsertID();
|
|
|
|
unset($_SESSION['userdata']);
|
|
|
|
hesk_process_messages(sprintf($hesklang['user_added_success'],$myuser['user'],$myuser['cleanpass']),'./manage_users.php','SUCCESS');
|
|
} // End new_user()
|
|
|
|
|
|
function update_user()
|
|
{
|
|
global $hesk_settings, $hesklang;
|
|
|
|
/* A security check */
|
|
hesk_token_check('POST');
|
|
|
|
$_SESSION['save_userdata'] = TRUE;
|
|
|
|
$tmp = intval( hesk_POST('userid') ) or hesk_error("$hesklang[int_error]: $hesklang[no_valid_id]");
|
|
|
|
/* To edit self fore using "Profile" page */
|
|
if ($tmp == $_SESSION['id'])
|
|
{
|
|
hesk_process_messages($hesklang['eyou'],'profile.php','NOTICE');
|
|
}
|
|
|
|
$_SERVER['PHP_SELF'] = './manage_users.php?a=edit&id='.$tmp;
|
|
$myuser = hesk_validateUserInfo(0,$_SERVER['PHP_SELF']);
|
|
$myuser['id'] = $tmp;
|
|
|
|
/* Check for duplicate usernames */
|
|
$res = hesk_dbQuery("SELECT `id`,`isadmin`,`categories`,`heskprivileges` FROM `".hesk_dbEscape($hesk_settings['db_pfix'])."users` WHERE `user` = '".hesk_dbEscape($myuser['user'])."' LIMIT 1");
|
|
if (hesk_dbNumRows($res) == 1)
|
|
{
|
|
$tmp = hesk_dbFetchAssoc($res);
|
|
|
|
/* Duplicate? */
|
|
if ($tmp['id'] != $myuser['id'])
|
|
{
|
|
hesk_process_messages($hesklang['duplicate_user'],$_SERVER['PHP_SELF']);
|
|
}
|
|
|
|
/* Do we have permission to edit this user? */
|
|
if ( ! compare_user_permissions($tmp['id'], $tmp['isadmin'], explode(',', $tmp['categories']) , explode(',', $tmp['heskprivileges'])) )
|
|
{
|
|
hesk_process_messages($hesklang['npea'],'manage_users.php');
|
|
}
|
|
}
|
|
|
|
/* Admins will have access to all features and categories */
|
|
if ($myuser['isadmin'])
|
|
{
|
|
$myuser['categories'] = '';
|
|
$myuser['features'] = '';
|
|
}
|
|
/* Not admin */
|
|
else
|
|
{
|
|
/* Categories and Features will be stored as a string */
|
|
$myuser['categories'] = implode(',',$myuser['categories']);
|
|
$myuser['features'] = implode(',',$myuser['features']);
|
|
|
|
/* Unassign tickets from categories that the user had access before but doesn't anymore */
|
|
hesk_dbQuery("UPDATE `".hesk_dbEscape($hesk_settings['db_pfix'])."tickets` SET `owner`=0 WHERE `owner`='".intval($myuser['id'])."' AND `category` NOT IN (".$myuser['categories'].")");
|
|
}
|
|
|
|
hesk_dbQuery(
|
|
"UPDATE `".hesk_dbEscape($hesk_settings['db_pfix'])."users` SET
|
|
`user`='".hesk_dbEscape($myuser['user'])."',
|
|
`name`='".hesk_dbEscape($myuser['name'])."',
|
|
`email`='".hesk_dbEscape($myuser['email'])."',
|
|
`signature`='".hesk_dbEscape($myuser['signature'])."'," . ( isset($myuser['pass']) ? "`pass`='".hesk_dbEscape($myuser['pass'])."'," : '' ) . "
|
|
`categories`='".hesk_dbEscape($myuser['categories'])."',
|
|
`isadmin`='".intval($myuser['isadmin'])."',
|
|
`autoassign`='".intval($myuser['autoassign'])."',
|
|
`heskprivileges`='".hesk_dbEscape($myuser['features'])."',
|
|
`afterreply`='".($myuser['afterreply'])."' ,
|
|
`autostart`='".($myuser['autostart'])."' ,
|
|
`autoreload`='".($myuser['autoreload'])."' ,
|
|
`notify_customer_new`='".($myuser['notify_customer_new'])."' ,
|
|
`notify_customer_reply`='".($myuser['notify_customer_reply'])."' ,
|
|
`show_suggested`='".($myuser['show_suggested'])."' ,
|
|
`notify_new_unassigned`='".($myuser['notify_new_unassigned'])."' ,
|
|
`notify_new_my`='".($myuser['notify_new_my'])."' ,
|
|
`notify_reply_unassigned`='".($myuser['notify_reply_unassigned'])."' ,
|
|
`notify_reply_my`='".($myuser['notify_reply_my'])."' ,
|
|
`notify_assigned`='".($myuser['notify_assigned'])."' ,
|
|
`notify_pm`='".($myuser['notify_pm'])."',
|
|
`notify_note`='".($myuser['notify_note'])."'
|
|
WHERE `id`='".intval($myuser['id'])."'");
|
|
|
|
unset($_SESSION['save_userdata']);
|
|
unset($_SESSION['userdata']);
|
|
|
|
hesk_process_messages( $hesklang['user_profile_updated_success'], './manage_users.php','SUCCESS');
|
|
} // End update_profile()
|
|
|
|
|
|
function hesk_validateUserInfo($pass_required = 1, $redirect_to = './manage_users.php')
|
|
{
|
|
global $hesk_settings, $hesklang;
|
|
|
|
$hesk_error_buffer = '';
|
|
$errors = array();
|
|
|
|
if (hesk_input(hesk_POST('name'))) {
|
|
$myuser['name'] = hesk_input(hesk_POST('name'));
|
|
} else {
|
|
$hesk_error_buffer .= '<li>' . $hesklang['enter_real_name'] . '</li>';
|
|
$errors[] = 'name';
|
|
}
|
|
|
|
if (hesk_validateEmail( hesk_POST('email'), 'ERR', 0)) {
|
|
$myuser['email'] = hesk_validateEmail( hesk_POST('email'), 'ERR', 0);
|
|
} else {
|
|
$hesk_error_buffer .= '<li>' . $hesklang['enter_valid_email'] . '</li>';
|
|
$errors[] = 'email';
|
|
}
|
|
|
|
if (hesk_input( hesk_POST('user') )) {
|
|
$myuser['user'] = hesk_input(hesk_POST('user'));
|
|
} else {
|
|
$hesk_error_buffer .= '<li>' . $hesklang['enter_username'] . '</li>';
|
|
$errors[] = 'user';
|
|
}
|
|
|
|
$myuser['isadmin'] = empty($_POST['isadmin']) ? 0 : 1;
|
|
$myuser['signature'] = hesk_input( hesk_POST('signature') );
|
|
$myuser['autoassign'] = hesk_POST('autoassign') == 'Y' ? 1 : 0;
|
|
|
|
/* If it's not admin at least one category and fature is required */
|
|
$myuser['categories'] = array();
|
|
$myuser['features'] = array();
|
|
|
|
if ($myuser['isadmin']==0)
|
|
{
|
|
if (empty($_POST['categories']) || ! is_array($_POST['categories']) )
|
|
{
|
|
$hesk_error_buffer .= '<li>' . $hesklang['asign_one_cat'] . '</li>';
|
|
$errors[] = 'categories';
|
|
}
|
|
else
|
|
{
|
|
foreach ($_POST['categories'] as $tmp)
|
|
{
|
|
if (is_array($tmp))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
if ($tmp = intval($tmp))
|
|
{
|
|
$myuser['categories'][] = $tmp;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (empty($_POST['features']) || ! is_array($_POST['features']) )
|
|
{
|
|
$hesk_error_buffer .= '<li>' . $hesklang['asign_one_feat'] . '</li>';
|
|
$errors[] = 'features';
|
|
}
|
|
else
|
|
{
|
|
foreach ($_POST['features'] as $tmp)
|
|
{
|
|
if (in_array($tmp,$hesk_settings['features']))
|
|
{
|
|
$myuser['features'][] = $tmp;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (hesk_mb_strlen($myuser['signature'])>1000)
|
|
{
|
|
$hesk_error_buffer .= '<li>' . $hesklang['signature_long'] . '</li>';
|
|
$errors[] = 'signature';
|
|
}
|
|
|
|
/* Password */
|
|
$myuser['cleanpass'] = '';
|
|
|
|
$newpass = hesk_input( hesk_POST('newpass') );
|
|
$passlen = strlen($newpass);
|
|
|
|
if ($pass_required || $passlen > 0)
|
|
{
|
|
/* At least 5 chars? */
|
|
if ($passlen < 5)
|
|
{
|
|
$hesk_error_buffer .= '<li>' . $hesklang['password_not_valid'] . '</li>';
|
|
$errors[] = 'passwords';
|
|
}
|
|
/* Check password confirmation */
|
|
else
|
|
{
|
|
$newpass2 = hesk_input( hesk_POST('newpass2') );
|
|
|
|
if ($newpass != $newpass2)
|
|
{
|
|
$hesk_error_buffer .= '<li>' . $hesklang['passwords_not_same'] . '</li>';
|
|
$errors[] = 'passwords';
|
|
}
|
|
else
|
|
{
|
|
$myuser['pass'] = hesk_Pass2Hash($newpass);
|
|
$myuser['cleanpass'] = $newpass;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* After reply */
|
|
$myuser['afterreply'] = intval( hesk_POST('afterreply') );
|
|
if ($myuser['afterreply'] != 1 && $myuser['afterreply'] != 2)
|
|
{
|
|
$myuser['afterreply'] = 0;
|
|
}
|
|
|
|
// Defaults
|
|
$myuser['autostart'] = isset($_POST['autostart']) ? 1 : 0;
|
|
$myuser['notify_customer_new'] = isset($_POST['notify_customer_new']) ? 1 : 0;
|
|
$myuser['notify_customer_reply'] = isset($_POST['notify_customer_reply']) ? 1 : 0;
|
|
$myuser['show_suggested'] = isset($_POST['show_suggested']) ? 1 : 0;
|
|
$myuser['autoreload'] = isset($_POST['autoreload']) ? 1 : 0;
|
|
|
|
if ($myuser['autoreload'])
|
|
{
|
|
$myuser['autoreload'] = intval(hesk_POST('reload_time'));
|
|
|
|
if (hesk_POST('secmin') == 'min')
|
|
{
|
|
$myuser['autoreload'] *= 60;
|
|
}
|
|
|
|
if ($myuser['autoreload'] < 0 || $myuser['autoreload'] > 65535)
|
|
{
|
|
$myuser['autoreload'] = 30;
|
|
}
|
|
}
|
|
|
|
/* Notifications */
|
|
$myuser['notify_new_unassigned'] = empty($_POST['notify_new_unassigned']) ? 0 : 1;
|
|
$myuser['notify_new_my'] = empty($_POST['notify_new_my']) ? 0 : 1;
|
|
$myuser['notify_reply_unassigned'] = empty($_POST['notify_reply_unassigned']) ? 0 : 1;
|
|
$myuser['notify_reply_my'] = empty($_POST['notify_reply_my']) ? 0 : 1;
|
|
$myuser['notify_assigned'] = empty($_POST['notify_assigned']) ? 0 : 1;
|
|
$myuser['notify_note'] = empty($_POST['notify_note']) ? 0 : 1;
|
|
$myuser['notify_pm'] = empty($_POST['notify_pm']) ? 0 : 1;
|
|
|
|
/* Save entered info in session so we don't lose it in case of errors */
|
|
$_SESSION['userdata'] = $myuser;
|
|
|
|
/* Any errors */
|
|
if (strlen($hesk_error_buffer))
|
|
{
|
|
if ($myuser['isadmin'])
|
|
{
|
|
// Preserve default staff data for the form
|
|
global $default_userdata;
|
|
$_SESSION['userdata']['features'] = $default_userdata['features'];
|
|
$_SESSION['userdata']['categories'] = $default_userdata['categories'];
|
|
}
|
|
$_SESSION['userdata']['errors'] = $errors;
|
|
|
|
$hesk_error_buffer = $hesklang['rfm'].'<br /><br /><ul>'.$hesk_error_buffer.'</ul>';
|
|
hesk_process_messages($hesk_error_buffer,$redirect_to);
|
|
}
|
|
|
|
// "can_unban_emails" feature also enables "can_ban_emails"
|
|
if ( in_array('can_unban_emails', $myuser['features']) && ! in_array('can_ban_emails', $myuser['features']) )
|
|
{
|
|
$myuser['features'][] = 'can_ban_emails';
|
|
}
|
|
|
|
return $myuser;
|
|
|
|
} // End hesk_validateUserInfo()
|
|
|
|
|
|
function remove()
|
|
{
|
|
global $hesk_settings, $hesklang;
|
|
|
|
/* A security check */
|
|
hesk_token_check();
|
|
|
|
$myuser = intval( hesk_GET('id' ) ) or hesk_error($hesklang['no_valid_id']);
|
|
|
|
/* You can't delete the default user */
|
|
if ($myuser == 1)
|
|
{
|
|
hesk_process_messages($hesklang['cant_del_admin'],'./manage_users.php');
|
|
}
|
|
|
|
/* You can't delete your own account (the one you are logged in) */
|
|
if ($myuser == $_SESSION['id'])
|
|
{
|
|
hesk_process_messages($hesklang['cant_del_own'],'./manage_users.php');
|
|
}
|
|
|
|
/* Un-assign all tickets for this user */
|
|
$res = hesk_dbQuery("UPDATE `".hesk_dbEscape($hesk_settings['db_pfix'])."tickets` SET `owner`=0 WHERE `owner`='".intval($myuser)."'");
|
|
|
|
/* Delete user info */
|
|
$res = hesk_dbQuery("DELETE FROM `".hesk_dbEscape($hesk_settings['db_pfix'])."users` WHERE `id`='".intval($myuser)."'");
|
|
if (hesk_dbAffectedRows() != 1)
|
|
{
|
|
hesk_process_messages($hesklang['int_error'].': '.$hesklang['user_not_found'],'./manage_users.php');
|
|
}
|
|
|
|
/* Delete any user reply drafts */
|
|
hesk_dbQuery("DELETE FROM `".hesk_dbEscape($hesk_settings['db_pfix'])."reply_drafts` WHERE `owner`={$myuser}");
|
|
|
|
hesk_process_messages($hesklang['sel_user_removed'],'./manage_users.php','SUCCESS');
|
|
} // End remove()
|
|
|
|
|
|
function toggle_autoassign()
|
|
{
|
|
global $hesk_settings, $hesklang;
|
|
|
|
/* A security check */
|
|
hesk_token_check();
|
|
|
|
$myuser = intval( hesk_GET('id' ) ) or hesk_error($hesklang['no_valid_id']);
|
|
$_SESSION['seluser'] = $myuser;
|
|
|
|
if ( intval( hesk_GET('s') ) )
|
|
{
|
|
$autoassign = 1;
|
|
$tmp = $hesklang['uaaon'];
|
|
}
|
|
else
|
|
{
|
|
$autoassign = 0;
|
|
$tmp = $hesklang['uaaoff'];
|
|
}
|
|
|
|
/* Update auto-assign settings */
|
|
$res = hesk_dbQuery("UPDATE `".hesk_dbEscape($hesk_settings['db_pfix'])."users` SET `autoassign`='{$autoassign}' WHERE `id`='".intval($myuser)."'");
|
|
if (hesk_dbAffectedRows() != 1)
|
|
{
|
|
hesk_process_messages($hesklang['int_error'].': '.$hesklang['user_not_found'],'./manage_users.php');
|
|
}
|
|
|
|
hesk_process_messages($tmp,'./manage_users.php','SUCCESS');
|
|
} // End toggle_autoassign()
|
|
?>
|