Made group name mandatory for subgroup support.
[timetracker.git] / WEB-INF / lib / ttRegistrator.class.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 // ttRegistrator class is used to register a user in Time Tracker.
30 class ttRegistrator {
31   var $user_name = null;  // User name.
32   var $login = null;      // User login.
33   var $password = null;   // User password.
34   var $email = null;      // User email.
35   var $group_name = null; // Group name.
36   var $currency = null;   // Currency.
37   var $lang = null;       // Language.
38   var $created_by_id = null; // User, who uses the instance.
39                              // Currently, there are 2 possibilities:
40                              // 1) Self-registration, or null here.
41                              // 2) Registration by admin with a user_id.
42   var $group_id = null;   // Group id, set after we create a group.
43   var $org_id = null;     // Organization id, the same as group_id (top group in org).
44   var $role_id = null;    // Role id for top managers.
45   var $user_id = null;    // User id after registration.
46   var $err = null;        // Error object, passed to us as reference.
47                           // We use it to communicate errors to caller.
48
49   // Constructor.
50   function __construct($fields, &$err) {
51     $this->user_name = $fields['user_name'];
52     $this->login = $fields['login'];    
53     $this->password1 = $fields['password1'];
54     $this->password2 = $fields['password2'];
55     $this->email = $fields['email'];
56     $this->group_name = $fields['group_name'];
57     $this->currency = $fields['currency'];
58     $this->lang = $fields['lang'];
59     if (!$this->lang) $this->lang = 'en';
60     $this->created_by_id = (int) $fields['created_by_id'];
61     $this->err = $err;
62
63     // Validate passed in parameters.
64     $this->validate();
65   }
66
67   function validate() {
68     global $i18n;
69
70     if (!ttValidString($this->group_name))
71       $this->err->add($i18n->get('error.field'), $i18n->get('label.group_name'));
72     if (!ttValidString($this->currency, true))
73       $this->err->add($i18n->get('error.field'), $i18n->get('label.currency'));
74     if (!ttValidString($this->user_name))
75       $this->err->add($i18n->get('error.field'), $i18n->get('label.manager_name'));
76     if (!ttValidString($this->login))
77       $this->err->add($i18n->get('error.field'), $i18n->get('label.manager_login'));
78     if (!ttValidString($this->password1))
79       $this->err->add($i18n->get('error.field'), $i18n->get('label.password'));
80     if (!ttValidString($this->password2))
81       $this->err->add($i18n->get('error.field'), $i18n->get('label.confirm_password'));
82     if ($this->password1 !== $this->password2)
83       $this->err->add($i18n->get('error.not_equal'), $i18n->get('label.password'), $i18n->get('label.confirm_password'));
84     if (!ttValidEmail($this->email, true))
85       $this->err->add($i18n->get('error.field'), $i18n->get('label.email'));
86   }
87
88   // The register function registers a user in Time Tracker.
89   function register() {
90     if ($this->err->yes()) return false; // There are errors, do not proceed.
91
92     global $i18n;
93     global $user;
94
95     // Protection from too many recent bot registrations from user IP.
96     if (!$this->created_by_id) { // No problems for logged in user (site admin).
97       if ($this->registeredRecently()) {
98         $this->err->add($i18n->get('error.access_denied'));
99         return false;
100       }
101     }
102
103     import('ttUserHelper');
104     if (ttUserHelper::getUserByLogin($this->login)) {
105       // User login already exists.
106       $this->err->add($i18n->get('error.user_exists'));
107       return false;
108     }
109
110     // Create a new group.
111     $this->group_id = $this->createGroup();
112     $this->org_id = $this->group_id;
113     if (!$this->group_id) {
114       $this->err->add($i18n->get('error.db'));
115       return false;
116     }
117
118     import('ttRoleHelper');
119     if (!ttRoleHelper::createPredefinedRoles($this->group_id, $this->lang)) {
120       $err->add($i18n->get('error.db'));
121       return false;
122     }
123     $this->role_id = ttRoleHelper::getTopManagerRoleID();
124     $this->user_id = $this->createUser();
125
126     if (!$this->user_id) {
127       $err->add($i18n->get('error.db'));
128       return false;
129     }
130
131     // Set created_by appropriately.
132     $created_by = $this->created_by_id ? $this->created_by_id : $this->user_id;
133     if (!$this->setCreatedBy($created_by))
134       return false;
135
136     return true;
137   }
138
139   // The createGroup function creates a group in Time Tracker as part
140   // of user registration process. This is a top group for user as top manager.
141   function createGroup() {
142     $mdb2 = getConnection();
143
144     $name = $mdb2->quote($this->group_name);
145     $currency = $mdb2->quote($this->currency);
146     $lang = $mdb2->quote($this->lang);
147     $created = 'now()';
148     $created_ip = $mdb2->quote($_SERVER['REMOTE_ADDR']);
149
150     $sql = "insert into tt_groups (name, currency, lang, created, created_ip) values($name, $currency, $lang, $created, $created_ip)";
151     $affected = $mdb2->exec($sql);
152     if (is_a($affected, 'PEAR_Error')) return false;
153
154     $group_id = $mdb2->lastInsertID('tt_groups', 'id');
155
156     // Update org_id with group_id.
157     $sql = "update tt_groups set org_id = $group_id where org_id is NULL and id = $group_id";
158     $affected = $mdb2->exec($sql);
159     if (is_a($affected, 'PEAR_Error')) return false;
160
161     return $group_id;
162   }
163
164   // The createUser creates a user in database as part of registration process.
165   function createUser() {
166     $mdb2 = getConnection();
167
168     $login = $mdb2->quote($this->login);
169     $password = 'md5('.$mdb2->quote($this->password1).')';
170     $name = $mdb2->quote($this->user_name);
171     $email = $mdb2->quote($this->email);
172     $created = 'now()';
173     $created_ip = $mdb2->quote($_SERVER['REMOTE_ADDR']);
174     $values = "values($login, $password, $name, $this->group_id, $this->org_id, $this->role_id, $email, $created, $created_ip)";
175
176     $sql = 'insert into tt_users (login, password, name, group_id, org_id, role_id, email, created, created_ip) '.$values;
177     $affected = $mdb2->exec($sql);
178     if (!is_a($affected, 'PEAR_Error')) {
179       $user_id = $mdb2->lastInsertID('tt_users', 'id');
180       return $user_id;
181     }
182     return false;
183   }
184
185   // The setCreatedBy sets created_by field for both group and user to passed in user_id.
186   private function setCreatedBy($user_id) {
187     if ($this->err->yes()) return false; // There are errors, do not proceed.
188
189     global $i18n;
190     $mdb2 = getConnection();
191
192     // Update group.
193     $sql = "update tt_groups set created_by = $user_id where id = $this->group_id and org_id = $this->org_id";
194     $affected = $mdb2->exec($sql);
195     if (is_a($affected, 'PEAR_Error')) {
196       $this->err->add($i18n->get('error.db'));
197       return false;
198     }
199
200     // Update top manager.
201     $sql = "update tt_users set created_by = $user_id where id = $this->user_id and group_id = $this->group_id and org_id = $this->org_id";
202     $affected = $mdb2->exec($sql);
203     if (is_a($affected, 'PEAR_Error')) {
204       $this->err->add($i18n->get('error.db'));
205       return false;
206     }
207
208     return true;
209   }
210
211   // registeredRecently determines if we already have a successful recent registration from user IP.
212   // "recent" means "within the last minute" and is set in a query by the following condition:
213   // "and created > now() - interval 1 minute". Change if necessary.
214   function registeredRecently() {
215     $mdb2 = getConnection();
216
217     $ip_part = ' created_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']);
218     $sql = 'select created from tt_groups where '.$ip_part.' and created > now() - interval 1 minute';
219     $res = $mdb2->query($sql);
220     if (is_a($res, 'PEAR_Error'))
221       return false;
222     $val = $res->fetchRow();
223     if ($val)
224       return true;
225
226     return false;
227   }
228 }