feat: push-based monitoring with remote agent

- Add database migration 006 for agent_key, agent_installed, agent_install_path, agent_last_seen_at columns
- Add Server model methods: findByAgentKey, generateAgentKey, regenerateAgentKey, updateAgentLastSeen, setAgentInstalled
- Auto-generate agent_key on server creation
- Create AgentService for SSH-based install/uninstall of remote agent
- Create bin/agent.sh - bash agent script for remote servers
- Create install/agent-install.sh and install/agent-uninstall.sh
- Create install/servermanager-agent.service systemd unit
- Add POST /api/metrics/push endpoint (auth via agent_key)
- Add web routes for agent install/uninstall/regenerate-key
- Add agent status section to server detail view with install/uninstall modals
- Make MonitoringService::saveMetrics() public for reuse
This commit is contained in:
2026-06-11 18:28:22 -04:00
parent 6e4bf2ad1d
commit bfa102cf97
12 changed files with 731 additions and 1 deletions

View File

@@ -0,0 +1,159 @@
<?php
declare(strict_types=1);
namespace ServerManager\Services;
use ServerManager\Core\App;
use ServerManager\Core\Database;
use ServerManager\Core\Logger;
class AgentService
{
private Database $db;
private Logger $logger;
private string $basePath;
public function __construct()
{
$this->db = Database::getInstance();
$this->logger = Logger::getInstance();
$this->basePath = dirname(__DIR__, 2);
}
public function install(int $serverId): array
{
$server = $this->db->fetch(
'SELECT * FROM servers WHERE id = ? AND status = \'active\' AND is_active = 1',
[$serverId]
);
if (!$server) {
return ['success' => false, 'error' => 'Server not found or inactive'];
}
$server = App::getEncryption()->decryptArray($server, ['ssh_password', 'ssh_key']);
$agentKey = $server['agent_key'];
$serverUrl = rtrim((App::getConfig()['app']['url'] ?? ''), '/');
if (empty($serverUrl)) {
$serverUrl = ($_SERVER['HTTPS'] ?? '' === 'on' ? 'https://' : 'http://') . ($_SERVER['HTTP_HOST'] ?? 'localhost');
}
$scriptPath = $this->basePath . '/install/agent-install.sh';
if (!file_exists($scriptPath)) {
return ['success' => false, 'error' => 'Agent install script not found'];
}
$script = file_get_contents($scriptPath);
$remoteCommand = sprintf(
'echo %s | base64 -d | bash -s -- %s %s 2>&1',
escapeshellarg(base64_encode($script)),
escapeshellarg($serverUrl),
escapeshellarg($agentKey)
);
try {
$ssh = new SSHService();
if (!$ssh->connect($server, true)) {
return ['success' => false, 'error' => 'SSH connection failed'];
}
$result = $ssh->exec($remoteCommand, 120);
$ssh->disconnect();
$output = trim($result['output']);
$exitStatus = $result['exit_status'] ?? -1;
if ($exitStatus !== 0) {
return [
'success' => false,
'error' => 'Agent installation failed on remote server',
'output' => $output,
];
}
$path = '/usr/local/bin/servermanager-agent';
$serverModel = new \ServerManager\Models\Server();
$serverModel->setAgentInstalled($serverId, true, $path);
$auditService = new AuditService();
$auditService->log('agent_installed', 'server', $serverId, [
'name' => $server['name'],
'path' => $path,
]);
return ['success' => true, 'path' => $path, 'output' => $output];
} catch (\Throwable $e) {
$this->logger->error("Agent install failed for server {$serverId}: " . $e->getMessage());
return ['success' => false, 'error' => $e->getMessage()];
}
}
public function uninstall(int $serverId): array
{
$server = $this->db->fetch(
'SELECT * FROM servers WHERE id = ? AND status = \'active\' AND is_active = 1',
[$serverId]
);
if (!$server) {
return ['success' => false, 'error' => 'Server not found or inactive'];
}
$server = App::getEncryption()->decryptArray($server, ['ssh_password', 'ssh_key']);
$scriptPath = $this->basePath . '/install/agent-uninstall.sh';
if (!file_exists($scriptPath)) {
return ['success' => false, 'error' => 'Agent uninstall script not found'];
}
$script = file_get_contents($scriptPath);
$remoteCommand = sprintf(
'echo %s | base64 -d | bash 2>&1',
escapeshellarg(base64_encode($script))
);
try {
$ssh = new SSHService();
if (!$ssh->connect($server, true)) {
return ['success' => false, 'error' => 'SSH connection failed'];
}
$result = $ssh->exec($remoteCommand, 60);
$ssh->disconnect();
$output = trim($result['output']);
$exitStatus = $result['exit_status'] ?? -1;
$serverModel = new \ServerManager\Models\Server();
$serverModel->setAgentInstalled($serverId, false, null);
$auditService = new AuditService();
$auditService->log('agent_uninstalled', 'server', $serverId, [
'name' => $server['name'],
]);
if ($exitStatus !== 0) {
return [
'success' => false,
'error' => 'Agent uninstallation may have failed on remote server',
'output' => $output,
];
}
return ['success' => true, 'output' => $output];
} catch (\Throwable $e) {
$this->logger->error("Agent uninstall failed for server {$serverId}: " . $e->getMessage());
$serverModel = new \ServerManager\Models\Server();
$serverModel->setAgentInstalled($serverId, false, null);
return ['success' => false, 'error' => $e->getMessage()];
}
}
}