2015-01-16 21:29:53 -07:00
|
|
|
|
using MediaBrowser.Common;
|
2013-03-06 22:34:00 -07:00
|
|
|
|
using MediaBrowser.Model.System;
|
2014-04-25 19:55:07 -07:00
|
|
|
|
using System;
|
2013-03-06 22:34:00 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller
|
|
|
|
|
{
|
2013-04-19 13:27:02 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface IServerApplicationHost
|
|
|
|
|
/// </summary>
|
2013-03-06 22:34:00 -07:00
|
|
|
|
public interface IServerApplicationHost : IApplicationHost
|
|
|
|
|
{
|
2014-04-25 19:55:07 -07:00
|
|
|
|
event EventHandler HasUpdateAvailableChanged;
|
|
|
|
|
|
2013-04-19 13:27:02 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the system info.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>SystemInfo.</returns>
|
2013-03-06 22:34:00 -07:00
|
|
|
|
SystemInfo GetSystemInfo();
|
2013-06-03 11:15:35 -07:00
|
|
|
|
|
2014-01-05 18:59:21 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets 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>
|
|
|
|
|
bool SupportsAutoRunAtStartup { get; }
|
2014-03-16 21:25:11 -07:00
|
|
|
|
|
2015-10-03 11:13:53 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether [supports library monitor].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [supports library monitor]; otherwise, <c>false</c>.</value>
|
|
|
|
|
bool SupportsLibraryMonitor { get; }
|
|
|
|
|
|
2014-03-16 21:25:11 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the HTTP server port.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The HTTP server port.</value>
|
2015-01-18 21:29:57 -07:00
|
|
|
|
int HttpPort { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the HTTPS port.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The HTTPS port.</value>
|
|
|
|
|
int HttpsPort { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether [supports HTTPS].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [supports HTTPS]; otherwise, <c>false</c>.</value>
|
|
|
|
|
bool EnableHttps { get; }
|
2014-04-25 19:55:07 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets 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>
|
|
|
|
|
bool HasUpdateAvailable { get; }
|
2014-07-27 15:01:29 -07:00
|
|
|
|
|
2014-08-05 16:59:24 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name of the friendly.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name of the friendly.</value>
|
|
|
|
|
string FriendlyName { get; }
|
2014-09-16 20:04:10 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2015-01-24 12:03:55 -07:00
|
|
|
|
/// Gets the local ip address.
|
2014-09-16 20:04:10 -07:00
|
|
|
|
/// </summary>
|
2015-01-24 12:03:55 -07:00
|
|
|
|
/// <value>The local ip address.</value>
|
|
|
|
|
string LocalIpAddress { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the local API URL.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The local API URL.</value>
|
|
|
|
|
string LocalApiUrl { get; }
|
2015-02-09 22:54:58 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the local API URL.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="host">The host.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
string GetLocalApiUrl(string host);
|
2013-03-06 22:34:00 -07:00
|
|
|
|
}
|
|
|
|
|
}
|