2021-05-06 22:39:20 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-08-22 19:56:24 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-07-07 19:03:26 +00:00
|
|
|
using System.Net;
|
2019-01-13 19:25:32 +00:00
|
|
|
using MediaBrowser.Common;
|
2020-11-16 17:17:49 +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
|
|
|
|
{
|
2020-09-03 09:54:38 +00:00
|
|
|
bool CoreStartupHasCompleted { get; }
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <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 the name of the friendly.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name of the friendly.</value>
|
|
|
|
string FriendlyName { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-09-14 14:46:38 +00:00
|
|
|
/// Gets a URL specific for the request.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
2020-09-14 14:46:38 +00:00
|
|
|
/// <param name="request">The <see cref="HttpRequest"/> instance.</param>
|
|
|
|
/// <returns>An accessible URL.</returns>
|
2021-11-13 13:37:26 +00:00
|
|
|
string GetSmartApiUrl(HttpRequest request);
|
2020-09-14 14:46:38 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets a URL specific for the request.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="remoteAddr">The remote <see cref="IPAddress"/> of the connection.</param>
|
|
|
|
/// <returns>An accessible URL.</returns>
|
2021-11-13 13:37:26 +00:00
|
|
|
string GetSmartApiUrl(IPAddress remoteAddr);
|
2020-09-14 14:46:38 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets a URL specific for the request.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="hostname">The hostname used in the connection.</param>
|
|
|
|
/// <returns>An accessible URL.</returns>
|
2021-11-13 13:37:26 +00:00
|
|
|
string GetSmartApiUrl(string hostname);
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2021-11-08 09:58:04 +00:00
|
|
|
/// Gets an URL that can be used to access the API over LAN.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
2022-07-19 19:28:04 +00:00
|
|
|
/// <param name="ipAddress">An optional IP address to use.</param>
|
2021-11-08 09:58:04 +00:00
|
|
|
/// <param name="allowHttps">A value indicating whether to allow HTTPS.</param>
|
2020-04-17 01:46:49 +00:00
|
|
|
/// <returns>The API URL.</returns>
|
2022-07-19 19:28:04 +00:00
|
|
|
string GetApiUrlForLocalAccess(IPAddress ipAddress = null, bool allowHttps = true);
|
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
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|