Files
Oxicloud/src/application/services/i18n_application_service.rs
T

73 lines
2.3 KiB
Rust

use std::sync::Arc;
use crate::domain::services::i18n_service::{I18nResult, I18nService, Locale};
use crate::infrastructure::services::file_system_i18n_service::FileSystemI18nService;
/// Service for i18n operations
pub struct I18nApplicationService {
i18n_service: Arc<FileSystemI18nService>,
}
impl I18nApplicationService {
/// Creates a dummy service for testing
pub fn dummy() -> Self {
Self {
i18n_service: Arc::new(FileSystemI18nService::dummy()),
}
}
/// Creates a new i18n application service
pub fn new(i18n_service: Arc<FileSystemI18nService>) -> Self {
Self { i18n_service }
}
/// Get a translation for a key and locale
pub async fn translate(&self, key: &str, locale: Option<Locale>) -> I18nResult<String> {
self.i18n_service
.translate(key, locale.unwrap_or_default())
.await
}
/// Get a translation with `{{name}}` substitution applied. Mirrors
/// the frontend convention so JSON values stay interchangeable.
/// `None` locale resolves to the server default (English).
pub async fn translate_args(
&self,
key: &str,
locale: Option<Locale>,
args: &[(&str, &str)],
) -> I18nResult<String> {
self.i18n_service
.translate_args(key, locale.unwrap_or_default(), args)
.await
}
/// Load translations for a locale
pub async fn load_translations(&self, locale: Locale) -> I18nResult<()> {
self.i18n_service.load_translations(locale).await
}
/// Load translations for all available locales
pub async fn load_all_translations(&self) -> Vec<(Locale, I18nResult<()>)> {
let locales = self.i18n_service.available_locales().await;
let mut results = Vec::new();
for locale in locales {
let result = self.i18n_service.load_translations(locale.clone()).await;
results.push((locale, result));
}
results
}
/// Get available locales
pub async fn available_locales(&self) -> Vec<Locale> {
self.i18n_service.available_locales().await
}
/// Check if a locale is supported
pub async fn is_supported(&self, locale: Locale) -> bool {
self.i18n_service.is_supported(locale).await
}
}