summaryrefslogtreecommitdiff
blob: 711ce7f10c065eb3e25e83117aab38e567593cea (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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<?php

class scbCron {
	protected $schedule;
	protected $interval;
	protected $time;

	protected $hook;
	protected $callback_args;

	/**
	 * Create a new cron job
	 *
	 * @param string Reference to main plugin file
	 * @param array List of args:
	 		string $action OR callback $callback
			string $schedule OR number $interval
			array $callback_args ( optional )
	 * @param bool Debug mode
	 */
	function __construct( $file, $args, $debug = false ) {
		$this->_set_args( $args );

		scbUtil::add_activation_hook( $file, array( $this, 'reset' ) );
		register_deactivation_hook( $file, array( $this, 'unschedule' ) );

		add_filter( 'cron_schedules', array( $this, '_add_timing' ) );

		if ( $debug )
			self::debug();
	}

	/* Change the interval of the cron job
	 *
	 * @param array List of args:
			string $schedule OR number $interval
	 		timestamp $time ( optional )
	 */
	function reschedule( $args ) {
		extract( $args );

		if ( $schedule && $this->schedule != $schedule ) {
			$this->schedule = $schedule;
		} elseif ( $interval && $this->interval != $interval ) {
			$this->schedule = $interval . 'secs';
			$this->interval = $interval;
		}

		$this->time = $time;

		$this->reset();
	}

	/**
	 * Reset the schedule
	 */
	function reset() {
		$this->unschedule();
		$this->schedule();
	}

	/**
	 * Clear the cron job
	 */
	function unschedule() {
#		wp_clear_scheduled_hook( $this->hook, $this->callback_args );
		self::really_clear_scheduled_hook( $this->hook );
	}

	/**
	 * Execute the job now
	 */
	function do_now() {
		do_action( $this->hook );
	}

	/**
	 * Execute the job with a given delay
	 * @param int Delay in seconds
	 */
	function do_once( $delay = 0 ) {
		wp_schedule_single_event( time() + $delay, $this->hook, $this->callback_args );
	}

	/**
	 * Display current cron jobs
	 */
	function debug() {
		add_action( 'admin_footer', array( __CLASS__, '_debug' ) );
	}


//_____INTERNAL METHODS_____


	function _add_timing( $schedules ) {
		if ( isset( $schedules[$this->schedule] ) )
			return $schedules;

		$schedules[$this->schedule] = array( 'interval' => $this->interval,
			'display' => $this->interval . ' seconds' );

		return $schedules;
	}

	function _debug() {
		if ( ! current_user_can( 'manage_options' ) )
			return;

		echo "<pre>";
		print_r( get_option( 'cron' ) );
		echo "</pre>";
	}

	protected function schedule() {
		if ( ! $this->time )
			$this->time = time();

		wp_schedule_event( $this->time, $this->schedule, $this->hook, $this->callback_args );
	}

	protected function _set_args( $args ) {
		extract( $args );

		// Set hook
		if ( isset( $action ) ) {
			$this->hook = $action;
		} elseif ( isset( $callback ) ) {
			$this->hook = self::_callback_to_string( $callback );

			add_action( $this->hook, $callback );
		} elseif ( method_exists( $this, 'callback' ) ) {
			$this->hook = self::_callback_to_string( $callback );

			add_action( $this->hook, $callback );
		} else {
			trigger_error( '$action OR $callback not set', E_USER_WARNING );
		}

		// Set schedule
		if ( isset( $interval ) ) {
			$this->schedule = $interval . 'secs';
			$this->interval = $interval;
		} elseif ( isset( $schedule ) ) {
			$this->schedule = $schedule;
		} else {
			trigger_error( '$schedule OR $interval not set', E_USER_WARNING );
		}

		if ( isset( $callback_args ) )
			$this->callback_args = ( array ) $callback_args;
	}

	protected static function really_clear_scheduled_hook( $name ) {
		$crons = _get_cron_array();

		foreach ( $crons as $timestamp => $hooks ) {
			foreach ( $hooks as $hook => $args )
				if ( $hook == $name )
					unset( $crons[$timestamp][$hook] );

			if ( empty( $hooks ) )
				unset( $crons[$timestamp] );
		}

		_set_cron_array( $crons );
	}

	protected static function _callback_to_string( $callback ) {
		if ( ! is_array( $callback ) )
			$str = $callback;
		elseif ( ! is_string( $callback[0] ) )
			$str = get_class( $callback[0] ) . '_' . $callback[1];
		else
			$str = $callback[0] . '::' . $callback[1];

		$str .= '_hook';

		return $str;
	}
}