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;
|
2020-05-08 03:36:50 +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>
|
2020-05-01 23:30:04 +00:00
|
|
|
/// Interface IHttpServer.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
2020-05-01 23:30:04 +00:00
|
|
|
public interface IHttpServer
|
2018-12-27 23:27:57 +00:00
|
|
|
{
|
|
|
|
/// <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>
|
2020-03-21 22:17:30 +00:00
|
|
|
void Init(IEnumerable<Type> serviceTypes, 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);
|
2020-05-08 03:36:50 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Get the default CORS headers
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="req"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
IDictionary<string, string> GetCorsHeaders(IRequest req);
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|