Some more refactoring for subgroups.
[timetracker.git] / mobile / user_edit.php
1 <?php
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.
10 // |
11 // | There are only two ways to violate the license:
12 // |
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).
16 // |
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).
20 // |
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
23 // |
24 // +----------------------------------------------------------------------+
25 // | Contributors:
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
28
29 require_once('../initialize.php');
30 import('form.Form');
31 import('ttProjectHelper');
32 import('ttTeamHelper');
33 import('ttGroupHelper');
34 import('ttUserHelper');
35 import('form.Table');
36 import('form.TableColumn');
37
38 // Access checks.
39 if (!ttAccessAllowed('manage_users')) {
40   header('Location: access_denied.php');
41   exit();
42 }
43 $user_id = (int)$request->getParameter('id');
44 $user_details = $user->getUserDetails($user_id);
45 if (!$user_details) {
46   header('Location: access_denied.php');
47   exit();
48 }
49 // End of access checks.
50
51 if ($user->isPluginEnabled('cl'))
52   $clients = ttGroupHelper::getActiveClients();
53
54 $projects = ttGroupHelper::getActiveProjects();
55 $assigned_projects = array();
56
57 if ($request->isPost()) {
58   $cl_name = trim($request->getParameter('name'));
59   $cl_login = trim($request->getParameter('login'));
60   if (!$auth->isPasswordExternal()) {
61     $cl_password1 = $request->getParameter('pas1');
62     $cl_password2 = $request->getParameter('pas2');
63   }
64   $cl_email = trim($request->getParameter('email'));
65   $cl_role_id = $request->getParameter('role');
66   $cl_client_id = $request->getParameter('client');
67   $cl_status = $request->getParameter('status');
68   $cl_rate = $request->getParameter('rate');
69   $cl_projects = $request->getParameter('projects');
70   if (is_array($cl_projects)) {
71     foreach ($cl_projects as $p) {
72       if (ttValidFloat($request->getParameter('rate_'.$p), true)) {
73         $project_with_rate = array();
74         $project_with_rate['id'] = $p;
75         $project_with_rate['rate'] = $request->getParameter('rate_'.$p);
76         $assigned_projects[] = $project_with_rate;
77       } else
78         $err->add($i18n->get('error.field'), 'rate_'.$p);
79     }
80   }
81 } else {
82   $cl_name = $user_details['name'];
83   $cl_login = $user_details['login'];
84   $cl_email = $user_details['email'];
85   $cl_rate = str_replace('.', $user->decimal_mark, $user_details['rate']);
86   $cl_role_id = $user_details['role_id'];
87   $cl_client_id = $user_details['client_id'];
88   $cl_status = $user_details['status'];
89   $cl_projects = array();
90   $assigned_projects = ttProjectHelper::getAssignedProjects($user_id);
91   foreach($assigned_projects as $p) {
92     $cl_projects[] = $p['id'];
93   }
94 }
95
96 $form = new Form('userForm');
97 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'name','value'=>$cl_name));
98 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'login','value'=>$cl_login));
99 if (!$auth->isPasswordExternal()) {
100   $form->addInput(array('type'=>'password','maxlength'=>'30','name'=>'pas1','value'=>$cl_password1));
101   $form->addInput(array('type'=>'password','maxlength'=>'30','name'=>'pas2','value'=>$cl_password2));
102 }
103 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'email','value'=>$cl_email));
104
105 $active_roles = ttTeamHelper::getActiveRolesForUser();
106 $form->addInput(array('type'=>'combobox','onchange'=>'handleClientControl()','name'=>'role','value'=>$cl_role_id,'data'=>$active_roles,'datakeys'=>array('id', 'name')));
107 if ($user->isPluginEnabled('cl'))
108   $form->addInput(array('type'=>'combobox','name'=>'client','value'=>$cl_client_id,'data'=>$clients,'datakeys'=>array('id', 'name'),'empty'=>array(''=>$i18n->get('dropdown.select'))));
109
110 $form->addInput(array('type'=>'combobox','name'=>'status','value'=>$cl_status,
111   'data'=>array(ACTIVE=>$i18n->get('dropdown.status_active'),INACTIVE=>$i18n->get('dropdown.status_inactive'))));
112 $form->addInput(array('type'=>'floatfield','maxlength'=>'10','name'=>'rate','format'=>'.2','value'=>$cl_rate));
113
114 // Define classes for the projects table.
115 class NameCellRenderer extends DefaultCellRenderer {
116   function render(&$table, $value, $row, $column, $selected = false) {
117     $this->setOptions(array('width'=>200,'valign'=>'top'));
118     $this->setValue('<label for = "'.$table->getName().'_'.$row.'">'.htmlspecialchars($value).'</label>');
119     return $this->toString();
120   }
121 }
122 class RateCellRenderer extends DefaultCellRenderer {
123   function render(&$table, $value, $row, $column, $selected = false) {
124     global $assigned_projects;
125     $field = new FloatField('rate_'.$table->getValueAtName($row,'id'));
126     $field->setFormName($table->getFormName());
127     $field->setSize(5);
128     $field->setFormat('.2');
129     foreach ($assigned_projects as $p) {
130       if ($p['id'] == $table->getValueAtName($row,'id')) $field->setValue($p['rate']);
131     }
132     $this->setValue($field->getHtml());
133     return $this->toString();
134   }
135 }
136 // Create projects table.
137 $table = new Table('projects');
138 $table->setIAScript('setRate');
139 $table->setTableOptions(array('width'=>'100%','cellspacing'=>'1','cellpadding'=>'3','border'=>'0'));
140 $table->setRowOptions(array('valign'=>'top','class'=>'tableHeader'));
141 $table->setData($projects);
142 $table->setKeyField('id');
143 $table->setValue($cl_projects);
144 $table->addColumn(new TableColumn('name', $i18n->get('label.project'), new NameCellRenderer()));
145 $table->addColumn(new TableColumn('p_rate', $i18n->get('form.users.rate'), new RateCellRenderer()));
146 $form->addInputElement($table);
147
148 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$user_id));
149 $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->get('button.save')));
150 $form->addInput(array('type'=>'submit','name'=>'btn_delete','value'=>$i18n->get('label.delete')));
151
152 if ($request->isPost()) {
153   if ($request->getParameter('btn_submit')) {
154     // Validate user input.
155     if (!ttValidString($cl_name)) $err->add($i18n->get('error.field'), $i18n->get('label.person_name'));
156     if (!ttValidString($cl_login)) $err->add($i18n->get('error.field'), $i18n->get('label.login'));
157     if (!$auth->isPasswordExternal() && ($cl_password1 || $cl_password2)) {
158       if (!ttValidString($cl_password1)) $err->add($i18n->get('error.field'), $i18n->get('label.password'));
159       if (!ttValidString($cl_password2)) $err->add($i18n->get('error.field'), $i18n->get('label.confirm_password'));
160       if ($cl_password1 !== $cl_password2)
161         $err->add($i18n->get('error.not_equal'), $i18n->get('label.password'), $i18n->get('label.confirm_password'));
162     }
163     if (!ttValidEmail($cl_email, true)) $err->add($i18n->get('error.field'), $i18n->get('label.email'));
164     if (!ttValidFloat($cl_rate, true)) $err->add($i18n->get('error.field'), $i18n->get('form.users.default_rate'));
165   
166     if ($err->no()) {
167       $existing_user = ttUserHelper::getUserByLogin($cl_login);
168       if (!$existing_user || ($user_id == $existing_user['id'])) {
169   
170         $fields = array(
171           'name' => $cl_name,
172           'login' => $cl_login,
173           'password' => $cl_password1,
174           'email' => $cl_email,
175           'status' => $cl_status,
176           'rate' => $cl_rate,
177           'projects' => $assigned_projects);
178         if (in_array('manage_users', $user->rights)) {
179           $fields['role_id'] = $cl_role_id;
180           $fields['client_id'] = $cl_client_id;
181         }
182   
183         if (ttUserHelper::update($user_id, $fields)) {
184   
185           // If our own login changed, set new one in cookie to remember it.
186           if (($user_id == $user->id) && ($user->login != $cl_login)) {
187             setcookie('tt_login', $cl_login, time() + COOKIE_EXPIRE, '/');
188           }
189   
190           // In case the name of the "on behalf" user has changed - set it in session.
191           if (($user->behalf_id == $user_id) && ($user->behalf_name != $cl_name)) {
192             $_SESSION['behalf_name'] = $cl_name;
193           }
194   
195           // If we deactivated our own account, do housekeeping and logout.
196           if ($user->id == $user_id && !is_null($cl_status) && $cl_status == INACTIVE) {
197             // Remove tt_login cookie that stores login name.
198             unset($_COOKIE['tt_login']);
199             setcookie('tt_login', NULL, -1);
200   
201             $auth->doLogout();
202             header('Location: login.php');
203             exit();
204           }
205   
206           header('Location: users.php');
207           exit();
208   
209         } else
210           $err->add($i18n->get('error.db'));
211       } else
212         $err->add($i18n->get('error.user_exists'));
213     }
214   }
215   
216   if ($request->getParameter('btn_delete')) {
217     header("Location: user_delete.php?id=$user_id");
218     exit();
219   }
220 } // isPost
221
222 $rates = ttProjectHelper::getRates($user_id);
223 $smarty->assign('rates', $rates);
224
225 $smarty->assign('auth_external', $auth->isPasswordExternal());
226 $smarty->assign('active_roles', $active_roles);
227 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
228 $smarty->assign('onload', 'onLoad="document.userForm.name.focus();handleClientControl();"');
229 $smarty->assign('user_id', $user_id);
230 $smarty->assign('title', $i18n->get('title.edit_user'));
231 $smarty->assign('content_page_name', 'mobile/user_edit.tpl');
232 $smarty->display('mobile/index.tpl');