| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using RackPeek.Domain.Helpers;
- using RackPeek.Domain.Resources.Models;
- namespace RackPeek.Domain.Resources.Hardware.Servers;
- public class UpdateServerUseCase(IHardwareRepository repository) : IUseCase
- {
- public async Task ExecuteAsync(
- string name,
- int? ramGb = null,
- int? ramMts = null,
- bool? ipmi = null,
- string? notes = null
- )
- {
- // ToDo pass in properties as inputs, construct the entity in the usecase, ensure optional inputs are nullable
- // ToDo validate / normalize all inputs
- name = Normalize.HardwareName(name);
- ThrowIfInvalid.ResourceName(name);
- var server = await repository.GetByNameAsync(name) as Server;
- if (server == null)
- throw new NotFoundException($"Server '{name}' not found.");
- // ---- RAM ----
- if (ramGb.HasValue)
- {
- ThrowIfInvalid.RamGb(ramGb);
- server.Ram ??= new Ram();
- server.Ram.Size = ramGb.Value;
- }
- if (ramMts.HasValue)
- {
- server.Ram ??= new Ram();
- server.Ram.Mts = ramMts.Value;
- }
- // ---- IPMI ----
- if (ipmi.HasValue) server.Ipmi = ipmi.Value;
- if (notes != null)
- {
- server.Notes = notes;
- }
- await repository.UpdateAsync(server);
- }
- }
|