| | 1 | | using MediaBrowser.Common.Configuration; |
| | 2 | | using MediaBrowser.Controller.Configuration; |
| | 3 | | using MediaBrowser.Model.Branding; |
| | 4 | | using Microsoft.AspNetCore.Http; |
| | 5 | | using Microsoft.AspNetCore.Mvc; |
| | 6 | |
|
| | 7 | | namespace Jellyfin.Api.Controllers; |
| | 8 | |
|
| | 9 | | /// <summary> |
| | 10 | | /// Branding controller. |
| | 11 | | /// </summary> |
| | 12 | | public class BrandingController : BaseJellyfinApiController |
| | 13 | | { |
| | 14 | | private readonly IServerConfigurationManager _serverConfigurationManager; |
| | 15 | |
|
| | 16 | | /// <summary> |
| | 17 | | /// Initializes a new instance of the <see cref="BrandingController"/> class. |
| | 18 | | /// </summary> |
| | 19 | | /// <param name="serverConfigurationManager">Instance of the <see cref="IServerConfigurationManager"/> interface.</p |
| 3 | 20 | | public BrandingController(IServerConfigurationManager serverConfigurationManager) |
| | 21 | | { |
| 3 | 22 | | _serverConfigurationManager = serverConfigurationManager; |
| 3 | 23 | | } |
| | 24 | |
|
| | 25 | | /// <summary> |
| | 26 | | /// Gets branding configuration. |
| | 27 | | /// </summary> |
| | 28 | | /// <response code="200">Branding configuration returned.</response> |
| | 29 | | /// <returns>An <see cref="OkResult"/> containing the branding configuration.</returns> |
| | 30 | | [HttpGet("Configuration")] |
| | 31 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 32 | | public ActionResult<BrandingOptionsDto> GetBrandingOptions() |
| | 33 | | { |
| 1 | 34 | | var brandingOptions = _serverConfigurationManager.GetConfiguration<BrandingOptions>("branding"); |
| | 35 | |
|
| 1 | 36 | | var brandingOptionsDto = new BrandingOptionsDto |
| 1 | 37 | | { |
| 1 | 38 | | LoginDisclaimer = brandingOptions.LoginDisclaimer, |
| 1 | 39 | | CustomCss = brandingOptions.CustomCss, |
| 1 | 40 | | SplashscreenEnabled = brandingOptions.SplashscreenEnabled |
| 1 | 41 | | }; |
| | 42 | |
|
| 1 | 43 | | return brandingOptionsDto; |
| | 44 | | } |
| | 45 | |
|
| | 46 | | /// <summary> |
| | 47 | | /// Gets branding css. |
| | 48 | | /// </summary> |
| | 49 | | /// <response code="200">Branding css returned.</response> |
| | 50 | | /// <response code="204">No branding css configured.</response> |
| | 51 | | /// <returns> |
| | 52 | | /// An <see cref="OkResult"/> containing the branding css if exist, |
| | 53 | | /// or a <see cref="NoContentResult"/> if the css is not configured. |
| | 54 | | /// </returns> |
| | 55 | | [HttpGet("Css")] |
| | 56 | | [HttpGet("Css.css", Name = "GetBrandingCss_2")] |
| | 57 | | [Produces("text/css")] |
| | 58 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 59 | | [ProducesResponseType(StatusCodes.Status204NoContent)] |
| | 60 | | public ActionResult<string> GetBrandingCss() |
| | 61 | | { |
| 2 | 62 | | var options = _serverConfigurationManager.GetConfiguration<BrandingOptions>("branding"); |
| 2 | 63 | | return options.CustomCss ?? string.Empty; |
| | 64 | | } |
| | 65 | | } |