X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2FttRegistrator.class.php;h=8e755837e48248c134e010cbe43c167db5326a2f;hb=7961e2909a8c8c456c1b0d6bee2944cabde592c0;hp=44841f503f9df391585b78e29f7a825d1a257750;hpb=94af2134f643b14c7f1a4838e88f7d6ed36aebcc;p=timetracker.git diff --git a/WEB-INF/lib/ttRegistrator.class.php b/WEB-INF/lib/ttRegistrator.class.php index 44841f50..8e755837 100644 --- a/WEB-INF/lib/ttRegistrator.class.php +++ b/WEB-INF/lib/ttRegistrator.class.php @@ -35,7 +35,12 @@ class ttRegistrator { var $group_name = null; // Group name. var $currency = null; // Currency. var $lang = null; // Language. + var $created_by_id = null; // User, who uses the instance. + // Currently, there are 2 possibilities: + // 1) Self-registration, or null here. + // 2) Registration by admin with a user_id. var $group_id = null; // Group id, set after we create a group. + var $org_id = null; // Organization id, the same as group_id (top group in org). var $role_id = null; // Role id for top managers. var $user_id = null; // User id after registration. var $err = null; // Error object, passed to us as reference. @@ -52,6 +57,7 @@ class ttRegistrator { $this->currency = $fields['currency']; $this->lang = $fields['lang']; if (!$this->lang) $this->lang = 'en'; + $this->created_by_id = (int) $fields['created_by_id']; $this->err = $err; // Validate passed in parameters. @@ -86,8 +92,8 @@ class ttRegistrator { global $i18n; global $user; - // Protection fom too many recent bot registrations from user IP. - if (!$user->can('administer_site')) { // No problems for site admin. + // Protection from too many recent bot registrations from user IP. + if (!$this->created_by_id) { // No problems for logged in user (site admin). if ($this->registeredRecently()) { $this->err->add($i18n->get('error.access_denied')); return false; @@ -103,6 +109,7 @@ class ttRegistrator { // Create a new group. $this->group_id = $this->createGroup(); + $this->org_id = $this->group_id; if (!$this->group_id) { $this->err->add($i18n->get('error.db')); return false; @@ -121,7 +128,9 @@ class ttRegistrator { return false; } - if (!$this->setCreatedBy($this->user_id)) + // Set created_by appropriately. + $created_by = $this->created_by_id ? $this->created_by_id : $this->user_id; + if (!$this->setCreatedBy($created_by)) return false; return true; @@ -162,7 +171,7 @@ class ttRegistrator { $email = $mdb2->quote($this->email); $created = 'now()'; $created_ip = $mdb2->quote($_SERVER['REMOTE_ADDR']); - $values = "values($login, $password, $name, $this->group_id, $this->group_id, $this->role_id, $email, $created, $created_ip)"; + $values = "values($login, $password, $name, $this->group_id, $this->org_id, $this->role_id, $email, $created, $created_ip)"; $sql = 'insert into tt_users (login, password, name, group_id, org_id, role_id, email, created, created_ip) '.$values; $affected = $mdb2->exec($sql); @@ -174,14 +183,14 @@ class ttRegistrator { } // The setCreatedBy sets created_by field for both group and user to passed in user_id. - function setCreatedBy($user_id) { + private function setCreatedBy($user_id) { if ($this->err->yes()) return false; // There are errors, do not proceed. global $i18n; $mdb2 = getConnection(); // Update group. - $sql = "update tt_groups set created_by = $user_id where id = $this->group_id"; + $sql = "update tt_groups set created_by = $user_id where id = $this->group_id and org_id = $this->org_id"; $affected = $mdb2->exec($sql); if (is_a($affected, 'PEAR_Error')) { $this->err->add($i18n->get('error.db')); @@ -189,7 +198,7 @@ class ttRegistrator { } // Update top manager. - $sql = "update tt_users set created_by = $user_id where id = $user_id and group_id = $this->group_id"; + $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"; $affected = $mdb2->exec($sql); if (is_a($affected, 'PEAR_Error')) { $this->err->add($i18n->get('error.db'));