| | 1 | | using System.Collections.Generic; |
| | 2 | | using MediaBrowser.Common.Api; |
| | 3 | | using MediaBrowser.Model.Entities; |
| | 4 | | using MediaBrowser.Model.Globalization; |
| | 5 | | using Microsoft.AspNetCore.Authorization; |
| | 6 | | using Microsoft.AspNetCore.Http; |
| | 7 | | using Microsoft.AspNetCore.Mvc; |
| | 8 | |
|
| | 9 | | namespace Jellyfin.Api.Controllers; |
| | 10 | |
|
| | 11 | | /// <summary> |
| | 12 | | /// Localization controller. |
| | 13 | | /// </summary> |
| | 14 | | [Authorize(Policy = Policies.FirstTimeSetupOrDefault)] |
| | 15 | | public class LocalizationController : BaseJellyfinApiController |
| | 16 | | { |
| | 17 | | private readonly ILocalizationManager _localization; |
| | 18 | |
|
| | 19 | | /// <summary> |
| | 20 | | /// Initializes a new instance of the <see cref="LocalizationController"/> class. |
| | 21 | | /// </summary> |
| | 22 | | /// <param name="localization">Instance of the <see cref="ILocalizationManager"/> interface.</param> |
| 0 | 23 | | public LocalizationController(ILocalizationManager localization) |
| | 24 | | { |
| 0 | 25 | | _localization = localization; |
| 0 | 26 | | } |
| | 27 | |
|
| | 28 | | /// <summary> |
| | 29 | | /// Gets known cultures. |
| | 30 | | /// </summary> |
| | 31 | | /// <response code="200">Known cultures returned.</response> |
| | 32 | | /// <returns>An <see cref="OkResult"/> containing the list of cultures.</returns> |
| | 33 | | [HttpGet("Cultures")] |
| | 34 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 35 | | public ActionResult<IEnumerable<CultureDto>> GetCultures() |
| | 36 | | { |
| 0 | 37 | | return Ok(_localization.GetCultures()); |
| | 38 | | } |
| | 39 | |
|
| | 40 | | /// <summary> |
| | 41 | | /// Gets known countries. |
| | 42 | | /// </summary> |
| | 43 | | /// <response code="200">Known countries returned.</response> |
| | 44 | | /// <returns>An <see cref="OkResult"/> containing the list of countries.</returns> |
| | 45 | | [HttpGet("Countries")] |
| | 46 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 47 | | public ActionResult<IReadOnlyList<CountryInfo>> GetCountries() |
| | 48 | | { |
| 0 | 49 | | return Ok(_localization.GetCountries()); |
| | 50 | | } |
| | 51 | |
|
| | 52 | | /// <summary> |
| | 53 | | /// Gets known parental ratings. |
| | 54 | | /// </summary> |
| | 55 | | /// <response code="200">Known parental ratings returned.</response> |
| | 56 | | /// <returns>An <see cref="OkResult"/> containing the list of parental ratings.</returns> |
| | 57 | | [HttpGet("ParentalRatings")] |
| | 58 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 59 | | public ActionResult<IReadOnlyList<ParentalRating>> GetParentalRatings() |
| | 60 | | { |
| 0 | 61 | | return Ok(_localization.GetParentalRatings()); |
| | 62 | | } |
| | 63 | |
|
| | 64 | | /// <summary> |
| | 65 | | /// Gets localization options. |
| | 66 | | /// </summary> |
| | 67 | | /// <response code="200">Localization options returned.</response> |
| | 68 | | /// <returns>An <see cref="OkResult"/> containing the list of localization options.</returns> |
| | 69 | | [HttpGet("Options")] |
| | 70 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 71 | | public ActionResult<IEnumerable<LocalizationOption>> GetLocalizationOptions() |
| | 72 | | { |
| 0 | 73 | | return Ok(_localization.GetLocalizationOptions()); |
| | 74 | | } |
| | 75 | | } |