2 // +----------------------------------------------------------------------+
 
   3 // | Anuko Time Tracker
 
   4 // +----------------------------------------------------------------------+
 
   5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
 
   6 // +----------------------------------------------------------------------+
 
   7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
 
   8 // | by anyone for any purpose, and freely redistributed alone or in
 
   9 // | combination with other software, provided that the license is obeyed.
 
  11 // | There are only two ways to violate the license:
 
  13 // | 1. To redistribute this code in source form, with the copyright
 
  14 // |    notice or license removed or altered. (Distributing in compiled
 
  15 // |    forms without embedded copyright notices is permitted).
 
  17 // | 2. To redistribute modified versions of this code in *any* form
 
  18 // |    that bears insufficient indications that the modifications are
 
  19 // |    not the work of the original author(s).
 
  21 // | This license applies to this document only, not any other software
 
  22 // | that it may be combined with.
 
  24 // +----------------------------------------------------------------------+
 
  26 // | https://www.anuko.com/time_tracker/credits.htm
 
  27 // +----------------------------------------------------------------------+
 
  29 require_once('initialize.php');
 
  31 import('ttProjectHelper');
 
  32 import('ttTeamHelper');
 
  33 import('ttGroupHelper');
 
  34 import('ttUserHelper');
 
  36 import('form.TableColumn');
 
  37 import('ttRoleHelper');
 
  40 if (!ttAccessAllowed('manage_users')) {
 
  41   header('Location: access_denied.php');
 
  44 $user_id = (int)$request->getParameter('id');
 
  45 $user_details = $user->getUserDetails($user_id);
 
  47   header('Location: access_denied.php');
 
  50 // End of access checks.
 
  52 $show_quota = $user->isPluginEnabled('mq');
 
  53 if ($user->isPluginEnabled('cl'))
 
  54   $clients = ttGroupHelper::getActiveClients();
 
  56 $show_projects = MODE_PROJECTS == $user->getTrackingMode() || MODE_PROJECTS_AND_TASKS == $user->getTrackingMode();
 
  58   $projects = ttGroupHelper::getActiveProjects();
 
  59   if (count($projects) == 0) $show_projects = false;
 
  61 $assigned_projects = array();
 
  63 if ($request->isPost()) {
 
  64   $cl_name = trim($request->getParameter('name'));
 
  65   $cl_login = trim($request->getParameter('login'));
 
  66   if (!$auth->isPasswordExternal()) {
 
  67     $cl_password1 = $request->getParameter('pas1');
 
  68     $cl_password2 = $request->getParameter('pas2');
 
  70   $cl_email = trim($request->getParameter('email'));
 
  71   $cl_role_id = $request->getParameter('role');
 
  72   $cl_client_id = $request->getParameter('client');
 
  73   $cl_status = $request->getParameter('status');
 
  74   $cl_rate = $request->getParameter('rate');
 
  75   $cl_quota_percent = $request->getParameter('quota_percent');
 
  76   $cl_projects = $request->getParameter('projects');
 
  77   if (is_array($cl_projects)) {
 
  78     foreach ($cl_projects as $p) {
 
  79       if (ttValidFloat($request->getParameter('rate_'.$p), true)) {
 
  80         $project_with_rate = array();
 
  81         $project_with_rate['id'] = $p;
 
  82         $project_with_rate['rate'] = $request->getParameter('rate_'.$p);
 
  83         $assigned_projects[] = $project_with_rate;
 
  85         $err->add($i18n->get('error.field'), 'rate_'.$p);
 
  89   $cl_name = $user_details['name'];
 
  90   $cl_login = $user_details['login'];
 
  91   $cl_email = $user_details['email'];
 
  92   $cl_rate = str_replace('.', $user->getDecimalMark(), $user_details['rate']);
 
  93   $cl_quota_percent = str_replace('.', $user->getDecimalMark(), $user_details['quota_percent']);
 
  94   $cl_role_id = $user_details['role_id'];
 
  95   $cl_client_id = $user_details['client_id'];
 
  96   $cl_status = $user_details['status'];
 
  97   $cl_projects = array();
 
  98   $assigned_projects = ttProjectHelper::getAssignedProjects($user_id);
 
  99   foreach($assigned_projects as $p) {
 
 100     $cl_projects[] = $p['id'];
 
 104 $form = new Form('userForm');
 
 105 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'name','style'=>'width: 300px;','value'=>$cl_name));
 
 106 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'login','style'=>'width: 300px;','value'=>$cl_login));
 
 107 if (!$auth->isPasswordExternal()) {
 
 108   $form->addInput(array('type'=>'password','maxlength'=>'30','name'=>'pas1','value'=>$cl_password1));
 
 109   $form->addInput(array('type'=>'password','maxlength'=>'30','name'=>'pas2','value'=>$cl_password2));
 
 111 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'email','style'=>'width: 300px;','value'=>$cl_email));
 
 113 $active_roles = ttTeamHelper::getActiveRolesForUser();
 
 114 $form->addInput(array('type'=>'combobox','onchange'=>'handleClientControl()','name'=>'role','value'=>$cl_role_id,'data'=>$active_roles, 'datakeys'=>array('id', 'name')));
 
 115 if ($user->isPluginEnabled('cl'))
 
 116   $form->addInput(array('type'=>'combobox','name'=>'client','value'=>$cl_client_id,'data'=>$clients,'datakeys'=>array('id', 'name'),'empty'=>array(''=>$i18n->get('dropdown.select'))));
 
 118 $form->addInput(array('type'=>'combobox','name'=>'status','value'=>$cl_status,
 
 119   'data'=>array(ACTIVE=>$i18n->get('dropdown.status_active'),INACTIVE=>$i18n->get('dropdown.status_inactive'))));
 
 120 $form->addInput(array('type'=>'floatfield','maxlength'=>'10','name'=>'rate','format'=>'.2','value'=>$cl_rate));
 
 122   $form->addInput(array('type'=>'floatfield','maxlength'=>'10','name'=>'quota_percent','format'=>'.2','value'=>$cl_quota_percent));
 
 124 // Define classes for the projects table.
 
 125 class NameCellRenderer extends DefaultCellRenderer {
 
 126   function render(&$table, $value, $row, $column, $selected = false) {
 
 127     $this->setOptions(array('width'=>200));
 
 128     $this->setValue('<label for = "'.$table->name.'_'.$row.'">'.htmlspecialchars($value).'</label>');
 
 129     return $this->toString();
 
 132 class RateCellRenderer extends DefaultCellRenderer {
 
 133   function render(&$table, $value, $row, $column, $selected = false) {
 
 134     global $assigned_projects;
 
 136     $field = new FloatField('rate_'.$table->getValueAtName($row,'id'));
 
 137     $field->setFormName($table->getFormName());
 
 139     $field->setFormat('.2');
 
 140     foreach ($assigned_projects as $p) {
 
 141       if ($p['id'] == $table->getValueAtName($row,'id')) $field->setValue($p['rate']);
 
 143     $this->setValue($field->getHtml());
 
 144     return $this->toString();
 
 147 // Create projects table.
 
 148 $table = new Table('projects');
 
 149 $table->setIAScript('setRate');
 
 150 $table->setTableOptions(array('width'=>'100%','cellspacing'=>'1','cellpadding'=>'3','border'=>'0'));
 
 151 $table->setRowOptions(array('valign'=>'top','class'=>'tableHeader'));
 
 152 $table->setData($projects);
 
 153 $table->setKeyField('id');
 
 154 $table->setValue($cl_projects);
 
 155 $table->addColumn(new TableColumn('name', $i18n->get('label.project'), new NameCellRenderer()));
 
 156 $table->addColumn(new TableColumn('p_rate', $i18n->get('form.users.rate'), new RateCellRenderer()));
 
 157 $form->addInputElement($table);
 
 159 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$user_id));
 
 160 $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->get('button.save')));
 
 162 if ($request->isPost()) {
 
 163   // Validate user input.
 
 164   if (!ttValidString($cl_name)) $err->add($i18n->get('error.field'), $i18n->get('label.person_name'));
 
 165   if (!ttValidString($cl_login)) $err->add($i18n->get('error.field'), $i18n->get('label.login'));
 
 166   if (!$auth->isPasswordExternal() && ($cl_password1 || $cl_password2)) {
 
 167     if (!ttValidString($cl_password1)) $err->add($i18n->get('error.field'), $i18n->get('label.password'));
 
 168     if (!ttValidString($cl_password2)) $err->add($i18n->get('error.field'), $i18n->get('label.confirm_password'));
 
 169     if ($cl_password1 !== $cl_password2)
 
 170       $err->add($i18n->get('error.not_equal'), $i18n->get('label.password'), $i18n->get('label.confirm_password'));
 
 172   if (!ttValidEmail($cl_email, true)) $err->add($i18n->get('error.field'), $i18n->get('label.email'));
 
 173   // Require selection of a client for a client role.
 
 174   if ($user->isPluginEnabled('cl') && ttRoleHelper::isClientRole($cl_role_id) && !$cl_client_id) $err->add($i18n->get('error.client'));
 
 175   if (!ttValidFloat($cl_rate, true)) $err->add($i18n->get('error.field'), $i18n->get('form.users.default_rate'));
 
 176   if (!ttValidFloat($cl_quota_percent, true)) $err->add($i18n->get('error.field'), $i18n->get('label.quota'));
 
 179     $existing_user = ttUserHelper::getUserByLogin($cl_login);
 
 180     if (!$existing_user || ($user_id == $existing_user['id'])) {
 
 184         'login' => $cl_login,
 
 185         'password' => $cl_password1,
 
 186         'email' => $cl_email,
 
 187         'status' => $cl_status,
 
 189         'quota_percent' => $cl_quota_percent,
 
 190         'projects' => $assigned_projects);
 
 191       if (in_array('manage_users', $user->rights) && $cl_role_id) {
 
 192         $fields['role_id'] = $cl_role_id;
 
 193         $fields['client_id'] = $cl_client_id;
 
 196       if (ttUserHelper::update($user_id, $fields)) {
 
 198         // If our own login changed, set new one in cookie to remember it.
 
 199         if (($user_id == $user->id) && ($user->login != $cl_login)) {
 
 200           setcookie('tt_login', $cl_login, time() + COOKIE_EXPIRE, '/');
 
 203         // In case the name of the "on behalf" user has changed - set it in session.
 
 204         if (($user->behalf_id == $user_id) && ($user->behalf_name != $cl_name)) {
 
 205           $_SESSION['behalf_name'] = $cl_name;
 
 208         // If we deactivated our own account, do housekeeping and logout.
 
 209         if ($user->id == $user_id && !is_null($cl_status) && $cl_status == INACTIVE) {
 
 210           // Remove tt_login cookie that stores login name.
 
 211           unset($_COOKIE['tt_login']);
 
 212           setcookie('tt_login', NULL, -1);
 
 215           header('Location: login.php');
 
 219         header('Location: users.php');
 
 223         $err->add($i18n->get('error.db'));
 
 225       $err->add($i18n->get('error.user_exists'));
 
 230 if ($user->id == $user_id && $user->can('swap_roles')) {
 
 231   $users_for_swap = ttTeamHelper::getUsersForSwap();
 
 232   if (is_array($users_for_swap) && sizeof($users_for_swap) > 0)
 
 236 $rates = ttProjectHelper::getRates($user_id);
 
 237 $smarty->assign('rates', $rates);
 
 239 $smarty->assign('auth_external', $auth->isPasswordExternal());
 
 240 $smarty->assign('active_roles', $active_roles);
 
 241 $smarty->assign('can_swap', $can_swap);
 
 242 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
 
 243 $smarty->assign('onload', 'onLoad="document.userForm.name.focus();handleClientControl();"');
 
 244 $smarty->assign('show_quota', $show_quota);
 
 245 $smarty->assign('show_projects', $show_projects);
 
 246 $smarty->assign('user_id', $user_id);
 
 247 $smarty->assign('title', $i18n->get('title.edit_user'));
 
 248 $smarty->assign('content_page_name', 'user_edit.tpl');
 
 249 $smarty->display('index.tpl');