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.
 
  11 // | There are only two ways to violate the license:
 
  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).
 
  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).
 
  21 // | This license applies to this document only, not any other software
 
  22 // | that it may be combined with.
 
  24 // +----------------------------------------------------------------------+
 
  26 // | https://www.anuko.com/time_tracker/credits.htm
 
  27 // +----------------------------------------------------------------------+
 
  29 // ttGroupExportHelper - this class is used to write data for a single group
 
  30 // to a file. When group contains other groups, it reuses itself recursively.
 
  32 // Currently, it is work in progress.
 
  33 // When done, it should handle export of organizations containing multiple groups.
 
  34 class ttGroupExportHelper {
 
  36   var $group_id = null;     // Group we are exporting.
 
  37   var $file     = null;     // File to write to.
 
  38   var $indentation = null;  // A string consisting of a number of spaces.
 
  39   var $subgroups = array(); // Immediate subgroups.
 
  41   // The following arrays are maps between entity ids in the file versus the database.
 
  42   // We write to the file sequentially (1,2,3...) while in the database the entities have different ids.
 
  43   var $userMap    = array(); // User ids.
 
  44   var $roleMap    = array(); // Role ids.
 
  45   var $taskMap    = array(); // Task ids.
 
  46   var $projectMap = array(); // Project ids.
 
  47   var $clientMap  = array(); // Client ids.
 
  50   function __construct($group_id, $file, $indentation) {
 
  53     $this->group_id = $group_id;
 
  55     $this->indentation = $indentation;
 
  57     // Build a list of subgroups.
 
  58     $mdb2 = getConnection();
 
  59     $sql =  "select id from tt_groups".
 
  60             " where status = 1 and parent_id = $this->group_id and org_id = $user->org_id";
 
  61     $res = $mdb2->query($sql);
 
  62     if (!is_a($res, 'PEAR_Error')) {
 
  63       while ($val = $res->fetchRow()) {
 
  64         $this->subgroups[] = $val;
 
  69   // getGroupData obtains group attributes for export.
 
  70   function getGroupData() {
 
  72     $mdb2 = getConnection();
 
  74     $sql =  "select name, currency, lang from tt_groups".
 
  75             " where status = 1 and id = $this->group_id and org_id = $user->org_id";
 
  76     $res = $mdb2->query($sql);
 
  77     if (!is_a($res, 'PEAR_Error')) {
 
  78       $val = $res->fetchRow();
 
  83   // The getUsers obtains all users in group for the purpose of export.
 
  86     $mdb2 = getConnection();
 
  88     $sql = "select u.*, r.rank from tt_users u left join tt_roles r on (u.role_id = r.id)".
 
  89       " where u.group_id = $this->group_id and u.org_id = $user->org_id order by upper(u.name)"; // Note: deleted users are included.
 
  90     $res = $mdb2->query($sql);
 
  92     if (!is_a($res, 'PEAR_Error')) {
 
  93       while ($val = $res->fetchRow()) {
 
 101   // getRoles - obtains all roles defined for group.
 
 102   function getRoles() {
 
 104     $mdb2 = getConnection();
 
 107     $sql = "select * from tt_roles where group_id = $this->group_id and org_id = $user->org_id";
 
 108     $res = $mdb2->query($sql);
 
 110     if (!is_a($res, 'PEAR_Error')) {
 
 111       while ($val = $res->fetchRow()) {
 
 119   // getTasks - obtains all tasks defined for group.
 
 120   function getTasks() {
 
 122     $mdb2 = getConnection();
 
 125     $sql = "select * from tt_tasks where group_id = $this->group_id and org_id = $user->org_id";
 
 126     $res = $mdb2->query($sql);
 
 128     if (!is_a($res, 'PEAR_Error')) {
 
 129       while ($val = $res->fetchRow()) {
 
 137   // getProjects - obtains all projects defined for group.
 
 138   function getProjects() {
 
 140     $mdb2 = getConnection();
 
 143     $sql = "select * from tt_projects where group_id = $this->group_id and org_id = $user->org_id";
 
 144     $res = $mdb2->query($sql);
 
 146     if (!is_a($res, 'PEAR_Error')) {
 
 147       while ($val = $res->fetchRow()) {
 
 155   // getClients - obtains all clients defined for group.
 
 156   function getClients() {
 
 158     $mdb2 = getConnection();
 
 161     $sql = "select * from tt_clients where group_id = $this->group_id and org_id = $user->org_id";
 
 162     $res = $mdb2->query($sql);
 
 164     if (!is_a($res, 'PEAR_Error')) {
 
 165       while ($val = $res->fetchRow()) {
 
 173   // writeData writes group data into file.
 
 174   function writeData() {
 
 177     $group = $this->getGroupData();
 
 178     $group_part = "<group name=\"".htmlentities($group['name'])."\"";
 
 179     $group_part .= " currency=\"".htmlentities($group['currency'])."\"";
 
 180     $group_part .= " lang=\"".$group['lang']."\"";
 
 181     // TODO: add other group attributes here.
 
 182     $group_part .= ">\n";
 
 185     fwrite($this->file, $this->indentation.$group_part);
 
 188     $users = $this->getUsers();
 
 189     foreach ($users as $key=>$user_item)
 
 190       $this->userMap[$user_item['id']] = $key + 1;
 
 193     $roles = $this->getRoles();
 
 194     foreach ($roles as $key=>$role_item)
 
 195       $this->roleMap[$role_item['id']] = $key + 1;
 
 198     $tasks = $this->getTasks();
 
 199     foreach ($tasks as $key=>$task_item)
 
 200       $this->taskMap[$task_item['id']] = $key + 1;
 
 202     // Prepare project map.
 
 203     $projects = $this->getProjects();
 
 204     foreach ($projects as $key=>$project_item)
 
 205       $this->projectMap[$project_item['id']] = $key + 1;
 
 207     // Prepare client map.
 
 208     $clients = $this->getClients();
 
 209     foreach ($clients as $key=>$client_item)
 
 210       $this->clientMap[$client_item['id']] = $key + 1;
 
 213     fwrite($this->file, $this->indentation."  <roles>\n");
 
 214     foreach ($roles as $role) {
 
 215       $role_part = $this->indentation.'    '."<role id=\"".$this->roleMap[$role['id']]."\"";
 
 216       $role_part .= " name=\"".htmlentities($role['name'])."\"";
 
 217       $role_part .= " description=\"".htmlentities($role['description'])."\"";
 
 218       $role_part .= " rank=\"".$role['rank']."\"";
 
 219       $role_part .= " rights=\"".htmlentities($role['rights'])."\"";
 
 220       $role_part .= " status=\"".$role['status']."\"";
 
 221       $role_part .= "></role>\n";
 
 222       fwrite($this->file, $role_part);
 
 224     fwrite($this->file, $this->indentation."  </roles>\n");
 
 227     fwrite($this->file, $this->indentation."  <tasks>\n");
 
 228     foreach ($tasks as $task) {
 
 229       $task_part = $this->indentation.'    '."<task id=\"".$this->taskMap[$task['id']]."\"";
 
 230       $task_part .= " name=\"".htmlentities($task['name'])."\"";
 
 231       $task_part .= " description=\"".htmlentities($task['description'])."\"";
 
 232       $task_part .= " status=\"".$task['status']."\"";
 
 233       $task_part .= "></task>\n";
 
 234       fwrite($this->file, $task_part);
 
 236     fwrite($this->file, $this->indentation."  </tasks>\n");
 
 239     fwrite($this->file, $this->indentation."  <projects>\n");
 
 240     foreach ($projects as $project_item) {
 
 241       if($project_item['tasks']){
 
 242         $tasks = explode(',', $project_item['tasks']);
 
 243         $tasks_mapped = array();
 
 244         foreach ($tasks as $item)
 
 245           $tasks_mapped[] = $this->taskMap[$item];
 
 246         $tasks_str = implode(',', $tasks_mapped);
 
 248       $project_part = $this->indentation.'    '."<project id=\"".$this->projectMap[$project_item['id']]."\"";
 
 249       $project_part .= " name=\"".htmlentities($project_item['name'])."\"";
 
 250       $project_part .= " description=\"".htmlentities($project_item['description'])."\"";
 
 251       $project_part .= " tasks=\"".$tasks_str."\"";
 
 252       $project_part .= " status=\"".$project_item['status']."\"";
 
 253       $project_part .= "></project>\n";
 
 254       fwrite($this->file, $project_part);
 
 256     fwrite($this->file, $this->indentation."  </projects>\n");
 
 259     fwrite($this->file, $this->indentation."  <clients>\n");
 
 260     foreach ($clients as $client_item) {
 
 261       if($client_item['projects']){
 
 262         $projects_db = explode(',', $client_item['projects']);
 
 263         $projects_mapped = array();
 
 264         foreach ($projects_db as $item)
 
 265           $projects_mapped[] = $this->projectMap[$item];
 
 266         $projects_str = implode(',', $projects_mapped);
 
 268       $client_part = $this->indentation.'    '."<client id=\"".$this->clientMap[$client_item['id']]."\"";
 
 269       $client_part .= " name=\"".htmlentities($client_item['name'])."\"";
 
 270       $client_part .= " address=\"".htmlentities($client_item['address'])."\"";
 
 271       $client_part .= " tax=\"".$client_item['tax']."\"";
 
 272       $client_part .= " projects=\"".$projects_str."\"";
 
 273       $client_part .= " status=\"".$client_item['status']."\"";
 
 274       $client_part .= "></client>\n";
 
 275       fwrite($this->file, $client_part);
 
 277     fwrite($this->file, $this->indentation."  </clients>\n");
 
 280     fwrite($this->file, $this->indentation."  <users>\n");
 
 281     foreach ($users as $user_item) {
 
 282       $role_id = $user_item['rank'] == 512 ? 0 : $this->roleMap[$user_item['role_id']]; // Special role_id 0 (not null) for top manager.
 
 283       $user_part = $this->indentation.'    '."<user id=\"".$this->userMap[$user_item['id']]."\"";
 
 284       $user_part .= " name=\"".htmlentities($user_item['name'])."\"";
 
 285       $user_part .= " login=\"".htmlentities($user_item['login'])."\"";
 
 286       $user_part .= " password=\"".$user_item['password']."\"";
 
 287       $user_part .= " role_id=\"".$role_id."\"";
 
 288       $user_part .= " client_id=\"".$this->clientMap[$user_item['client_id']]."\"";
 
 289       $user_part .= " rate=\"".$user_item['rate']."\"";
 
 290       $user_part .= " email=\"".$user_item['email']."\"";
 
 291       $user_part .= " status=\"".$user_item['status']."\"";
 
 292       $user_part .= "></user>\n";
 
 293       fwrite($this->file, $user_part);
 
 295     fwrite($this->file, $this->indentation."  </users>\n");
 
 297     // Call self recursively for all subgroups.
 
 298     foreach ($this->subgroups as $subgroup) {
 
 299       $subgroup_helper = new ttGroupExportHelper($subgroup['id'], $this->file, $this->indentation.'  ');
 
 300       $subgroup_helper->writeData();
 
 303     fwrite($this->file, $this->indentation."</group>\n");