2013-04-27 02:03:34 +00:00
|
|
|
|
using System;
|
2013-06-28 19:19:40 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-04-27 02:03:34 +00:00
|
|
|
|
using System.IO;
|
2013-01-19 01:27:30 +00:00
|
|
|
|
using Nancy;
|
|
|
|
|
using Nancy.Responses;
|
2013-05-12 15:18:17 +00:00
|
|
|
|
using NzbDrone.Common.Serializer;
|
2013-01-19 01:27:30 +00:00
|
|
|
|
|
2013-02-23 20:35:26 +00:00
|
|
|
|
namespace NzbDrone.Api.Extensions
|
2013-01-19 01:27:30 +00:00
|
|
|
|
{
|
|
|
|
|
public static class JsonExtensions
|
|
|
|
|
{
|
2013-05-13 02:52:55 +00:00
|
|
|
|
private static readonly NancyJsonSerializer NancySerializer = new NancyJsonSerializer();
|
2013-04-17 00:24:49 +00:00
|
|
|
|
|
|
|
|
|
public static T FromJson<T>(this Stream body) where T : class, new()
|
2013-04-27 02:03:34 +00:00
|
|
|
|
{
|
|
|
|
|
return FromJson<T>(body, typeof(T));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static T FromJson<T>(this Stream body, Type type)
|
2013-05-21 03:20:29 +00:00
|
|
|
|
{
|
|
|
|
|
return (T)FromJson(body, type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static object FromJson(this Stream body, Type type)
|
2013-01-19 01:27:30 +00:00
|
|
|
|
{
|
|
|
|
|
var reader = new StreamReader(body, true);
|
|
|
|
|
body.Position = 0;
|
|
|
|
|
var value = reader.ReadToEnd();
|
2013-05-21 03:20:29 +00:00
|
|
|
|
return Json.Deserialize(value, type);
|
2013-01-19 01:27:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-19 04:46:43 +00:00
|
|
|
|
public static JsonResponse<TModel> AsResponse<TModel>(this TModel model, HttpStatusCode statusCode = HttpStatusCode.OK)
|
2013-01-19 01:27:30 +00:00
|
|
|
|
{
|
2013-07-25 21:57:11 +00:00
|
|
|
|
var response = new JsonResponse<TModel>(model, NancySerializer) { StatusCode = statusCode };
|
|
|
|
|
response.Headers.DisableCache();
|
|
|
|
|
|
|
|
|
|
return response;
|
2013-01-19 01:27:30 +00:00
|
|
|
|
}
|
2013-06-28 19:19:40 +00:00
|
|
|
|
|
|
|
|
|
public static IDictionary<string, string> DisableCache(this IDictionary<string, string> headers)
|
|
|
|
|
{
|
2013-07-25 21:57:11 +00:00
|
|
|
|
headers["Cache-Control"] = "no-cache, no-store, must-revalidate";
|
|
|
|
|
headers["Pragma"] = "no-cache";
|
|
|
|
|
headers["Expires"] = "0";
|
2013-06-28 19:19:40 +00:00
|
|
|
|
|
|
|
|
|
return headers;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static IDictionary<string, string> EnableCache(this IDictionary<string, string> headers)
|
|
|
|
|
{
|
2013-07-25 21:57:11 +00:00
|
|
|
|
headers["Cache-Control"] = "max-age=31536000 , public";
|
|
|
|
|
headers["Expires"] = "Sat, 29 Jun 2020 00:00:00 GMT";
|
|
|
|
|
headers["Last-Modified"] = "Sat, 29 Jun 2000 00:00:00 GMT";
|
|
|
|
|
headers["Age"] = "193266";
|
2013-06-28 19:19:40 +00:00
|
|
|
|
|
|
|
|
|
return headers;
|
|
|
|
|
}
|
2013-01-19 01:27:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|