2021-05-06 15:39:20 -07:00
|
|
|
#nullable disable
|
|
|
|
|
2020-08-22 12:56:24 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-07-07 12:03:26 -07:00
|
|
|
using System.Net;
|
2019-01-13 12:25:32 -07:00
|
|
|
using MediaBrowser.Common;
|
2022-06-17 09:01:20 -07:00
|
|
|
using MediaBrowser.Common.Net;
|
2019-01-13 12:25:32 -07:00
|
|
|
using MediaBrowser.Model.System;
|
2020-11-16 10:17:49 -07:00
|
|
|
using Microsoft.AspNetCore.Http;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-06-15 15:37:52 -07:00
|
|
|
/// Interface IServerApplicationHost.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
public interface IServerApplicationHost : IApplicationHost
|
|
|
|
{
|
2020-09-03 02:54:38 -07:00
|
|
|
bool CoreStartupHasCompleted { get; }
|
|
|
|
|
2018-12-27 16:27:57 -07: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 16:27:46 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
2020-04-02 14:45:04 -07:00
|
|
|
/// Gets a value indicating whether the server should listen on an HTTPS port.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
2020-04-02 14:45:04 -07:00
|
|
|
bool ListenWithHttps { get; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the name of the friendly.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name of the friendly.</value>
|
|
|
|
string FriendlyName { get; }
|
|
|
|
|
2020-08-13 13:10:26 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the system info.
|
|
|
|
/// </summary>
|
2021-08-31 13:22:55 -07:00
|
|
|
/// <param name="request">The HTTP request.</param>
|
2020-08-13 13:10:26 -07:00
|
|
|
/// <returns>SystemInfo.</returns>
|
2021-08-31 13:22:55 -07:00
|
|
|
SystemInfo GetSystemInfo(HttpRequest request);
|
2020-08-13 13:10:26 -07:00
|
|
|
|
2021-08-31 13:22:55 -07:00
|
|
|
PublicSystemInfo GetPublicSystemInfo(HttpRequest request);
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
/// <summary>
|
2020-09-14 07:46:38 -07:00
|
|
|
/// Gets a URL specific for the request.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
2020-09-14 07:46:38 -07:00
|
|
|
/// <param name="request">The <see cref="HttpRequest"/> instance.</param>
|
|
|
|
/// <returns>An accessible URL.</returns>
|
2021-11-13 06:37:26 -07:00
|
|
|
string GetSmartApiUrl(HttpRequest request);
|
2020-09-14 07:46:38 -07: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 06:37:26 -07:00
|
|
|
string GetSmartApiUrl(IPAddress remoteAddr);
|
2020-09-14 07:46:38 -07: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 06:37:26 -07:00
|
|
|
string GetSmartApiUrl(string hostname);
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
/// <summary>
|
2021-11-08 02:58:04 -07:00
|
|
|
/// Gets an URL that can be used to access the API over LAN.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
2022-06-17 09:01:20 -07:00
|
|
|
/// <param name="hostname">An optional hostname to use.</param>
|
2021-11-08 02:58:04 -07:00
|
|
|
/// <param name="allowHttps">A value indicating whether to allow HTTPS.</param>
|
2020-04-16 18:46:49 -07:00
|
|
|
/// <returns>The API URL.</returns>
|
2022-06-17 09:01:20 -07:00
|
|
|
string GetApiUrlForLocalAccess(IPObject hostname = null, bool allowHttps = true);
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2020-05-10 11:36:11 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets a local (LAN) URL that can be used to access the API.
|
2020-05-13 06:46:29 -07: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 11:36:11 -07: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 08:41:37 -07:00
|
|
|
string GetLocalApiUrl(string hostname, string scheme = null, int? port = null);
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
string ExpandVirtualPath(string path);
|
2019-11-24 07:27:58 -07:00
|
|
|
|
2020-09-03 02:32:22 -07:00
|
|
|
string ReverseVirtualPath(string path);
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|