2019-01-13 20:01:16 +00:00
|
|
|
using System;
|
2014-07-04 02:22:57 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
2019-01-13 19:24:58 +00:00
|
|
|
using System.Threading;
|
2013-02-21 01:33:05 +00:00
|
|
|
using System.Threading.Tasks;
|
2019-01-13 19:24:58 +00:00
|
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
using MediaBrowser.Common.Net;
|
|
|
|
using MediaBrowser.Controller;
|
|
|
|
using MediaBrowser.Controller.Net;
|
2016-10-25 19:02:04 +00:00
|
|
|
using MediaBrowser.Model.IO;
|
2016-01-09 21:27:30 +00:00
|
|
|
using MediaBrowser.Model.Net;
|
2016-10-25 19:02:04 +00:00
|
|
|
using MediaBrowser.Model.Services;
|
2019-01-13 19:24:58 +00:00
|
|
|
using MediaBrowser.Model.System;
|
2019-01-01 20:34:12 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2014-08-10 22:13:17 +00:00
|
|
|
namespace MediaBrowser.Api.System
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2013-02-24 21:53:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Class GetSystemInfo
|
|
|
|
/// </summary>
|
2014-03-23 19:36:25 +00:00
|
|
|
[Route("/System/Info", "GET", Summary = "Gets information about the server")]
|
2016-06-23 17:04:18 +00:00
|
|
|
[Authenticated(EscapeParentalControl = true, AllowBeforeStartupWizard = true)]
|
2013-02-21 01:33:05 +00:00
|
|
|
public class GetSystemInfo : IReturn<SystemInfo>
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-07-27 22:01:29 +00:00
|
|
|
[Route("/System/Info/Public", "GET", Summary = "Gets public information about the server")]
|
|
|
|
public class GetPublicSystemInfo : IReturn<PublicSystemInfo>
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-01-02 23:45:21 +00:00
|
|
|
[Route("/System/Ping", "POST")]
|
2018-09-12 17:26:21 +00:00
|
|
|
[Route("/System/Ping", "GET")]
|
2016-01-02 23:45:21 +00:00
|
|
|
public class PingSystem : IReturnVoid
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Class RestartApplication
|
|
|
|
/// </summary>
|
2014-03-23 19:36:25 +00:00
|
|
|
[Route("/System/Restart", "POST", Summary = "Restarts the application, if needed")]
|
2017-09-03 18:38:26 +00:00
|
|
|
[Authenticated(Roles = "Admin", AllowLocal = true)]
|
2013-02-21 01:33:05 +00:00
|
|
|
public class RestartApplication
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-08-25 03:54:45 +00:00
|
|
|
/// <summary>
|
|
|
|
/// This is currently not authenticated because the uninstaller needs to be able to shutdown the server.
|
|
|
|
/// </summary>
|
2014-03-23 19:36:25 +00:00
|
|
|
[Route("/System/Shutdown", "POST", Summary = "Shuts down the application")]
|
2017-09-03 18:38:26 +00:00
|
|
|
[Authenticated(Roles = "Admin", AllowLocal = true)]
|
2013-02-26 16:10:55 +00:00
|
|
|
public class ShutdownApplication
|
|
|
|
{
|
|
|
|
}
|
2014-03-23 19:36:25 +00:00
|
|
|
|
2014-07-04 02:22:57 +00:00
|
|
|
[Route("/System/Logs", "GET", Summary = "Gets a list of available server log files")]
|
2014-11-15 02:31:03 +00:00
|
|
|
[Authenticated(Roles = "Admin")]
|
2017-08-19 19:43:35 +00:00
|
|
|
public class GetServerLogs : IReturn<LogFile[]>
|
2014-07-04 02:22:57 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-08-19 22:28:35 +00:00
|
|
|
[Route("/System/Endpoint", "GET", Summary = "Gets information about the request endpoint")]
|
|
|
|
[Authenticated]
|
2016-01-09 21:27:30 +00:00
|
|
|
public class GetEndpointInfo : IReturn<EndPointInfo>
|
2014-08-19 22:28:35 +00:00
|
|
|
{
|
|
|
|
public string Endpoint { get; set; }
|
|
|
|
}
|
|
|
|
|
2014-07-04 02:22:57 +00:00
|
|
|
[Route("/System/Logs/Log", "GET", Summary = "Gets a log file")]
|
2014-11-15 02:31:03 +00:00
|
|
|
[Authenticated(Roles = "Admin")]
|
2014-07-04 02:22:57 +00:00
|
|
|
public class GetLogFile
|
|
|
|
{
|
|
|
|
[ApiMember(Name = "Name", Description = "The log file name.", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "GET", AllowMultiple = true)]
|
|
|
|
public string Name { get; set; }
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
[Route("/System/WakeOnLanInfo", "GET", Summary = "Gets wake on lan information")]
|
|
|
|
[Authenticated]
|
|
|
|
public class GetWakeOnLanInfo : IReturn<WakeOnLanInfo[]>
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Class SystemInfoService
|
|
|
|
/// </summary>
|
2013-03-16 05:52:33 +00:00
|
|
|
public class SystemService : BaseApiService
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2013-02-26 16:10:55 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The _app host
|
|
|
|
/// </summary>
|
2013-03-07 05:34:00 +00:00
|
|
|
private readonly IServerApplicationHost _appHost;
|
2014-07-04 02:22:57 +00:00
|
|
|
private readonly IApplicationPaths _appPaths;
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2013-10-31 14:03:23 +00:00
|
|
|
|
2014-08-19 22:28:35 +00:00
|
|
|
private readonly INetworkManager _network;
|
|
|
|
|
2013-02-24 21:53:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="SystemService" /> class.
|
|
|
|
/// </summary>
|
2013-02-26 16:10:55 +00:00
|
|
|
/// <param name="appHost">The app host.</param>
|
2014-08-05 23:59:24 +00:00
|
|
|
/// <param name="appPaths">The application paths.</param>
|
|
|
|
/// <param name="fileSystem">The file system.</param>
|
2014-08-10 22:13:17 +00:00
|
|
|
/// <exception cref="ArgumentNullException">jsonSerializer</exception>
|
2019-01-04 21:42:56 +00:00
|
|
|
public SystemService(IServerApplicationHost appHost, IApplicationPaths appPaths, IFileSystem fileSystem, INetworkManager network)
|
2013-02-24 21:53:54 +00:00
|
|
|
{
|
2013-02-26 16:10:55 +00:00
|
|
|
_appHost = appHost;
|
2014-07-04 02:22:57 +00:00
|
|
|
_appPaths = appPaths;
|
|
|
|
_fileSystem = fileSystem;
|
2014-08-19 22:28:35 +00:00
|
|
|
_network = network;
|
2014-08-31 19:15:33 +00:00
|
|
|
}
|
|
|
|
|
2016-01-02 23:45:21 +00:00
|
|
|
public object Post(PingSystem request)
|
|
|
|
{
|
|
|
|
return _appHost.Name;
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
public object Get(GetWakeOnLanInfo request)
|
|
|
|
{
|
|
|
|
var result = _appHost.GetWakeOnLanInfo();
|
|
|
|
|
|
|
|
return ToOptimizedResult(result);
|
|
|
|
}
|
|
|
|
|
2014-07-04 02:22:57 +00:00
|
|
|
public object Get(GetServerLogs request)
|
|
|
|
{
|
2017-08-09 19:56:38 +00:00
|
|
|
IEnumerable<FileSystemMetadata> files;
|
2014-07-04 02:22:57 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2019-01-01 20:34:12 +00:00
|
|
|
files = _fileSystem.GetFiles(_appPaths.LogDirectoryPath, new[] { ".txt", ".log" }, true, false);
|
2014-07-04 02:22:57 +00:00
|
|
|
}
|
2019-01-01 20:34:12 +00:00
|
|
|
catch (IOException ex)
|
2014-07-04 02:22:57 +00:00
|
|
|
{
|
2019-01-01 20:34:12 +00:00
|
|
|
Logger.LogError(ex, "Error getting logs");
|
|
|
|
files = Enumerable.Empty<FileSystemMetadata>();
|
2014-07-04 02:22:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var result = files.Select(i => new LogFile
|
|
|
|
{
|
|
|
|
DateCreated = _fileSystem.GetCreationTimeUtc(i),
|
|
|
|
DateModified = _fileSystem.GetLastWriteTimeUtc(i),
|
|
|
|
Name = i.Name,
|
|
|
|
Size = i.Length
|
|
|
|
|
|
|
|
}).OrderByDescending(i => i.DateModified)
|
|
|
|
.ThenByDescending(i => i.DateCreated)
|
|
|
|
.ThenBy(i => i.Name)
|
2017-08-19 19:43:35 +00:00
|
|
|
.ToArray();
|
2014-07-04 02:22:57 +00:00
|
|
|
|
|
|
|
return ToOptimizedResult(result);
|
|
|
|
}
|
|
|
|
|
2016-06-19 06:18:29 +00:00
|
|
|
public Task<object> Get(GetLogFile request)
|
2014-07-04 02:22:57 +00:00
|
|
|
{
|
2016-06-23 17:04:18 +00:00
|
|
|
var file = _fileSystem.GetFiles(_appPaths.LogDirectoryPath)
|
2014-11-05 19:28:41 +00:00
|
|
|
.First(i => string.Equals(i.Name, request.Name, StringComparison.OrdinalIgnoreCase));
|
2014-07-04 02:22:57 +00:00
|
|
|
|
2017-09-04 01:24:20 +00:00
|
|
|
// For older files, assume fully static
|
|
|
|
if (file.LastWriteTimeUtc < DateTime.UtcNow.AddHours(-1))
|
|
|
|
{
|
|
|
|
return ResultFactory.GetStaticFileResult(Request, file.FullName, FileShareMode.Read);
|
|
|
|
}
|
|
|
|
|
2016-10-25 19:02:04 +00:00
|
|
|
return ResultFactory.GetStaticFileResult(Request, file.FullName, FileShareMode.ReadWrite);
|
2013-02-24 21:53:54 +00:00
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the specified request.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request">The request.</param>
|
|
|
|
/// <returns>System.Object.</returns>
|
2016-06-19 16:53:43 +00:00
|
|
|
public async Task<object> Get(GetSystemInfo request)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2017-11-23 15:46:16 +00:00
|
|
|
var result = await _appHost.GetSystemInfo(CancellationToken.None).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
return ToOptimizedResult(result);
|
|
|
|
}
|
|
|
|
|
2016-06-19 16:53:43 +00:00
|
|
|
public async Task<object> Get(GetPublicSystemInfo request)
|
2014-07-27 22:01:29 +00:00
|
|
|
{
|
2017-12-01 17:03:40 +00:00
|
|
|
var result = await _appHost.GetPublicSystemInfo(CancellationToken.None).ConfigureAwait(false);
|
2014-07-27 22:01:29 +00:00
|
|
|
|
2017-12-01 17:03:40 +00:00
|
|
|
return ToOptimizedResult(result);
|
2014-07-27 22:01:29 +00:00
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Posts the specified request.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request">The request.</param>
|
|
|
|
public void Post(RestartApplication request)
|
|
|
|
{
|
2017-09-09 18:51:24 +00:00
|
|
|
_appHost.Restart();
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2013-02-26 16:10:55 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Posts the specified request.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request">The request.</param>
|
|
|
|
public void Post(ShutdownApplication request)
|
|
|
|
{
|
|
|
|
Task.Run(async () =>
|
|
|
|
{
|
2013-09-20 17:32:10 +00:00
|
|
|
await Task.Delay(100).ConfigureAwait(false);
|
|
|
|
await _appHost.Shutdown().ConfigureAwait(false);
|
2013-02-26 16:10:55 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-08-19 22:28:35 +00:00
|
|
|
public object Get(GetEndpointInfo request)
|
|
|
|
{
|
2016-01-09 21:27:30 +00:00
|
|
|
return ToOptimizedResult(new EndPointInfo
|
2014-08-19 22:28:35 +00:00
|
|
|
{
|
|
|
|
IsLocal = Request.IsLocal,
|
|
|
|
IsInNetwork = _network.IsInLocalNetwork(request.Endpoint ?? Request.RemoteIp)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|