diff options
| author | Joe Rogers <1337joe@gmail.com> | 2021-11-22 21:08:07 +0100 |
|---|---|---|
| committer | Joe Rogers <1337joe@gmail.com> | 2021-11-22 21:08:07 +0100 |
| commit | 0af5e600946231df73f1783330ad8cd0bbbed2ee (patch) | |
| tree | bed28af406e46832353fd5b598305367d0d22d7d /MediaBrowser.Providers/Plugins/Tmdb/Api/TmdbController.cs | |
| parent | 6d3b1296661a486d511fa12163456f96cfa3fcc7 (diff) | |
Address review comments
Store null instead of calculating scaled image sizes.
Add endpoint to provide TMDb image size options.
Diffstat (limited to 'MediaBrowser.Providers/Plugins/Tmdb/Api/TmdbController.cs')
| -rw-r--r-- | MediaBrowser.Providers/Plugins/Tmdb/Api/TmdbController.cs | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/MediaBrowser.Providers/Plugins/Tmdb/Api/TmdbController.cs b/MediaBrowser.Providers/Plugins/Tmdb/Api/TmdbController.cs new file mode 100644 index 000000000..0bab7c3ca --- /dev/null +++ b/MediaBrowser.Providers/Plugins/Tmdb/Api/TmdbController.cs @@ -0,0 +1,41 @@ +using System.Net.Mime; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using TMDbLib.Objects.General; + +namespace MediaBrowser.Providers.Plugins.Tmdb.Api +{ + /// <summary> + /// The TMDb api controller. + /// </summary> + [ApiController] + [Authorize(Policy = "DefaultAuthorization")] + [Route("[controller]")] + [Produces(MediaTypeNames.Application.Json)] + public class TmdbController : ControllerBase + { + private readonly TmdbClientManager _tmdbClientManager; + + /// <summary> + /// Initializes a new instance of the <see cref="TmdbController"/> class. + /// </summary> + /// <param name="tmdbClientManager">The TMDb client manager.</param> + public TmdbController(TmdbClientManager tmdbClientManager) + { + _tmdbClientManager = tmdbClientManager; + } + + /// <summary> + /// Gets the TMDb image configuration options. + /// </summary> + /// <returns>The image portion of the TMDb client configuration.</returns> + [HttpGet("ClientConfiguration")] + [ProducesResponseType(StatusCodes.Status200OK)] + public async Task<ConfigImageTypes> TmdbClientConfiguration() + { + return (await _tmdbClientManager.GetClientConfiguration().ConfigureAwait(false)).Images; + } + } +} |
