From: Nik Okuntseff Date: Wed, 12 Dec 2018 14:40:21 +0000 (+0000) Subject: Failed attempt to write ttCronJobHelper, some improvements to cron.php. X-Git-Tag: timetracker_1.19-1~430 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=29d6481a7dc9e1538be50a942e4891db17467ec4;p=timetracker.git Failed attempt to write ttCronJobHelper, some improvements to cron.php. --- diff --git a/WEB-INF/lib/ttCronJobHelper.class.php b/WEB-INF/lib/ttCronJobHelper.class.php new file mode 100644 index 00000000..5dcc0b69 --- /dev/null +++ b/WEB-INF/lib/ttCronJobHelper.class.php @@ -0,0 +1,111 @@ += c.next and fr.status = 1". // Due now. + " and c.status = 1 and c.report_id is not null and c.email is not null"; + $res = $mdb2->query($sql); + if (is_a($res, 'PEAR_Error')) return; + while ($val = $res->fetchRow()) { + $this->reports[] = $val; + } + } + + // exec - processes reports one at a time by sending each out. + function exec() { + foreach ($this->reports as $report) { + // Get favorite report details. + $options = $this->getReportOptions($report['report_id']); + if (!$options) continue; // Skip not found report. + + // Recycle global $user object, as user settings are specific for each report. + unset($user); + $user = new ttUser(null, $options['user_id']); + if (!$user->id) continue; // Skip not found user. + + // Avoid complications with impersonated users, possibly from subgroups. + // Note: this may happen when cron.php is called by a browser who already impersonates. + // This is not supposed to happen in automatic cron job. + if ($user->behalf_id) + continue; // Skip processing on behalf situations entirely. + + // TODO: coding ongoing here. Not finished. Add other processing when ready. + + } + } + + // getReportOptions - returns an array of fav report options from database data. + private function getReportOptions($id) { + $mdb2 = getConnection(); + + $sql = "select * from tt_fav_reports where id = $id and status = 1"; + $res = $mdb2->query($sql); + if (is_a(res, 'PEAR_Error')) return false; + + $val = $res->fetchRow(); + if (!$val) return false; + + // Drop things we don't need. + unset($val['id']); + unset($val['report_spec']); + unset($val['status']); + + return $val; + } +} diff --git a/WEB-INF/templates/footer.tpl b/WEB-INF/templates/footer.tpl index 244dc313..1caa6b55 100644 --- a/WEB-INF/templates/footer.tpl +++ b/WEB-INF/templates/footer.tpl @@ -12,7 +12,7 @@
-
 Anuko Time Tracker 1.18.29.4634 | Copyright © Anuko | +  Anuko Time Tracker 1.18.29.4635 | Copyright © Anuko | {$i18n.footer.credits} | {$i18n.footer.license} | {$i18n.footer.improve} diff --git a/cron.php b/cron.php index 98c1456f..19384df4 100644 --- a/cron.php +++ b/cron.php @@ -47,10 +47,12 @@ import('ttReportHelper'); $mdb2 = getConnection(); $now = time(); - $sql = "select c.id, c.cron_spec, c.report_id, c.email, c.cc, c.subject, c.report_condition from tt_cron c". - " inner join tt_fav_reports fr on (c.report_id = fr.id and c.group_id = fr.group_id and c.org_id = fr.org_id)". - " where $now >= c.next and fr.status = 1". - " and c.status = 1 and c.report_id is not null and c.email is not null"; +$sql = "select c.id, c.cron_spec, c.report_id, c.email, c.cc, c.subject, c.report_condition from tt_cron c". + " inner join tt_fav_reports fr on". + " (c.report_id = fr.id and c.group_id = fr.group_id and c.org_id = fr.org_id)". // Report for a correct group. + " inner join tt_users u on (u.id = fr.user_id and u.status = 1)". // Report for an active user. + " where $now >= c.next and fr.status = 1". // Due now. + " and c.status = 1 and c.report_id is not null and c.email is not null"; $res = $mdb2->query($sql); if (is_a($res, 'PEAR_Error')) exit(); @@ -66,6 +68,12 @@ while ($val = $res->fetchRow()) { $user = new ttUser(null, $options['user_id']); if (!$user->id) continue; // Skip not found user. + // Avoid complications with impersonated users, possibly from subgroups. + // Note: this may happen when cron.php is called by a browser who already impersonates. + // This is not supposed to happen in automatic cron job. + if ($user->behalf_id) + continue; // Skip processing on behalf situations entirely. + // TODO: write a new function ttFavReportHelper::adjustOptions that will use // a $user object recycled above. Put user handling below into it. // Also adjust remaining options for potentially changed user access rights and group properties. @@ -93,9 +101,8 @@ while ($val = $res->fetchRow()) { } // Calculate next execution time. - $next = tdCron::getNextOccurrence($val['cron_spec'], $now + 60); // +60 sec is here to get us correct $next when $now is close to existing "next". + $next = tdCron::getNextOccurrence($val['cron_spec'], $now + 60); // +60 sec is here to get us correct $next when $now is close to existing "next"./// // This is because the accuracy of tdcron class appears to be 1 minute. - // Update last and next values in tt_cron. $sql = "update tt_cron set last = $now, next = $next where id = ".$val['id']; $affected = $mdb2->exec($sql);