Work in progress on project_required option (incomplete). Also started to integrate...
[timetracker.git] / profile_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('ttUserHelper');
32
33 // Access check.
34 if (!ttAccessCheck(right_data_entry|right_view_reports)) {
35   header('Location: access_denied.php');
36   exit();
37 }
38
39 if (!defined('CURRENCY_DEFAULT')) define('CURRENCY_DEFAULT', '$');
40 $can_change_login = $user->canManageTeam();
41
42 if ($request->isPost()) {
43   $cl_name = trim($request->getParameter('name'));
44   $cl_login = trim($request->getParameter('login'));
45   if (!$auth->isPasswordExternal()) {
46     $cl_password1 = $request->getParameter('password1');
47     $cl_password2 = $request->getParameter('password2');
48   }
49   $cl_email = trim($request->getParameter('email'));
50
51   if ($user->canManageTeam()) {
52     $cl_team = trim($request->getParameter('team_name'));
53     $cl_address = trim($request->getParameter('address'));
54     $cl_currency = trim($request->getParameter('currency'));
55     if (!$cl_currency) $cl_currency = CURRENCY_DEFAULT;
56     $cl_lang = $request->getParameter('lang');
57     $cl_decimal_mark = $request->getParameter('decimal_mark');
58     $cl_custom_format_date = $request->getParameter('format_date');
59     $cl_custom_format_time = $request->getParameter('format_time');
60     $cl_start_week = $request->getParameter('start_week');
61     $cl_tracking_mode = $request->getParameter('tracking_mode');
62     $cl_project_required = $request->getParameter('project_required');
63     $cl_task_required = $request->getParameter('task_required');
64     $cl_record_type = $request->getParameter('record_type');
65     $cl_uncompleted_indicators = $request->getParameter('uncompleted_indicators');
66     $cl_charts = $request->getParameter('charts');
67     $cl_clients = $request->getParameter('clients');
68     $cl_client_required = $request->getParameter('client_required');
69     $cl_invoices = $request->getParameter('invoices');
70     $cl_custom_fields = $request->getParameter('custom_fields');
71     $cl_expenses = $request->getParameter('expenses');
72     $cl_tax_expenses = $request->getParameter('tax_expenses');
73     $cl_notifications = $request->getParameter('notifications');
74     $cl_locking = $request->getParameter('locking');
75     $cl_quotas = $request->getParameter('quotas');
76   }
77 } else {
78   $cl_name = $user->name;
79   $cl_login = $user->login;
80   $cl_email = $user->email;
81   if ($user->canManageTeam()) {
82     $cl_team = $user->team;
83     $cl_address = $user->address;
84     $cl_currency = ($user->currency == ''? CURRENCY_DEFAULT : $user->currency);
85     $cl_lang = $user->lang;
86     $cl_decimal_mark = $user->decimal_mark;
87     $cl_custom_format_date = $user->date_format;
88     $cl_custom_format_time = $user->time_format;
89     $cl_start_week = $user->week_start;
90     $cl_tracking_mode = $user->tracking_mode;
91     $cl_project_required = $user->project_required;
92     $cl_task_required = $user->task_required;
93     $cl_record_type = $user->record_type;
94     $cl_uncompleted_indicators = $user->uncompleted_indicators;
95
96     // Which plugins do we have enabled?
97     $plugins = explode(',', $user->plugins);
98     $cl_charts = in_array('ch', $plugins);
99     $cl_clients = in_array('cl', $plugins);
100     $cl_client_required = in_array('cm', $plugins);
101     $cl_invoices = in_array('iv', $plugins);
102     $cl_custom_fields = in_array('cf', $plugins);    
103     $cl_expenses = in_array('ex', $plugins);
104     $cl_tax_expenses = in_array('et', $plugins);
105     $cl_notifications = in_array('no', $plugins);
106     $cl_locking = in_array('lk', $plugins);
107     $cl_quotas = in_array('mq', $plugins);
108   }
109 }
110
111 $form = new Form('profileForm');
112 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'name','value'=>$cl_name));
113 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'login','value'=>$cl_login,'enable'=>$can_change_login));
114 if (!$auth->isPasswordExternal()) {
115   $form->addInput(array('type'=>'password','maxlength'=>'30','name'=>'password1','value'=>$cl_password1));
116   $form->addInput(array('type'=>'password','maxlength'=>'30','name'=>'password2','value'=>$cl_password2));
117 }
118 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'email','value'=>$cl_email,'enable'=>$can_change_login));
119 if ($user->canManageTeam()) {
120   $form->addInput(array('type'=>'text','maxlength'=>'200','name'=>'team_name','value'=>$cl_team));
121   $form->addInput(array('type'=>'textarea','name'=>'address','maxlength'=>'255','style'=>'width: 350px;','cols'=>'55','rows'=>'4','value'=>$cl_address));
122   $form->addInput(array('type'=>'text','maxlength'=>'7','name'=>'currency','value'=>$cl_currency));
123   $DECIMAL_MARK_OPTIONS = array(array('id'=>'.','name'=>'.'),array('id'=>',','name'=>','));
124   $form->addInput(array('type'=>'combobox','name'=>'decimal_mark','style'=>'width: 150px','data'=>$DECIMAL_MARK_OPTIONS,'datakeys'=>array('id','name'),'value'=>$cl_decimal_mark,
125     'onchange'=>'adjustDecimalPreview()'));
126   // Prepare an array of available languages.
127   $lang_files = I18n::getLangFileList();
128   foreach ($lang_files as $lfile) {
129     $content = file(RESOURCE_DIR."/".$lfile);
130     $lname = '';
131     foreach ($content as $line) {
132       if (strstr($line, 'i18n_language')) {
133         $a = explode('=', $line);
134         $lname = trim(str_replace(';','',str_replace("'","",$a[1])));
135         break;
136       }
137     }
138     unset($content);
139     $longname_lang[] = array('id'=>I18n::getLangFromFilename($lfile),'name'=>$lname);
140   }
141   $longname_lang = mu_sort($longname_lang, 'name');
142   $form->addInput(array('type'=>'combobox','name'=>'lang','style'=>'width: 150px','data'=>$longname_lang,'datakeys'=>array('id','name'),'value'=>$cl_lang));
143   $DATE_FORMAT_OPTIONS = array(
144     array('id'=>'%Y-%m-%d','name'=>'Y-m-d'),
145     array('id'=>'%m/%d/%Y','name'=>'m/d/Y'),
146     array('id'=>'%d.%m.%Y','name'=>'d.m.Y'),
147     array('id'=>'%d.%m.%Y %a','name'=>'d.m.Y a'));
148   $form->addInput(array('type'=>'combobox','name'=>'format_date','style'=>'width: 150px;','data'=>$DATE_FORMAT_OPTIONS,'datakeys'=>array('id','name'),'value'=>$cl_custom_format_date,
149     'onchange'=>'MakeFormatPreview(&quot;date_format_preview&quot;, this);'));
150   $TIME_FORMAT_OPTIONS = array(
151     array('id'=>'%H:%M','name'=>$i18n->getKey('form.profile.24_hours')),
152     array('id'=>'%I:%M %p','name'=>$i18n->getKey('form.profile.12_hours')));
153   $form->addInput(array('type'=>'combobox','name'=>'format_time','style'=>'width: 150px;','data'=>$TIME_FORMAT_OPTIONS,'datakeys'=>array('id','name'),'value'=>$cl_custom_format_time,
154     'onchange'=>'MakeFormatPreview(&quot;time_format_preview&quot;, this);'));
155
156   // Prepare week start choices.
157   $week_start_options = array();
158   foreach ($i18n->weekdayNames as $id => $week_dn) {
159     $week_start_options[] = array('id' => $id, 'name' => $week_dn);
160   }
161   $form->addInput(array('type'=>'combobox','name'=>'start_week','style'=>'width: 150px;','data'=>$week_start_options,'datakeys'=>array('id','name'),'value'=>$cl_start_week));
162
163   // Prepare tracking mode choices.
164   $tracking_mode_options = array();
165   $tracking_mode_options[MODE_TIME] = $i18n->getKey('form.profile.mode_time');
166   $tracking_mode_options[MODE_PROJECTS] = $i18n->getKey('form.profile.mode_projects');
167   $tracking_mode_options[MODE_PROJECTS_AND_TASKS] = $i18n->getKey('form.profile.mode_projects_and_tasks');
168   $form->addInput(array('type'=>'combobox','name'=>'tracking_mode','style'=>'width: 150px;','data'=>$tracking_mode_options,'value'=>$cl_tracking_mode,'onchange'=>'handleTaskRequiredCheckbox()'));
169   $form->addInput(array('type'=>'checkbox','name'=>'project_required','value'=>$cl_project_required));
170   $form->addInput(array('type'=>'checkbox','name'=>'task_required','value'=>$cl_task_required));
171
172   // Prepare record type choices.
173   $record_type_options = array();
174   $record_type_options[TYPE_ALL] = $i18n->getKey('form.profile.type_all');
175   $record_type_options[TYPE_START_FINISH] = $i18n->getKey('form.profile.type_start_finish');
176   $record_type_options[TYPE_DURATION] = $i18n->getKey('form.profile.type_duration');
177   $form->addInput(array('type'=>'combobox','name'=>'record_type','style'=>'width: 150px;','data'=>$record_type_options,'value'=>$cl_record_type));
178
179   // Prepare uncompleted indicators choices.
180   $uncompleted_indicators_options = array();
181   $uncompleted_indicators_options[UNCOMPLETED_INDICATORS_NONE] = $i18n->getKey('form.profile.uncompleted_indicators_none');
182   $uncompleted_indicators_options[UNCOMPLETED_INDICATORS] = $i18n->getKey('form.profile.uncompleted_indicators_show');
183   $form->addInput(array('type'=>'combobox','name'=>'uncompleted_indicators','style'=>'width: 150px;','data'=>$uncompleted_indicators_options,'value'=>$cl_uncompleted_indicators));
184
185   $form->addInput(array('type'=>'checkbox','name'=>'charts','value'=>$cl_charts));
186   $form->addInput(array('type'=>'checkbox','name'=>'clients','value'=>$cl_clients,'onchange'=>'handlePluginCheckboxes()'));
187   $form->addInput(array('type'=>'checkbox','name'=>'client_required','value'=>$cl_client_required));
188
189   $form->addInput(array('type'=>'checkbox','name'=>'invoices','value'=>$cl_invoices));
190   $form->addInput(array('type'=>'checkbox','name'=>'custom_fields','value'=>$cl_custom_fields,'onchange'=>'handlePluginCheckboxes()'));
191   $form->addInput(array('type'=>'checkbox','name'=>'expenses','value'=>$cl_expenses,'onchange'=>'handlePluginCheckboxes()'));
192   $form->addInput(array('type'=>'checkbox','name'=>'tax_expenses','value'=>$cl_tax_expenses));
193   $form->addInput(array('type'=>'checkbox','name'=>'notifications','value'=>$cl_notifications,'onchange'=>'handlePluginCheckboxes()'));
194   $form->addInput(array('type'=>'checkbox','name'=>'locking','value'=>$cl_locking,'onchange'=>'handlePluginCheckboxes()'));
195   $form->addInput(array('type'=>'checkbox','name'=>'quotas','value'=>$cl_quotas,'onchange'=>'handlePluginCheckboxes()'));
196 }
197 $form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->getKey('button.save')));
198
199 if ($request->isPost()) {
200   // Validate user input.
201   if (!ttValidString($cl_name)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.person_name'));
202   if ($can_change_login) {
203     if (!ttValidString($cl_login)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.login'));
204
205     // New login must be unique.
206     if ($cl_login != $user->login && ttUserHelper::getUserByLogin($cl_login))
207       $err->add($i18n->getKey('error.user_exists'));
208   }
209   if (!$auth->isPasswordExternal() && ($cl_password1 || $cl_password2)) {
210     if (!ttValidString($cl_password1)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.password'));
211     if (!ttValidString($cl_password2)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.confirm_password'));
212     if ($cl_password1 !== $cl_password2)
213       $err->add($i18n->getKey('error.not_equal'), $i18n->getKey('label.password'), $i18n->getKey('label.confirm_password'));
214   }
215   if (!ttValidEmail($cl_email, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.email'));
216   if ($user->canManageTeam()) {
217     if (!ttValidString($cl_team, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.team_name'));
218     if (!ttValidString($cl_address, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.address'));
219     if (!ttValidString($cl_currency, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.currency'));
220   }
221   // Finished validating user input.
222
223   if ($err->no()) {
224     $update_result = true;
225     if ($user->canManageTeam()) {
226
227       // Prepare plugins string.
228       if ($cl_charts)
229         $plugins .= ',ch';
230       if ($cl_clients)
231         $plugins .= ',cl';
232       if ($cl_client_required)
233         $plugins .= ',cm';
234       if ($cl_invoices)
235         $plugins .= ',iv';
236       if ($cl_custom_fields)
237         $plugins .= ',cf';
238       if ($cl_expenses)
239         $plugins .= ',ex';
240       if ($cl_tax_expenses)
241         $plugins .= ',et';
242       if ($cl_notifications)
243         $plugins .= ',no';
244       if ($cl_locking)
245         $plugins .= ',lk';
246       if ($cl_quotas)
247         $plugins .= ',mq';
248       $plugins = trim($plugins, ',');
249
250       $update_result = ttTeamHelper::update($user->team_id, array(
251         'name' => $cl_team,
252         'address' => $cl_address,
253         'currency' => $cl_currency,
254         'lang' => $cl_lang,
255         'decimal_mark' => $cl_decimal_mark,
256         'date_format' => $cl_custom_format_date,
257         'time_format' => $cl_custom_format_time,
258         'week_start' => $cl_start_week,
259         'tracking_mode' => $cl_tracking_mode,
260         'project_required' => $cl_project_required,
261         'task_required' => $cl_task_required,
262         'record_type' => $cl_record_type,
263         'uncompleted_indicators' => $cl_uncompleted_indicators,
264         'plugins' => $plugins));
265     }
266     if ($update_result) {
267       $update_result = ttUserHelper::update($user->id, array(
268         'name' => $cl_name,
269         'login' => $cl_login,
270         'password' => $cl_password1,
271         'email' => $cl_email,
272         'status' => ACTIVE));
273     }
274     if ($update_result) {
275       header('Location: time.php');
276       exit();
277     } else
278       $err->add($i18n->getKey('error.db'));
279   }
280 } // isPost
281
282 $smarty->assign('auth_external', $auth->isPasswordExternal());
283 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
284 $smarty->assign('onload', 'onLoad="handleTaskRequiredCheckbox(); handlePluginCheckboxes();"');
285 $smarty->assign('title', $i18n->getKey('title.profile'));
286 $smarty->assign('content_page_name', 'profile_edit.tpl');
287 $smarty->display('index.tpl');