From 13b8d2e6ebccbaa464c1aa8334b7e2507cbbd7fe Mon Sep 17 00:00:00 2001 From: ethem Date: Tue, 11 Mar 2008 08:38:04 +0000 Subject: [PATCH] Race condition in cron for Scheduled-Capture (very very big sites and order review enabled only). In one cron, 250-500 orders may be processed (based on 5 minutes). If an admin sets cron time up smaller than 5 minutes and 250-500> new transactions are made after last cron executed, it can be blocked. Authorize cron sets up an_lastcron every time when admin/cron.php executes. This must be set up after blocking check code. As result, if pending orders aren't accepted with in 30 days at payment management page, they expired and users cannot enrol. When an admin enabled order review, he is guaranteed 'Payment managers accept/deny transactions manually'. Scheduled-Capture is designed for forgotten orders only ;) Backported from HEAD. --- enrol/authorize/enrol.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/enrol/authorize/enrol.php b/enrol/authorize/enrol.php index 2595bb44265..b2f0b45e0ad 100755 --- a/enrol/authorize/enrol.php +++ b/enrol/authorize/enrol.php @@ -417,7 +417,8 @@ class enrolment_plugin_authorize $captureday = intval($frm->an_capture_day); $emailexpired = intval($frm->an_emailexpired); if ($captureday > 0 || $emailexpired > 0) { - if ((time() - intval($mconfig->an_lastcron) > 3600 * 24)) { + $lastcron = get_field_sql('SELECT max(lastcron) FROM ' . $CFG->prefix . 'modules'); + if ((time() - intval($lastcron) > 3600 * 24)) { notify(get_string('admincronsetup', 'enrol_authorize')); } } @@ -491,7 +492,8 @@ class enrolment_plugin_authorize $emailexpired = ($emailexpired > 5) ? 5 : (($emailexpired < 0) ? 0 : $emailexpired); if (!empty($reviewval) && ($captureday > 0 || $emailexpired > 0)) { - if (time() - intval($mconfig->an_lastcron) > 3600 * 24) { + $lastcron = get_field_sql('SELECT max(lastcron) FROM ' . $CFG->prefix . 'modules'); + if (time() - intval($lastcron) > 3600 * 24) { return false; } } @@ -560,7 +562,6 @@ class enrolment_plugin_authorize $settlementtime = authorize_getsettletime($timenow); $timediff30 = $settlementtime - (30 * $oneday); $mconfig = get_config('enrol/authorize'); - set_config('an_lastcron', $timenow, 'enrol/authorize'); mtrace("Processing authorize cron..."); @@ -601,6 +602,7 @@ class enrolment_plugin_authorize mtrace("blocked"); return; } + set_config('an_lastcron', $timenow, 'enrol/authorize'); mtrace(" $ordercount orders are being processed now", ": ");