forked from Skippeh/Oxide.GettingOverItMP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ApiClient.cs
94 lines (79 loc) · 2.8 KB
/
ApiClient.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace ServerShared
{
/// <summary>
/// Provides a wrapper for quering the web api using WebClient.
/// </summary>
public class ApiClient : IDisposable
{
public enum ModType
{
Invalid,
Client,
Server
}
private class ModVersion
{
public string Version;
}
private class ErrorResponse
{
public string Error;
}
public const string ApiUrl = "https://api.gettingoverit.mp";
public readonly WebClient WebClient;
public ApiClient()
{
WebClient = new WebClient();
}
public void Dispose()
{
WebClient?.Dispose();
}
public string QueryLatestVersion(ModType modType)
{
try
{
string responseJson = WebClient.DownloadString($"{ApiUrl}/version/{modType.ToString().ToLowerInvariant()}");
var modVersion = JsonConvert.DeserializeObject<ModVersion>(responseJson);
return modVersion.Version;
}
catch (WebException ex)
{
var httpWebResponse = ex.Response as HttpWebResponse;
if (httpWebResponse == null)
throw new ApiRequestFailedException("Failed to query the api: " + ex.Message, ex);
if (httpWebResponse.StatusCode != HttpStatusCode.BadRequest)
throw new ApiRequestFailedException("Failed to query the api: " + ex.Message, ex);
using (var responseStream = httpWebResponse.GetResponseStream())
{
if (responseStream == null)
throw;
byte[] responseBytes = new byte[responseStream.Length];
string responseJson = Encoding.UTF8.GetString(responseBytes);
ErrorResponse errorResponse = JsonConvert.DeserializeObject<ErrorResponse>(responseJson);
if (errorResponse.Error != null)
{
throw new ApiRequestFailedException(errorResponse.Error, ex);
}
throw new ApiRequestFailedException("Failed to query the api: " + ex.Message, ex);
}
}
catch (Exception ex)
{
throw new ApiRequestFailedException("Failed to query the api: " + ex.Message, ex);
}
}
}
public class ApiRequestFailedException : Exception
{
public ApiRequestFailedException(string errorMessage, Exception innerException) : base(errorMessage, innerException)
{
}
}
}