User add and edit now assign role ids to users.
[timetracker.git] / user_add.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('ttTeamHelper');
32 import('ttUserHelper');
33 import('form.Table');
34 import('form.TableColumn');
35 import('ttRoleHelper');
36
37 // Access check.
38 if (!ttAccessCheck(right_manage_team)) {
39   header('Location: access_denied.php');
40   exit();
41 }
42
43 // Use the "limit" plugin if we have one. Ignore include errors.
44 // The "limit" plugin is not required for normal operation of the Time Tracker.
45 @include('plugins/limit/user_add.php');
46
47 if ($user->isPluginEnabled('cl'))
48   $clients = ttTeamHelper::getActiveClients($user->team_id);
49
50 $assigned_projects = array();
51 if ($request->isPost()) {
52   $cl_name = trim($request->getParameter('name'));
53   $cl_login = trim($request->getParameter('login'));
54   if (!$auth->isPasswordExternal()) {
55     $cl_password1 = $request->getParameter('pas1');
56     $cl_password2 = $request->getParameter('pas2');
57   }
58   $cl_email = trim($request->getParameter('email'));
59   $cl_role = $request->getParameter('role');
60   if (!$cl_role) $cl_role = ROLE_USER;
61   $cl_client_id = $request->getParameter('client');
62   $cl_rate = $request->getParameter('rate');
63   $cl_projects = $request->getParameter('projects');
64   if (is_array($cl_projects)) {
65     foreach ($cl_projects as $p) {
66       if (ttValidFloat($request->getParameter('rate_'.$p), true)) {
67         $project_with_rate = array();
68         $project_with_rate['id'] = $p;
69         $project_with_rate['rate'] = $request->getParameter('rate_'.$p);
70         $assigned_projects[] = $project_with_rate;
71       } else
72         $err->add($i18n->getKey('error.field'), 'rate_'.$p);
73     }
74   }
75 }
76
77 $form = new Form('userForm');
78 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'name','style'=>'width: 300px;','value'=>$cl_name));
79 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'login','style'=>'width: 300px;','value'=>$cl_login));
80 if (!$auth->isPasswordExternal()) {
81   $form->addInput(array('type'=>'password','maxlength'=>'30','name'=>'pas1','value'=>$cl_password1));
82   $form->addInput(array('type'=>'password','maxlength'=>'30','name'=>'pas2','value'=>$cl_password2));
83 }
84 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'email','value'=>$cl_email));
85
86 $active_roles = ttTeamHelper::getActiveRolesForUser();
87 //$roles[ROLE_USER] = $i18n->getKey('label.user');
88 //$roles[ROLE_COMANAGER] = $i18n->getKey('form.users.comanager');
89 //if ($user->isPluginEnabled('cl'))
90 //  $roles[ROLE_CLIENT] = $i18n->getKey('label.client');
91 $form->addInput(array('type'=>'combobox','onchange'=>'handleClientControl()','name'=>'role','value'=>$cl_role,'data'=>$active_roles,'datakeys'=>array('id', 'name')));
92 if ($user->isPluginEnabled('cl'))
93   $form->addInput(array('type'=>'combobox','name'=>'client','value'=>$cl_client_id,'data'=>$clients,'datakeys'=>array('id', 'name'),'empty'=>array(''=>$i18n->getKey('dropdown.select'))));
94
95 $form->addInput(array('type'=>'floatfield','maxlength'=>'10','name'=>'rate','format'=>'.2','value'=>$cl_rate));
96
97 $projects = ttTeamHelper::getActiveProjects($user->team_id);
98
99 // Define classes for the projects table.
100 class NameCellRenderer extends DefaultCellRenderer {
101   function render(&$table, $value, $row, $column, $selected = false) {
102     $this->setOptions(array('width'=>200));
103     $this->setValue('<label for = "'.$table->name.'_'.$row.'">'.htmlspecialchars($value).'</label>');
104     return $this->toString();
105   }
106 }
107 class RateCellRenderer extends DefaultCellRenderer {
108   function render(&$table, $value, $row, $column, $selected = false) {
109     global $assigned_projects;
110     $field = new FloatField('rate_'.$table->getValueAtName($row, 'id'));
111     $field->setFormName($table->getFormName());
112     $field->setSize(5);
113     $field->setFormat('.2');
114     foreach ($assigned_projects as $p) {
115       if ($p['id'] == $table->getValueAtName($row,'id')) $field->setValue($p['rate']);
116     }
117     $this->setValue($field->getHtml());
118     return $this->toString();
119   }
120 }
121 // Create projects table.
122 $table = new Table('projects');
123 $table->setIAScript('setDefaultRate');
124 $table->setTableOptions(array('width'=>'100%','cellspacing'=>'1','cellpadding'=>'3','border'=>'0'));
125 $table->setRowOptions(array('valign'=>'top','class'=>'tableHeader'));
126 $table->setData($projects);
127 $table->setKeyField('id');
128 $table->setValue($cl_projects);
129 $table->addColumn(new TableColumn('name', $i18n->getKey('label.project'), new NameCellRenderer()));
130 $table->addColumn(new TableColumn('p_rate', $i18n->getKey('form.users.rate'), new RateCellRenderer()));
131 $form->addInputElement($table);
132
133 $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->getKey('button.submit')));
134
135 if ($request->isPost()) {
136   // Validate user input.
137   if (!ttValidString($cl_name)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.person_name'));
138   if (!ttValidString($cl_login)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.login'));
139   if (!$auth->isPasswordExternal()) {
140     if (!ttValidString($cl_password1)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.password'));
141     if (!ttValidString($cl_password2)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.confirm_password'));
142     if ($cl_password1 !== $cl_password2)
143       $err->add($i18n->getKey('error.not_equal'), $i18n->getKey('label.password'), $i18n->getKey('label.confirm_password'));
144   }
145   if (!ttValidEmail($cl_email, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.email'));
146   // Require selection of a client for a client role.
147   if ($user->isPluginEnabled('cl') && ttRoleHelper::isClientRole($cl_role) && !$cl_client_id) $err->add($i18n->getKey('error.client'));
148   if (!ttValidFloat($cl_rate, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('form.users.default_rate'));
149
150   if ($err->no()) {
151     if (!ttUserHelper::getUserByLogin($cl_login)) {
152       // Get legacy role value.
153       $legacy_role = ttRoleHelper::getLegacyRole($cl_role); // TODO: remove after roles revamp.
154       $fields = array(
155         'name' => $cl_name,
156         'login' => $cl_login,
157         'password' => $cl_password1,
158         'rate' => $cl_rate,
159         'team_id' => $user->team_id,
160         'role' => $legacy_role,
161         'role_id' => $cl_role,
162         'client_id' => $cl_client_id,
163         'projects' => $assigned_projects,
164         'email' => $cl_email);
165       if (ttUserHelper::insert($fields)) {
166         header('Location: users.php');
167         exit();
168       } else
169         $err->add($i18n->getKey('error.db'));
170     } else
171       $err->add($i18n->getKey('error.user_exists'));
172   }
173 } // isPost
174
175 $smarty->assign('auth_external', $auth->isPasswordExternal());
176 $smarty->assign('active_roles', $active_roles);
177 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
178 $smarty->assign('onload', 'onLoad="document.userForm.name.focus();handleClientControl();"');
179 $smarty->assign('title', $i18n->getKey('title.add_user'));
180 $smarty->assign('content_page_name', 'user_add.tpl');
181 $smarty->display('index.tpl');