mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Globalization;
 | 
						|
using System.Linq;
 | 
						|
using API.DTOs.Filtering;
 | 
						|
using API.Services;
 | 
						|
using Microsoft.AspNetCore.Mvc;
 | 
						|
 | 
						|
namespace API.Controllers;
 | 
						|
 | 
						|
#nullable enable
 | 
						|
 | 
						|
public class LocaleController : BaseApiController
 | 
						|
{
 | 
						|
    private readonly ILocalizationService _localizationService;
 | 
						|
 | 
						|
    public LocaleController(ILocalizationService localizationService)
 | 
						|
    {
 | 
						|
        _localizationService = localizationService;
 | 
						|
    }
 | 
						|
 | 
						|
    [HttpGet]
 | 
						|
    public ActionResult<IEnumerable<string>> GetAllLocales()
 | 
						|
    {
 | 
						|
        var languages = _localizationService.GetLocales().Select(c =>
 | 
						|
            {
 | 
						|
                try
 | 
						|
                {
 | 
						|
                    var cult = new CultureInfo(c);
 | 
						|
                    return new LanguageDto()
 | 
						|
                    {
 | 
						|
                        Title = cult.DisplayName,
 | 
						|
                        IsoCode = cult.IetfLanguageTag
 | 
						|
                    };
 | 
						|
                }
 | 
						|
                catch (Exception ex)
 | 
						|
                {
 | 
						|
                    // Some OS' don't have all culture codes supported like PT_BR, thus we need to default
 | 
						|
                    return new LanguageDto()
 | 
						|
                    {
 | 
						|
                        Title = c,
 | 
						|
                        IsoCode = c
 | 
						|
                    };
 | 
						|
                }
 | 
						|
            })
 | 
						|
            .Where(l => !string.IsNullOrEmpty(l.IsoCode))
 | 
						|
            .OrderBy(d => d.Title);
 | 
						|
        return Ok(languages);
 | 
						|
    }
 | 
						|
}
 |