2018-12-27 16:27:57 -07:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2019-02-26 13:27:02 -07:00
|
|
|
using System.Threading.Tasks;
|
2018-12-27 16:27:57 -07:00
|
|
|
using MediaBrowser.Model.Events;
|
2020-05-07 20:36:50 -07:00
|
|
|
using MediaBrowser.Model.Services;
|
2019-02-26 13:27:02 -07:00
|
|
|
using Microsoft.AspNetCore.Http;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-05-01 16:30:04 -07:00
|
|
|
/// Interface IHttpServer.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
2020-05-01 16:30:04 -07:00
|
|
|
public interface IHttpServer
|
2018-12-27 16:27:57 -07: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 15:17:30 -07:00
|
|
|
void Init(IEnumerable<Type> serviceTypes, IEnumerable<IWebSocketListener> listener, IEnumerable<string> urlPrefixes);
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 15:37:52 -07:00
|
|
|
/// If set, all requests will respond with this message.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
string GlobalResponse { get; set; }
|
2019-02-26 13:27:02 -07:00
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 15:37:52 -07:00
|
|
|
/// The HTTP request handler.
|
2019-02-26 13:27:02 -07:00
|
|
|
/// </summary>
|
2019-12-17 15:15:02 -07:00
|
|
|
/// <param name="context"></param>
|
2019-02-26 13:27:02 -07:00
|
|
|
/// <returns></returns>
|
2019-12-17 15:15:02 -07:00
|
|
|
Task RequestHandler(HttpContext context);
|
2020-05-07 20:36:50 -07:00
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 15:37:52 -07:00
|
|
|
/// Get the default CORS headers.
|
2020-05-07 20:36:50 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="req"></param>
|
|
|
|
/// <returns></returns>
|
2020-05-14 16:03:45 -07:00
|
|
|
IDictionary<string, string> GetDefaultCorsHeaders(IRequest req);
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|