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