aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/cron.php
blob: b9a1bb778abe287557021f5702b1bc5d7afabf0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?php
/**
*
* @package phpBB3
* @version $Id$
* @copyright (c) 2010 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

/**
* Cron class
* @package phpBB3
*/
class cron
{
	var $tasks = array();

	function cron()
	{
		global $config, $phpbb_root_path, $phpEx;
		$modules = $config['cron_modules'];
		$modules = explode(',', $modules);
		foreach ($modules as $module)
		{
			// explode will return array("") when exploding an empty string;
			// users may also specify something like foo,,bar.
			// Account for module being possibly empty
			if (!empty($module))
			{
				// Misspelling or specifying nonexistent modules here may make the board
				// unusable due to error messages screwing up header output
				include_once($phpbb_root_path . "includes/cron/$module.$phpEx");
				$cron_class = "cron_tasks_$module";
				$object = new $cron_class;
				foreach ($object->tasks as $cron_type => $params)
				{
					$params['object'] = $object;
					$this->tasks[$cron_type] = $params;
				}
			}
		}
	}

	function is_valid_task($cron_type)
	{
		return isset($this->tasks[$cron_type]);
	}

	function is_task_runnable($cron_type, $args=null)
	{
		global $config;
		$time_now = time();
		$cron_params = $this->tasks[$cron_type];
		if ($cron_params['enable_config'] && !$config[$cron_params['enable_config']])
		{
			return false;
		}
		if ($cron_param['custom_condition'])
		{
			$callable = array($cron_params['object'], $cron_type . '_condition');
			if ($args)
			{
				$answer = call_user_func_array($callable, $args);
			} else
			{
				$answer = call_user_func($callable);
			}
			if (!$answer)
			{
				return false;
			}
		}
		if ($time_now - $config[$cron_params['interval_config']] > $config[$cron_params['last_run_config']])
		{
			return true;
		}
		return false;
	}

	function is_task_shutdown_function_compatible($cron_type)
	{
		$cron_params = $this->tasks[$cron_type];
		if (isset($cron_params['shutdown_function_condition']))
		{
			return call_user_func(array($cron_params->object, $cron_type . '_shutdown_function_condition'));
		} else
		{
			return true;
		}
	}

	function determine_cron_mode_param()
	{
		global $config;
		if ($config['use_system_cron'])
		{
			$mode = 'run_from_system';
		} else
		{
			$mode_param = 'run_from_phpbb';
		}
		return $mode_param;
	}

	function find_one_runnable_task()
	{
		$mode_param = $this->determine_cron_mode_param();
		foreach ($this->tasks as $cron_type => $cron_params)
		{
			if ($cron_params[$mode_param] && $this->is_task_runnable($cron_type))
			{
				return $cron_type;
			}
		}
		return null;
	}

	function find_all_runnable_tasks()
	{
		$mode_param = $this->determine_cron_mode_param();
		$tasks = array();
		foreach ($this->tasks as $cron_type => $cron_params)
		{
			if ($cron_params[$mode_param] && $this->is_task_runnable($cron_type))
			{
				$tasks[] = $cron_type;
			}
		}
		return $tasks;
	}

	function generate_task_code($cron_type, $args=array())
	{
		$cron_params = $this->tasks[$cron_type];
		if ($cron_params['custom_code'])
		{
			$code = call_user_func_array(array($cron_params['object'], $cron_type . '_code'), $args);
		} else
		{
			$code = $this->generate_generic_task_code($cron_type);
		}
		return $code;
	}

	function generate_generic_task_code($cron_type)
	{
		global $phpbb_root_path, $phpEx;
		return '<img src="' . append_sid($phpbb_root_path . 'cron.' . $phpEx, 'cron_type=' . $cron_type) . '" width="1" height="1" alt="cron" />';
	}

	function run_task($cron_type)
	{
		call_user_func(array($this->tasks[$cron_type]['object'], 'run_' . $cron_type));
	}
}