2024-10-30 17:11:23 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class Host {
|
|
|
|
private $db;
|
|
|
|
|
|
|
|
public function __construct($database) {
|
|
|
|
$this->db = $database->getConnection();
|
|
|
|
}
|
|
|
|
|
|
|
|
// get details of a specified host ID (or all) in a specified platform ID
|
|
|
|
public function getHostDetails($platform_id = '', $host_id = '') {
|
|
|
|
$sql = 'SELECT
|
|
|
|
id,
|
|
|
|
address,
|
|
|
|
port,
|
|
|
|
platform_id,
|
|
|
|
name
|
|
|
|
FROM
|
|
|
|
hosts';
|
|
|
|
|
|
|
|
if ($platform_id !== '' && $host_id !== '') {
|
|
|
|
$sql .= ' WHERE platform_id = :platform_id AND id = :host_id';
|
|
|
|
} elseif ($platform_id !== '') {
|
|
|
|
$sql .= ' WHERE platform_id = :platform_id';
|
|
|
|
} elseif ($host_id !== '') {
|
|
|
|
$sql .= ' WHERE id = :host_id';
|
|
|
|
}
|
|
|
|
|
|
|
|
$query = $this->db->prepare($sql);
|
|
|
|
|
|
|
|
if ($platform_id !== '') {
|
|
|
|
$query->bindParam(':platform_id', $platform_id);
|
|
|
|
}
|
|
|
|
if ($host_id !== '') {
|
|
|
|
$query->bindParam(':host_id', $host_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
$query->execute();
|
|
|
|
|
|
|
|
return $query->fetchAll(PDO::FETCH_ASSOC);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// add new host
|
|
|
|
public function addHost($newHost) {
|
|
|
|
try {
|
|
|
|
$sql = 'INSERT INTO hosts
|
|
|
|
(address, port, platform_id, name)
|
|
|
|
VALUES
|
|
|
|
(:address, :port, :platform_id, :name)';
|
|
|
|
|
|
|
|
$query = $this->db->prepare($sql);
|
|
|
|
$query->execute([
|
|
|
|
':address' => $newHost['address'],
|
|
|
|
':port' => $newHost['port'],
|
|
|
|
':platform_id' => $newHost['platform_id'],
|
|
|
|
':name' => $newHost['name'],
|
|
|
|
]);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
} catch (Exception $e) {
|
|
|
|
return $e->getMessage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// edit an existing host
|
|
|
|
public function editAgent($platform_id, $updatedAgent) {
|
|
|
|
try {
|
|
|
|
$sql = 'UPDATE jilo_agents SET
|
|
|
|
agent_type_id = :agent_type_id,
|
|
|
|
url = :url,
|
|
|
|
secret_key = :secret_key,
|
|
|
|
check_period = :check_period
|
|
|
|
WHERE
|
|
|
|
id = :agent_id
|
|
|
|
AND
|
|
|
|
platform_id = :platform_id';
|
|
|
|
|
|
|
|
$query = $this->db->prepare($sql);
|
|
|
|
$query->execute([
|
|
|
|
':agent_type_id' => $updatedAgent['agent_type_id'],
|
|
|
|
':url' => $updatedAgent['url'],
|
|
|
|
':secret_key' => $updatedAgent['secret_key'],
|
|
|
|
':check_period' => $updatedAgent['check_period'],
|
|
|
|
':agent_id' => $updatedAgent['id'],
|
|
|
|
':platform_id' => $platform_id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
} catch (Exception $e) {
|
|
|
|
return $e->getMessage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// delete a host
|
2024-10-30 20:14:54 +00:00
|
|
|
public function deleteHost($host_id) {
|
2024-10-30 17:11:23 +00:00
|
|
|
try {
|
2024-10-30 20:14:54 +00:00
|
|
|
$sql = 'DELETE FROM hosts
|
2024-10-30 17:11:23 +00:00
|
|
|
WHERE
|
2024-10-30 20:14:54 +00:00
|
|
|
id = :host_id';
|
2024-10-30 17:11:23 +00:00
|
|
|
|
|
|
|
$query = $this->db->prepare($sql);
|
2024-10-30 20:14:54 +00:00
|
|
|
$query->bindParam(':host_id', $host_id);
|
2024-10-30 17:11:23 +00:00
|
|
|
|
|
|
|
$query->execute();
|
|
|
|
return true;
|
|
|
|
|
|
|
|
} catch (Exception $e) {
|
|
|
|
return $e->getMessage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|