//Generated using MontoyaTech.Rest.Net - 2/18/2024 public class StaticClient { public static string BaseUrl; public static System.Net.CookieContainer CookieContainer; public static System.Net.Http.HttpMessageHandler MessageHandler; public static System.Net.Http.HttpClient HttpClient; public static System.Action RequestHandler; public static void Init(string baseUrl, System.Net.Http.HttpMessageHandler handler = null, System.Action requestHandler = null) { if (string.IsNullOrWhiteSpace(baseUrl)) throw new System.ArgumentException("baseUrl must not be null or whitespace."); if (baseUrl.EndsWith('/')) baseUrl = baseUrl.Substring(0, baseUrl.Length - 1); StaticClient.BaseUrl = baseUrl; StaticClient.CookieContainer = new System.Net.CookieContainer(); if (handler == null) { handler = new System.Net.Http.HttpClientHandler() { AllowAutoRedirect = true, UseCookies = true, CookieContainer = StaticClient.CookieContainer, AutomaticDecompression = System.Net.DecompressionMethods.GZip | System.Net.DecompressionMethods.Deflate }; } StaticClient.MessageHandler = handler; StaticClient.RequestHandler = requestHandler; StaticClient.HttpClient = new System.Net.Http.HttpClient(handler); StaticClient.HttpClient.DefaultRequestHeaders.Add("Accept", "*/*"); StaticClient.HttpClient.DefaultRequestHeaders.Add("Connection", "keep-alive"); StaticClient.HttpClient.DefaultRequestHeaders.Add("Accept-Encoding", "identity"); } public class Test { public static string Status() { var message = new System.Net.Http.HttpRequestMessage(System.Net.Http.HttpMethod.Get, $"{StaticClient.BaseUrl}/status"); StaticClient.RequestHandler?.Invoke(message); var response = StaticClient.HttpClient.Send(message, System.Net.Http.HttpCompletionOption.ResponseHeadersRead); if (response.IsSuccessStatusCode) { var content = response.Content.ReadAsStringAsync().GetAwaiter().GetResult(); if (string.IsNullOrEmpty(content)) return default; return Newtonsoft.Json.JsonConvert.DeserializeObject(content); } else { throw new System.Exception("Unexpected Http Response StatusCode:" + response.StatusCode); } } public static string Add(double a, double b) { var message = new System.Net.Http.HttpRequestMessage(System.Net.Http.HttpMethod.Post, $"{StaticClient.BaseUrl}/add/{a}/{b}"); StaticClient.RequestHandler?.Invoke(message); var response = StaticClient.HttpClient.Send(message, System.Net.Http.HttpCompletionOption.ResponseHeadersRead); if (response.IsSuccessStatusCode) { var content = response.Content.ReadAsStringAsync().GetAwaiter().GetResult(); if (string.IsNullOrEmpty(content)) return default; return Newtonsoft.Json.JsonConvert.DeserializeObject(content); } else { throw new System.Exception("Unexpected Http Response StatusCode:" + response.StatusCode); } } public static string Compress() { var message = new System.Net.Http.HttpRequestMessage(System.Net.Http.HttpMethod.Get, $"{StaticClient.BaseUrl}/compress"); StaticClient.RequestHandler?.Invoke(message); var response = StaticClient.HttpClient.Send(message, System.Net.Http.HttpCompletionOption.ResponseHeadersRead); if (response.IsSuccessStatusCode) { var content = response.Content.ReadAsStringAsync().GetAwaiter().GetResult(); if (string.IsNullOrEmpty(content)) return default; return Newtonsoft.Json.JsonConvert.DeserializeObject(content); } else { throw new System.Exception("Unexpected Http Response StatusCode:" + response.StatusCode); } } public static string CompressFile() { var message = new System.Net.Http.HttpRequestMessage(System.Net.Http.HttpMethod.Get, $"{StaticClient.BaseUrl}/file/compress"); StaticClient.RequestHandler?.Invoke(message); var response = StaticClient.HttpClient.Send(message, System.Net.Http.HttpCompletionOption.ResponseHeadersRead); if (response.IsSuccessStatusCode) { var content = response.Content.ReadAsStringAsync().GetAwaiter().GetResult(); if (string.IsNullOrEmpty(content)) return default; return Newtonsoft.Json.JsonConvert.DeserializeObject(content); } else { throw new System.Exception("Unexpected Http Response StatusCode:" + response.StatusCode); } } } public class Auth { public static bool UserExists(string name) { var message = new System.Net.Http.HttpRequestMessage(System.Net.Http.HttpMethod.Get, $"{StaticClient.BaseUrl}/auth/{name}"); StaticClient.RequestHandler?.Invoke(message); var response = StaticClient.HttpClient.Send(message, System.Net.Http.HttpCompletionOption.ResponseHeadersRead); if (response.IsSuccessStatusCode) { var content = response.Content.ReadAsStringAsync().GetAwaiter().GetResult(); if (string.IsNullOrEmpty(content)) return default; return bool.Parse(content); } else { throw new System.Exception("Unexpected Http Response StatusCode:" + response.StatusCode); } } public static void Signup(UserDto request, bool compress = false) { var message = new System.Net.Http.HttpRequestMessage(System.Net.Http.HttpMethod.Post, $"{StaticClient.BaseUrl}/auth/signup"); StaticClient.RequestHandler?.Invoke(message); if (compress) { using (var uncompressedStream = new System.IO.MemoryStream(System.Text.Encoding.UTF8.GetBytes(Newtonsoft.Json.JsonConvert.SerializeObject(request)))) { using (var compressedStream = new System.IO.MemoryStream()) { using (var gzipStream = new System.IO.Compression.GZipStream(compressedStream, System.IO.Compression.CompressionMode.Compress, true)) uncompressedStream.CopyTo(gzipStream); message.Content = new System.Net.Http.ByteArrayContent(compressedStream.ToArray()); message.Content.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue(System.Net.Mime.MediaTypeNames.Application.Json); message.Content.Headers.ContentEncoding.Add("gzip"); } } } else { message.Content = new System.Net.Http.StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(request)); message.Content.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue(System.Net.Mime.MediaTypeNames.Application.Json); } var response = StaticClient.HttpClient.Send(message, System.Net.Http.HttpCompletionOption.ResponseHeadersRead); if (!response.IsSuccessStatusCode) throw new System.Exception("Unexpected Http Response StatusCode:" + response.StatusCode); } public static UserDto Get() { var message = new System.Net.Http.HttpRequestMessage(System.Net.Http.HttpMethod.Get, $"{StaticClient.BaseUrl}/auth/"); StaticClient.RequestHandler?.Invoke(message); var response = StaticClient.HttpClient.Send(message, System.Net.Http.HttpCompletionOption.ResponseHeadersRead); if (response.IsSuccessStatusCode) { var content = response.Content.ReadAsStringAsync().GetAwaiter().GetResult(); if (string.IsNullOrEmpty(content)) return default; return Newtonsoft.Json.JsonConvert.DeserializeObject(content); } else { throw new System.Exception("Unexpected Http Response StatusCode:" + response.StatusCode); } } public static dynamic Dynamic() { var message = new System.Net.Http.HttpRequestMessage(System.Net.Http.HttpMethod.Get, $"{StaticClient.BaseUrl}/auth/dynamic"); StaticClient.RequestHandler?.Invoke(message); var response = StaticClient.HttpClient.Send(message, System.Net.Http.HttpCompletionOption.ResponseHeadersRead); if (response.IsSuccessStatusCode) { var content = response.Content.ReadAsStringAsync().GetAwaiter().GetResult(); if (string.IsNullOrEmpty(content)) return default; return Newtonsoft.Json.JsonConvert.DeserializeObject(content); } else { throw new System.Exception("Unexpected Http Response StatusCode:" + response.StatusCode); } } public static UserRole GetRole() { var message = new System.Net.Http.HttpRequestMessage(System.Net.Http.HttpMethod.Get, $"{StaticClient.BaseUrl}/auth/role"); StaticClient.RequestHandler?.Invoke(message); var response = StaticClient.HttpClient.Send(message, System.Net.Http.HttpCompletionOption.ResponseHeadersRead); if (response.IsSuccessStatusCode) { var content = response.Content.ReadAsStringAsync().GetAwaiter().GetResult(); if (string.IsNullOrEmpty(content)) return default; return Newtonsoft.Json.JsonConvert.DeserializeObject(content); } else { throw new System.Exception("Unexpected Http Response StatusCode:" + response.StatusCode); } } } public class Stream { public static void Upload(System.IO.MemoryStream request, bool compress = false) { var message = new System.Net.Http.HttpRequestMessage(System.Net.Http.HttpMethod.Post, $"{StaticClient.BaseUrl}/upload"); StaticClient.RequestHandler?.Invoke(message); request.Seek(0, System.IO.SeekOrigin.Begin); message.Content = new System.Net.Http.StreamContent(request); var response = StaticClient.HttpClient.Send(message, System.Net.Http.HttpCompletionOption.ResponseHeadersRead); if (!response.IsSuccessStatusCode) throw new System.Exception("Unexpected Http Response StatusCode:" + response.StatusCode); } public static System.IO.MemoryStream Download() { var message = new System.Net.Http.HttpRequestMessage(System.Net.Http.HttpMethod.Get, $"{StaticClient.BaseUrl}/download"); StaticClient.RequestHandler?.Invoke(message); var response = StaticClient.HttpClient.Send(message, System.Net.Http.HttpCompletionOption.ResponseHeadersRead); if (response.IsSuccessStatusCode) { var stream = new System.IO.MemoryStream(); response.Content.CopyToAsync(stream).GetAwaiter().GetResult(); return stream; } else { throw new System.Exception("Unexpected Http Response StatusCode:" + response.StatusCode); } } } public class Form { public static System.Collections.Generic.Dictionary FormTest() { var message = new System.Net.Http.HttpRequestMessage(System.Net.Http.HttpMethod.Post, $"{StaticClient.BaseUrl}/form"); StaticClient.RequestHandler?.Invoke(message); var response = StaticClient.HttpClient.Send(message, System.Net.Http.HttpCompletionOption.ResponseHeadersRead); if (response.IsSuccessStatusCode) { var content = response.Content.ReadAsStringAsync().GetAwaiter().GetResult(); if (string.IsNullOrEmpty(content)) return default; return Newtonsoft.Json.JsonConvert.DeserializeObject>(content); } else { throw new System.Exception("Unexpected Http Response StatusCode:" + response.StatusCode); } } } public class IncludedType { public int Test; public IncludedType() { } public IncludedType(IncludedType instance) { this.Test = instance.Test; } public IncludedType(int Test = 0) { this.Test = Test; } } public class UserDto : BaseUser { public System.PlatformID MachineType; public string Name; public System.Collections.Generic.List List; public System.String[] Array; public ulong Property { get; set; } public UserDto() { } public UserDto(UserDto instance) { this.MachineType = instance.MachineType; this.Name = instance.Name; this.List = instance.List; this.Array = instance.Array; this.Property = instance.Property; } public UserDto(System.PlatformID MachineType = 0, string Name = null, System.Collections.Generic.List List = null, System.String[] Array = null, ulong Property = 0) { this.MachineType = MachineType; this.Name = Name; this.List = List; this.Array = Array; this.Property = Property; } } public class BaseUser { public string Id; public char FirstInitial; public System.Collections.Generic.List Permissions; public UserRole Role { get; set; } public BaseUser() { } public BaseUser(BaseUser instance) { this.Id = instance.Id; this.FirstInitial = instance.FirstInitial; this.Permissions = instance.Permissions; this.Role = instance.Role; } public BaseUser(string Id = null, char FirstInitial = '\0', System.Collections.Generic.List Permissions = null, UserRole Role = 0) { this.Id = Id; this.FirstInitial = FirstInitial; this.Permissions = Permissions; this.Role = Role; } public class Permission { public string Name; public Types Type; public Permission() { } public Permission(Permission instance) { this.Name = instance.Name; this.Type = instance.Type; } public Permission(string Name = null, Types Type = 0) { this.Name = Name; this.Type = Type; } public enum Types : int { Read = 0, Write = 1, } } } public enum UserRole : byte { Unknown = 0, Admin = 2, User = 1, } }