using MediaBrowser.Common.Extensions;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Serialization;
using MediaBrowser.Model.System;
using ServiceStack.ServiceHost;
using System;
using System.IO;
using System.Threading.Tasks;
namespace MediaBrowser.Api
{
///
/// Class GetSystemInfo
///
[Route("/System/Info", "GET")]
[Api(Description = "Gets information about the server")]
public class GetSystemInfo : IReturn
{
}
///
/// Class RestartApplication
///
[Route("/System/Restart", "POST")]
[Api(("Restarts the application, if needed"))]
public class RestartApplication
{
}
[Route("/System/Shutdown", "POST")]
[Api(("Shuts down the application"))]
public class ShutdownApplication
{
}
///
/// Class GetConfiguration
///
[Route("/System/Configuration", "GET")]
[Api(("Gets application configuration"))]
public class GetConfiguration : IReturn
{
}
///
/// Class UpdateConfiguration
///
[Route("/System/Configuration", "POST")]
[Api(("Updates application configuration"))]
public class UpdateConfiguration : ServerConfiguration, IReturnVoid
{
}
///
/// Class SystemInfoService
///
public class SystemService : BaseApiService
{
///
/// The _json serializer
///
private readonly IJsonSerializer _jsonSerializer;
///
/// The _app host
///
private readonly IServerApplicationHost _appHost;
///
/// The _configuration manager
///
private readonly IServerConfigurationManager _configurationManager;
///
/// Initializes a new instance of the class.
///
/// The json serializer.
/// The app host.
/// The configuration manager.
/// jsonSerializer
public SystemService(IJsonSerializer jsonSerializer, IServerApplicationHost appHost, IServerConfigurationManager configurationManager)
: base()
{
if (jsonSerializer == null)
{
throw new ArgumentNullException("jsonSerializer");
}
if (appHost == null)
{
throw new ArgumentNullException("appHost");
}
_appHost = appHost;
_configurationManager = configurationManager;
_jsonSerializer = jsonSerializer;
}
///
/// Gets the specified request.
///
/// The request.
/// System.Object.
public object Get(GetSystemInfo request)
{
var result = _appHost.GetSystemInfo();
return ToOptimizedResult(result);
}
///
/// Gets the specified request.
///
/// The request.
/// System.Object.
public object Get(GetConfiguration request)
{
var dateModified = File.GetLastWriteTimeUtc(_configurationManager.ApplicationPaths.SystemConfigurationFilePath);
var cacheKey = (_configurationManager.ApplicationPaths.SystemConfigurationFilePath + dateModified.Ticks).GetMD5();
return ToOptimizedResultUsingCache(cacheKey, dateModified, null, () => _configurationManager.Configuration);
}
///
/// Posts the specified request.
///
/// The request.
public void Post(RestartApplication request)
{
Task.Run(async () =>
{
await Task.Delay(100).ConfigureAwait(false);
await _appHost.Restart().ConfigureAwait(false);
});
}
///
/// Posts the specified request.
///
/// The request.
public void Post(ShutdownApplication request)
{
Task.Run(async () =>
{
await Task.Delay(100).ConfigureAwait(false);
await _appHost.Shutdown().ConfigureAwait(false);
});
}
///
/// Posts the specified configuraiton.
///
/// The request.
public void Post(UpdateConfiguration request)
{
// Silly, but we need to serialize and deserialize or the XmlSerializer will write the xml with an element name of UpdateConfiguration
var json = _jsonSerializer.SerializeToString(request);
var config = _jsonSerializer.DeserializeFromString(json);
_configurationManager.ReplaceConfiguration(config);
}
}
}