jellyfin/MediaBrowser.Controller/Net/IHttpServer.cs

50 lines
1.5 KiB
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Jellyfin.Data.Events;
using Microsoft.AspNetCore.Http;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Net
{
/// <summary>
2020-05-02 01:30:04 +02:00
/// Interface IHttpServer.
2018-12-28 00:27:57 +01:00
/// </summary>
2020-05-02 01:30:04 +02:00
public interface IHttpServer
2018-12-28 00:27:57 +01: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-09-02 12:22:14 +02:00
void Init(IEnumerable<IWebSocketListener> listener, IEnumerable<string> urlPrefixes);
2018-12-28 00:27:57 +01:00
/// <summary>
/// If set, all requests will respond with this message.
2018-12-28 00:27:57 +01:00
/// </summary>
string GlobalResponse { get; set; }
/// <summary>
/// The HTTP request handler.
/// </summary>
2019-12-17 23:15:02 +01:00
/// <param name="context"></param>
/// <returns></returns>
2019-12-17 23:15:02 +01:00
Task RequestHandler(HttpContext context);
/// <summary>
/// Get the default CORS headers.
/// </summary>
2020-09-02 13:06:14 +02:00
/// <param name="httpContext">The HTTP context of the current request.</param>
2020-09-02 12:22:14 +02:00
/// <returns>The default CORS headers for the context.</returns>
IDictionary<string, string> GetDefaultCorsHeaders(HttpContext httpContext);
2018-12-28 00:27:57 +01:00
}
}