webcron/webcron.old/runnow.php

86 lines
3.1 KiB
PHP
Raw Normal View History

2017-04-16 10:41:06 +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";
if(!isset($_GET['jobID'])) {
header("location:/overview.php");
exit;
}
$jobID = $_GET['jobID'];
$jobnameqry = $db->prepare("SELECT * FROM jobs WHERE jobID = ?");
$jobnameqry->execute(array($_GET['jobID']));
$jobnameResult = $jobnameqry->fetchAll(PDO::FETCH_ASSOC);
if ($jobnameResult[0]["user"] != $_SESSION["userID"]) {
die(json_encode(array("error" => "You dirty hacker!")));
}
$nosave = false;
2017-05-10 14:26:46 +02:00
if (filter_var($jobnameResult[0]["url"], FILTER_VALIDATE_URL)) {
$client = new \GuzzleHttp\Client();
2017-04-16 10:41:06 +02:00
2019-01-13 19:59:40 +01:00
$res = $client->request('GET', $jobnameResult[0]['url'], ['http_errors' => false]);
2017-04-16 10:41:06 +02:00
$statuscode = $res->getStatusCode();
$body = $res->getBody();
$timestamp = time();
2017-04-16 10:41:06 +02:00
} else {
2019-04-25 17:40:32 +02:00
if(strpos($jobnameResult[0]["url"],"reboot") !== 0) {
$body = '';
2017-05-10 11:34:42 +02:00
$statuscode = 0;
2017-09-02 17:11:04 +02:00
$url = "ssh " . $jobnameResult[0]['host'] . " '" . $jobnameResult[0]['url'] . "' 2>&1";
2017-08-21 11:11:24 +02:00
exec($url, $body, $statuscode);
2017-05-10 11:34:42 +02:00
$body = implode("\n", $body);
2017-05-10 14:26:46 +02:00
$timestamp = time();
} else {
2017-08-21 11:11:24 +02:00
$rebootjobs = array();
if (file_exists('cache/get-services.trigger')) {
$rebootjobs = unserialize(file_get_contents('cache/get-services.trigger'));
}
if (!job_in_array($jobnameResult[0]['jobID'], $rebootjobs)) {
$rebootjobs[] = $jobnameResult[0];
touch("cache/reboot.trigger");
$nosave = true;
}
}
}
2018-08-31 11:06:57 +02:00
if($nosave !== true) {
$stmt = $db->prepare("INSERT INTO runs(job, statuscode, result, timestamp) VALUES(?, ?, ?, ?)");
$stmt->execute(array($jobID, $statuscode, $body, $timestamp));
}
2017-04-17 09:39:33 +02:00
2017-04-16 10:41:06 +02:00
if(file_exists("cache/reboot.trigger")) {
$rebootser = serialize($rebootjobs);
file_put_contents("cache/get-services.trigger", $rebootser);
echo json_encode(array("message" => "Reboot is scheduled. Programmer's fuel is awaiting"));
} else {
echo json_encode(array("message" => "Cronjob succesfully ran"));
}
2017-04-16 10:41:06 +02:00
require_once 'include/finalize.inc.php';