forked from anuko/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_group_edit.php
138 lines (128 loc) · 5.85 KB
/
admin_group_edit.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
// +----------------------------------------------------------------------+
// | Anuko Time Tracker
// +----------------------------------------------------------------------+
// | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
// +----------------------------------------------------------------------+
// | LIBERAL FREEWARE LICENSE: This source code document may be used
// | by anyone for any purpose, and freely redistributed alone or in
// | combination with other software, provided that the license is obeyed.
// |
// | There are only two ways to violate the license:
// |
// | 1. To redistribute this code in source form, with the copyright
// | notice or license removed or altered. (Distributing in compiled
// | forms without embedded copyright notices is permitted).
// |
// | 2. To redistribute modified versions of this code in *any* form
// | that bears insufficient indications that the modifications are
// | not the work of the original author(s).
// |
// | This license applies to this document only, not any other software
// | that it may be combined with.
// |
// +----------------------------------------------------------------------+
// | Contributors:
// | https://www.anuko.com/time_tracker/credits.htm
// +----------------------------------------------------------------------+
require_once('initialize.php');
import('form.Form');
import('ttUserHelper');
import('ttAdmin');
// Access checks.
if (!ttAccessAllowed('administer_site')) {
header('Location: access_denied.php');
exit();
}
$group_id = (int)$request->getParameter('id');
$group_name = ttAdmin::getGroupName($group_id);
if (!($group_id && $group_name)) {
header('Location: access_denied.php');
exit();
}
// End of access checks.
$org_details = ttAdmin::getOrgDetails($group_id);
if (!$org_details) $err->add($i18n->get('error.db'));
if ($request->isPost()) {
$cl_group_name = trim($request->getParameter('group_name'));
$cl_manager_name = trim($request->getParameter('manager_name'));
$cl_manager_login = trim($request->getParameter('manager_login'));
if (!$auth->isPasswordExternal()) {
$cl_password1 = $request->getParameter('password1');
$cl_password2 = $request->getParameter('password2');
}
$cl_manager_email = trim($request->getParameter('manager_email'));
} else {
$cl_group_name = $org_details['group_name'];
$cl_manager_name = $org_details['manager_name'];
$cl_manager_login = $org_details['manager_login'];
if (!$auth->isPasswordExternal()) {
$cl_password1 = $cl_password2 = '';
}
$cl_manager_email = $org_details['manager_email'];
}
$form = new Form('groupForm');
$form->addInput(array('type'=>'text','maxlength'=>'80','name'=>'group_name','value'=>$cl_group_name));
$form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'manager_name','value'=>$cl_manager_name));
$form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'manager_login','value'=>$cl_manager_login));
if (!$auth->isPasswordExternal()) {
$form->addInput(array('type'=>'password','maxlength'=>'30','name'=>'password1','value'=>$cl_password1));
$form->addInput(array('type'=>'password','maxlength'=>'30','name'=>'password2','value'=>$cl_password2));
}
$form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'manager_email','value'=>$cl_manager_email));
$form->addInput(array('type'=>'hidden','name'=>'id','value'=>$group_id));
$form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->get('button.save')));
$form->addInput(array('type'=>'submit','name'=>'btn_cancel','value'=>$i18n->get('button.cancel')));
if ($request->isPost()) {
if ($request->getParameter('btn_save')) {
// Validate user input.
if (!ttValidString($cl_group_name))
$err->add($i18n->get('error.field'), $i18n->get('label.group_name'));
if (!ttValidString($cl_manager_name))
$err->add($i18n->get('error.field'), $i18n->get('label.manager_name'));
if (!ttValidString($cl_manager_login))
$err->add($i18n->get('error.field'), $i18n->get('label.manager_login'));
// If we change login, it must be unique.
if ($cl_manager_login != $org_details['manager_login']) {
if (ttUserHelper::getUserByLogin($cl_manager_login)) {
$err->add($i18n->get('error.user_exists'));
}
}
if (!$auth->isPasswordExternal() && ($cl_password1 || $cl_password2)) {
if (!ttValidString($cl_password1))
$err->add($i18n->get('error.field'), $i18n->get('label.password'));
if (!ttValidString($cl_password2))
$err->add($i18n->get('error.field'), $i18n->get('label.confirm_password'));
if ($cl_password1 !== $cl_password2)
$err->add($i18n->get('error.not_equal'), $i18n->get('label.password'), $i18n->get('label.confirm_password'));
}
if (!ttValidEmail($cl_manager_email, true))
$err->add($i18n->get('error.field'), $i18n->get('label.email'));
if ($err->no()) {
if (ttAdmin::updateGroup(array('group_id' => $group_id,
'old_group_name' => $org_details['group_name'],
'new_group_name' => $cl_group_name,
'user_id' => $org_details['manager_id'],
'user_name' => $cl_manager_name,
'old_login' => $org_details['manager_login'],
'new_login' => $cl_manager_login,
'password1' => $cl_password1,
'password2' => $cl_password2,
'email' => $cl_manager_email))) {
header('Location: admin_groups.php');
exit();
} else
$err->add($i18n->get('error.db'));
}
}
if ($request->getParameter('btn_cancel')) {
header('Location: admin_groups.php');
exit();
}
} // isPost
$smarty->assign('auth_external', $auth->isPasswordExternal());
$smarty->assign('forms', array($form->getName()=>$form->toArray()));
$smarty->assign('onload', 'onLoad="document.groupForm.manager_name.focus()"');
$smarty->assign('title', $i18n->get('title.edit_group'));
$smarty->assign('content_page_name', 'admin_group_edit.tpl');
$smarty->display('index.tpl');