X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2FttGroupHelper.class.php;h=3ae408af9889111a5cf20a16763bfb537ceb3c6c;hb=241fff8e23fee4caddf4038ad83df75e8146f1a2;hp=21e62a6028ab7d0a05f992b205d1a5e644eaac83;hpb=8a47b340fd212894ebb7b4456f3f0cb647c9ac68;p=timetracker.git diff --git a/WEB-INF/lib/ttGroupHelper.class.php b/WEB-INF/lib/ttGroupHelper.class.php index 21e62a60..3ae408af 100644 --- a/WEB-INF/lib/ttGroupHelper.class.php +++ b/WEB-INF/lib/ttGroupHelper.class.php @@ -26,6 +26,8 @@ // | https://www.anuko.com/time_tracker/credits.htm // +----------------------------------------------------------------------+ +import('ttRoleHelper'); + // Class ttGroupHelper - contains helper functions that operate with groups. // This is a planned replacement for ttTeamHelper as we move forward with subgroups. class ttGroupHelper { @@ -65,7 +67,7 @@ class ttGroupHelper { global $user; $mdb2 = getConnection(); - $parent_id = $user->getActiveGroup(); + $parent_id = $user->getGroup(); $org_id = $user->org_id; $sql = "select id from tt_groups where parent_id = $parent_id and org_id = $org_id". @@ -84,21 +86,53 @@ class ttGroupHelper { global $user; $mdb2 = getConnection(); - $parent_id = $user->getActiveGroup(); + $parent_id = $user->getGroup(); $org_id = $user->org_id; - - // TODO: inherit all attributes from the parent group, if not supplied. $name = $fields['name']; $description = $fields['description']; - $created = 'now()'; - $created_ip = $mdb2->quote($_SERVER['REMOTE_ADDR']); - - $sql = "insert into tt_groups (parent_id, org_id, name, description, created, created_ip)". - " values($parent_id, $org_id, ".$mdb2->quote($name).", ".$mdb2->quote($description).", $created, $created_ip)"; + // We need to inherit attributes from the parent group. + $attrs = ttGroupHelper::getGroupAttrs($parent_id); + + $columns = '(parent_id, org_id, name, description, currency, decimal_mark, lang, date_format, time_format'. + ', week_start, tracking_mode, project_required, task_required, record_type, bcc_email'. + ', allow_ip, password_complexity, plugins, lock_spec'. + ', workday_minutes, config, created, created_ip, created_by)'; + + $values = " values ($parent_id, $org_id"; + $values .= ', '.$mdb2->quote($name); + $values .= ', '.$mdb2->quote($description); + $values .= ', '.$mdb2->quote($attrs['currency']); + $values .= ', '.$mdb2->quote($attrs['decimal_mark']); + $values .= ', '.$mdb2->quote($attrs['lang']); + $values .= ', '.$mdb2->quote($attrs['date_format']); + $values .= ', '.$mdb2->quote($attrs['time_format']); + $values .= ', '.(int)$attrs['week_start']; + $values .= ', '.(int)$attrs['tracking_mode']; + $values .= ', '.(int)$attrs['project_required']; + $values .= ', '.(int)$attrs['task_required']; + $values .= ', '.(int)$attrs['record_type']; + $values .= ', '.$mdb2->quote($attrs['bcc_email']); + $values .= ', '.$mdb2->quote($attrs['allow_ip']); + $values .= ', '.$mdb2->quote($attrs['password_complexity']); + $values .= ', '.$mdb2->quote($attrs['plugins']); + $values .= ', '.$mdb2->quote($attrs['lock_spec']); + $values .= ', '.(int)$attrs['workday_minutes']; + $values .= ', '.$mdb2->quote($attrs['config']); + $values .= ', now(), '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', '.$user->id; + $values .= ')'; + + $sql = 'insert into tt_groups '.$columns.$values; $affected = $mdb2->exec($sql); - return (!is_a($affected, 'PEAR_Error')); - // TODO: design subgroup roles carefully. Perhaps roles are not to be touched in subgroups at all. + if (is_a($affected, 'PEAR_Error')) return false; + + $subgroup_id = $mdb2->lastInsertID('tt_groups', 'id'); + + // Copy roles from the parent group to child group. + if (!ttRoleHelper::copyRolesToGroup($subgroup_id)) + return false; + + return $subgroup_id; } // markGroupDeleted marks a group and everything in it as deleted. @@ -122,7 +156,7 @@ class ttGroupHelper { // Obtain subgroups and call self recursively on them. $subgroups = $user->getSubgroups($group_id); foreach($subgroups as $subgroup) { - if (!$this->markGroupDeleted($subgroup['id'])) + if (!ttGroupHelper::markGroupDeleted($subgroup['id'])) return false; } @@ -173,7 +207,8 @@ class ttGroupHelper { } // Mark group deleted. - $sql = "update tt_groups set status = null where id = $group_id and org_id = $org_id"; + $modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$user->id; + $sql = "update tt_groups set status = null $modified_part where id = $group_id and org_id = $org_id"; $affected = $mdb2->exec($sql); if (is_a($affected, 'PEAR_Error')) return false; @@ -186,10 +221,13 @@ class ttGroupHelper { global $user; $mdb2 = getConnection(); - // TODO: add modified info to sql for some tables, depending on table name. + // Add modified info to sql for some tables, depending on table name. + if ($table_name == 'tt_users') { + $modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$user->id; + } $org_id = $user->org_id; // The only security measure we use here for match. - $sql = "update $table_name set status = null where group_id = $group_id and org_id = $org_id"; + $sql = "update $table_name set status = null $modified_part where group_id = $group_id and org_id = $org_id"; $affected = $mdb2->exec($sql); return (!is_a($affected, 'PEAR_Error')); } @@ -219,4 +257,170 @@ class ttGroupHelper { } return $val; } + + // getRoles obtains all active and inactive roles in current group. + static function getRoles() { + global $user; + $mdb2 = getConnection(); + + $group_id = $user->getGroup(); + $org_id = $user->org_id; + $sql = "select * from tt_roles". + " where group_id = $group_id and org_id = $org_id and status is not null"; + $res = $mdb2->query($sql); + if (is_a($res, 'PEAR_Error')) return false; + while ($val = $res->fetchRow()) { + $roles[] = $val; + } + return $roles; + } + + // The getActiveClients returns an array of active clients for a group. + static function getActiveClients($all_fields = false) + { + global $user; + $mdb2 = getConnection(); + + $group_id = $user->getGroup(); + $org_id = $user->org_id; + if ($all_fields) + $sql = "select * from tt_clients where group_id = $group_id and org_id = $org_id and status = 1 order by upper(name)"; + else + $sql = "select id, name from tt_clients where group_id = $group_id and org_id = $org_id and status = 1 order by upper(name)"; + + $res = $mdb2->query($sql); + $result = array(); + if (!is_a($res, 'PEAR_Error')) { + while ($val = $res->fetchRow()) { + $result[] = $val; + } + } + return $result; + } + + // The getInactiveClients returns an array of inactive clients for a group. + static function getInactiveClients($all_fields = false) + { + global $user; + $mdb2 = getConnection(); + + $group_id = $user->getGroup(); + $org_id = $user->org_id; + if ($all_fields) + $sql = "select * from tt_clients where group_id = $group_id and org_id = $org_id and status = 0 order by upper(name)"; + else + $sql = "select id, name from tt_clients where group_id = $group_id and org_id = $org_id and status = 0 order by upper(name)"; + + $res = $mdb2->query($sql); + $result = array(); + if (!is_a($res, 'PEAR_Error')) { + while ($val = $res->fetchRow()) { + $result[] = $val; + } + } + return $result; + } + + // getActiveProjects - returns an array of active projects for a group. + static function getActiveProjects() + { + global $user; + $mdb2 = getConnection(); + + $group_id = $user->getGroup(); + $org_id = $user->org_id; + + $sql = "select id, name, description, tasks from tt_projects". + " where group_id = $group_id and org_id = $org_id and status = 1 order by upper(name)"; + $res = $mdb2->query($sql); + $result = array(); + if (!is_a($res, 'PEAR_Error')) { + while ($val = $res->fetchRow()) { + $result[] = $val; + } + } + return $result; + } + + // getInactiveProjects - returns an array of inactive projects for a group. + static function getInactiveProjects() + { + global $user; + $mdb2 = getConnection(); + + $group_id = $user->getGroup(); + $org_id = $user->org_id; + + $sql = "select id, name, description, tasks from tt_projects". + " where group_id = $group_id and org_id = $org_id and status = 0 order by upper(name)"; + $res = $mdb2->query($sql); + $result = array(); + if (!is_a($res, 'PEAR_Error')) { + while ($val = $res->fetchRow()) { + $result[] = $val; + } + } + return $result; + } + + // getPredefinedExpenses - obtains predefined expenses for a group. + static function getPredefinedExpenses() { + global $user; + $mdb2 = getConnection(); + + $group_id = $user->getGroup(); + $org_id = $user->org_id; + + $result = array(); + $sql = "select id, name, cost from tt_predefined_expenses". + " where group_id = $group_id and org_id = $org_id"; + $res = $mdb2->query($sql); + $result = array(); + if (!is_a($res, 'PEAR_Error')) { + $decimal_mark = $user->getDecimalMark(); + $replaceDecimalMark = ('.' != $decimal_mark); + + while ($val = $res->fetchRow()) { + if ($replaceDecimalMark) + $val['cost'] = str_replace('.', $decimal_mark, $val['cost']); + $result[] = $val; + } + return $result; + } + return false; + } + + // The getActiveInvoices returns an array of active invoices for a group. + static function getActiveInvoices() + { + global $user; + $mdb2 = getConnection(); + + $group_id = $user->getGroup(); + $org_id = $user->org_id; + + $addPaidStatus = $user->isPluginEnabled('ps'); + $result = array(); + + if ($user->isClient()) + $client_part = "and i.client_id = $user->client_id"; + + $sql = "select i.id, i.name, i.date, i.client_id, i.status, c.name as client_name from tt_invoices i". + " left join tt_clients c on (c.id = i.client_id)". + " where i.status = 1 and i.group_id = $group_id and i.org_id = $org_id $client_part order by i.name"; + $res = $mdb2->query($sql); + $result = array(); + if (!is_a($res, 'PEAR_Error')) { + $dt = new DateAndTime(DB_DATEFORMAT); + while ($val = $res->fetchRow()) { + // Localize date. + $dt->parseVal($val['date']); + $val['date'] = $dt->toString($user->getDateFormat()); + if ($addPaidStatus) + $val['paid'] = ttInvoiceHelper::isPaid($val['id']); + $result[] = $val; + } + } + return $result; + } }