summaryrefslogtreecommitdiff
path: root/scripts/addpoints.php
blob: 932cd83ec854e3123b6211ec815efbd518dde046 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/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
*/

// 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;
				fix_assurer_flag($drow['id']);
			}
		}
	}
?>