172 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			172 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			PHP
		
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * PHP Server Monitor
 | 
						|
 * Monitor your servers and websites.
 | 
						|
 *
 | 
						|
 * This file is part of PHP Server Monitor.
 | 
						|
 * PHP Server Monitor is free software: you can redistribute it and/or modify
 | 
						|
 * it under the terms of the GNU General Public License as published by
 | 
						|
 * the Free Software Foundation, either version 3 of the License, or
 | 
						|
 * (at your option) any later version.
 | 
						|
 *
 | 
						|
 * PHP Server Monitor is distributed in the hope that it will be useful,
 | 
						|
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
 * GNU General Public License for more details.
 | 
						|
 *
 | 
						|
 * You should have received a copy of the GNU General Public License
 | 
						|
 * along with PHP Server Monitor.  If not, see <http://www.gnu.org/licenses/>.
 | 
						|
 *
 | 
						|
 * @package     phpservermon
 | 
						|
 * @author      Pepijn Over <pep@mailbox.org>
 | 
						|
 * @copyright   Copyright (c) 2008-2017 Pepijn Over <pep@mailbox.org>
 | 
						|
 * @license     http://www.gnu.org/licenses/gpl.txt GNU GPL v3
 | 
						|
 * @version     Release: @package_version@
 | 
						|
 * @link        http://www.phpservermonitor.org/
 | 
						|
 **/
 | 
						|
 | 
						|
namespace {
 | 
						|
// include main configuration and functionality
 | 
						|
    use psm\Router;
 | 
						|
    use psm\Util\Server\UpdateManager;
 | 
						|
 | 
						|
    require_once __DIR__ . '/../src/bootstrap.php';
 | 
						|
 | 
						|
    if (!psm_is_cli()) {
 | 
						|
        // check if it's an allowed host
 | 
						|
        if (!isset($_SERVER["HTTP_X_FORWARDED_FOR"])) {
 | 
						|
            $_SERVER["HTTP_X_FORWARDED_FOR"] = "";
 | 
						|
        }
 | 
						|
 | 
						|
        // define won't accept array before php 7.0.0
 | 
						|
        // check if data is serialized (not needed when using php 7.0.0 and higher)
 | 
						|
        $data = (defined('PHP_MAJOR_VERSION') && PHP_MAJOR_VERSION >= 7) ? false : @unserialize(PSM_CRON_ALLOW);
 | 
						|
        $allow = $data === false ? PSM_CRON_ALLOW : $data;
 | 
						|
 | 
						|
        $ipWhitelistCheckPassed = in_array($_SERVER['REMOTE_ADDR'], $allow)
 | 
						|
            && in_array($_SERVER["HTTP_X_FORWARDED_FOR"], $allow)
 | 
						|
            && PSM_WEBCRON_ENABLE_IP_WHITELIST;
 | 
						|
 | 
						|
        $webCronKeyCheckPassed =
 | 
						|
            array_key_exists ("webcron_key", $_GET)
 | 
						|
            && $_GET["webcron_key"] == PSM_WEBCRON_KEY
 | 
						|
            && (PSM_WEBCRON_KEY != "");
 | 
						|
 | 
						|
        if (!$ipWhitelistCheckPassed && !$webCronKeyCheckPassed) {
 | 
						|
            header('HTTP/1.0 403 Forbidden');
 | 
						|
            die('
 | 
						|
        <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"><html>
 | 
						|
            <head><title>403 Forbidden</title></head>
 | 
						|
            <body>
 | 
						|
                <h1>Forbidden</h1><p>IP address not allowed. See the 
 | 
						|
                <a href="http://docs.phpservermonitor.org/en/latest/install.html#cronjob-over-web">documentation</a> 
 | 
						|
                for more info.</p>
 | 
						|
            </body>
 | 
						|
        </html>');
 | 
						|
        }
 | 
						|
        echo "OK";
 | 
						|
    }
 | 
						|
 | 
						|
    $cron_timeout = PSM_CRON_TIMEOUT;
 | 
						|
// parse a couple of arguments
 | 
						|
    if (!empty($_SERVER['argv'])) {
 | 
						|
        foreach ($_SERVER['argv'] as $argv) {
 | 
						|
            $argi = explode('=', ltrim($argv, '--'));
 | 
						|
            if (count($argi) !== 2) {
 | 
						|
                continue;
 | 
						|
            }
 | 
						|
            switch ($argi[0]) {
 | 
						|
                case 'uri':
 | 
						|
                    if (!defined('PSM_BASE_URL')) {
 | 
						|
                        define('PSM_BASE_URL', $argi[1]);
 | 
						|
                    }
 | 
						|
                    break;
 | 
						|
                case 'timeout':
 | 
						|
                    $cron_timeout = intval($argi[1]);
 | 
						|
                    break;
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
// prevent cron from running twice at the same time
 | 
						|
// however if the cron has been running for X mins, we'll assume it died and run anyway
 | 
						|
// if you want to change PSM_CRON_TIMEOUT, have a look in src/includes/psmconfig.inc.php.
 | 
						|
// or you can provide the --timeout=x argument
 | 
						|
 | 
						|
    $status = null;
 | 
						|
    if (PHP_SAPI === 'cli') {
 | 
						|
        $shortOptions = 's:'; // status
 | 
						|
 | 
						|
        $longOptions = [
 | 
						|
            'status:'
 | 
						|
        ];
 | 
						|
 | 
						|
        $options = getopt($shortOptions, $longOptions);
 | 
						|
 | 
						|
        $possibleValues = [
 | 
						|
            'on' => 'on',
 | 
						|
            '1' => 'on',
 | 
						|
            'up' => 'on',
 | 
						|
            'off' => 'off',
 | 
						|
            '0' => 'off',
 | 
						|
            'down' => 'off'
 | 
						|
        ];
 | 
						|
 | 
						|
        if (
 | 
						|
            true === array_key_exists('status', $options) &&
 | 
						|
            true === array_key_exists(strtolower($options['status']), $possibleValues)
 | 
						|
        ) {
 | 
						|
            $status = $possibleValues[$options['status']];
 | 
						|
        } elseif (
 | 
						|
            true === array_key_exists('s', $options) &&
 | 
						|
            true === array_key_exists(strtolower($options['s']), $possibleValues)
 | 
						|
        ) {
 | 
						|
            $status = $possibleValues[$options['s']];
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    if ($status === 'off') {
 | 
						|
        $confPrefix = 'cron_off_';
 | 
						|
    } else {
 | 
						|
        $confPrefix = 'cron_';
 | 
						|
    }
 | 
						|
 | 
						|
    $time = time();
 | 
						|
    if (
 | 
						|
        psm_get_conf($confPrefix . 'running') == 1
 | 
						|
        && $cron_timeout > 0
 | 
						|
        && ($time - psm_get_conf($confPrefix . 'running_time') < $cron_timeout)
 | 
						|
    ) {
 | 
						|
        die('Cron is already running. Exiting.');
 | 
						|
    }
 | 
						|
    if (!defined('PSM_DEBUG') || !PSM_DEBUG) {
 | 
						|
        psm_update_conf($confPrefix . 'running', 1);
 | 
						|
    }
 | 
						|
    psm_update_conf($confPrefix . 'running_time', $time);
 | 
						|
 | 
						|
    /** @var Router $router */
 | 
						|
    /** @var UpdateManager $autorun */
 | 
						|
    $autorun = $router->getService('util.server.updatemanager');
 | 
						|
 | 
						|
    if ($status !== 'off') {
 | 
						|
        $autorun->run(true, $status);
 | 
						|
    } else {
 | 
						|
        set_time_limit(60);
 | 
						|
        if (false === defined('CRON_DOWN_INTERVAL')) {
 | 
						|
            define('CRON_DOWN_INTERVAL', 5); // every 5 second call update
 | 
						|
        }
 | 
						|
        $start = time();
 | 
						|
        $i = 0;
 | 
						|
        while ($i < 59) {
 | 
						|
            $autorun->run(true, $status);
 | 
						|
            if ($i < (59 - CRON_DOWN_INTERVAL)) {
 | 
						|
                time_sleep_until($start + $i + CRON_DOWN_INTERVAL);
 | 
						|
            }
 | 
						|
            $i += CRON_DOWN_INTERVAL;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    psm_update_conf($confPrefix . 'running', 0);
 | 
						|
}
 |