mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-21 21:55:38 +01:00
Parameter validation/cleanup.
This commit is contained in:
parent
75c2b9474e
commit
81d5d86683
@ -12,7 +12,7 @@
|
||||
services.AddSingleton<IServerRegistryStore, CosmosDbServerRegistryStore>();
|
||||
services.AddSingleton<IDateTimeProvider, DefaultDateTimeProvider>();
|
||||
|
||||
services.AddHostedService<InitializerHostedService>();
|
||||
services.AddHostedService<InitializerService>();
|
||||
services.AddHostedService<ServerRegistryCleanupService>();
|
||||
}
|
||||
}
|
||||
|
@ -4,11 +4,11 @@
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
|
||||
public class InitializerHostedService : IHostedService
|
||||
public class InitializerService : IHostedService
|
||||
{
|
||||
private readonly IServerRegistryStore serverRegistryStore;
|
||||
|
||||
public InitializerHostedService(IServerRegistryStore serverRegistryStore)
|
||||
public InitializerService(IServerRegistryStore serverRegistryStore)
|
||||
{
|
||||
this.serverRegistryStore = serverRegistryStore;
|
||||
}
|
@ -28,19 +28,12 @@
|
||||
}
|
||||
|
||||
public async Task AddServer(
|
||||
ServerInfo server)
|
||||
ServerInfo serverInfo)
|
||||
{
|
||||
if (server == null)
|
||||
{
|
||||
throw new ArgumentNullException(nameof(server));
|
||||
}
|
||||
ArgumentUtility.CheckForNull(serverInfo, nameof(serverInfo));
|
||||
ArgumentUtility.CheckStringForNullOrEmpty(serverInfo.HostIpAddress, nameof(serverInfo.HostIpAddress));
|
||||
|
||||
if (string.IsNullOrEmpty(server.HostIpAddress))
|
||||
{
|
||||
throw new ArgumentException(nameof(server.HostIpAddress));
|
||||
}
|
||||
|
||||
await this.registryStore.UpsertServerInfo(server ?? throw new ArgumentNullException(nameof(server)));
|
||||
await this.registryStore.UpsertServerInfo(serverInfo);
|
||||
}
|
||||
|
||||
public async Task<IEnumerable<ServerInfo>> GetAllServers()
|
||||
|
@ -36,6 +36,8 @@
|
||||
string partitionKey = null)
|
||||
where T : IIdentifiable
|
||||
{
|
||||
ArgumentUtility.CheckForNull(selectExpression, nameof(selectExpression));
|
||||
|
||||
if (partitionKey == null)
|
||||
{
|
||||
partitionKey = typeof(T).Name;
|
||||
@ -109,6 +111,8 @@
|
||||
public async Task<T> GetItemById<T>(string id, string partitionKey = null)
|
||||
where T : IIdentifiable
|
||||
{
|
||||
ArgumentUtility.CheckStringForNullOrEmpty(id, nameof(id));
|
||||
|
||||
return (await this.GetItems<T>(t => t.id == id, partitionKey)).FirstOrDefault();
|
||||
}
|
||||
|
||||
@ -118,6 +122,8 @@
|
||||
ItemRequestOptions itemRequestOptions = null)
|
||||
where T : IIdentifiable
|
||||
{
|
||||
ArgumentUtility.CheckForNull(item, nameof(item));
|
||||
|
||||
await this.container.UpsertItemAsync(item, partitionKey, itemRequestOptions);
|
||||
}
|
||||
|
||||
@ -142,6 +148,8 @@
|
||||
string partitionKey = null,
|
||||
ItemRequestOptions requestOptions = null)
|
||||
{
|
||||
ArgumentUtility.CheckStringForNullOrEmpty(id, nameof(id));
|
||||
|
||||
if (partitionKey == null)
|
||||
{
|
||||
partitionKey = typeof(T).Name;
|
||||
|
@ -34,6 +34,8 @@
|
||||
Expression<Func<ServerInfo, bool>> whereExpression = null,
|
||||
string partitionKey = null)
|
||||
{
|
||||
ArgumentUtility.CheckForNull(selectExpression, nameof(selectExpression));
|
||||
|
||||
return await this.client.GetItems<ServerInfo, TSelect>(
|
||||
selectExpression: selectExpression,
|
||||
whereExpression: whereExpression,
|
||||
@ -42,11 +44,15 @@
|
||||
|
||||
public async Task<ServerInfo> GetServerInfo(string ipAddress)
|
||||
{
|
||||
ArgumentUtility.CheckStringForNullOrEmpty(ipAddress, nameof(ipAddress));
|
||||
|
||||
return await this.client.GetItemById<ServerInfo>(ipAddress);
|
||||
}
|
||||
|
||||
public async Task UpsertServerInfo(ServerInfo serverInfo)
|
||||
{
|
||||
ArgumentUtility.CheckForNull(serverInfo, nameof(serverInfo));
|
||||
|
||||
await this.client.UpsertItem(
|
||||
item: serverInfo,
|
||||
partitionKey: new PartitionKey(serverInfo.DocumentType));
|
||||
@ -54,6 +60,8 @@
|
||||
|
||||
public async Task DeleteServers(IEnumerable<string> ids, string partitionKey = null)
|
||||
{
|
||||
ArgumentUtility.CheckEnumerableForNullOrEmpty(ids, nameof(ids));
|
||||
|
||||
foreach (string id in ids)
|
||||
{
|
||||
this.logger.LogInformation("Deleting server for host IP {IPAddress}", id);
|
||||
|
153
Giants.Services/Utility/ArgumentUtility.cs
Normal file
153
Giants.Services/Utility/ArgumentUtility.cs
Normal file
@ -0,0 +1,153 @@
|
||||
namespace Giants.Services
|
||||
{
|
||||
// Decompiled with JetBrains decompiler
|
||||
// Type: Microsoft.VisualStudio.Services.Common.ArgumentUtility
|
||||
// Assembly: Microsoft.VisualStudio.Services.Common, Version=16.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
|
||||
// MVID: 8C174B92-2E1F-4F71-9E6B-FC8D9F2C517A
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||
public static class ArgumentUtility
|
||||
{
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public static void CheckForNull(object var, string varName)
|
||||
{
|
||||
if (var == null)
|
||||
throw new ArgumentNullException(varName);
|
||||
}
|
||||
|
||||
|
||||
public static void CheckStringForNullOrEmpty(
|
||||
string stringVar,
|
||||
string stringVarName)
|
||||
{
|
||||
ArgumentUtility.CheckStringForNullOrEmpty(stringVar, stringVarName, false);
|
||||
}
|
||||
|
||||
public static void CheckForNonnegativeInt(int var, string varName)
|
||||
{
|
||||
if (var < 0)
|
||||
throw new ArgumentOutOfRangeException(varName);
|
||||
}
|
||||
|
||||
public static void CheckForNonPositiveInt(int var, string varName)
|
||||
{
|
||||
if (var <= 0)
|
||||
throw new ArgumentOutOfRangeException(varName);
|
||||
}
|
||||
|
||||
public static void CheckStringForNullOrEmpty(
|
||||
string stringVar,
|
||||
string stringVarName,
|
||||
bool trim)
|
||||
{
|
||||
ArgumentUtility.CheckForNull((object)stringVar, stringVarName);
|
||||
if (trim)
|
||||
stringVar = stringVar.Trim();
|
||||
if (stringVar.Length == 0)
|
||||
throw new ArgumentException("Empty string not allowed.", stringVarName);
|
||||
}
|
||||
|
||||
public static void CheckStringLength(
|
||||
string stringVar,
|
||||
string stringVarName,
|
||||
int maxLength,
|
||||
int minLength = 0)
|
||||
{
|
||||
ArgumentUtility.CheckForNull((object)stringVar, stringVarName);
|
||||
if (stringVar.Length < minLength || stringVar.Length > maxLength)
|
||||
throw new ArgumentException("String length not allowed.", stringVarName);
|
||||
}
|
||||
|
||||
public static void CheckEnumerableForNullOrEmpty(
|
||||
IEnumerable enumerable,
|
||||
string enumerableName)
|
||||
{
|
||||
ArgumentUtility.CheckForNull((object)enumerable, enumerableName);
|
||||
if (!enumerable.GetEnumerator().MoveNext())
|
||||
throw new ArgumentException("Collection cannot be null or empty.", enumerableName);
|
||||
}
|
||||
|
||||
public static void CheckEnumerableForNullElement(
|
||||
IEnumerable enumerable,
|
||||
string enumerableName)
|
||||
{
|
||||
ArgumentUtility.CheckForNull((object)enumerable, enumerableName);
|
||||
foreach (object obj in enumerable)
|
||||
{
|
||||
if (obj == null)
|
||||
throw new ArgumentException("NullElementNotAllowedInCollection", enumerableName);
|
||||
}
|
||||
}
|
||||
|
||||
public static void CheckForEmptyGuid(Guid guid, string varName)
|
||||
{
|
||||
if (guid.Equals(Guid.Empty))
|
||||
throw new ArgumentException("EmptyGuidNotAllowed", varName);
|
||||
}
|
||||
|
||||
public static void CheckBoundsInclusive(
|
||||
int value,
|
||||
int minValue,
|
||||
int maxValue,
|
||||
string varName)
|
||||
{
|
||||
if (value < minValue || value > maxValue)
|
||||
throw new ArgumentOutOfRangeException(varName, "ValueOutOfRange");
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public static void CheckForOutOfRange<T>(
|
||||
T var,
|
||||
string varName,
|
||||
T minimum)
|
||||
where T : IComparable<T>
|
||||
{
|
||||
ArgumentUtility.CheckForNull((object)var, varName);
|
||||
if (var.CompareTo(minimum) < 0)
|
||||
throw new ArgumentOutOfRangeException(varName, (object)var, "OutOfRange");
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public static void CheckForOutOfRange(
|
||||
int var,
|
||||
string varName,
|
||||
int minimum,
|
||||
int maximum)
|
||||
{
|
||||
if (var < minimum || var > maximum)
|
||||
throw new ArgumentOutOfRangeException(varName, (object)var, "OutOfRange");
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public static void CheckForOutOfRange(
|
||||
long var,
|
||||
string varName,
|
||||
long minimum,
|
||||
long maximum)
|
||||
{
|
||||
if (var < minimum || var > maximum)
|
||||
throw new ArgumentOutOfRangeException(varName, (object)var, "OutOfRange");
|
||||
}
|
||||
|
||||
public static void CheckForDateTimeRange(
|
||||
DateTime var,
|
||||
string varName,
|
||||
DateTime minimum,
|
||||
DateTime maximum)
|
||||
{
|
||||
if (var < minimum || var > maximum)
|
||||
throw new ArgumentOutOfRangeException(varName, (object)var, "OutOfRange");
|
||||
}
|
||||
|
||||
public static void EnsureIsNull(object var, string varName)
|
||||
{
|
||||
if (var != null)
|
||||
throw new ArgumentException("NullValueNecessary");
|
||||
}
|
||||
}
|
||||
}
|
@ -39,7 +39,7 @@ namespace Giants.Web.Controllers
|
||||
IEnumerable<Services.ServerInfo> serverInfo = await this.serverRegistryService.GetAllServers();
|
||||
|
||||
IMapper mapper = Services.Mapper.GetMapper();
|
||||
return serverInfo
|
||||
var mappedServers = serverInfo
|
||||
.Select(x =>
|
||||
{
|
||||
var serverInfo = mapper.Map<ServerInfoWithHostAddress>(x);
|
||||
@ -47,19 +47,34 @@ namespace Giants.Web.Controllers
|
||||
return serverInfo;
|
||||
})
|
||||
.ToList();
|
||||
|
||||
string requestIpAddress = this.GetRequestIpAddress();
|
||||
logger.LogInformation("Returning {Count} servers to {IPAddress}", mappedServers.Count, requestIpAddress);
|
||||
|
||||
return mappedServers;
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public async Task AddServer([FromBody]DataContract.ServerInfo serverInfo)
|
||||
{
|
||||
IPAddress requestIpAddress = this.httpContextAccessor.HttpContext.Connection.RemoteIpAddress.MapToIPv4();
|
||||
this.logger.LogInformation($"Request to add server from {requestIpAddress}");
|
||||
ArgumentUtility.CheckForNull(serverInfo, nameof(serverInfo));
|
||||
|
||||
string requestIpAddress = this.GetRequestIpAddress();
|
||||
|
||||
this.logger.LogInformation("Request to add server from {IPAddress}", requestIpAddress);
|
||||
|
||||
var serverInfoEntity = mapper.Map<Services.ServerInfo>(serverInfo);
|
||||
serverInfoEntity.HostIpAddress = requestIpAddress.ToString();
|
||||
serverInfoEntity.LastHeartbeat = DateTime.UtcNow;
|
||||
|
||||
await this.serverRegistryService.AddServer(serverInfoEntity);
|
||||
|
||||
this.logger.LogInformation("Added server successfully for {IPAddress}", requestIpAddress);
|
||||
}
|
||||
|
||||
private string GetRequestIpAddress()
|
||||
{
|
||||
return this.httpContextAccessor.HttpContext.Connection.RemoteIpAddress.MapToIPv4().ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user