errors = &$errors; $this->top_role_id = ttRoleHelper::getRoleByRank(512, 0); } // startElement - callback handler for opening tag of an XML element in the file. function startElement($parser, $name, $attrs) { global $i18n; // First pass. We only check user logins for potential collisions with existing. if ($this->firstPass) { if ($name == 'USER' && $this->canImport) { $login = $attrs['LOGIN']; if ('' != $attrs['STATUS'] && ttUserHelper::getUserByLogin($login)) { // We have a login collision. Append colliding login to a list of things we cannot import. $this->conflicting_entities .= ($this->conflicting_entities ? ", $login" : $login); } } } // Second pass processing. We import data here, one tag at a time. if (!$this->firstPass && $this->canImport && $this->errors->no()) { $mdb2 = getConnection(); // We are in second pass and can import data. if ($name == 'GROUP') { // Create a new group. $this->current_group_id = $this->createGroup(array( 'parent_id' => $this->current_parent_group_id, 'org_id' => $this->org_id, 'name' => $attrs['NAME'], 'currency' => $attrs['CURRENCY'], 'decimal_mark' => $attrs['DECIMAL_MARK'], 'lang' => $attrs['LANG'], 'date_format' => $attrs['DATE_FORMAT'], 'time_format' => $attrs['TIME_FORMAT'], 'week_start' => $attrs['WEEK_START'], 'tracking_mode' => $attrs['TRACKING_MODE'], 'project_required' => $attrs['PROJECT_REQUIRED'], 'task_required' => $attrs['TASK_REQUIRED'], 'record_type' => $attrs['RECORD_TYPE'], 'bcc_email' => $attrs['BCC_EMAIL'], 'allow_ip' => $attrs['ALLOW_IP'], 'password_complexity' => $attrs['PASSWORD_COMPLEXITY'], 'plugins' => $attrs['PLUGINS'], 'lock_spec' => $attrs['LOCK_SPEC'], 'workday_minutes' => $attrs['WORKDAY_MINUTES'], 'custom_logo' => $attrs['CUSTOM_LOGO'], 'config' => $attrs['CONFIG'])); // Special handling for top group. if (!$this->org_id && $this->current_group_id) { $this->org_id = $this->current_group_id; $sql = "update tt_groups set org_id = $this->current_group_id where org_id is NULL and id = $this->current_group_id"; $affected = $mdb2->exec($sql); } // Set parent group to create subgroups with this group as parent at next entry here. $this->current_parent_group_id = $this->current_group_id; } if ($name == 'ROLES') { // If we get here, we have to recycle $currentGroupRoleMap. unset($this->currentGroupRoleMap); $this->currentGroupRoleMap = array(); // Role map is reconstructed after processing elements in XML. See below. } if ($name == 'ROLE') { // We get here when processing tags for the current group. $role_id = ttRoleHelper::insert(array( 'group_id' => $this->current_group_id, 'org_id' => $this->org_id, 'name' => $attrs['NAME'], 'description' => $attrs['DESCRIPTION'], 'rank' => $attrs['RANK'], 'rights' => $attrs['RIGHTS'], 'status' => $attrs['STATUS'])); if ($role_id) { // Add a mapping. $this->currentGroupRoleMap[$attrs['ID']] = $role_id; } else $this->errors->add($i18n->get('error.db')); } if ($name == 'TASKS') { // If we get here, we have to recycle $currentGroupTaskMap. unset($this->currentGroupTaskMap); $this->currentGroupTaskMap = array(); // Task map is reconstructed after processing elements in XML. See below. } if ($name == 'TASK') { // We get here when processing tags for the current group. $task_id = ttTaskHelper::insert(array( 'group_id' => $this->current_group_id, 'org_id' => $this->org_id, 'name' => $attrs['NAME'], 'description' => $attrs['DESCRIPTION'], 'status' => $attrs['STATUS'])); if ($task_id) { // Add a mapping. $this->currentGroupTaskMap[$attrs['ID']] = $task_id; } else $this->errors->add($i18n->get('error.db')); } if ($name == 'PROJECTS') { // If we get here, we have to recycle $currentGroupProjectMap. unset($this->currentGroupProjectMap); $this->currentGroupProjectMap = array(); // Project map is reconstructed after processing elements in XML. See below. } if ($name == 'PROJECT') { // We get here when processing tags for the current group. // Prepare a list of task ids. $tasks = explode(',', $attrs['TASKS']); foreach ($tasks as $id) $mapped_tasks[] = $this->currentGroupTaskMap[$id]; $project_id = ttProjectHelper::insert(array( 'group_id' => $this->current_group_id, 'org_id' => $this->org_id, 'name' => $attrs['NAME'], 'description' => $attrs['DESCRIPTION'], 'tasks' => $mapped_tasks, 'status' => $attrs['STATUS'])); if ($project_id) { // Add a mapping. $this->currentGroupProjectMap[$attrs['ID']] = $project_id; } else $this->errors->add($i18n->get('error.db')); } if ($name == 'CLIENTS') { // If we get here, we have to recycle $currentGroupClientMap. unset($this->currentGroupClientMap); $this->currentGroupClientMap = array(); // Client map is reconstructed after processing elements in XML. See below. } if ($name == 'CLIENT') { // We get here when processing tags for the current group. // Prepare a list of project ids. $projects = explode(',', $attrs['PROJECTS']); foreach ($projects as $id) $mapped_projects[] = $this->currentGroupProjectMap[$id]; $client_id = ttClientHelper::insert(array( 'group_id' => $this->current_group_id, 'org_id' => $this->org_id, 'name' => $attrs['NAME'], 'address' => $attrs['ADDRESS'], 'tax' => $attrs['TAX'], 'projects' => $mapped_projects, 'status' => $attrs['STATUS'])); if ($client_id) { // Add a mapping. $this->currentGroupClientMap[$attrs['ID']] = $client_id; } else $this->errors->add($i18n->get('error.db')); } if ($name == 'USERS') { // If we get here, we have to recycle $currentGroupUserMap. unset($this->currentGroupUserMap); $this->currentGroupUserMap = array(); // User map is reconstructed after processing elements in XML. See below. } if ($name == 'USER') { // We get here when processing tags for the current group. $role_id = $attrs['ROLE_ID'] === '0' ? $this->top_role_id : $this->currentGroupRoleMap[$attrs['ROLE_ID']]; // 0 (not null) means top manager role. $user_id = ttUserHelper::insert(array( 'group_id' => $this->current_group_id, 'org_id' => $this->org_id, 'role_id' => $role_id, 'client_id' => $this->currentGroupClientMap[$attrs['CLIENT_ID']], 'name' => $attrs['NAME'], 'login' => $attrs['LOGIN'], 'password' => $attrs['PASSWORD'], 'rate' => $attrs['RATE'], 'email' => $attrs['EMAIL'], 'status' => $attrs['STATUS']), false); if ($user_id) { // Add a mapping. $this->currentGroupUserMap[$attrs['ID']] = $user_id; } else $this->errors->add($i18n->get('error.db')); } if ($name == 'USER_PROJECT_BIND') { if (!ttUserHelper::insertBind(array( 'user_id' => $this->currentGroupUserMap[$attrs['USER_ID']], 'project_id' => $this->currentGroupProjectMap[$attrs['PROJECT_ID']], 'group_id' => $this->current_group_id, 'org_id' => $this->org_id, 'rate' => $attrs['RATE'], 'status' => $attrs['STATUS']))) { $this->errors->add($i18n->get('error.db')); } } if ($name == 'INVOICES') { // If we get here, we have to recycle $currentGroupInvoiceMap. unset($this->currentGroupInvoiceMap); $this->currentGroupInvoiceMap = array(); // Invoice map is reconstructed after processing elements in XML. See below. } if ($name == 'INVOICE') { // We get here when processing tags for the current group. $invoice_id = ttInvoiceHelper::insert(array( 'group_id' => $this->current_group_id, 'org_id' => $this->org_id, 'name' => $attrs['NAME'], 'date' => $attrs['DATE'], 'client_id' => $this->currentGroupClientMap[$attrs['CLIENT_ID']], 'status' => $attrs['STATUS'])); if ($invoice_id) { // Add a mapping. $this->currentGroupInvoiceMap[$attrs['ID']] = $invoice_id; } else $this->errors->add($i18n->get('error.db')); } if ($name == 'LOG') { // If we get here, we have to recycle $currentGroupLogMap. unset($this->currentGroupLogMap); $this->currentGroupLogMap = array(); // Log map is reconstructed after processing elements in XML. See below. } if ($name == 'LOG_ITEM') { // We get here when processing tags for the current group. $log_item_id = ttTimeHelper::insert(array( 'user_id' => $this->currentGroupUserMap[$attrs['USER_ID']], 'group_id' => $this->current_group_id, 'org_id' => $this->org_id, 'date' => $attrs['DATE'], 'start' => $attrs['START'], 'finish' => $attrs['FINISH'], 'duration' => $attrs['DURATION'], 'client' => $this->currentGroupClientMap[$attrs['CLIENT_ID']], 'project' => $this->currentGroupProjectMap[$attrs['PROJECT_ID']], 'task' => $this->currentGroupTaskMap[$attrs['TASK_ID']], 'invoice' => $this->currentGroupInvoiceMap[$attrs['INVOICE_ID']], 'note' => (isset($attrs['COMMENT']) ? $attrs['COMMENT'] : ''), 'billable' => $attrs['BILLABLE'], 'paid' => $attrs['PAID'], 'status' => $attrs['STATUS'])); if ($log_item_id) { // Add a mapping. $this->currentGroupLogMap[$attrs['ID']] = $log_item_id; } else $this->errors->add($i18n->get('error.db')); } } } // 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() { 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/.'); $filename = tempnam($dirName, 'import_'); // If the file is compressed - uncompress it. if ($compressed) { if (!$this->uncompress($_FILES['xmlfile']['tmp_name'], $filename)) { $this->errors->add($i18n->get('error.sys')); return; } unlink($_FILES['xmlfile']['tmp_name']); } else { if (!move_uploaded_file($_FILES['xmlfile']['tmp_name'], $filename)) { $this->errors->add($i18n->get('error.upload')); return; } } // Initialize XML parser. $parser = xml_parser_create(); xml_set_object($parser, $this); xml_set_element_handler($parser, 'startElement', false); // We need to parse the file 2 times: // 1) First pass: determine if import is possible - there must be no login collisions. // 2) Second pass: if we can import, then do import in a second pass. // This is different from earlier approach for single group import, where we could // do both things in one pass because user info was in the beginning of XML file. // Now, with subgroups, users can be located anywhere in the file. // Read and parse the content of the file. During parsing, startElement, endElement, and dataElement functions are called. $file = fopen($filename, 'r'); while ($data = fread($file, 4096)) { if (!xml_parse($parser, $data, feof($file))) { $this->errors->add(sprintf($i18n->get('error.xml'), xml_get_current_line_number($parser), xml_error_string(xml_get_error_code($parser)))); } } if ($this->conflicting_entities) { $this->canImport = false; $this->errors->add($i18n->get('error.user_exists')); $this->errors->add(sprintf($i18n->get('error.cannot_import'), $this->conflicting_entities)); } $this->firstPass = false; // We are done with 1st pass. xml_parser_free($parser); if ($file) fclose($file); if (!$this->canImport) { unlink($filename); return; } if ($this->errors->yes()) return; // Exit if we have errors. // Now we can do a second pass, where real work is done. $parser = xml_parser_create(); xml_set_object($parser, $this); xml_set_element_handler($parser, 'startElement', false); // Read and parse the content of the file. During parsing, startElement, endElement, and dataElement functions are called. $file = fopen($filename, 'r'); while ($data = fread($file, 4096)) { if (!xml_parse($parser, $data, feof($file))) { $this->errors->add(sprintf($i18n->get('error.xml'), xml_get_current_line_number($parser), xml_error_string(xml_get_error_code($parser)))); } } xml_parser_free($parser); if ($file) fclose($file); unlink($filename); } // uncompress - uncompresses the content of the $in file into the $out file. function uncompress($in, $out) { // 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; if ((!file_exists($out) && !is_writable(dirname($out))) || (file_exists($out) && !is_writable($out))) return false; if (!$out_file = fopen($out, 'wb')) return false; if (!$in_file = bzopen ($in, 'r')) return false; while (!feof($in_file)) { $buffer = bzread($in_file, 4096); fwrite($out_file, $buffer, 4096); } bzclose($in_file); fclose ($out_file); return true; } // createGroup function creates a new group. private function createGroup($fields) { global $user; global $i18n; $mdb2 = getConnection(); $columns = '(parent_id, org_id, name, 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 ('; $values .= $mdb2->quote($fields['parent_id']); $values .= ', '.$mdb2->quote($fields['org_id']); $values .= ', '.$mdb2->quote(trim($fields['name'])); $values .= ', '.$mdb2->quote(trim($fields['currency'])); $values .= ', '.$mdb2->quote($fields['decimal_mark']); $values .= ', '.$mdb2->quote($fields['lang']); $values .= ', '.$mdb2->quote($fields['date_format']); $values .= ', '.$mdb2->quote($fields['time_format']); $values .= ', '.(int)$fields['week_start']; $values .= ', '.(int)$fields['tracking_mode']; $values .= ', '.(int)$fields['project_required']; $values .= ', '.(int)$fields['task_required']; $values .= ', '.(int)$fields['record_type']; $values .= ', '.$mdb2->quote($fields['bcc_email']); $values .= ', '.$mdb2->quote($fields['allow_ip']); $values .= ', '.$mdb2->quote($fields['password_complexity']); $values .= ', '.$mdb2->quote($fields['plugins']); $values .= ', '.$mdb2->quote($fields['lock_spec']); $values .= ', '.(int)$fields['workday_minutes']; $values .= ', '.$mdb2->quote($fields['config']); $values .= ', now(), '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', '.$mdb2->quote($user->id); $values .= ')'; $sql = 'insert into tt_groups '.$columns.$values; $affected = $mdb2->exec($sql); if (is_a($affected, 'PEAR_Error')) { $this->errors->add($i18n->get('error.db')); return false; } $group_id = $mdb2->lastInsertID('tt_groups', 'id'); return $group_id; } }