webcron/webcron.php

110 lines
3.9 KiB
PHP
Raw Normal View History

2017-04-14 15:57:47 +02:00
<?php
/*
* The MIT License
*
* Copyright 2017 Jeroen De Meerleer <me@jeroened.be>.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
require_once "include/initialize.inc.php";
2017-04-15 10:13:22 +02:00
if(file_exists('cache/webcron.lock'))
{
die('Script is already running');
}
touch('cache/webcron.lock');
2017-05-09 20:30:41 +02:00
/**
* Reboot finalize
*/
if (file_exists("cache/get-services.trigger")) {
$rebootjobs = unserialize(file_get_contents("cache/get-services.trigger"));
$services = array();
2017-05-10 10:08:35 +02:00
exec("systemctl list-unit-files | cat", $services);
2017-05-09 20:30:41 +02:00
$services = implode("\n", $services);
foreach($rebootjobs as $job) {
$stmt = $db->query("SELECT jobID, delay, nextrun FROM jobs WHERE jobID = " . $job);
$result = $stmt->fetchAll(PDO::FETCH_ASSOC)[0];
$stmt = $db->prepare("INSERT INTO runs(job, statuscode, result, timestamp) VALUES(?, ?, ?, ?)");
$stmt->execute(array($result['jobID'], '200', $services, time()));
$nextrun = $result['nextrun'] + $result['delay'];
if ($nextrun < time() ) { $nextrun = time() + $result['delay']; }
$nexttime = $db->prepare("UPDATE jobs SET nextrun = ? WHERE jobID = ?");
$nexttime->execute(array($nextrun, $result["jobID"]));
}
unlink("cache/get-services.trigger");
}
2017-04-14 15:57:47 +02:00
2017-05-10 11:03:24 +02:00
$stmt = $db->query('SELECT jobID, url, delay, nextrun FROM jobs WHERE nextrun < ' . time());
2017-05-09 20:30:41 +02:00
$results = $stmt->fetchAll(PDO::FETCH_ASSOC);
2017-04-14 15:57:47 +02:00
$client = new \GuzzleHttp\Client();
2017-05-09 20:30:41 +02:00
$rebootjobs = array();
if (file_exists("cache/get-services.trigger")) {
$rebootjobs = unserialize(file_get_contents("cache/get-services.trigger"));
}
2017-04-14 15:57:47 +02:00
foreach ($results as $result) {
2017-05-09 20:30:41 +02:00
2017-05-10 10:08:35 +02:00
if (filter_var($result["type"], FILTER_VALIDATE_URL)) {
2017-05-09 20:30:41 +02:00
$res = $client->request('GET', $result['url']);
2017-04-14 15:57:47 +02:00
2017-05-09 20:30:41 +02:00
$statuscode = $res->getStatusCode();
$body = $res->getBody();
2017-05-10 10:08:35 +02:00
} else {
2017-05-09 20:30:41 +02:00
if($result["url"] != "reboot") {
$body = '';
$result = 0;
exec($result["url"], $body, $result);
} else {
$rebootjobs[] = $result['jobID'];
touch("cache/reboot.trigger");
$nosave = true;
}
}
if($nosave !== true) {
$stmt = $db->prepare("INSERT INTO runs(job, statuscode, result, timestamp) VALUES(?, ?, ?, ?)");
$stmt->execute(array($result['jobID'], $statuscode, $body, time()));
2017-05-09 20:30:41 +02:00
$nextrun = $result['nextrun'] + $result['delay'];
if ($nextrun < time() ) { $nextrun = time() + $result['delay']; }
2017-04-14 15:57:47 +02:00
2017-05-09 20:30:41 +02:00
$nexttime = $db->prepare("UPDATE jobs SET nextrun = ? WHERE jobID = ?");
$nexttime->execute(array($nextrun, $result["jobID"]));
}
$nosave = false;
2017-04-14 15:57:47 +02:00
}
2017-04-15 10:13:22 +02:00
unlink('cache/webcron.lock');
2017-05-09 20:30:41 +02:00
if(file_exists("cache/reboot.trigger")) {
unlink("cache/reboot.trigger");
$rebootser = serialize($rebootjobs);
file_put_contents("cache/get-services.trigger", $rebootser);
exec("systemctl reboot");
}
2017-04-14 15:57:47 +02:00
require_once 'include/finalize.inc.php';