2020-08-22 19:56:24 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:01:16 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
using System.Collections.Generic;
|
2019-07-07 19:03:26 +00:00
|
|
|
using System.Net;
|
2019-01-13 19:25:32 +00:00
|
|
|
using System.Threading;
|
2018-12-27 23:27:57 +00:00
|
|
|
using System.Threading.Tasks;
|
2019-01-13 19:25:32 +00:00
|
|
|
using MediaBrowser.Common;
|
|
|
|
using MediaBrowser.Model.System;
|
2019-11-24 14:27:58 +00:00
|
|
|
using Microsoft.AspNetCore.Http;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Interface IServerApplicationHost.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public interface IServerApplicationHost : IApplicationHost
|
|
|
|
{
|
|
|
|
event EventHandler HasUpdateAvailableChanged;
|
|
|
|
|
2020-08-13 20:10:26 +00:00
|
|
|
IServiceProvider ServiceProvider { get; }
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2020-09-03 09:54:38 +00:00
|
|
|
bool CoreStartupHasCompleted { get; }
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
bool CanLaunchWebBrowser { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the HTTP server port.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The HTTP server port.</value>
|
|
|
|
int HttpPort { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the HTTPS port.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The HTTPS port.</value>
|
|
|
|
int HttpsPort { get; }
|
2019-01-07 23:27:46 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
2020-04-02 21:45:04 +00:00
|
|
|
/// Gets a value indicating whether the server should listen on an HTTPS port.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
2020-04-02 21:45:04 +00:00
|
|
|
bool ListenWithHttps { get; }
|
2018-12-27 23:27:57 +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; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the name of the friendly.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name of the friendly.</value>
|
|
|
|
string FriendlyName { get; }
|
|
|
|
|
2020-08-13 20:10:26 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the system info.
|
|
|
|
/// </summary>
|
2020-09-12 15:41:37 +00:00
|
|
|
/// <param name="source">The originator of the request.</param>
|
2020-08-13 20:10:26 +00:00
|
|
|
/// <returns>SystemInfo.</returns>
|
2020-09-12 15:41:37 +00:00
|
|
|
SystemInfo GetSystemInfo(IPAddress source);
|
2020-08-13 20:10:26 +00:00
|
|
|
|
2020-09-12 15:41:37 +00:00
|
|
|
PublicSystemInfo GetPublicSystemInfo(IPAddress address);
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2020-04-17 01:46:49 +00:00
|
|
|
/// Gets a local (LAN) URL that can be used to access the API. The hostname used is the first valid configured
|
2020-09-12 15:41:37 +00:00
|
|
|
/// HTTPS will be preferred when available.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
2020-09-12 15:41:37 +00:00
|
|
|
/// <param name="source">The source of the request.</param>
|
2020-04-17 01:46:49 +00:00
|
|
|
/// <returns>The server URL.</returns>
|
2020-09-12 15:41:37 +00:00
|
|
|
string GetSmartApiUrl(object source);
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2020-09-12 15:41:37 +00:00
|
|
|
/// Gets a localhost URL that can be used to access the API using the loop-back IP address.
|
2020-05-10 18:36:11 +00:00
|
|
|
/// over HTTP (not HTTPS).
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
2020-04-17 01:46:49 +00:00
|
|
|
/// <returns>The API URL.</returns>
|
2020-05-10 22:07:56 +00:00
|
|
|
string GetLoopbackHttpApiUrl();
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2020-05-10 18:36:11 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets a local (LAN) URL that can be used to access the API.
|
2020-05-13 13:46:29 +00:00
|
|
|
/// Note: if passing non-null scheme or port it is up to the caller to ensure they form the correct pair.
|
2020-05-10 18:36:11 +00:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="hostname">The hostname to use in the URL.</param>
|
|
|
|
/// <param name="scheme">
|
|
|
|
/// The scheme to use for the URL. If null, the scheme will be selected automatically,
|
|
|
|
/// preferring HTTPS, if available.
|
|
|
|
/// </param>
|
|
|
|
/// <param name="port">
|
|
|
|
/// The port to use for the URL. If null, the port will be selected automatically,
|
|
|
|
/// preferring the HTTPS port, if available.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The API URL.</returns>
|
2020-09-12 15:41:37 +00:00
|
|
|
string GetLocalApiUrl(string hostname, string scheme = null, int? port = null);
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2020-03-15 12:14:57 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Open a URL in an external browser window.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="url">The URL to open.</param>
|
|
|
|
/// <exception cref="NotSupportedException"><see cref="CanLaunchWebBrowser"/> is false.</exception>
|
2018-12-27 23:27:57 +00:00
|
|
|
void LaunchUrl(string url);
|
|
|
|
|
2019-08-09 21:16:24 +00:00
|
|
|
IEnumerable<WakeOnLanInfo> GetWakeOnLanInfo();
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
string ExpandVirtualPath(string path);
|
2019-11-24 14:27:58 +00:00
|
|
|
|
2020-09-03 09:32:22 +00:00
|
|
|
string ReverseVirtualPath(string path);
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|