2006-03-07 22:43:59 +01:00
|
|
|
<?php
|
2008-05-25 17:50:15 +02:00
|
|
|
/**
|
|
|
|
* WordPress Cron Implementation for hosts, which do not offer CRON or for which
|
2010-03-17 05:39:50 +01:00
|
|
|
* the user has not set up a CRON job pointing to this file.
|
2008-05-25 17:50:15 +02:00
|
|
|
*
|
|
|
|
* The HTTP request to this file will not slow down the visitor who happens to
|
|
|
|
* visit when the cron job is needed to run.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
2006-03-07 22:43:59 +01:00
|
|
|
ignore_user_abort(true);
|
2008-05-25 17:50:15 +02:00
|
|
|
|
2009-02-07 14:32:34 +01:00
|
|
|
if ( !empty($_POST) || defined('DOING_AJAX') || defined('DOING_CRON') )
|
|
|
|
die();
|
|
|
|
|
2008-05-25 17:50:15 +02:00
|
|
|
/**
|
|
|
|
* Tell WordPress we are doing the CRON task.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
define('DOING_CRON', true);
|
2006-03-07 22:43:59 +01:00
|
|
|
|
2009-02-07 14:32:34 +01:00
|
|
|
if ( !defined('ABSPATH') ) {
|
2010-03-17 05:39:50 +01:00
|
|
|
/** Set up WordPress environment */
|
2013-09-25 02:18:11 +02:00
|
|
|
require_once( dirname( __FILE__ ) . '/wp-load.php' );
|
2009-02-07 14:32:34 +01:00
|
|
|
}
|
|
|
|
|
2011-09-09 21:59:44 +02:00
|
|
|
// Uncached doing_cron transient fetch
|
|
|
|
function _get_cron_lock() {
|
2013-09-06 20:10:09 +02:00
|
|
|
global $wpdb;
|
2011-09-09 21:59:44 +02:00
|
|
|
|
|
|
|
$value = 0;
|
2013-09-06 20:10:09 +02:00
|
|
|
if ( wp_using_ext_object_cache() ) {
|
2014-05-13 06:39:14 +02:00
|
|
|
/*
|
|
|
|
* Skip local cache and force re-fetch of doing_cron transient
|
|
|
|
* in case another process updated the cache.
|
|
|
|
*/
|
2011-09-09 21:59:44 +02:00
|
|
|
$value = wp_cache_get( 'doing_cron', 'transient', true );
|
|
|
|
} else {
|
|
|
|
$row = $wpdb->get_row( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = %s LIMIT 1", '_transient_doing_cron' ) );
|
|
|
|
if ( is_object( $row ) )
|
|
|
|
$value = $row->option_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
2009-02-07 14:32:34 +01:00
|
|
|
if ( false === $crons = _get_cron_array() )
|
|
|
|
die();
|
2006-11-21 03:48:12 +01:00
|
|
|
|
2008-09-18 09:09:38 +02:00
|
|
|
$keys = array_keys( $crons );
|
2012-09-23 18:57:21 +02:00
|
|
|
$gmt_time = microtime( true );
|
2008-09-18 09:09:38 +02:00
|
|
|
|
2012-09-23 18:57:21 +02:00
|
|
|
if ( isset($keys[0]) && $keys[0] > $gmt_time )
|
2009-02-07 14:32:34 +01:00
|
|
|
die();
|
2008-09-18 09:09:38 +02:00
|
|
|
|
2011-09-09 21:59:44 +02:00
|
|
|
$doing_cron_transient = get_transient( 'doing_cron');
|
|
|
|
|
|
|
|
// Use global $doing_wp_cron lock otherwise use the GET lock. If no lock, trying grabbing a new lock.
|
|
|
|
if ( empty( $doing_wp_cron ) ) {
|
|
|
|
if ( empty( $_GET[ 'doing_wp_cron' ] ) ) {
|
|
|
|
// Called from external script/job. Try setting a lock.
|
2012-09-23 18:57:21 +02:00
|
|
|
if ( $doing_cron_transient && ( $doing_cron_transient + WP_CRON_LOCK_TIMEOUT > $gmt_time ) )
|
2011-09-09 21:59:44 +02:00
|
|
|
return;
|
2012-01-09 20:02:31 +01:00
|
|
|
$doing_cron_transient = $doing_wp_cron = sprintf( '%.22F', microtime( true ) );
|
2011-09-09 21:59:44 +02:00
|
|
|
set_transient( 'doing_cron', $doing_wp_cron );
|
|
|
|
} else {
|
|
|
|
$doing_wp_cron = $_GET[ 'doing_wp_cron' ];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check lock
|
|
|
|
if ( $doing_cron_transient != $doing_wp_cron )
|
|
|
|
return;
|
|
|
|
|
|
|
|
foreach ( $crons as $timestamp => $cronhooks ) {
|
2012-09-23 18:57:21 +02:00
|
|
|
if ( $timestamp > $gmt_time )
|
2008-09-18 09:09:38 +02:00
|
|
|
break;
|
2008-05-25 17:50:15 +02:00
|
|
|
|
2011-09-09 21:59:44 +02:00
|
|
|
foreach ( $cronhooks as $hook => $keys ) {
|
2008-09-18 09:09:38 +02:00
|
|
|
|
2011-09-09 21:59:44 +02:00
|
|
|
foreach ( $keys as $k => $v ) {
|
2008-09-18 09:09:38 +02:00
|
|
|
|
|
|
|
$schedule = $v['schedule'];
|
|
|
|
|
2011-09-09 21:59:44 +02:00
|
|
|
if ( $schedule != false ) {
|
2008-09-18 09:09:38 +02:00
|
|
|
$new_args = array($timestamp, $schedule, $hook, $v['args']);
|
2006-09-14 02:18:05 +02:00
|
|
|
call_user_func_array('wp_reschedule_event', $new_args);
|
2006-09-14 01:54:15 +02:00
|
|
|
}
|
2008-09-18 09:09:38 +02:00
|
|
|
|
2011-09-09 21:59:44 +02:00
|
|
|
wp_unschedule_event( $timestamp, $hook, $v['args'] );
|
|
|
|
|
2013-09-06 22:52:10 +02:00
|
|
|
/**
|
|
|
|
* Fires scheduled events.
|
|
|
|
*
|
2014-04-25 09:54:21 +02:00
|
|
|
* @internal
|
2013-09-06 22:52:10 +02:00
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @param string $hook Name of the hook that was scheduled to be fired.
|
2014-04-25 09:54:21 +02:00
|
|
|
* @param array $args The arguments to be passed to the hook.
|
2013-09-06 22:52:10 +02:00
|
|
|
*/
|
2011-09-09 21:59:44 +02:00
|
|
|
do_action_ref_array( $hook, $v['args'] );
|
2008-09-18 09:09:38 +02:00
|
|
|
|
2011-09-09 21:59:44 +02:00
|
|
|
// If the hook ran too long and another cron process stole the lock, quit.
|
|
|
|
if ( _get_cron_lock() != $doing_wp_cron )
|
|
|
|
return;
|
2006-03-07 22:43:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-11-21 03:48:12 +01:00
|
|
|
|
2011-09-09 21:59:44 +02:00
|
|
|
if ( _get_cron_lock() == $doing_wp_cron )
|
|
|
|
delete_transient( 'doing_cron' );
|
|
|
|
|
2008-09-18 09:09:38 +02:00
|
|
|
die();
|