From 149fc3a347ccde2c18b9912ab8c8e0adaa12e3f1 Mon Sep 17 00:00:00 2001 From: cash Date: Tue, 23 Nov 2010 22:46:37 +0000 Subject: Fixes #2472 move cron_handler.php logic into cron page handler git-svn-id: http://code.elgg.org/elgg/trunk@7430 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/cron.php | 56 ++++++++++++++++++++++++++++++----------------------- 1 file changed, 32 insertions(+), 24 deletions(-) (limited to 'engine/lib/cron.php') diff --git a/engine/lib/cron.php b/engine/lib/cron.php index 9d47e95d1..ff57a41f1 100644 --- a/engine/lib/cron.php +++ b/engine/lib/cron.php @@ -7,7 +7,7 @@ */ /** - * Initialisation + * Cron initialization * * @return void */ @@ -20,7 +20,7 @@ function cron_init() { } /** - * Cron handler for redirecting pages. + * Cron handler * * @param array $page Pages * @@ -29,29 +29,38 @@ function cron_init() { function cron_page_handler($page) { global $CONFIG; - if ($page[0]) { - switch (strtolower($page[0])) { - case 'minute' : - case 'fiveminute' : - case 'fifteenmin' : - case 'halfhour' : - case 'hourly' : - case 'daily' : - case 'weekly' : - case 'monthly': - case 'yearly' : - case 'reboot' : - set_input('period', $page[0]); - break; - default : - throw new CronException(elgg_echo('CronException:unknownperiod', array($page[0]))); - } - - // Include cron handler - include($CONFIG->path . "engine/handlers/cron_handler.php"); - } else { + if (!isset($page[0])) { forward(); } + + $period = strtolower($page[0]); + + $allowed_periods = array( + 'minute', 'fiveminute', 'fifteenmin', 'halfhour', 'hourly', + 'daily', 'weekly', 'monthly', 'yearly', 'reboot' + ); + + if (!in_array($period, $allowed_periods)) { + throw new CronException(elgg_echo('CronException:unknownperiod', array($period))); + } + + // Get a list of parameters + $params = array(); + $params['time'] = time(); + + foreach ($CONFIG->input as $k => $v) { + $params[$k] = $v; + } + + // Data to return to + $std_out = ""; + $old_stdout = ""; + ob_start(); + + $old_stdout = elgg_trigger_plugin_hook('cron', $period, $params, $old_stdout); + $std_out = ob_get_clean(); + + echo $std_out . $old_stdout; } /** @@ -79,5 +88,4 @@ function cron_public_pages($hook, $type, $return_value, $params) { return $return_value; } -// Register a startup event elgg_register_event_handler('init', 'system', 'cron_init'); \ No newline at end of file -- cgit v1.2.3