2016-11-11 19:55:12 +00:00
|
|
|
using System;
|
|
|
|
using System.IO;
|
2017-02-13 02:06:54 +00:00
|
|
|
using Emby.Server.Implementations.HttpServer;
|
2016-11-11 19:55:12 +00:00
|
|
|
|
2017-02-13 01:07:48 +00:00
|
|
|
namespace Emby.Server.Implementations.Services
|
2016-11-11 19:55:12 +00:00
|
|
|
{
|
2017-02-13 01:07:48 +00:00
|
|
|
public class RequestHelper
|
2016-11-11 19:55:12 +00:00
|
|
|
{
|
2017-02-13 02:06:54 +00:00
|
|
|
public static Func<Type, Stream, object> GetRequestReader(HttpListenerHost host, string contentType)
|
2016-11-11 19:55:12 +00:00
|
|
|
{
|
2017-02-13 01:07:48 +00:00
|
|
|
switch (GetContentTypeWithoutEncoding(contentType))
|
2016-11-11 19:55:12 +00:00
|
|
|
{
|
|
|
|
case "application/xml":
|
|
|
|
case "text/xml":
|
|
|
|
case "text/xml; charset=utf-8": //"text/xml; charset=utf-8" also matches xml
|
2017-02-13 02:06:54 +00:00
|
|
|
return host.DeserializeXml;
|
2016-11-11 19:55:12 +00:00
|
|
|
|
|
|
|
case "application/json":
|
|
|
|
case "text/json":
|
2017-02-13 02:06:54 +00:00
|
|
|
return host.DeserializeJson;
|
2016-11-11 19:55:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-02-13 02:06:54 +00:00
|
|
|
public static Action<object, Stream> GetResponseWriter(HttpListenerHost host, string contentType)
|
2016-11-11 19:55:12 +00:00
|
|
|
{
|
2017-02-13 01:07:48 +00:00
|
|
|
switch (GetContentTypeWithoutEncoding(contentType))
|
2016-11-11 19:55:12 +00:00
|
|
|
{
|
|
|
|
case "application/xml":
|
|
|
|
case "text/xml":
|
|
|
|
case "text/xml; charset=utf-8": //"text/xml; charset=utf-8" also matches xml
|
2017-02-13 02:06:54 +00:00
|
|
|
return host.SerializeToXml;
|
2016-11-11 19:55:12 +00:00
|
|
|
|
|
|
|
case "application/json":
|
|
|
|
case "text/json":
|
2017-02-13 02:06:54 +00:00
|
|
|
return host.SerializeToJson;
|
2016-11-11 19:55:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-02-13 01:07:48 +00:00
|
|
|
private static string GetContentTypeWithoutEncoding(string contentType)
|
2016-11-11 19:55:12 +00:00
|
|
|
{
|
|
|
|
return contentType == null
|
|
|
|
? null
|
|
|
|
: contentType.Split(';')[0].ToLower().Trim();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|