Adding consistency checks
This commit is contained in:
parent
1d22e387c4
commit
bea26665b4
2 changed files with 129 additions and 0 deletions
24
scripts/cleanthem.pl
Normal file
24
scripts/cleanthem.pl
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
#!/usr/bin/perl -w
|
||||||
|
|
||||||
|
my %mysqltables=("gpg"=>"gpg","client"=>"emailcerts","server"=>"domaincerts","orgclient"=>"orgemailcerts","orgserver"=>"orgdomaincerts");
|
||||||
|
|
||||||
|
sub mysql_query($)
|
||||||
|
{
|
||||||
|
$dbh->do($_[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
my $aktiv=1;
|
||||||
|
|
||||||
|
foreach my $dir (("../csr","../crt"))
|
||||||
|
{
|
||||||
|
my $dirhandle;
|
||||||
|
opendir($dirhandle,"../csr");
|
||||||
|
while($_=readdir($dirhandle))
|
||||||
|
{
|
||||||
|
if(! -s "$dir/$_" and -f "$dir/$_" and !-d "$dir/$_")
|
||||||
|
{
|
||||||
|
print "Loesche $dir/$_\n";
|
||||||
|
unlink "$dir/$_";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
105
scripts/consistence.php
Executable file
105
scripts/consistence.php
Executable file
|
@ -0,0 +1,105 @@
|
||||||
|
#!/usr/bin/php -q
|
||||||
|
<? /*
|
||||||
|
LibreSSL - CAcert web application
|
||||||
|
Copyright (C) 2004-2008 CAcert Inc.
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; version 2 of the License.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
*/
|
||||||
|
include_once("../includes/mysql.php");
|
||||||
|
|
||||||
|
|
||||||
|
if(0)
|
||||||
|
{
|
||||||
|
$query = "select locations.id from locations, regions where locations.regid=regions.id and locations.ccid!=regions.ccid;";
|
||||||
|
$res = mysql_query($query);
|
||||||
|
while($row = mysql_fetch_assoc($res))
|
||||||
|
{
|
||||||
|
$query = "update users set `assurer`='1' where `id`='${row['uid']}'";
|
||||||
|
echo "inconsistence in location ".$row['locations.id']."\n";
|
||||||
|
//mysql_query($query);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(0)
|
||||||
|
{
|
||||||
|
$query = "select id from locations where regid<1 or ccid<1;";
|
||||||
|
$res = mysql_query($query);
|
||||||
|
while($row = mysql_fetch_assoc($res))
|
||||||
|
{
|
||||||
|
//$query = "update users set `assurer`='1' where `id`='${row['uid']}'";
|
||||||
|
echo "inconsistence in location ".$row['id']."\n";
|
||||||
|
//mysql_query($query);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(1)
|
||||||
|
{
|
||||||
|
$query = "select users.id, locations.regid from users inner join locations on users.locid=locations.id where users.regid!=locations.regid or users.ccid!=locations.ccid;";
|
||||||
|
$res = mysql_query($query);
|
||||||
|
echo mysql_error();
|
||||||
|
while($row = mysql_fetch_assoc($res))
|
||||||
|
{
|
||||||
|
echo "inconsistence in user #".$row['id']."\n";
|
||||||
|
$query = "update users set regid=".$row['regid']." where `id`=".$row['id'].";";
|
||||||
|
|
||||||
|
echo "query: $query\n";
|
||||||
|
if($row['regid']=="1182") mysql_query($query);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
exit();
|
||||||
|
|
||||||
|
mysql_query("update `locations` set `acount`=0");
|
||||||
|
$query = "SELECT `users`.`locid` AS `locid`, count(*) AS `total` FROM `users`
|
||||||
|
WHERE users.assurer='1' AND `users`.`locid` != 0 and users.listme=1
|
||||||
|
GROUP BY `users`.`locid`";
|
||||||
|
$res = mysql_query($query);
|
||||||
|
while($row = mysql_fetch_assoc($res))
|
||||||
|
{
|
||||||
|
$query = "update `locations` set `acount`='${row['total']}' where `id`='${row['locid']}'";
|
||||||
|
echo $query."\n";
|
||||||
|
mysql_query($query);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
mysql_query("update `regions` set `acount`=0");
|
||||||
|
$query = "SELECT `users`.`regid` AS `regid`, count(*) AS `total` FROM `users`
|
||||||
|
WHERE users.assurer='1' AND `users`.`regid` != 0 and users.listme=1
|
||||||
|
GROUP BY `users`.`regid`";
|
||||||
|
$res = mysql_query($query);
|
||||||
|
while($row = mysql_fetch_assoc($res))
|
||||||
|
{
|
||||||
|
$query = "update `regions` set `acount`='${row['total']}' where `id`='${row['regid']}'";
|
||||||
|
echo $query."\n";
|
||||||
|
mysql_query($query);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
mysql_query("update `countries` set `acount`=0");
|
||||||
|
$query = "SELECT `users`.`ccid` AS `ccid`, count(*) AS `total` FROM `users`
|
||||||
|
WHERE users.assurer='1' AND `users`.`ccid` != 0 and users.listme=1
|
||||||
|
GROUP BY `users`.`ccid`";
|
||||||
|
$res = mysql_query($query);
|
||||||
|
while($row = mysql_fetch_assoc($res))
|
||||||
|
{
|
||||||
|
$query = "update `countries` set `acount`='${row['total']}' where `id`='${row['ccid']}'";
|
||||||
|
echo $query."\n";
|
||||||
|
mysql_query($query);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
Loading…
Reference in a new issue