2023-02-07 13:02:56 -08:00
|
|
|
using System;
|
|
|
|
using System.Net;
|
|
|
|
using System.Net.Http;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
public class Client
|
2023-02-04 08:26:09 -08:00
|
|
|
{
|
2023-02-07 13:02:56 -08:00
|
|
|
public string BaseUrl;
|
|
|
|
|
|
|
|
public CookieContainer CookieContainer;
|
|
|
|
|
|
|
|
public HttpClientHandler ClientHandler;
|
|
|
|
|
|
|
|
public HttpClient HttpClient;
|
2023-02-04 10:37:30 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
public TestApi Test;
|
|
|
|
|
|
|
|
public AuthApi Auth;
|
|
|
|
|
|
|
|
public Client(string baseUrl)
|
2023-02-04 08:26:09 -08:00
|
|
|
{
|
2023-02-07 13:02:56 -08:00
|
|
|
if (string.IsNullOrWhiteSpace(baseUrl))
|
|
|
|
throw new ArgumentException("baseUrl must not be null or whitespace.");
|
2023-02-04 10:37:30 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
if (baseUrl.EndsWith('/'))
|
|
|
|
baseUrl = baseUrl.Substring(0, baseUrl.Length - 1);
|
2023-02-04 08:26:09 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
this.BaseUrl = baseUrl;
|
2023-02-04 08:26:09 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
this.CookieContainer = new CookieContainer();
|
2023-02-05 10:59:29 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
this.ClientHandler = new HttpClientHandler()
|
2023-02-04 10:37:30 -08:00
|
|
|
{
|
2023-02-07 13:02:56 -08:00
|
|
|
AllowAutoRedirect = true,
|
|
|
|
UseCookies = true,
|
|
|
|
CookieContainer = this.CookieContainer,
|
|
|
|
AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate
|
|
|
|
};
|
2023-02-04 10:37:30 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
this.HttpClient = new HttpClient(this.ClientHandler);
|
2023-02-04 08:26:09 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
this.HttpClient.DefaultRequestHeaders.Add("Accept", "*/*");
|
2023-02-04 08:26:09 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
this.HttpClient.DefaultRequestHeaders.Add("Connection", "keep-alive");
|
2023-02-05 10:59:29 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
this.HttpClient.DefaultRequestHeaders.Add("Accept-Encoding", "identity");
|
2023-02-05 10:59:29 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
this.Test = new TestApi(this);
|
2023-02-04 08:26:09 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
this.Auth = new AuthApi(this);
|
|
|
|
}
|
2023-02-05 10:59:29 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
public class TestApi
|
|
|
|
{
|
|
|
|
public Client Client;
|
2023-02-05 10:59:29 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
public TestApi(Client client)
|
|
|
|
{
|
|
|
|
this.Client = client;
|
2023-02-05 10:59:29 -08:00
|
|
|
}
|
2023-02-04 08:26:09 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
public string Status()
|
2023-02-05 10:59:29 -08:00
|
|
|
{
|
2023-02-07 13:02:56 -08:00
|
|
|
var message = new HttpRequestMessage(HttpMethod.Get, $"{this.Client.BaseUrl}/status");
|
2023-02-05 10:59:29 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
var response = this.Client.HttpClient.Send(message);
|
2023-02-04 08:26:09 -08:00
|
|
|
|
2023-03-24 07:33:35 -07:00
|
|
|
if (response.IsSuccessStatusCode)
|
|
|
|
{
|
|
|
|
var content = response.Content.ReadAsStringAsync().GetAwaiter().GetResult();
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(content))
|
|
|
|
return default;
|
|
|
|
|
|
|
|
return JsonConvert.DeserializeObject<string>(content);
|
|
|
|
}
|
2023-02-07 13:02:56 -08:00
|
|
|
else
|
2023-03-24 07:33:35 -07:00
|
|
|
{
|
2023-02-07 13:02:56 -08:00
|
|
|
throw new Exception("Unexpected Http Response StatusCode:" + response.StatusCode);
|
2023-03-24 07:33:35 -07:00
|
|
|
}
|
2023-02-07 13:02:56 -08:00
|
|
|
}
|
2023-02-05 10:59:29 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
public string Add(double a, double b)
|
|
|
|
{
|
|
|
|
var message = new HttpRequestMessage(HttpMethod.Post, $"{this.Client.BaseUrl}/add/{a}/{b}");
|
2023-02-05 10:59:29 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
var response = this.Client.HttpClient.Send(message);
|
2023-02-05 10:59:29 -08:00
|
|
|
|
2023-03-24 07:33:35 -07:00
|
|
|
if (response.IsSuccessStatusCode)
|
|
|
|
{
|
|
|
|
var content = response.Content.ReadAsStringAsync().GetAwaiter().GetResult();
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(content))
|
|
|
|
return default;
|
|
|
|
|
|
|
|
return JsonConvert.DeserializeObject<string>(content);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw new Exception("Unexpected Http Response StatusCode:" + response.StatusCode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public string Compress()
|
|
|
|
{
|
|
|
|
var message = new HttpRequestMessage(HttpMethod.Get, $"{this.Client.BaseUrl}/compress");
|
|
|
|
|
|
|
|
var response = this.Client.HttpClient.Send(message);
|
|
|
|
|
|
|
|
if (response.IsSuccessStatusCode)
|
|
|
|
{
|
|
|
|
var content = response.Content.ReadAsStringAsync().GetAwaiter().GetResult();
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(content))
|
|
|
|
return default;
|
|
|
|
|
|
|
|
return JsonConvert.DeserializeObject<string>(content);
|
|
|
|
}
|
2023-02-07 13:02:56 -08:00
|
|
|
else
|
2023-03-24 07:33:35 -07:00
|
|
|
{
|
2023-02-07 13:02:56 -08:00
|
|
|
throw new Exception("Unexpected Http Response StatusCode:" + response.StatusCode);
|
2023-03-24 07:33:35 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public string CompressFile()
|
|
|
|
{
|
|
|
|
var message = new HttpRequestMessage(HttpMethod.Get, $"{this.Client.BaseUrl}/file/compress");
|
|
|
|
|
|
|
|
var response = this.Client.HttpClient.Send(message);
|
|
|
|
|
|
|
|
if (response.IsSuccessStatusCode)
|
|
|
|
{
|
|
|
|
var content = response.Content.ReadAsStringAsync().GetAwaiter().GetResult();
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(content))
|
|
|
|
return default;
|
|
|
|
|
|
|
|
return JsonConvert.DeserializeObject<string>(content);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw new Exception("Unexpected Http Response StatusCode:" + response.StatusCode);
|
|
|
|
}
|
2023-02-07 13:02:56 -08:00
|
|
|
}
|
|
|
|
}
|
2023-02-05 10:59:29 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
public class AuthApi
|
|
|
|
{
|
|
|
|
public Client Client;
|
|
|
|
|
|
|
|
public AuthApi(Client client)
|
|
|
|
{
|
|
|
|
this.Client = client;
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool UserExists(string name)
|
|
|
|
{
|
|
|
|
var message = new HttpRequestMessage(HttpMethod.Get, $"{this.Client.BaseUrl}/auth/{name}");
|
|
|
|
|
|
|
|
var response = this.Client.HttpClient.Send(message);
|
2023-02-05 10:59:29 -08:00
|
|
|
|
2023-03-24 07:33:35 -07:00
|
|
|
if (response.IsSuccessStatusCode)
|
|
|
|
{
|
|
|
|
var content = response.Content.ReadAsStringAsync().GetAwaiter().GetResult();
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(content))
|
|
|
|
return default;
|
|
|
|
|
|
|
|
return bool.Parse(content);
|
|
|
|
}
|
2023-02-07 13:02:56 -08:00
|
|
|
else
|
2023-03-24 07:33:35 -07:00
|
|
|
{
|
2023-02-07 13:02:56 -08:00
|
|
|
throw new Exception("Unexpected Http Response StatusCode:" + response.StatusCode);
|
2023-03-24 07:33:35 -07:00
|
|
|
}
|
2023-02-07 13:02:56 -08:00
|
|
|
}
|
2023-02-05 10:59:29 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
public void Signup(User request)
|
|
|
|
{
|
|
|
|
var message = new HttpRequestMessage(HttpMethod.Post, $"{this.Client.BaseUrl}/auth/signup");
|
2023-02-05 10:59:29 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
message.Content = new StringContent(JsonConvert.SerializeObject(request));
|
2023-02-05 10:59:29 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
var response = this.Client.HttpClient.Send(message);
|
2023-02-05 10:59:29 -08:00
|
|
|
|
2023-03-24 07:33:35 -07:00
|
|
|
if (!response.IsSuccessStatusCode)
|
2023-02-07 13:02:56 -08:00
|
|
|
throw new Exception("Unexpected Http Response StatusCode:" + response.StatusCode);
|
2023-02-04 08:26:09 -08:00
|
|
|
}
|
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
public User Get()
|
2023-02-04 08:26:09 -08:00
|
|
|
{
|
2023-02-07 13:02:56 -08:00
|
|
|
var message = new HttpRequestMessage(HttpMethod.Get, $"{this.Client.BaseUrl}/auth");
|
2023-02-04 10:37:30 -08:00
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
var response = this.Client.HttpClient.Send(message);
|
2023-02-04 10:37:30 -08:00
|
|
|
|
2023-03-24 07:33:35 -07:00
|
|
|
if (response.IsSuccessStatusCode)
|
|
|
|
{
|
|
|
|
var content = response.Content.ReadAsStringAsync().GetAwaiter().GetResult();
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(content))
|
|
|
|
return default;
|
|
|
|
|
|
|
|
return JsonConvert.DeserializeObject<User>(content);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw new Exception("Unexpected Http Response StatusCode:" + response.StatusCode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public UserRole GetRole()
|
|
|
|
{
|
|
|
|
var message = new HttpRequestMessage(HttpMethod.Get, $"{this.Client.BaseUrl}/auth/role");
|
|
|
|
|
|
|
|
var response = this.Client.HttpClient.Send(message);
|
|
|
|
|
|
|
|
if (response.IsSuccessStatusCode)
|
|
|
|
{
|
|
|
|
var content = response.Content.ReadAsStringAsync().GetAwaiter().GetResult();
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(content))
|
|
|
|
return default;
|
|
|
|
|
|
|
|
return JsonConvert.DeserializeObject<UserRole>(content);
|
|
|
|
}
|
2023-02-07 13:02:56 -08:00
|
|
|
else
|
2023-03-24 07:33:35 -07:00
|
|
|
{
|
2023-02-07 13:02:56 -08:00
|
|
|
throw new Exception("Unexpected Http Response StatusCode:" + response.StatusCode);
|
2023-03-24 07:33:35 -07:00
|
|
|
}
|
2023-02-04 08:26:09 -08:00
|
|
|
}
|
|
|
|
}
|
2023-02-07 13:02:56 -08:00
|
|
|
|
2023-03-24 07:33:35 -07:00
|
|
|
public class IncludedType
|
|
|
|
{
|
|
|
|
public int Test;
|
|
|
|
}
|
|
|
|
|
|
|
|
public class User : BaseUser
|
2023-02-07 13:02:56 -08:00
|
|
|
{
|
|
|
|
public string Name;
|
|
|
|
|
|
|
|
public System.Collections.Generic.List<string> List;
|
|
|
|
|
|
|
|
public ulong Property { get; set; }
|
|
|
|
}
|
2023-03-24 07:33:35 -07:00
|
|
|
|
|
|
|
public class BaseUser
|
|
|
|
{
|
|
|
|
public string Id;
|
|
|
|
|
|
|
|
public System.Collections.Generic.List<Permission> Permissions;
|
|
|
|
|
|
|
|
public UserRole Role { get; set; }
|
|
|
|
|
|
|
|
public class Permission
|
|
|
|
{
|
|
|
|
public string Name;
|
|
|
|
|
|
|
|
public Types Type;
|
|
|
|
|
|
|
|
public enum Types : int
|
|
|
|
{
|
|
|
|
Read = 0,
|
|
|
|
|
|
|
|
Write = 1,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public enum UserRole : byte
|
|
|
|
{
|
|
|
|
Unknown = 0,
|
|
|
|
|
|
|
|
Admin = 2,
|
|
|
|
|
|
|
|
User = 1,
|
|
|
|
}
|
|
|
|
}
|