50 lines
1.9 KiB
PHP
Executable file
50 lines
1.9 KiB
PHP
Executable file
#!/usr/bin/php -q
|
|
<? /*
|
|
Copyright (C) 2004 by Duane Groth <duane_at_CAcert_dot_org>
|
|
|
|
This file is part of CAcert.
|
|
|
|
CAcert has been released under a CAcert Source License
|
|
which can be found included with these source files or can
|
|
be downloaded from the internet from the following address:
|
|
http://www.cacert.org/src-lic.php
|
|
|
|
CAcert is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
PARTICULAR PURPOSE. See the License for more details.
|
|
*/
|
|
|
|
// This script seems to add points for assurances that didn't received their points automatically before.
|
|
|
|
include_once("../includes/mysql.php");
|
|
|
|
$query = "select * from `notary` group by `from`";
|
|
$res = mysql_query($query);
|
|
while($row = mysql_fetch_assoc($res))
|
|
{
|
|
$query = "select *,sum(`points`) as `points` from `users`, `notary` where `users`.`id`=`notary`.`to` and `users`.`id`='".$row['from']."' group by `notary`.`to`";
|
|
$drow = mysql_fetch_assoc(mysql_query($query));
|
|
if($drow['points'] < 100 || $drow['points'] >= 150)
|
|
continue;
|
|
$query = "select * from `notary` where `from`='".$drow['id']."' and `to`='".$drow['id']."'";
|
|
$num = mysql_num_rows(mysql_query($query));
|
|
$query = "select * from `notary` where `from`='".$drow['id']."' and `to`!='".$drow['id']."'";
|
|
$newnum = mysql_num_rows(mysql_query($query));
|
|
if($num < $newnum)
|
|
{
|
|
echo $drow['fname']." ".$drow['lname']." <".$drow['email']."> (memid: ".$drow['id']." points: ".$drow['points']." - num: $num newnum: $newnum)\n";
|
|
for($i = $newnum; $i > $num; $i--)
|
|
{
|
|
$newpoints = 2;
|
|
if($drow['points'] + 1>= 150)
|
|
break;
|
|
if($drow['points'] + 2 > 150)
|
|
$newpoints = 1;
|
|
$query = "insert into `notary` set `from`='".$drow['id']."', `to`='".$drow['id']."',
|
|
`points`='$newpoints', `method`='Administrative Increase', `date`=NOW()";
|
|
mysql_query($query);
|
|
$drow['points'] += $newpoints;
|
|
}
|
|
}
|
|
}
|
|
?>
|