您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

168 行
6.2 KiB

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using Newtonsoft.Json;
using Unity.Services.Lobbies.Models;
namespace Unity.Services.Lobbies.Http
{
public static class ResponseHandler
{
public static T TryDeserializeResponse<T>(HttpClientResponse response)
{
var settings = new JsonSerializerSettings
{
MissingMemberHandling = Newtonsoft.Json.MissingMemberHandling.Ignore
};
return JsonConvert.DeserializeObject<T>(GetDeserializedJson(response.Data), settings);
}
public static object TryDeserializeResponse(HttpClientResponse response, Type type)
{
var settings = new JsonSerializerSettings
{
MissingMemberHandling = Newtonsoft.Json.MissingMemberHandling.Ignore
};
return JsonConvert.DeserializeObject(GetDeserializedJson(response.Data), type, settings);
}
private static string GetDeserializedJson(byte[] data)
{
return Encoding.UTF8.GetString(data);
}
public static void HandleAsyncResponse(HttpClientResponse response, Dictionary<string, Type> statusCodeToTypeMap)
{
if (statusCodeToTypeMap.ContainsKey(response.StatusCode.ToString()))
{
Type responseType = statusCodeToTypeMap[response.StatusCode.ToString()];
if (responseType != null && response.IsHttpError || response.IsNetworkError)
{
if (typeof(IOneOf).IsAssignableFrom(responseType))
{
var instance = CreateOneOfException(response, responseType);
throw instance;
}
else
{
var instance = CreateHttpException(response, responseType);
throw instance;
}
}
}
else
{
throw new HttpException(response);
}
}
private static HttpException CreateOneOfException(HttpClientResponse response, Type responseType)
{
try
{
var dataObject = ResponseHandler.TryDeserializeResponse(response, responseType);
return CreateHttpException(response, ((IOneOf) dataObject).Type);
}
catch (ArgumentException e)
{
throw new ResponseDeserializationException(response, e.Message);
}
catch (MissingFieldException)
{
throw new ResponseDeserializationException(response,
"Discriminator field not found in the parsed json response.");
}
catch (ResponseDeserializationException e)
{
if (e.response == null)
{
throw new ResponseDeserializationException(response, e.Message);
}
throw;
}
catch (Exception)
{
throw new ResponseDeserializationException(response);
}
}
private static HttpException CreateHttpException(HttpClientResponse response, Type responseType)
{
Type exceptionType = typeof(HttpException<>);
var genericException = exceptionType.MakeGenericType(responseType);
try
{
if (responseType == typeof(System.IO.Stream))
{
var streamObject = (object)(response.Data == null ? new MemoryStream() : new MemoryStream(response.Data));
var streamObjectInstance = Activator.CreateInstance(genericException, new object[] {response, streamObject});
return (HttpException) streamObjectInstance;
}
var dataObject = ResponseHandler.TryDeserializeResponse(response, responseType);
var instance = Activator.CreateInstance(genericException, new object[] {response, dataObject});
return (HttpException) instance;
}
catch (ArgumentException e)
{
throw new ResponseDeserializationException(response, e.Message);
}
catch (MissingFieldException)
{
throw new ResponseDeserializationException(response,
"Discriminator field not found in the parsed json response.");
}
catch (ResponseDeserializationException e)
{
if (e.response == null)
{
throw new ResponseDeserializationException(response, e.Message);
}
throw;
}
catch (Exception)
{
throw new ResponseDeserializationException(response);
}
}
public static T HandleAsyncResponse<T>(HttpClientResponse response, Dictionary<string, Type> statusCodeToTypeMap) where T : class
{
HandleAsyncResponse(response, statusCodeToTypeMap);
try
{
if (statusCodeToTypeMap[response.StatusCode.ToString()] == typeof(System.IO.Stream))
{
return (response.Data == null ? new MemoryStream() : new MemoryStream(response.Data)) as T;
}
return ResponseHandler.TryDeserializeResponse<T>(response);
}
catch (ArgumentException e)
{
throw new ResponseDeserializationException(response, e.Message);
}
catch (MissingFieldException)
{
throw new ResponseDeserializationException(response,
"Discriminator field not found in the parsed json response.");
}
catch (ResponseDeserializationException e)
{
if (e.response == null)
{
throw new ResponseDeserializationException(response, e.Message);
}
throw;
}
catch (Exception)
{
throw new ResponseDeserializationException(response);
}
}
}
}