2013-02-20 18:33:05 -07:00
|
|
|
|
using MediaBrowser.Model.Updates;
|
2013-09-19 17:53:18 -07:00
|
|
|
|
using System.Collections.Generic;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.System
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class SystemInfo
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class SystemInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the version.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The version.</value>
|
|
|
|
|
public string Version { get; set; }
|
|
|
|
|
|
2013-09-30 08:15:47 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the operating sytem.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The operating sytem.</value>
|
|
|
|
|
public string OperatingSystem { get; set; }
|
|
|
|
|
|
2013-08-16 07:18:09 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the mac address.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The mac address.</value>
|
|
|
|
|
public string MacAddress { get; set; }
|
|
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether this instance has pending restart.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance has pending restart; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool HasPendingRestart { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether this instance is network deployed.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance is network deployed; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool IsNetworkDeployed { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the in progress installations.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The in progress installations.</value>
|
2013-09-19 17:53:18 -07:00
|
|
|
|
public List<InstallationInfo> InProgressInstallations { get; set; }
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the web socket port number.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The web socket port number.</value>
|
|
|
|
|
public int WebSocketPortNumber { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the completed installations.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The completed installations.</value>
|
2013-09-19 17:53:18 -07:00
|
|
|
|
public List<InstallationInfo> CompletedInstallations { get; set; }
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether [supports native web socket].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [supports native web socket]; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool SupportsNativeWebSocket { get; set; }
|
|
|
|
|
|
2013-10-07 07:38:31 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether this instance can self restart.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance can self restart; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool CanSelfRestart { get; set; }
|
2013-10-07 09:22:19 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether this instance can self update.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance can self update; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool CanSelfUpdate { get; set; }
|
|
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets plugin assemblies that failed to load.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The failed assembly loads.</value>
|
2013-09-19 17:53:18 -07:00
|
|
|
|
public List<string> FailedPluginAssemblies { get; set; }
|
2013-03-14 21:23:07 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the id.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The id.</value>
|
2013-04-13 11:02:30 -07:00
|
|
|
|
public string Id { get; set; }
|
2013-04-20 18:17:59 -07:00
|
|
|
|
|
2013-06-01 20:17:10 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the program data path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The program data path.</value>
|
|
|
|
|
public string ProgramDataPath { get; set; }
|
2013-09-07 08:58:47 -07:00
|
|
|
|
|
2013-11-30 11:32:39 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the items by name path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The items by name path.</value>
|
|
|
|
|
public string ItemsByNamePath { get; set; }
|
|
|
|
|
|
2013-12-14 18:17:57 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the cache path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The cache path.</value>
|
|
|
|
|
public string CachePath { get; set; }
|
|
|
|
|
|
2013-11-30 11:32:39 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the log path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The log path.</value>
|
|
|
|
|
public string LogPath { get; set; }
|
|
|
|
|
|
2013-09-07 08:58:47 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the HTTP server port number.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The HTTP server port number.</value>
|
|
|
|
|
public int HttpServerPortNumber { get; set; }
|
|
|
|
|
|
2013-12-08 12:39:39 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the wan address.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The wan address.</value>
|
|
|
|
|
public string WanAddress { get; set; }
|
|
|
|
|
|
2014-01-04 23:50:48 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether this instance has update available.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance has update available; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool HasUpdateAvailable { get; set; }
|
|
|
|
|
|
2014-01-05 18:59:21 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether [supports automatic run at startup].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [supports automatic run at startup]; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool SupportsAutoRunAtStartup { get; set; }
|
|
|
|
|
|
2013-09-20 10:32:10 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="SystemInfo" /> class.
|
2013-04-20 18:17:59 -07:00
|
|
|
|
/// </summary>
|
|
|
|
|
public SystemInfo()
|
|
|
|
|
{
|
2013-09-19 17:53:18 -07:00
|
|
|
|
InProgressInstallations = new List<InstallationInfo>();
|
2013-04-20 18:17:59 -07:00
|
|
|
|
|
2013-09-19 17:53:18 -07:00
|
|
|
|
CompletedInstallations = new List<InstallationInfo>();
|
2013-04-20 18:17:59 -07:00
|
|
|
|
|
2013-09-19 17:53:18 -07:00
|
|
|
|
FailedPluginAssemblies = new List<string>();
|
2013-04-20 18:17:59 -07:00
|
|
|
|
}
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
}
|