#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using System.Net;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Common;
using MediaBrowser.Common.Plugins;
using MediaBrowser.Model.System;
namespace MediaBrowser.Controller
{
///
/// Interface IServerApplicationHost.
///
public interface IServerApplicationHost : IApplicationHost
{
event EventHandler HasUpdateAvailableChanged;
IServiceProvider ServiceProvider { get; }
bool CoreStartupHasCompleted { get; }
bool CanLaunchWebBrowser { get; }
///
/// Gets the HTTP server port.
///
/// The HTTP server port.
int HttpPort { get; }
///
/// Gets the HTTPS port.
///
/// The HTTPS port.
int HttpsPort { get; }
///
/// Gets a value indicating whether the server should listen on an HTTPS port.
///
bool ListenWithHttps { get; }
///
/// Gets a value indicating whether this instance has update available.
///
/// true if this instance has update available; otherwise, false.
bool HasUpdateAvailable { get; }
///
/// Gets the name of the friendly.
///
/// The name of the friendly.
string FriendlyName { get; }
///
/// Gets the system info.
///
/// A cancellation token that can be used to cancel the task.
/// SystemInfo.
Task GetSystemInfo(CancellationToken cancellationToken = default);
Task GetPublicSystemInfo(CancellationToken cancellationToken = default);
///
/// Gets all the local IP addresses of this API instance. Each address is validated by sending a 'ping' request
/// to the API that should exist at the address.
///
/// A cancellation token that can be used to cancel the task.
/// A list containing all the local IP addresses of the server.
Task> GetLocalIpAddresses(CancellationToken cancellationToken = default);
///
/// Gets a local (LAN) URL that can be used to access the API. The hostname used is the first valid configured
/// IP address that can be found via . HTTPS will be preferred when available.
///
/// A cancellation token that can be used to cancel the task.
/// The server URL.
Task GetLocalApiUrl(CancellationToken cancellationToken = default);
///
/// Gets a localhost URL that can be used to access the API using the loop-back IP address (127.0.0.1)
/// over HTTP (not HTTPS).
///
/// The API URL.
string GetLoopbackHttpApiUrl();
///
/// Gets a local (LAN) URL that can be used to access the API. HTTPS will be preferred when available.
///
/// The IP address to use as the hostname in the URL.
/// The API URL.
string GetLocalApiUrl(IPAddress address);
///
/// Gets a local (LAN) URL that can be used to access the API.
/// Note: if passing non-null scheme or port it is up to the caller to ensure they form the correct pair.
///
/// The hostname to use in the URL.
///
/// The scheme to use for the URL. If null, the scheme will be selected automatically,
/// preferring HTTPS, if available.
///
///
/// The port to use for the URL. If null, the port will be selected automatically,
/// preferring the HTTPS port, if available.
///
/// The API URL.
string GetLocalApiUrl(ReadOnlySpan hostname, string scheme = null, int? port = null);
///
/// Open a URL in an external browser window.
///
/// The URL to open.
/// is false.
void LaunchUrl(string url);
IEnumerable GetWakeOnLanInfo();
string ExpandVirtualPath(string path);
string ReverseVirtualPath(string path);
///
/// Gets the list of local plugins.
///
/// Plugin base directory.
/// Cleanup old plugins.
/// Enumerable of local plugins.
IEnumerable GetLocalPlugins(string path, bool cleanup = true);
}
}