58 lines
2 KiB
PHP
58 lines
2 KiB
PHP
<?php
|
|
|
|
/***************************************************************************\
|
|
* SPIP, Systeme de publication pour l'internet *
|
|
* *
|
|
* Copyright (c) 2001-2019 *
|
|
* Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James *
|
|
* *
|
|
* Ce programme est un logiciel libre distribue sous licence GNU/GPL. *
|
|
* Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. *
|
|
\***************************************************************************/
|
|
|
|
/**
|
|
* Action pour exécuter le cron de manière asynchrone si le serveur le permet
|
|
*
|
|
* @package SPIP\Core\Genie
|
|
*/
|
|
|
|
if (!defined('_ECRIRE_INC_VERSION')) {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* Url pour lancer le cron de manière asynchrone si le serveur le permet
|
|
*
|
|
* Cette fonction est utile pour être appelée depuis un cron UNIX par exemple
|
|
* car elle se termine tout de suite
|
|
*
|
|
* Exemple de tache cron Unix pour un appel toutes les minutes :
|
|
* `* * * * * curl http://www.mondomaine.tld/spip.php?action=super_cron`
|
|
*
|
|
* @see queue_affichage_cron() Dont une partie du code est repris ici.
|
|
* @see action_cron() URL appelée en asynchrone pour excécuter le cron
|
|
*/
|
|
function action_super_cron_dist() {
|
|
// Si fsockopen est possible, on lance le cron via un socket
|
|
// en asynchrone
|
|
if (function_exists('fsockopen')) {
|
|
$url = generer_url_action('cron');
|
|
$parts = parse_url($url);
|
|
$fp = fsockopen($parts['host'],
|
|
isset($parts['port']) ? $parts['port'] : 80,
|
|
$errno, $errstr, 30);
|
|
if ($fp) {
|
|
$out = "GET " . $parts['path'] . "?" . $parts['query'] . " HTTP/1.1\r\n";
|
|
$out .= "Host: " . $parts['host'] . "\r\n";
|
|
$out .= "Connection: Close\r\n\r\n";
|
|
fwrite($fp, $out);
|
|
fclose($fp);
|
|
|
|
return;
|
|
}
|
|
}
|
|
// ici lancer le cron par un CURL asynchrone si CURL est présent
|
|
// TBD
|
|
|
|
return;
|
|
}
|