mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
* Update codebase to target .NET 8.0 and improve JSON serialization This commit switches our target framework from .NET 6.0 to .NET 8.0 and replaces Newtonsoft.Json with System.Text.Json for serialization. The JsonConverter classes have been updated to support the new JSON model and some enhancements were applied to the codebase such as fixing a command property and updating various package references. * Align with Develop * Update SharedLibraryCore package version The version of the SharedLibraryCore package reference has been updated across multiple projects from '2024.2.4.85' to '2024.2.5.9'. Meanwhile, version within SharedLibraryCore.csproj has been changed from '2024.02.04.085' to '2024.01.01.1'. Changes also include removal of .NET 8 requirement notice and reenabling of status upload to master communicator. * Update properties in IRConParser and IRConParserConfiguration to be settable The properties in the `IRConParser` and `IRConParserConfiguration` interfaces were updated to include setters. Previously, the properties in these interfaces were read-only. This change allows for the modifications and extensions of properties defined, thereby bolstering flexibility for the handling of games and parsers. * Replace RestEase with Refit in API usage Refit has been implemented as a replacement for RestEase in all API calls. As such, all related code, parameters and imports have been adjusted to function with Refit. Logic has also been added to handle certain Refit-specific behaviours. Occurrences of the RestEase package have been removed from the project. * Enable auto-redirect in HttpClient The HttpClient instance used in Application/Main.cs has been modified to automatically follow redirect responses. This was accomplished by adding "AllowAutoRedirect = true" to the HttpClientHandler used when creating the HttpClient. --------- Co-authored-by: Amos <amos2580@hotmail.co.uk>
90 lines
3.5 KiB
C#
90 lines
3.5 KiB
C#
using IW4MAdmin.Application.API.Master;
|
|
using SharedLibraryCore;
|
|
using SharedLibraryCore.Interfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
using System.Text;
|
|
using System.Text.Json;
|
|
using Microsoft.Extensions.Logging;
|
|
using SharedLibraryCore.Configuration;
|
|
using ILogger = Microsoft.Extensions.Logging.ILogger;
|
|
|
|
namespace IW4MAdmin.Application.Localization
|
|
{
|
|
public static class Configure
|
|
{
|
|
public static ITranslationLookup Initialize(ILogger logger, IMasterApi apiInstance, ApplicationConfiguration applicationConfiguration)
|
|
{
|
|
var useLocalTranslation = applicationConfiguration?.UseLocalTranslations ?? true;
|
|
var customLocale = applicationConfiguration?.EnableCustomLocale ?? false
|
|
? (applicationConfiguration.CustomLocale ?? "en-US")
|
|
: "en-US";
|
|
var currentLocale = string.IsNullOrEmpty(customLocale) ? CultureInfo.CurrentCulture.Name : customLocale;
|
|
var localizationFiles = Directory.GetFiles(Path.Join(Utilities.OperatingDirectory, "Localization"), $"*.{currentLocale}.json");
|
|
|
|
if (!useLocalTranslation)
|
|
{
|
|
try
|
|
{
|
|
var localization = apiInstance.GetLocalization(currentLocale).Result;
|
|
Utilities.CurrentLocalization = localization;
|
|
return localization.LocalizationIndex;
|
|
}
|
|
|
|
catch (Exception ex)
|
|
{
|
|
// the online localization failed so will default to local files
|
|
logger.LogWarning(ex, "Could not download latest translations");
|
|
}
|
|
}
|
|
|
|
// culture doesn't exist so we just want language
|
|
if (localizationFiles.Length == 0)
|
|
{
|
|
localizationFiles = Directory.GetFiles(Path.Join(Utilities.OperatingDirectory, "Localization"), $"*.{currentLocale.Substring(0, 2)}*.json");
|
|
}
|
|
|
|
// language doesn't exist either so defaulting to english
|
|
if (localizationFiles.Length == 0)
|
|
{
|
|
localizationFiles = Directory.GetFiles(Path.Join(Utilities.OperatingDirectory, "Localization"), "*.en-US.json");
|
|
}
|
|
|
|
// this should never happen unless the localization folder is empty
|
|
if (localizationFiles.Length == 0)
|
|
{
|
|
throw new Exception("No localization files were found");
|
|
}
|
|
|
|
var localizationDict = new Dictionary<string, string>();
|
|
|
|
foreach (var filePath in localizationFiles)
|
|
{
|
|
var localizationContents = File.ReadAllText(filePath, Encoding.UTF8);
|
|
var eachLocalizationFile = JsonSerializer.Deserialize<SharedLibraryCore.Localization.Layout>(localizationContents);
|
|
if (eachLocalizationFile is null)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
foreach (var item in eachLocalizationFile.LocalizationIndex.Set)
|
|
{
|
|
if (!localizationDict.TryAdd(item.Key, item.Value))
|
|
{
|
|
logger.LogError("Could not add locale string {Key} to localization", item.Key);
|
|
}
|
|
}
|
|
}
|
|
|
|
Utilities.CurrentLocalization = new SharedLibraryCore.Localization.Layout(localizationDict)
|
|
{
|
|
LocalizationName = currentLocale,
|
|
};
|
|
|
|
return Utilities.CurrentLocalization.LocalizationIndex;
|
|
}
|
|
}
|
|
}
|