2015-01-17 04:29:53 +00:00
|
|
|
|
using MediaBrowser.Common;
|
2013-03-07 05:34:00 +00:00
|
|
|
|
using MediaBrowser.Model.System;
|
2014-04-26 02:55:07 +00:00
|
|
|
|
using System;
|
2015-12-29 03:39:38 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Net;
|
2016-06-19 06:18:29 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2016-10-26 01:57:58 +00:00
|
|
|
|
using MediaBrowser.Model.Net;
|
2013-03-07 05:34:00 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller
|
|
|
|
|
{
|
2013-04-19 20:27:02 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface IServerApplicationHost
|
|
|
|
|
/// </summary>
|
2013-03-07 05:34:00 +00:00
|
|
|
|
public interface IServerApplicationHost : IApplicationHost
|
|
|
|
|
{
|
2014-04-26 02:55:07 +00:00
|
|
|
|
event EventHandler HasUpdateAvailableChanged;
|
2016-04-24 03:03:49 +00:00
|
|
|
|
|
2013-04-19 20:27:02 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the system info.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>SystemInfo.</returns>
|
2016-06-19 16:53:43 +00:00
|
|
|
|
Task<SystemInfo> GetSystemInfo();
|
2013-06-03 18:15:35 +00:00
|
|
|
|
|
2014-01-06 01:59:21 +00: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; }
|
2015-10-03 18:13:53 +00:00
|
|
|
|
|
2014-03-17 04:25:11 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the HTTP server port.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The HTTP server port.</value>
|
2015-01-19 04:29:57 +00: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-26 02:55:07 +00: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 22:01:29 +00:00
|
|
|
|
|
2014-08-05 23:59:24 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name of the friendly.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name of the friendly.</value>
|
|
|
|
|
string FriendlyName { get; }
|
2014-09-17 03:04:10 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2015-01-24 19:03:55 +00:00
|
|
|
|
/// Gets the local ip address.
|
2014-09-17 03:04:10 +00:00
|
|
|
|
/// </summary>
|
2015-01-24 19:03:55 +00:00
|
|
|
|
/// <value>The local ip address.</value>
|
2016-10-26 01:57:58 +00:00
|
|
|
|
Task<List<IpAddressInfo>> GetLocalIpAddresses();
|
2015-01-24 19:03:55 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the local API URL.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The local API URL.</value>
|
2016-06-19 06:18:29 +00:00
|
|
|
|
Task<string> GetLocalApiUrl();
|
2015-02-10 05:54:58 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the local API URL.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="host">The host.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
string GetLocalApiUrl(string host);
|
2016-03-09 17:40:29 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the local API URL.
|
|
|
|
|
/// </summary>
|
2016-11-08 18:44:23 +00:00
|
|
|
|
string GetLocalApiUrl(IpAddressInfo address);
|
2016-04-24 03:03:49 +00:00
|
|
|
|
|
|
|
|
|
void LaunchUrl(string url);
|
2016-09-03 17:16:36 +00:00
|
|
|
|
|
|
|
|
|
void EnableLoopback(string appName);
|
2013-03-07 05:34:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|