Lidarr/src/Lidarr.Http/Extensions/ReqResExtensions.cs

64 lines
2.1 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.IO;
using Nancy;
2019-09-12 20:32:51 +00:00
using Nancy.Configuration;
using Nancy.Responses;
using NzbDrone.Common.EnvironmentInfo;
2013-05-12 15:18:17 +00:00
using NzbDrone.Common.Serializer;
2017-09-04 02:20:56 +00:00
namespace Lidarr.Http.Extensions
{
public static class ReqResExtensions
{
2013-05-13 02:52:55 +00:00
private static readonly NancyJsonSerializer NancySerializer = new NancyJsonSerializer();
public static readonly string LastModified = BuildInfo.BuildDateTime.ToString("r");
public static T FromJson<T>(this Stream body) where T : class, new()
{
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)
{
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);
}
2019-09-12 20:32:51 +00:00
public static JsonResponse<TModel> AsResponse<TModel>(this TModel model, NancyContext context, HttpStatusCode statusCode = HttpStatusCode.OK)
{
2019-09-12 20:32:51 +00:00
var response = new JsonResponse<TModel>(model, NancySerializer, context.Environment) { StatusCode = statusCode };
2013-07-25 21:57:11 +00:00
response.Headers.DisableCache();
return response;
}
public static IDictionary<string, string> DisableCache(this IDictionary<string, string> headers)
{
headers["Cache-Control"] = "no-cache, no-store, must-revalidate, max-age=0";
2013-07-25 21:57:11 +00:00
headers["Pragma"] = "no-cache";
headers["Expires"] = "0";
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"] = LastModified;
2013-07-25 21:57:11 +00:00
headers["Age"] = "193266";
return headers;
}
}
}