| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using RackPeek.Domain.Helpers;
- using RackPeek.Domain.Persistence;
- using RackPeek.Domain.Resources.SubResources;
- namespace RackPeek.Domain.Resources.Servers;
- public class UpdateServerUseCase(IResourceCollection repository) : IUseCase {
- public async Task ExecuteAsync(
- string name,
- double? 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;
- }
- if (server.Ram != null) {
- if (server.Ram.Size == 0) server.Ram.Size = null;
- if (server.Ram.Mts == 0) server.Ram.Mts = null;
- if (server.Ram.Size == null && server.Ram.Mts == null) server.Ram = null;
- }
- // ---- IPMI ----
- if (ipmi.HasValue) server.Ipmi = ipmi.Value;
- if (notes != null) server.Notes = notes;
- await repository.UpdateAsync(server);
- }
- }
|