Documentation for the Unity C# Library
Loading...
Searching...
No Matches
PlatformAPIHandler.cs
Go to the documentation of this file.
1using Newtonsoft.Json;
2using System;
3using System.Net.Http;
4using System.Net.Http.Headers;
5using UnityEngine;
7using System.Collections.Generic;
8using Newtonsoft.Json.Linq;
9
10namespace PixoVR.Apex
11{
28
29 public class APIHandler
30 {
31 public delegate void APIResponse(ResponseType type, HttpResponseMessage message, object responseData);
32 public APIResponse OnAPIResponse;
33
34 protected string URL = "";
35 protected HttpClient handlingClient = null;
36
37 // Move to a separate plugin
38 protected string webURL = "";
39 protected HttpClient webHandlingClient = null;
40
41 // Need to migrate to this in the future
42 protected string apiURL = "";
43 protected HttpClient apiHandlingClient = null;
44
45
46 public APIHandler() : this(PlatformEndpoints.NorthAmerica_ProductionEnvironment)
47 {
48 }
49
50 public APIHandler(string endpointUrl)
51 {
52 handlingClient = new HttpClient();
53 SetEndpoint(endpointUrl);
54
55 webHandlingClient = new HttpClient();
56 apiHandlingClient = new HttpClient();
57 }
58
59 HttpResponseMessage HandleException(Exception exception)
60 {
61 Debug.LogWarning("Exception has occurred: " + exception.Message);
62 HttpResponseMessage badRequestResponse = new HttpResponseMessage(System.Net.HttpStatusCode.BadRequest);
63 OnAPIResponse.Invoke(ResponseType.RT_FAILED_RESPONSE, badRequestResponse, null);
64 return badRequestResponse;
65 }
66
67 public void SetEndpoint(string endpointUrl)
68 {
69 EnsureURLHasProtocol(ref endpointUrl);
70
71 URL = endpointUrl;
72 Debug.Log("[APIHandler] Set Endpoint to " + URL);
73 handlingClient.BaseAddress = new Uri(URL);
74 }
75
76 public void SetWebEndpoint(string endpointUrl)
77 {
78 EnsureURLHasProtocol(ref endpointUrl);
79
80 webURL = endpointUrl;
81 webHandlingClient.BaseAddress = new Uri(webURL);
82 }
83
84 public void SetPlatformEndpoint(string endpointUrl)
85 {
86 EnsureURLHasProtocol(ref endpointUrl);
87
88 apiURL = endpointUrl;
89 apiHandlingClient.BaseAddress = new Uri(apiURL);
90 }
91
92 private void EnsureURLHasProtocol(ref string url)
93 {
94 if (!url.StartsWith("https://", StringComparison.InvariantCultureIgnoreCase))
95 {
96 if (url.StartsWith("http:", StringComparison.InvariantCultureIgnoreCase))
97 {
98#if UNITY_EDITOR
99 Debug.LogWarning("URL must be a secured http endpoint for production.");
100#else
101 Debug.LogError("URL must be a securated http endpoint.");
102#endif
103 }
104 else
105 {
106 url.Insert(0, "https://");
107 }
108 }
109 }
110
111 public async void Ping()
112 {
113 handlingClient.DefaultRequestHeaders.Clear();
114 handlingClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
115
116 HttpResponseMessage response;
117 try
118 {
119 response = await handlingClient.GetAsync("/ping");
120 }
121 catch (Exception ex)
122 {
123 response = HandleException(ex);
124 }
125
126 OnAPIResponse.Invoke(ResponseType.RT_PING, response, null);
127 }
128
129 public async void GenerateAssistedLogin(string authToken, int userId)
130 {
131 webHandlingClient.DefaultRequestHeaders.Clear();
132 webHandlingClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", authToken);
133 webHandlingClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
134 webHandlingClient.DefaultRequestHeaders.Add("x-access-token", authToken);
135
136 HttpResponseMessage response = await webHandlingClient.GetAsync(string.Format("api/user/{0}/assisted-login", userId));
137 string body = await response.Content.ReadAsStringAsync();
138 Debug.Log(body);
139 object responseContent = JsonConvert.DeserializeObject<GeneratedAssistedLogin>(body);
140 GeneratedAssistedLogin assistedLogin = responseContent as GeneratedAssistedLogin;
141 if ((responseContent as GeneratedAssistedLogin).HasErrored())
142 {
143 responseContent = JsonConvert.DeserializeObject<FailureResponse>(body);
144 }
145
146 OnAPIResponse.Invoke(ResponseType.RT_GEN_AUTH_LOGIN, response, responseContent);
147 }
148
149 public async void LoginWithToken(string token)
150 {
151 Debug.Log($"[Platform API] Logging in with token: {token}");
152 apiHandlingClient.DefaultRequestHeaders.Clear();
153 apiHandlingClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token);
154 apiHandlingClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
155
156 Debug.Log($"[Platform API] Sending login with a token.");
157 HttpResponseMessage response = await apiHandlingClient.GetAsync("/v2/auth/validate-signature");
158 string body = await response.Content.ReadAsStringAsync();
159 Debug.Log($"[Platform API] Body returned as {body}");
160 object responseContent = JsonConvert.DeserializeObject<UserLoginResponseContent>(body);
161 if ((responseContent as UserLoginResponseContent).HasErrored())
162 {
163 responseContent = JsonConvert.DeserializeObject<FailureResponse>(body);
164 }
165
166 Debug.Log($"[Platform API] Got a valid login response!");
167 object loginResponseContent = (responseContent as UserLoginResponseContent).User;
168
169 OnAPIResponse.Invoke(ResponseType.RT_LOGIN, response, loginResponseContent);
170 }
171
172 public async void Login(LoginData login)
173 {
174 Debug.Log("[Platform API] Calling Login.");
175 handlingClient.DefaultRequestHeaders.Clear();
176
177 HttpContent loginRequestContent = new StringContent(JsonUtility.ToJson(login));
178 loginRequestContent.Headers.ContentType = new MediaTypeWithQualityHeaderValue("application/json");
179
180 Debug.Log("[Platform API] Call to post api login.");
181 HttpResponseMessage response = await handlingClient.PostAsync("/login", loginRequestContent);
182 string body = await response.Content.ReadAsStringAsync();
183 Debug.Log("[Platform API] Got response body.");
184 object responseContent = JsonConvert.DeserializeObject<LoginResponseContent>(body);
185 if ((responseContent as LoginResponseContent).HasErrored())
186 {
187 responseContent = JsonConvert.DeserializeObject<FailureResponse>(body);
188 }
189
190 Debug.Log("[Platform API] Response content deserialized.");
191 OnAPIResponse.Invoke(ResponseType.RT_LOGIN, response, responseContent);
192 }
193
194 public async void GetUserData(string authToken, int userId)
195 {
196 handlingClient.DefaultRequestHeaders.Clear();
197 handlingClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", authToken);
198 handlingClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
199
200 HttpResponseMessage response = await handlingClient.GetAsync(string.Format("/user/{0}", userId));
201 string body = await response.Content.ReadAsStringAsync();
202 object responseContent = JsonConvert.DeserializeObject<GetUserResponseContent>(body);
203 GetUserResponseContent userInfo = responseContent as GetUserResponseContent;
204 if ((responseContent as GetUserResponseContent).HasErrored())
205 {
206 responseContent = JsonConvert.DeserializeObject<FailureResponse>(body);
207 }
208
209 OnAPIResponse.Invoke(ResponseType.RT_GET_USER, response, responseContent);
210 }
211
212 public async void GetUserModules(string authToken, int userId)
213 {
214 handlingClient.DefaultRequestHeaders.Clear();
215 handlingClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", authToken);
216 handlingClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
217
218 UserModulesRequestData usersModulesRequest = new UserModulesRequestData();
219 usersModulesRequest.UserIds.Add(userId);
220 HttpContent loginRequestContent = new StringContent(JsonUtility.ToJson(usersModulesRequest));
221 loginRequestContent.Headers.ContentType = new MediaTypeWithQualityHeaderValue("application/json");
222
223 HttpResponseMessage response = await handlingClient.PostAsync("/access/users", loginRequestContent);
224 string body = await response.Content.ReadAsStringAsync();
225 object responseContent = JsonConvert.DeserializeObject<GetUserModulesResponse>(body);
226 if ((responseContent as GetUserModulesResponse).HasErrored())
227 {
228 responseContent = JsonConvert.DeserializeObject<FailureResponse>(body);
229 }
230 else
231 {
232 (responseContent as GetUserModulesResponse).ParseData();
233 }
234
235 OnAPIResponse.Invoke(ResponseType.RT_GET_USER_MODULES, response, responseContent);
236 }
237
238 public async void JoinSession(string authToken, JoinSessionData joinData)
239 {
240 handlingClient.DefaultRequestHeaders.Clear();
241 handlingClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", authToken);
242 handlingClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
243
244 HttpContent joinSessionRequestContent = new StringContent(joinData.ToJSON());
245 joinSessionRequestContent.Headers.ContentType = new MediaTypeWithQualityHeaderValue("application/json");
246
247 HttpResponseMessage response = await handlingClient.PostAsync("/event", joinSessionRequestContent);
248 string body = await response.Content.ReadAsStringAsync();
249 object responseContent = JsonConvert.DeserializeObject<JoinSessionResponse>(body);
250 if ((responseContent as FailureResponse).HasErrored())
251 {
252 responseContent = null;
253 }
254 else
255 {
256 JoinSessionResponse joinSessionResponse = (responseContent as JoinSessionResponse);
257 joinSessionResponse.ParseData();
258 responseContent = joinSessionResponse;
259 }
260
261 OnAPIResponse.Invoke(ResponseType.RT_SESSION_JOINED, response, responseContent);
262 }
263
264 public async void GetModuleAccess(int moduleId, int userId, string serialNumber)
265 {
266 Debug.Log("[Platform API Handler] Get Module Access");
267 handlingClient.DefaultRequestHeaders.Clear();
268 handlingClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("*/*"));
269
270 string optionalParameters = "";
271 if(serialNumber.Length > 0)
272 {
273 optionalParameters = "?serial=" + serialNumber;
274 }
275
276 Debug.Log($"[{GetType().Name}] Checking module access at: " + String.Format("/access/user/{0}/module/{1}{2}", userId, moduleId, optionalParameters));
277
278 HttpResponseMessage response = await handlingClient.GetAsync(String.Format("/access/user/{0}/module/{1}{2}", userId, moduleId, optionalParameters));
279 string body = await response.Content.ReadAsStringAsync();
280
281 Debug.Log($"[{GetType().Name}] GetModuleAccess return body: {body}");
282 object responseContent = JsonConvert.DeserializeObject<FailureResponse>(body);
283 if (!(responseContent as FailureResponse).HasErrored())
284 {
285 responseContent = JsonConvert.DeserializeObject<UserAccessResponseContent>(body);
286
287 }
288 OnAPIResponse.Invoke(ResponseType.RT_GET_USER_ACCESS, response, responseContent);
289 }
290
291 public async void SendHeartbeat(string authToken, int sessionId)
292 {
293 apiHandlingClient.DefaultRequestHeaders.Clear();
294 apiHandlingClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", authToken);
295 apiHandlingClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
296
297 HeartbeatData heartbeatData = new HeartbeatData(sessionId);
298
299 HttpContent heartbeatRequestContent = new StringContent(heartbeatData.ToJSON());
300 heartbeatRequestContent.Headers.ContentType = new MediaTypeWithQualityHeaderValue("application/json");
301
302 HttpResponseMessage response = await apiHandlingClient.PostAsync("/heartbeat/pulse", heartbeatRequestContent);
303 string body = await response.Content.ReadAsStringAsync();
304 object responseContent = JsonConvert.DeserializeObject<FailureResponse>(body);
305 if ((responseContent as FailureResponse).HasErrored())
306 {
307 responseContent = null;
308 }
309
310 OnAPIResponse.Invoke(ResponseType.RT_HEARTBEAT, response, responseContent);
311 }
312
313 public async void CompleteSession(string authToken, CompleteSessionData completionData)
314 {
315 handlingClient.DefaultRequestHeaders.Clear();
316 handlingClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", authToken);
317 handlingClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
318
319 HttpContent completeSessionRequestContent = new StringContent(completionData.ToJSON());
320 completeSessionRequestContent.Headers.ContentType = new MediaTypeWithQualityHeaderValue("application/json");
321
322 HttpResponseMessage response = await handlingClient.PostAsync("/event", completeSessionRequestContent);
323 string body = await response.Content.ReadAsStringAsync();
324 object responseContent = JsonConvert.DeserializeObject<FailureResponse>(body);
325 if ((responseContent as FailureResponse).HasErrored())
326 {
327 responseContent = null;
328 }
329
330 OnAPIResponse.Invoke(ResponseType.RT_SESSION_COMPLETE, response, responseContent);
331 }
332
333 public async void SendSessionEvent(string authToken, SessionEventData sessionEvent)
334 {
335 handlingClient.DefaultRequestHeaders.Clear();
336 handlingClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", authToken);
337 handlingClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
338
339 HttpContent sessionEventRequestContent = new StringContent(sessionEvent.ToJSON());
340 sessionEventRequestContent.Headers.ContentType = new MediaTypeWithQualityHeaderValue("application/json");
341
342 HttpResponseMessage response = await handlingClient.PostAsync("/event", sessionEventRequestContent);
343 string body = await response.Content.ReadAsStringAsync();
344 object responseContent = JsonConvert.DeserializeObject<FailureResponse>(body);
345 if ((responseContent as FailureResponse).HasErrored())
346 {
347 responseContent = null;
348 }
349
350 OnAPIResponse.Invoke(ResponseType.RT_SESSION_EVENT, response, responseContent);
351 }
352
353 public async void GetModuleList(string authToken, string platform)
354 {
355 handlingClient.DefaultRequestHeaders.Clear();
356 handlingClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", authToken);
357 handlingClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
358
359 string endpoint = "/modules";
360 if (platform != null && platform.Length > 0)
361 {
362 endpoint += $"?platform={platform}";
363 }
364
365 Debug.Log($"GetModuleList built endpoint: {endpoint}");
366
367 HttpResponseMessage response = await handlingClient.GetAsync(endpoint);
368 string body = await response.Content.ReadAsStringAsync();
369
370 try
371 {
372 var responseContent = JsonConvert.DeserializeObject<FailureResponse>(body);
373 OnAPIResponse.Invoke(ResponseType.RT_GET_MODULES_LIST, response, responseContent);
374 return;
375 }
376 catch(Exception ex)
377 {
378 Debug.LogWarning(ex);
379 }
380
381 List<OrgModule> orgModules = new List<OrgModule>();
382 JArray array = JArray.Parse(body);
383 if(array != null)
384 {
385 var tokens = array.Children();
386 foreach(JToken selectedToken in tokens)
387 {
388 OrgModule orgModule = ScriptableObject.CreateInstance<OrgModule>();
389 orgModule.Parse(selectedToken);
390 orgModules.Add(orgModule);
391 }
392 }
393
394 Debug.Log(orgModules.Count.ToString());
395 OnAPIResponse.Invoke(ResponseType.RT_GET_MODULES_LIST, response, orgModules);
396 }
397 }
398}
async void SendHeartbeat(string authToken, int sessionId)
async void GenerateAssistedLogin(string authToken, int userId)
APIHandler(string endpointUrl)
async void GetUserModules(string authToken, int userId)
HttpResponseMessage HandleException(Exception exception)
void EnsureURLHasProtocol(ref string url)
async void JoinSession(string authToken, JoinSessionData joinData)
async void LoginWithToken(string token)
async void CompleteSession(string authToken, CompleteSessionData completionData)
async void Login(LoginData login)
async void SendSessionEvent(string authToken, SessionEventData sessionEvent)
void SetPlatformEndpoint(string endpointUrl)
async void GetUserData(string authToken, int userId)
delegate void APIResponse(ResponseType type, HttpResponseMessage message, object responseData)
void SetEndpoint(string endpointUrl)
void SetWebEndpoint(string endpointUrl)
async void GetModuleAccess(int moduleId, int userId, string serialNumber)
async void GetModuleList(string authToken, string platform)
[Serializable]
Definition ApexTypes.cs:161
void Parse(JToken token)
Definition ApexTypes.cs:380