-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathBaseClient.cs
155 lines (131 loc) · 6.69 KB
/
BaseClient.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
using System;
using System.Net;
using System.Threading.Tasks;
using HADotNet.Core.Domain;
using Newtonsoft.Json;
using RestSharp;
namespace HADotNet.Core
{
/// <summary>
/// Represents the base client from which all other API clients derive.
/// </summary>
public abstract class BaseClient
{
/// <summary>
/// Gets or sets the Rest client.
/// </summary>
protected RestClient Client { get; set; }
/// <summary>
/// Initializes a new <see cref="BaseClient" /> instance.
/// </summary>
/// <param name="instance">The Home Assistant instance URL.</param>
/// <param name="apiKey">The long-lived Home Assistant API key.</param>
protected BaseClient(Uri instance, string apiKey)
{
Client = new RestClient(instance);
Client.AutomaticDecompression = false;
Client.AddDefaultHeader("Authorization", $"Bearer {apiKey}");
}
/// <summary>
/// Performs a GET request on the specified path.
/// </summary>
/// <typeparam name="T">The type of data to deserialize and return.</typeparam>
/// <param name="path">The relative API endpoint path.</param>
/// <returns>The deserialized data of type <typeparamref name="T" />.</returns>
protected async Task<T> Get<T>(string path) where T : class
{
var req = new RestRequest(path);
// Bug in HA or RestSharp if Gzip is enabled, so disable it for now
req.AddDecompressionMethod(DecompressionMethods.None);
req.AddHeader("Accept-Encoding", "identity");
var resp = await Client.ExecuteGetAsync(req);
if (!string.IsNullOrWhiteSpace(resp.Content) && (resp.StatusCode == HttpStatusCode.OK || resp.StatusCode == HttpStatusCode.Created))
{
// Weird case for strings - return as-is
if (typeof(T).IsAssignableFrom(typeof(string)))
{
return resp.Content as T;
}
return JsonConvert.DeserializeObject<T>(resp.Content);
}
throw new HttpResponseException((int)resp.StatusCode, resp.ResponseStatus.ToString(), resp.ResponseUri.PathAndQuery, $"Unexpected GET response code {(int)resp.StatusCode} from Home Assistant API endpoint {path}.");
}
/// <summary>
/// Performs a POST request on the specified path.
/// </summary>
/// <typeparam name="T">The type of object expected back.</typeparam>
/// <param name="path">The path to post to.</param>
/// <param name="body">The body contents to serialize and include.</param>
/// <param name="isRawBody"><see langword="true" /> if the body should be interpereted as a pre-built JSON string, or <see langword="false" /> if it should be serialized.</param>
/// <returns></returns>
protected async Task<T> Post<T>(string path, object body, bool isRawBody = false) where T : class
{
var req = new RestRequest(path);
// Bug in HA or RestSharp if Gzip is enabled, so disable it for now
req.AddDecompressionMethod(DecompressionMethods.None);
req.AddHeader("Accept-Encoding", "identity");
if (body != null)
{
if (isRawBody)
{
req.AddParameter("application/json", body.ToString(), ParameterType.RequestBody);
}
else
{
req.AddParameter("application/json", JsonConvert.SerializeObject(body), ParameterType.RequestBody);
}
}
var resp = await Client.ExecutePostAsync(req);
if (!string.IsNullOrWhiteSpace(resp.Content) && (resp.StatusCode == HttpStatusCode.OK || resp.StatusCode == HttpStatusCode.Created))
{
// Weird case for strings - return as-is
if (typeof(T).IsAssignableFrom(typeof(string)))
{
return resp.Content as T;
}
return JsonConvert.DeserializeObject<T>(resp.Content);
}
throw new HttpResponseException((int)resp.StatusCode, resp.ResponseStatus.ToString(), resp.ResponseUri.PathAndQuery, $"Unexpected POST response code {(int)resp.StatusCode} from Home Assistant API endpoint {path}.");
}
/// <summary>
/// Performs a DELETE request on the specified path.
/// </summary>
/// <typeparam name="T">The type of data to deserialize and return.</typeparam>
/// <param name="path">The relative API endpoint path.</param>
/// <returns>The deserialized data of type <typeparamref name="T" />.</returns>
protected async Task<T> Delete<T>(string path) where T : class
{
var req = new RestRequest(path, Method.DELETE);
// Bug in HA or RestSharp if Gzip is enabled, so disable it for now
req.AddDecompressionMethod(DecompressionMethods.None);
req.AddHeader("Accept-Encoding", "identity");
var resp = await Client.ExecuteAsync(req);
if (!string.IsNullOrWhiteSpace(resp.Content) && (resp.StatusCode == HttpStatusCode.OK || resp.StatusCode == HttpStatusCode.NoContent))
{
// Weird case for strings - return as-is
if (typeof(T).IsAssignableFrom(typeof(string)))
{
return resp.Content as T;
}
return JsonConvert.DeserializeObject<T>(resp.Content);
}
throw new HttpResponseException((int)resp.StatusCode, resp.ResponseStatus.ToString(), resp.ResponseUri.PathAndQuery, $"Unexpected DELETE response code {(int)resp.StatusCode} from Home Assistant API endpoint {path}.");
}
/// <summary>
/// Performs a DELETE request on the specified path.
/// </summary>
/// <param name="path">The relative API endpoint path.</param>
protected async Task Delete(string path)
{
var req = new RestRequest(path, Method.DELETE);
// Bug in HA or RestSharp if Gzip is enabled, so disable it for now
req.AddDecompressionMethod(DecompressionMethods.None);
req.AddHeader("Accept-Encoding", "identity");
var resp = await Client.ExecuteAsync(req);
if (!(resp.StatusCode == HttpStatusCode.OK || resp.StatusCode == HttpStatusCode.NoContent))
{
throw new HttpResponseException((int)resp.StatusCode, resp.ResponseStatus.ToString(), resp.ResponseUri.PathAndQuery, $"Unexpected DELETE response code {(int)resp.StatusCode} from Home Assistant API endpoint {path}.");
}
}
}
}