summaryrefslogtreecommitdiff
path: root/scripts/cron
diff options
context:
space:
mode:
authorMichael Tänzer <neo@nhng.de>2012-01-21 15:16:27 +0100
committerMichael Tänzer <neo@nhng.de>2012-01-21 15:16:27 +0100
commit190790845f3ef673a4f6779bbc1a46620a6151ec (patch)
treea44053047433ec3b89550681d50828dc834e2f24 /scripts/cron
parentf712965620c90c1d1a8213ef7b27acadc41002db (diff)
downloadcacert-devel-190790845f3ef673a4f6779bbc1a46620a6151ec.tar.gz
cacert-devel-190790845f3ef673a4f6779bbc1a46620a6151ec.tar.xz
cacert-devel-190790845f3ef673a4f6779bbc1a46620a6151ec.zip
bug 1003: Move cron jobs into a separate folder
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'scripts/cron')
-rwxr-xr-xscripts/cron/removedead.php86
-rwxr-xr-xscripts/cron/updatesort.php77
-rwxr-xr-xscripts/cron/warning.php100
3 files changed, 263 insertions, 0 deletions
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
+<? /*
+ 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("/home/cacert/www/includes/mysql.php");
+
+ $query = "select * from `users` where `users`.`verified`=0 and
+ (UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`users`.`created`)) >= 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`<NOW()";
+ $res = mysql_query($query);
+ while($row = mysql_fetch_assoc($res))
+ {
+ $query = "select sum(`points`) as `points` from `notary` where `to`='$row[to]' and `expire`=0 group by `to`";
+ $dres = mysql_query($query);
+ $drow = mysql_fetch_assoc($dres);
+ if($drow['points'] >= 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
+<? /*
+ 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");
+
+
+
+ //mysql_query("update users set assurer=0");
+ $query = "select notary.`to` as uid from notary group by notary.`to` having sum(points)>=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
+<? /*
+ 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("/home/cacert/www/includes/mysql.php");
+
+ $days = array("1" => "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);
+ }
+ }
+?>