123 lines
3.5 KiB
C#
123 lines
3.5 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
using watcher_monitoring.Payloads;
|
|
using watcher_monitoring.Data;
|
|
using watcher_monitoring.Models;
|
|
using Microsoft.AspNetCore.Authorization.Infrastructure;
|
|
|
|
namespace watcher_monitoring.Controllers;
|
|
|
|
[Route("[controller]")]
|
|
public class MonitoringController : Controller
|
|
{
|
|
private readonly WatcherDbContext _context;
|
|
|
|
private readonly ILogger<MonitoringController> _logger;
|
|
|
|
public MonitoringController(WatcherDbContext context, ILogger<MonitoringController> logger)
|
|
{
|
|
_context = context;
|
|
_logger = logger;
|
|
}
|
|
|
|
// Registration Endpoint for watcher-agent
|
|
[HttpPost("register")]
|
|
public async Task<IActionResult> Register([FromBody] RegistrationDto dto)
|
|
{
|
|
// payload check
|
|
if (!ModelState.IsValid)
|
|
{
|
|
var errors = ModelState.Values
|
|
.SelectMany(v => v.Errors)
|
|
.Select(e => e.ErrorMessage)
|
|
.ToList();
|
|
|
|
_logger.LogError("Invalid registration payload");
|
|
return BadRequest(new { error = "Invalid registration payload", details = errors });
|
|
}
|
|
|
|
try {
|
|
Server server = new Server
|
|
{
|
|
Name = "test",
|
|
IPAddress = dto.IpAddress
|
|
};
|
|
|
|
_context.Servers.Add(server);
|
|
await _context.SaveChangesAsync();
|
|
return Ok();
|
|
} catch (Exception ex)
|
|
{
|
|
Console.WriteLine(ex.Message);
|
|
_logger.LogError(ex.Message);
|
|
return BadRequest();
|
|
}
|
|
}
|
|
|
|
// Hardware Configuration Endpoint for watcher-agent
|
|
[HttpPost("hardware-configuration")]
|
|
public async Task<IActionResult> HardwareConfiguration ([FromBody] HardwareDto dto)
|
|
{
|
|
// payload check
|
|
if (!ModelState.IsValid)
|
|
{
|
|
var errors = ModelState.Values
|
|
.SelectMany(v => v.Errors)
|
|
.Select(e => e.ErrorMessage)
|
|
.ToList();
|
|
|
|
_logger.LogError("Invalid hardware configuration");
|
|
return BadRequest(new { error = "Invalid Hardware Configuration Payload", details = errors });
|
|
}
|
|
try
|
|
{
|
|
// Find Server in Database
|
|
var server = await _context.Servers.FindAsync(dto.Id);
|
|
|
|
// Add Hardware Configuration
|
|
try
|
|
{
|
|
server.CpuType = dto.CpuType;
|
|
server.CpuCores = dto.CpuCores;
|
|
server.GpuType = dto.GpuType;
|
|
server.RamSize = dto.RamSize;
|
|
// Diskspace fehlt
|
|
|
|
_logger.LogInformation("Harware configuration successfull for server {server}", server.Name);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex.Message);
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex.Message);
|
|
}
|
|
|
|
|
|
return Ok();
|
|
}
|
|
|
|
// Server-Metrics endpoint for watcher-agent
|
|
[HttpPost("server-metrics/{id}")]
|
|
public async Task<IActionResult> ServerMetrics ([FromBody] HardwareDto dto)
|
|
{
|
|
return Ok();
|
|
}
|
|
|
|
// Service-Detection endpoint for watcher-agent
|
|
[HttpPost("container-detection")]
|
|
public async Task<IActionResult> ContainerDetection ([FromBody] HardwareDto dto)
|
|
{
|
|
return Ok();
|
|
}
|
|
|
|
// Container-Metrics endpoint for watcher-agent
|
|
[HttpPost("container-metrics/{id}")]
|
|
public async Task<IActionResult> ContainerMetrics ([FromBody] HardwareDto dto)
|
|
{
|
|
return Ok();
|
|
}
|
|
|
|
} |