X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=dbinstall.php;h=6e5b1b25fd05969c7cbb96972a660cb8d923a067;hb=96e8b431e4b1dadd919b831e4ae184d29ebf1235;hp=063f202238b0b7e6266be1143ef599cde774cf08;hpb=3cd816de20457c5224d72db358833b234571be70;p=timetracker.git diff --git a/dbinstall.php b/dbinstall.php index 063f2022..6e5b1b25 100644 --- a/dbinstall.php +++ b/dbinstall.php @@ -47,6 +47,25 @@ function ttExecute($sql) { print "Successful update.
\n"; } +// ttGenerateKeys - generates keys for groups that do not have them. +function ttGenerateKeys() { + $mdb2 = getConnection(); + $sql = "select id from tt_groups where group_key is null and status = 1"; + $res = $mdb2->query($sql); + if (is_a($res, 'PEAR_Error')) die($res->getMessage()); + + $numGroups = 0; + while ($val = $res->fetchRow()) { + $group_id = $val['id']; + $group_key = $mdb2->quote(ttRandomString()); + $sql = "update tt_groups set group_key = $group_key where id = $group_id"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) die($affected->getMessage()); + $numGroups++; + } + print "
Generated keys for $numGroups groups.
\n"; +} + if ($request->isGet()) { echo('

Environment Checks

'); @@ -1133,10 +1152,11 @@ if ($_POST) { ttExecute("UPDATE `tt_site_config` SET param_value = '1.18.60', modified = now() where param_name = 'version_db' and param_value = '1.18.59'"); ttExecute("ALTER TABLE `tt_groups` ADD `group_key` varchar(32) AFTER `org_id`"); ttExecute("UPDATE `tt_site_config` SET param_value = '1.18.61', modified = now() where param_name = 'version_db' and param_value = '1.18.60'"); + + ttGenerateKeys(); } if ($_POST["cleanup"]) { - $mdb2 = getConnection(); $inactive_orgs = ttOrgHelper::getInactiveOrgs(); @@ -1170,6 +1190,7 @@ if ($_POST) { ttExecute("OPTIMIZE TABLE tt_user_project_binds"); ttExecute("OPTIMIZE TABLE tt_users"); ttExecute("OPTIMIZE TABLE tt_roles"); + ttExecute("OPTIMIZE TABLE tt_files"); } print "Done.
\n";