jellyfin/MediaBrowser.Api/SystemService.cs

135 lines
3.8 KiB
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using MediaBrowser.Common.Extensions;
using MediaBrowser.Controller;
using MediaBrowser.Model.Configuration;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Model.Serialization;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.System;
using MediaBrowser.Networking.HttpServer;
2013-02-21 02:33:05 +01:00
using ServiceStack.ServiceHost;
2013-02-24 22:53:54 +01:00
using System;
2013-02-21 02:33:05 +01:00
using System.IO;
using System.Threading.Tasks;
namespace MediaBrowser.Api
{
2013-02-24 22:53:54 +01:00
/// <summary>
/// Class GetSystemInfo
/// </summary>
2013-02-21 02:33:05 +01:00
[Route("/System/Info", "GET")]
public class GetSystemInfo : IReturn<SystemInfo>
{
}
/// <summary>
/// Class RestartApplication
/// </summary>
[Route("/System/Restart", "POST")]
[ServiceStack.ServiceHost.Api(("Restarts the application, if needed"))]
public class RestartApplication
{
}
/// <summary>
/// Class GetConfiguration
/// </summary>
[Route("/System/Configuration", "GET")]
public class GetConfiguration : IReturn<ServerConfiguration>
{
}
/// <summary>
/// Class UpdateConfiguration
/// </summary>
[Route("/System/Configuration", "POST")]
public class UpdateConfiguration : IRequiresRequestStream
{
2013-02-24 22:53:54 +01:00
/// <summary>
/// The raw Http Request Input Stream
/// </summary>
/// <value>The request stream.</value>
2013-02-21 02:33:05 +01:00
public Stream RequestStream { get; set; }
}
/// <summary>
/// Class SystemInfoService
/// </summary>
public class SystemService : BaseRestService
{
2013-02-24 22:53:54 +01:00
/// <summary>
/// The _json serializer
/// </summary>
private readonly IJsonSerializer _jsonSerializer;
/// <summary>
/// Initializes a new instance of the <see cref="SystemService" /> class.
/// </summary>
/// <param name="jsonSerializer">The json serializer.</param>
/// <exception cref="System.ArgumentNullException">jsonSerializer</exception>
public SystemService(IJsonSerializer jsonSerializer)
: base()
{
if (jsonSerializer == null)
{
throw new ArgumentNullException("jsonSerializer");
}
_jsonSerializer = jsonSerializer;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>System.Object.</returns>
public object Get(GetSystemInfo request)
{
var result = Kernel.GetSystemInfo();
return ToOptimizedResult(result);
}
/// <summary>
/// Gets the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>System.Object.</returns>
public object Get(GetConfiguration request)
{
var kernel = (Kernel)Kernel;
var dateModified = File.GetLastWriteTimeUtc(Kernel.ApplicationPaths.SystemConfigurationFilePath);
var cacheKey = (Kernel.ApplicationPaths.SystemConfigurationFilePath + dateModified.Ticks).GetMD5();
return ToOptimizedResultUsingCache(cacheKey, dateModified, null, () => kernel.Configuration);
}
/// <summary>
/// Posts the specified request.
/// </summary>
/// <param name="request">The request.</param>
public void Post(RestartApplication request)
{
Task.Run(async () =>
{
await Task.Delay(100);
Kernel.PerformPendingRestart();
});
}
/// <summary>
/// Posts the specified configuraiton.
/// </summary>
/// <param name="request">The request.</param>
public void Post(UpdateConfiguration request)
{
2013-02-24 22:53:54 +01:00
var serverConfig = _jsonSerializer.DeserializeFromStream<ServerConfiguration>(request.RequestStream);
2013-02-21 02:33:05 +01:00
var kernel = (Kernel)Kernel;
kernel.UpdateConfiguration(serverConfig);
}
}
}