2018-12-27 23:27:57 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2019-02-26 20:27:02 +00:00
|
|
|
using System.Threading.Tasks;
|
2018-12-27 23:27:57 +00:00
|
|
|
using MediaBrowser.Model.Events;
|
2019-01-13 19:25:32 +00:00
|
|
|
using MediaBrowser.Model.Services;
|
2019-02-26 20:27:02 +00:00
|
|
|
using Microsoft.AspNetCore.Http;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Interface IHttpServer
|
|
|
|
/// </summary>
|
|
|
|
public interface IHttpServer : IDisposable
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the URL prefix.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The URL prefix.</value>
|
|
|
|
string[] UrlPrefixes { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Occurs when [web socket connected].
|
|
|
|
/// </summary>
|
|
|
|
event EventHandler<GenericEventArgs<IWebSocketConnection>> WebSocketConnected;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Inits this instance.
|
|
|
|
/// </summary>
|
2019-03-07 21:49:41 +00:00
|
|
|
void Init(IEnumerable<IService> services, IEnumerable<IWebSocketListener> listener, IEnumerable<string> urlPrefixes);
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// If set, all requests will respond with this message
|
|
|
|
/// </summary>
|
|
|
|
string GlobalResponse { get; set; }
|
2019-02-26 20:27:02 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The HTTP request handler
|
|
|
|
/// </summary>
|
2019-12-17 22:15:02 +00:00
|
|
|
/// <param name="context"></param>
|
2019-02-26 20:27:02 +00:00
|
|
|
/// <returns></returns>
|
2019-12-17 22:15:02 +00:00
|
|
|
Task RequestHandler(HttpContext context);
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|