1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/templating/fluent/src/lang_choice.rs
2022-07-11 01:44:46 +01:00

40 lines
1.2 KiB
Rust

use std::{
convert::Infallible,
future::{ready, Ready},
};
use actix_web::{dev, http::header::AcceptLanguage, FromRequest, HttpMessage as _, HttpRequest};
use fluent_templates::LanguageIdentifier;
use serde::Serialize;
/// A convenient extractor that finds the clients's preferred language based on an Accept-Language
/// header and falls back to English if header is not found. Serializes easily in Handlebars data.
#[derive(Debug, Serialize)]
#[serde(transparent)]
pub struct LangChoice(String);
impl LangChoice {
pub(crate) fn from_req(req: &HttpRequest) -> Self {
let lang = req
.get_header::<AcceptLanguage>()
.and_then(|lang| lang.preference().into_item())
.map_or_else(|| "en".to_owned(), |lang| lang.to_string());
Self(lang)
}
pub fn lang_id(&self) -> LanguageIdentifier {
// unwrap: lang ID should be valid given extraction method
self.0.parse().unwrap()
}
}
impl FromRequest for LangChoice {
type Error = Infallible;
type Future = Ready<Result<Self, Self::Error>>;
fn from_request(req: &HttpRequest, _pl: &mut dev::Payload) -> Self::Future {
ready(Ok(Self::from_req(req)))
}
}