From 190790845f3ef673a4f6779bbc1a46620a6151ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20T=C3=A4nzer?= Date: Sat, 21 Jan 2012 15:16:27 +0100 Subject: bug 1003: Move cron jobs into a separate folder MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michael Tänzer --- scripts/cron/removedead.php | 86 +++++++++++++++++++++++++++++++++++++ scripts/cron/updatesort.php | 77 ++++++++++++++++++++++++++++++++++ scripts/cron/warning.php | 100 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 263 insertions(+) create mode 100755 scripts/cron/removedead.php create mode 100755 scripts/cron/updatesort.php create mode 100755 scripts/cron/warning.php (limited to 'scripts/cron') diff --git a/scripts/cron/removedead.php b/scripts/cron/removedead.php new file mode 100755 index 0000000..7e47c7f --- /dev/null +++ b/scripts/cron/removedead.php @@ -0,0 +1,86 @@ +#!/usr/bin/php -q += 172800"; + $res = mysql_query($query); + while($row = mysql_fetch_assoc($res)) + { + mysql_query("delete from `email` where `memid`='".$row['id']."'"); + mysql_query("delete from `users` where `id`='".$row['id']."'"); + } + + $query = "delete from `domains` where `hash`!='' and + (UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`created`)) >= 172800"; + mysql_query($query); + + $query = "delete from `email` where `hash`!='' and + (UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`created`)) >= 172800"; + mysql_query($query); + + $query = "delete from `disputedomain` where `hash`!='' and + (UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`created`)) >= 21600"; + mysql_query($query); + + $query = "delete from `disputeemail` where `hash`!='' and + (UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`created`)) >= 21600"; + mysql_query($query); + + $query = "select * from `notary` where `expire`!=0 and `expire`= 150) + { + $query = "update `notary` set `expire`=0, `points`='0' where `to`='$row[to]' and `from`='$row[from]' and `expire`='$row[expire]'"; + } else { + $newpoints = 150 - $drow['points']; + $query = "update `notary` set `expire`=0, `points`='0' where `to`='$row[to]' and `from`='$row[from]' and `expire`='$row[expire]'"; + mysql_query($query); + $query = "insert into `notary` set `expire`=0, `points`='$newpoints', `to`='$row[to]', `from`='$row[from]', `when`=NOW(), `method`='Administrative Increase', `date`=NOW()"; + } + + $data = mysql_fetch_assoc(mysql_query("select * from `users` where `id`='$row[to]'")); + $body = sprintf("%s %s (%s) had a temporary increase, but this has just expired and they have been reduced to 150 points.", $data['fname'], $data['lname'], $data['email'])."\n\n"; + sendmail("cacert-board@lists.cacert.org", "[CAcert.org] Temporary Increase Expired.", $body, "website@cacert.org", "", "", "CAcert Website"); + + if($data['language'] != "") + { + $userlang = $data['language']; + putenv("LANG=".$userlang); + setlocale(LC_ALL, $userlang); + } + + $body = _("You are receiving this email because you had a temporary increase to 200 points. This has since expired and you have been reduced to 150 points.")."\n\n"; + $body = _("If you needed more time or any other extenuating circumstances you should contact us immediately so this situation can be dealt with immediately.")."\n\n"; + + $body .= _("Best regards")."\n"; + $body .= _("CAcert Support Team"); + + sendmail($data['email'], "[CAcert.org] "._("Temporary points increase has expired."), $body, "support@cacert.org", "", "", "CAcert Website"); + + mysql_query($query); + fix_assurer_flag($row[to]); + } +?> diff --git a/scripts/cron/updatesort.php b/scripts/cron/updatesort.php new file mode 100755 index 0000000..4d36bfc --- /dev/null +++ b/scripts/cron/updatesort.php @@ -0,0 +1,77 @@ +#!/usr/bin/php -q +=100;"; + $res = mysql_query($query); + while($row = mysql_fetch_assoc($res)) + { + $query = "update users set `assurer`='1' where `id`='${row['uid']}'"; + //echo $query."\n"; + mysql_query($query); + } + + + 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); + } + + + + +?> diff --git a/scripts/cron/warning.php b/scripts/cron/warning.php new file mode 100755 index 0000000..b578c09 --- /dev/null +++ b/scripts/cron/warning.php @@ -0,0 +1,100 @@ +#!/usr/bin/php -q + "3", "15" => "2", "30" => "1", "45" => "0"); + + foreach($days as $day => $warning) + { + $query = "SELECT `emailcerts`.`id`,`users`.`fname`,`users`.`lname`,`users`.`email`,`emailcerts`.`memid`, + `emailcerts`.`subject`, `emailcerts`.`crt_name`,`emailcerts`.`CN`, + (UNIX_TIMESTAMP(`emailcerts`.`expire`) - UNIX_TIMESTAMP(NOW())) / 86400 as `daysleft` + FROM `users`,`emailcerts` + WHERE UNIX_TIMESTAMP(`emailcerts`.`expire`) - UNIX_TIMESTAMP(NOW()) > -7 * 86400 and + UNIX_TIMESTAMP(`emailcerts`.`expire`) - UNIX_TIMESTAMP(NOW()) < $day * 86400 and + `emailcerts`.`renewed`=0 and `emailcerts`.`warning` <= '$warning' and + `emailcerts`.`revoked`=0 and `users`.`id`=`emailcerts`.`memid`"; + $res = mysql_query($query); + while($row = mysql_fetch_assoc($res)) + { + if($row['subject'] == "") + { + $row['crt_name'] = str_replace("../", "www/", $row['crt_name']); + $row['crt_name'] = "/home/cacert/".$row['crt_name']; + $subject = `openssl x509 -in '$row[crt_name]' -text -noout|grep Subject:`; + $bits = explode("/", $subject); + foreach($bits as $val) + { + $sub = explode("=", trim($val)); + if($sub['0'] == "emailAddress") + { + $row['subject'] = "/CN=".$row['CN']."/emailAddress=".$sub['1']; + break; + } + } + } + if($row['subject'] == "") + $row['subject'] = "/CN=".$row['CN']; + $row['daysleft'] = ceil($row['daysleft']); + $body = sprintf(_("Hi %s"), $row['fname']).",\n\n"; + $body .= _("You are receiving this email as you are the listed contact for:")."\n\n"; + $body .= $row['subject']."\n\n"; + $body .= sprintf(_("Your certificate is set to expire in approximately %s days time, you can renew this by going to the following URL:"), $row['daysleft'])."\n\n"; + $body .= "https://www.cacert.org/account.php?id=5\n\n"; + $body .= _("Best Regards")."\n"._("CAcert Support"); + sendmail($row['email'], "[CAcert.org] "._("Your Certificate is about to expire"), $body, "support@cacert.org", "", "", "CAcert Support"); +echo $row['fname']." ".$row['lname']." <".$row['email']."> (memid: ".$row['memid']." Subj: ".$row['subject']." timeleft: ".$row['daysleft'].")\n"; + $query = "update `emailcerts` set `warning`='".($warning+1)."' where `id`='".$row['id']."'"; + mysql_query($query); + } + } + + foreach($days as $day => $warning) + { + $query = "SELECT `domaincerts`.`id`, `users`.`fname`, `users`.`lname`, `users`.`email`, + `domains`.`memid`, `domaincerts`.`subject`, `domaincerts`.`crt_name`, + `domaincerts`.`CN`, + (UNIX_TIMESTAMP(`domaincerts`.`expire`) - UNIX_TIMESTAMP(NOW())) / 86400 AS `daysleft` + FROM `users`, `domaincerts`, `domlink`, `domains` + WHERE UNIX_TIMESTAMP(`domaincerts`.`expire`) - UNIX_TIMESTAMP(NOW()) > -7 * 86400 AND + UNIX_TIMESTAMP(`domaincerts`.`expire`) - UNIX_TIMESTAMP(NOW()) < $day * 86400 AND + `domaincerts`.`renewed`=0 AND `domaincerts`.`warning` <= '$warning' AND + `domaincerts`.`revoked`=0 AND `users`.`id` = `domains`.`memid` AND + `domlink`.`certid` = `domaincerts`.`id` AND `domains`.`id` = `domlink`.`domid`"; + $res = mysql_query($query); + while($row = mysql_fetch_assoc($res)) + { + if($row['subject'] == "") + $row['subject'] = $row['CN']; + + $row['daysleft'] = ceil($row['daysleft']); + $body = sprintf(_("Hi %s"), $row['fname']).",\n\n"; + $body .= _("You are receiving this email as you are the listed contact for:")."\n\n"; + $body .= $row['subject']."\n\n"; + $body .= sprintf(_("Your certificate is set to expire in approximately %s days time, you can renew this by going to the following URL:"), $row['daysleft'])."\n\n"; + $body .= "https://www.cacert.org/account.php?id=12\n\n"; + $body .= _("Best Regards")."\n"._("CAcert Support"); + sendmail($row['email'], "[CAcert.org] "._("Your Certificate is about to expire"), $body, "support@cacert.org", "", "", "CAcert Support"); +echo $row['fname']." ".$row['lname']." <".$row['email']."> (memid: ".$row['memid']." Subj: ".$row['CN']." timeleft: ".$row['daysleft'].")\n"; + $query = "update `domaincerts` set `warning`='".($warning+1)."' where `id`='".$row['id']."'"; + mysql_query($query); + } + } +?> -- cgit v1.2.1