A few fixes to export-import.
[timetracker.git] / WEB-INF / lib / ttImportHelper.class.php
index c3e1859..ff2ea3c 100644 (file)
@@ -36,31 +36,35 @@ import('ttClientHelper');
 import('ttCustomFieldHelper');
 import('ttFavReportHelper');
 import('ttExpenseHelper');
+import('ttRoleHelper');
 
 // ttImportHelper - this class is used to import team data from a file.
 class ttImportHelper {
   var $errors         = null;    // Errors go here. Set in constructor by reference.
-  
+
   var $currentElement = array(); // Current element of the XML file we are parsing.
-  var $currentTag     = '';      // XML tag of the current element.  
-  
+  var $currentTag     = '';      // XML tag of the current element.
+
   var $canImport      = true;    // False if we cannot import data due to a login collision.
   var $teamData       = array(); // Array of team data such as team name, etc.
   var $team_id        = null;    // New team id we are importing. It is created during the import operation.
+  var $roles          = array(); // Array of arrays of role properties.
   var $users          = array(); // Array of arrays of user properties.
-  
+  var $top_role_id    = null;    // Top manager role id on the new server.
+
   // The following arrays are maps between entity ids in the file versus the database.
   // In the file they are sequential (1,2,3...) while in the database the entities have different ids.
+  var $roleMap       = array(); // Role ids.
   var $userMap       = array(); // User ids.
   var $projectMap    = array(); // Project ids.
   var $taskMap       = array(); // Task ids.
   var $clientMap     = array(); // Client ids.
   var $invoiceMap    = array(); // Invoice ids.
-  
+
   var $customFieldMap       = array(); // Custom field ids.
   var $customFieldOptionMap = array(); // Custop field option ids.
   var $logMap        = array(); // Time log ids.
-  
+
   // Constructor.
   function ttImportHelper(&$errors) {
     $this->errors = &$errors;
@@ -70,34 +74,40 @@ class ttImportHelper {
   // In this function we assign passed in attributes to currentElement.
   function startElement($parser, $name, $attrs) {
     if ($name == 'TEAM'
-         || $name == 'USER'
-         || $name == 'TASK'
-         || $name == 'PROJECT'
+      || $name == 'USER'
+      || $name == 'TASK'
+      || $name == 'PROJECT'
       || $name == 'CLIENT'
       || $name == 'INVOICE'
-         || $name == 'LOG_ITEM'
-         || $name == 'CUSTOM_FIELD'
-         || $name == 'CUSTOM_FIELD_OPTION'
-         || $name == 'CUSTOM_FIELD_LOG_ENTRY'
-         || $name == 'INVOICE_HEADER'
-         || $name == 'USER_PROJECT_BIND'
-         || $name == 'EXPENSE_ITEM'
-         || $name == 'FAV_REPORT') {
-         $this->currentElement = $attrs;
-         }
-       $this->currentTag = $name;
+      || $name == 'MONTHLY_QUOTA'
+      || $name == 'LOG_ITEM'
+      || $name == 'CUSTOM_FIELD'
+      || $name == 'CUSTOM_FIELD_OPTION'
+      || $name == 'CUSTOM_FIELD_LOG_ENTRY'
+      || $name == 'INVOICE_HEADER'
+      || $name == 'USER_PROJECT_BIND'
+      || $name == 'EXPENSE_ITEM'
+      || $name == 'FAV_REPORT'
+      || $name == 'ROLE') {
+      $this->currentElement = $attrs;
+    }
+    $this->currentTag = $name;
   }
 
   // endElement - callback handler for the closing tag of an XML element.
   // When we are here, currentElement is an array of the element attributes (as set in startElement).
   // Here we do the actual import of data into the database.
-  function endElement($parser, $name)  {
+  function endElement($parser, $name) {
     if ($name == 'TEAM') {
       $this->teamData = $this->currentElement;
       // Now teamData is an array of team properties. We'll use it later to create a team.
       // Cannot create the team here. Need to determine whether logins collide with existing logins.
       $this->currentElement = array();
     }
+    if ($name == 'ROLE') {
+      $this->roles[$this->currentElement['ID']] = $this->currentElement;
+      $this->currentElement = array();
+    }
     if ($name == 'USER') {
       $this->users[$this->currentElement['ID']] = $this->currentElement;
       $this->currentElement = array();
@@ -110,29 +120,47 @@ class ttImportHelper {
           break;
         }
       }
-      
+
       // Now we can create a team.
       if ($this->canImport) {
+        $this->top_role_id = ttRoleHelper::getRoleByRank(512, 0);
         $team_id = ttTeamHelper::insert(array(
           'name' => $this->teamData['NAME'],
-          'address' => $this->teamData['ADDRESS'],
           'currency' => $this->teamData['CURRENCY'],
-          'lock_interval' => $this->teamData['LOCK_INTERVAL'],
-          'lang' => $this->teamData['LANG'],
           'decimal_mark' => $this->teamData['DECIMAL_MARK'],
+          'lang' => $this->teamData['LANG'],
           'date_format' => $this->teamData['DATE_FORMAT'],
           'time_format' => $this->teamData['TIME_FORMAT'],
           'week_start' => $this->teamData['WEEK_START'],
-          'plugins' => $this->teamData['PLUGINS'],
           'tracking_mode' => $this->teamData['TRACKING_MODE'],
-          'record_type' => $this->teamData['RECORD_TYPE']));
+          'project_required' => $this->teamData['PROJECT_REQUIRED'],
+          'task_required' => $this->teamData['TASK_REQUIRED'],
+          'record_type' => $this->teamData['RECORD_TYPE'],
+          'bcc_email' => $this->teamData['BCC_EMAIL'],
+          'plugins' => $this->teamData['PLUGINS'],
+          'lock_spec' => $this->teamData['LOCK_SPEC'],
+          'workday_minutes' => $this->teamData['WORKDAY_MINUTES'],
+          'config' => $this->teamData['CONFIG']));
         if ($team_id) {
           $this->team_id = $team_id;
+
+          // Create roles.
+          foreach ($this->roles as $key=>$role_item) {
+            $role_id = ttRoleHelper::insert(array(
+              'team_id' => $this->team_id,
+              'name' => $role_item['NAME'],
+              'rank' => $role_item['RANK'],
+              'rights' => $role_item['RIGHTS'],
+              'status' => $role_item['STATUS']));
+            $this->roleMap[$role_item['ID']] = $role_id;
+          }
+
           foreach ($this->users as $key=>$user_item) {
+            $role_id = $user_item['ROLE_ID'] === '0' ? $this->top_role_id :  $this->roleMap[$user_item['ROLE_ID']]; // 0 (not null) means top manager role.
             $user_id = ttUserHelper::insert(array(
               'team_id' => $this->team_id,
-              'role' => $user_item['ROLE'],
-              'client_id' => $user_item['CLIENT_ID'], // Note: NOT mapped value, replaced in CLIENT handler. 
+              'role_id' => $role_id,
+              'client_id' => $user_item['CLIENT_ID'], // Note: NOT mapped value, replaced in CLIENT handler.
               'name' => $user_item['NAME'],
               'login' => $user_item['LOGIN'],
               'password' => $user_item['PASSWORD'],
@@ -144,7 +172,8 @@ class ttImportHelper {
         }
       }
     }
-       if ($name == 'TASK' && $this->canImport) {
+
+    if ($name == 'TASK' && $this->canImport) {
       $this->taskMap[$this->currentElement['ID']] =
         ttTaskHelper::insert(array(
           'team_id' => $this->team_id,
@@ -174,7 +203,7 @@ class ttImportHelper {
         $this->currentElement['RATE'],
         $this->currentElement['STATUS']);
     }
-    
+
     if ($name == 'CLIENT' && $this->canImport) {
       // Prepare a list of project ids.
       if ($this->currentElement['PROJECTS']) {
@@ -197,7 +226,8 @@ class ttImportHelper {
         if ($this->currentElement['ID'] != $this->clientMap[$this->currentElement['ID']])
           ttClientHelper::setMappedClient($this->team_id, $this->currentElement['ID'], $this->clientMap[$this->currentElement['ID']]);
     }
-       if ($name == 'INVOICE' && $this->canImport) {
+
+    if ($name == 'INVOICE' && $this->canImport) {
       $this->invoiceMap[$this->currentElement['ID']] =
         ttInvoiceHelper::insert(array(
           'team_id' => $this->team_id,
@@ -207,6 +237,11 @@ class ttImportHelper {
           'discount' => $this->currentElement['DISCOUNT'],
           'status' => $this->currentElement['STATUS']));
     }
+
+    if ($name == 'MONTHLY_QUOTA' && $this->canImport) {
+      $this->insertMonthlyQuota($this->team_id, $this->currentElement['YEAR'], $this->currentElement['MONTH'], $this->currentElement['MINUTES']);
+    }
+
     if ($name == 'LOG_ITEM' && $this->canImport) {
       $this->logMap[$this->currentElement['ID']] =
         ttTimeHelper::insert(array(
@@ -222,8 +257,10 @@ class ttImportHelper {
           'invoice' => $this->invoiceMap[$this->currentElement['INVOICE_ID']],
           'note' => (isset($this->currentElement['COMMENT']) ? $this->currentElement['COMMENT'] : ''),
           'billable' => $this->currentElement['BILLABLE'],
+          'paid' => $this->currentElement['PAID'],
           'status' => $this->currentElement['STATUS']));
     }
+
     if ($name == 'CUSTOM_FIELD' && $this->canImport) {
       $this->customFieldMap[$this->currentElement['ID']] =
         ttCustomFieldHelper::insertField(array(
@@ -233,12 +270,14 @@ class ttImportHelper {
           'required' => $this->currentElement['REQUIRED'],
           'status' => $this->currentElement['STATUS']));
     }
+
     if ($name == 'CUSTOM_FIELD_OPTION' && $this->canImport) {
       $this->customFieldOptionMap[$this->currentElement['ID']] =
         ttCustomFieldHelper::insertOption(array(
           'field_id' => $this->customFieldMap[$this->currentElement['FIELD_ID']],
           'value' => $this->currentElement['VALUE']));
     }
+
     if ($name == 'CUSTOM_FIELD_LOG_ENTRY' && $this->canImport) {
       ttCustomFieldHelper::insertLogEntry(array(
         'log_id' => $this->logMap[$this->currentElement['LOG_ID']],
@@ -247,6 +286,7 @@ class ttImportHelper {
         'value' => $this->currentElement['VALUE'],
         'status' => $this->currentElement['STATUS']));
     }
+
     if ($name == 'EXPENSE_ITEM' && $this->canImport) {
       ttExpenseHelper::insert(array(
         'date' => $this->currentElement['DATE'],
@@ -256,14 +296,16 @@ class ttImportHelper {
         'name' => $this->currentElement['NAME'],
         'cost' => $this->currentElement['COST'],
         'invoice_id' => $this->invoiceMap[$this->currentElement['INVOICE_ID']],
+        'paid' => $this->currentElement['PAID'],
         'status' => $this->currentElement['STATUS']));
-    }    
+    }
+
     if ($name == 'FAV_REPORT' && $this->canImport) {
       $user_list = '';
       if (strlen($this->currentElement['USERS']) > 0) {
         $arr = explode(',', $this->currentElement['USERS']);
-               foreach ($arr as $v)
-                 $user_list .= (strlen($user_list) == 0 ? '' : ',').$this->userMap[$v];
+        foreach ($arr as $v)
+          $user_list .= (strlen($user_list) == 0 ? '' : ',').$this->userMap[$v];
       }
       ttFavReportHelper::insertReport(array(
         'name' => $this->currentElement['NAME'],
@@ -277,20 +319,19 @@ class ttImportHelper {
         'period' => $this->currentElement['PERIOD'],
         'from' => $this->currentElement['PERIOD_START'],
         'to' => $this->currentElement['PERIOD_END'],
-        'chclient' => $this->currentElement['SHOW_CLIENT'],
-        'chinvoice' => $this->currentElement['SHOW_INVOICE'],
-        'chproject' => $this->currentElement['SHOW_PROJECT'],
-        'chstart' => $this->currentElement['SHOW_START'],
-        'chduration' => $this->currentElement['SHOW_DURATION'],
-        'chcost' => $this->currentElement['SHOW_COST'],
-        'chtask' => $this->currentElement['SHOW_TASK'],
-        'chfinish' => $this->currentElement['SHOW_END'],
-        'chnote' => $this->currentElement['SHOW_NOTE'],
-        'chcf_1' => $this->currentElement['SHOW_CUSTOM_FIELD_1'],
+        'chclient' => (int) $this->currentElement['SHOW_CLIENT'],
+        'chinvoice' => (int) $this->currentElement['SHOW_INVOICE'],
+        'chpaid' => (int) $this->currentElement['SHOW_PAID'],
+        'chproject' => (int) $this->currentElement['SHOW_PROJECT'],
+        'chstart' => (int) $this->currentElement['SHOW_START'],
+        'chduration' => (int) $this->currentElement['SHOW_DURATION'],
+        'chcost' => (int) $this->currentElement['SHOW_COST'],
+        'chtask' => (int) $this->currentElement['SHOW_TASK'],
+        'chfinish' => (int) $this->currentElement['SHOW_END'],
+        'chnote' => (int) $this->currentElement['SHOW_NOTE'],
+        'chcf_1' => (int) $this->currentElement['SHOW_CUSTOM_FIELD_1'],
         'group_by' => $this->currentElement['GROUP_BY'],
-        'chtotalsonly' => $this->currentElement['SHOW_TOTALS_ONLY']));
-        //'sortby' => $this->currentElement['SORT_BY'],
-        //'chemptydays' => $this->currentElement['SHOW_EMPTY_DAYS']));
+        'chtotalsonly' => (int) $this->currentElement['SHOW_TOTALS_ONLY']));
     }
     $this->currentTag = '';
   }
@@ -302,9 +343,7 @@ class ttImportHelper {
       || $this->currentTag == 'LABEL'
       || $this->currentTag == 'VALUE'
       || $this->currentTag == 'COMMENT'
-      || $this->currentTag == 'ADDRESS'
-      || $this->currentTag == 'CLIENT_NAME'
-      || $this->currentTag == 'CLIENT_ADDRESS') {
+      || $this->currentTag == 'ADDRESS') {
       if (isset($this->currentElement[$this->currentTag]))
         $this->currentElement[$this->currentTag] .= trim($data);
       else
@@ -312,31 +351,33 @@ class ttImportHelper {
     }
   }
 
-  // importXml - uncomresses the file, reads and parses its content. During parsing,
+  // importXml - uncompresses the file, reads and parses its content. During parsing,
   // startElement, endElement, and dataElement functions are called as many times as necessary.
   // Actual import occurs in the endElement handler.
   function importXml() {
-       // Do we have a compressed file?
-       $compressed = false;    
-       $file_ext = substr($_FILES['xmlfile']['name'], strrpos($_FILES['xmlfile']['name'], '.') + 1);
+    global $i18n;
+
+    // Do we have a compressed file?
+    $compressed = false;
+    $file_ext = substr($_FILES['xmlfile']['name'], strrpos($_FILES['xmlfile']['name'], '.') + 1);
     if (in_array($file_ext, array('bz','tbz','bz2','tbz2'))) {
       $compressed = true;
     }
-    
+
     // Create a temporary file.
-       $dirName = dirname(TEMPLATE_DIR . '_c/.');
+    $dirName = dirname(TEMPLATE_DIR . '_c/.');
     $filename = tempnam($dirName, 'import_');
-    
+
     // If the file is compressed - uncompress it.
     if ($compressed) {
       if (!$this->uncompress($_FILES['xmlfile']['tmp_name'], $filename)) {
-       $this->errors->add($GLOBALS['I18N']->getKey('error.sys'));
-       return;
+        $this->errors->add($i18n->getKey('error.sys'));
+        return;
       }
       unlink($_FILES['xmlfile']['tmp_name']);
     } else {
       if (!move_uploaded_file($_FILES['xmlfile']['tmp_name'], $filename)) {
-        $this->errors->add($GLOBALS['I18N']->getKey('error.upload'));
+        $this->errors->add($i18n->getKey('error.upload'));
         return;
       }
     }
@@ -351,18 +392,18 @@ class ttImportHelper {
     $file = fopen($filename, 'r');
     while ($data = fread($file, 4096)) {
       if (!xml_parse($parser, $data, feof($file))) {
-       $this->errors->add(sprintf("XML error: %s at line %d",
-         xml_error_string(xml_get_error_code($parser)),
-         xml_get_current_line_number($parser)));
-         }
-         if (!$this->canImport) {
-               $this->errors->add($GLOBALS['I18N']->getKey('error.user_exists'));
-           break;
-         }
-       }
-       xml_parser_free($parser);
-       if ($file) fclose($file);
-       unlink($filename);
+        $this->errors->add(sprintf("XML error: %s at line %d",
+          xml_error_string(xml_get_error_code($parser)),
+          xml_get_current_line_number($parser)));
+      }
+      if (!$this->canImport) {
+        $this->errors->add($i18n->getKey('error.user_exists'));
+        break;
+      }
+    }
+    xml_parser_free($parser);
+    if ($file) fclose($file);
+    unlink($filename);
   }
 
   // uncompress - uncompresses the content of the $in file into the $out file.
@@ -370,7 +411,7 @@ class ttImportHelper {
     // Do we have the uncompress function?
     if (!function_exists('bzopen'))
       return false;
-               
+
     // Initial checks of file names and permissions.
     if (!file_exists($in) || !is_readable ($in))
       return false;
@@ -390,5 +431,12 @@ class ttImportHelper {
     fclose ($out_file);
     return true;
   }
+
+  // insertMonthlyQuota - a helper function to insert a monthly quota.
+  private function insertMonthlyQuota($team_id, $year, $month, $minutes) {
+    $mdb2 = getConnection();
+    $sql = "INSERT INTO tt_monthly_quotas (team_id, year, month, minutes) values ($team_id, $year, $month, $minutes)";
+    $affected = $mdb2->exec($sql);
+    return (!is_a($affected, 'PEAR_Error'));
+  }
 }
-?>
\ No newline at end of file