* Added monitoring class to deal with monitoring events * Added event calls to all important cronjobs * Added cron_end include file for monitoring cleanups on successful runs * Added Monitoring to autoloader * Modified account page to check for running auto_payout in monitoring * Added monitoring to Navigation bar * Added monitoring controller page Fixes #415
50 lines
1.4 KiB
PHP
50 lines
1.4 KiB
PHP
<?php
|
|
|
|
// Make sure we are called from index.php
|
|
if (!defined('SECURITY'))
|
|
die('Hacking attempt');
|
|
|
|
class Monitoring {
|
|
public function __construct($debug, $mysqli) {
|
|
$this->debug = $debug;
|
|
$this->mysqli = $mysqli;
|
|
$this->table = 'monitoring';
|
|
}
|
|
|
|
/**
|
|
* Fetch a value from our table
|
|
* @param name string Setting name
|
|
* @return value string Value
|
|
**/
|
|
public function getStatus($name) {
|
|
$query = $this->mysqli->prepare("SELECT * FROM $this->table WHERE name = ? LIMIT 1");
|
|
if ($query && $query->bind_param('s', $name) && $query->execute() && $result = $query->get_result()) {
|
|
return $result->fetch_assoc();
|
|
} else {
|
|
$this->debug->append("Failed to fetch variable $name from $this->table");
|
|
return false;
|
|
}
|
|
return $value;
|
|
}
|
|
|
|
/**
|
|
* Insert or update a setting
|
|
* @param name string Name of the variable
|
|
* @param value string Variable value
|
|
* @return bool
|
|
**/
|
|
public function setStatus($name, $type, $value) {
|
|
$stmt = $this->mysqli->prepare("
|
|
INSERT INTO $this->table (name, type, value)
|
|
VALUES (?, ?, ?)
|
|
ON DUPLICATE KEY UPDATE value = ?
|
|
");
|
|
if ($stmt && $stmt->bind_param('ssss', $name, $type, $value, $value) && $stmt->execute())
|
|
return true;
|
|
$this->debug->append("Failed to set $name to $value");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$monitoring = new Monitoring($debug, $mysqli);
|