X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2FttOrgHelper.class.php;h=1893379d3af8aaed64e5dcdc637997238e1f1f80;hb=ed41335d63e71a11d30e92f4367106e9398adf9d;hp=2cf045060e4926a10ece46a708ca65be90baf387;hpb=8492dc052ad85039e0bbe11c7c3e1b8554907f64;p=timetracker.git diff --git a/WEB-INF/lib/ttOrgHelper.class.php b/WEB-INF/lib/ttOrgHelper.class.php index 2cf04506..1893379d 100644 --- a/WEB-INF/lib/ttOrgHelper.class.php +++ b/WEB-INF/lib/ttOrgHelper.class.php @@ -62,4 +62,133 @@ class ttOrgHelper { } return false; } + + // The getInactiveOrgs is a maintenance function that returns an array of inactive organization ids (max 50 for now). + static function getInactiveOrgs() { + $inactive_orgs = array(); + $mdb2 = getConnection(); + + // Determine inactive organizations by querying the database for max access timestamp for its users. + $cutoff_timestamp = $mdb2->quote(date('Y-m-d', strtotime('-1 year'))); + $sql = "select org_id from". + " (select max(accessed) as last_access, org_id from tt_users where org_id > 0 group by org_id order by last_access, org_id) as t". + " where last_access is null or last_access < $cutoff_timestamp limit 50"; // Max 50 orgs at a time for now... + $res = $mdb2->query($sql); + if (!is_a($res, 'PEAR_Error')) { + while ($val = $res->fetchRow()) { + $inactive_orgs[] = $val['org_id']; + } + return $inactive_orgs; + } + return false; + } + + // deleteOrg deletes data for the entire organization from database permanently. + static function deleteOrg($org_id) { + + // Delete all org files. + ttOrgHelper::deleteOrgFiles($org_id); + + // Go one table at a time and remove all records with matching org_id. + // The order is backwards to import (see ttOrgImportHelper). Remove groups last. + // This leaves us with something partially working if an error occurs. + $mdb2 = getConnection(); + + $tables = array( + 'tt_config', + 'tt_cron', + 'tt_fav_reports', + 'tt_templates', + 'tt_monthly_quotas', + 'tt_predefined_expenses', + 'tt_expense_items', + 'tt_custom_field_log', + 'tt_custom_field_options', + 'tt_custom_fields', + 'tt_log', + 'tt_invoices', + 'tt_timesheets', + 'tt_user_project_binds', + 'tt_users', + 'tt_client_project_binds', + 'tt_clients', + 'tt_project_task_binds', + 'tt_projects', + 'tt_tasks', + 'tt_roles', + 'tt_groups' + ); + foreach($tables as $table) { + $sql = "delete from $table where org_id = $org_id"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) return false; + } + return true; } + + // deleteOrgFiles deletes files attached to all entities in the entire organization. + static function deleteOrgFiles($org_id) { + + // Delete all org files from the database. + $mdb2 = getConnection(); + $sql = "delete from tt_files where org_id = $org_id"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) + return false; + + if ($affected == 0) return true; // Do not call file storage utility. + + // Try to make a call to file storage facility. + if (!defined('FILE_STORAGE_URI')) return true; // Nothing to do. + + $deleteorgfiles_uri = FILE_STORAGE_URI.'deleteorgfiles'; + + // Obtain site id. + $sql = "select param_value as site_id from tt_site_config where param_name = 'locker_id'"; + $res = $mdb2->query($sql); + $val = $res->fetchRow(); + $site_id = $val['site_id']; + if (!$site_id) return true; // Nothing to do. + + // Obtain site key. + $sql = "select param_value as site_key from tt_site_config where param_name = 'locker_key'"; + $res = $mdb2->query($sql); + $val = $res->fetchRow(); + $site_key = $val['site_key']; + if (!$site_key) return true; // Can't continue without site key. + + // Obtain org key. + $sql = "select group_key as org_key from tt_groups where id = $org_id"; + $res = $mdb2->query($sql); + $val = $res->fetchRow(); + $org_key = $val['org_key']; + if (!$org_key) return true; // Can't continue without org key. + + $curl_fields = array('site_id' => $site_id, + 'site_key' => $site_key, + 'org_id' => $org_id, + 'org_key' => $org_key); + + // url-ify the data for the POST. + foreach($curl_fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; } + $fields_string = rtrim($fields_string, '&'); + + // Open connection. + $ch = curl_init(); + + // Set the url, number of POST vars, POST data. + curl_setopt($ch, CURLOPT_URL, $deleteorgfiles_uri); + curl_setopt($ch, CURLOPT_POST, true); + curl_setopt($ch, CURLOPT_POSTFIELDS, $fields_string); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + + // Execute a post request. + $result = curl_exec($ch); + + // Close connection. + curl_close($ch); + + // Many things can go wrong with a remote call to file storage facility. + // By design, we ignore such errors. + return true; + } }