aboutsummaryrefslogtreecommitdiffstats
path: root/src/i18n.rs
blob: 964aaa302f3e0181aeedbe15082e49423f08b7da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
use std::str::FromStr;

use poem::{
    error::I18NError,
    http::header,
    i18n::{unic_langid::LanguageIdentifier, I18NArgs, I18NResources},
    session::Session,
    Endpoint, FromRequest, Middleware, Request, RequestBody,
};
use serde::Deserialize;

#[derive(Deserialize)]
struct Params {
    lang: String,
}

pub async fn set_language<E: Endpoint>(next: E, mut req: Request) -> poem::Result<E::Output> {
    if let Ok(params) = req.params::<Params>() {
        let session = req
            .extensions()
            .get::<Session>()
            .expect("To use the `set_language` middleware, the `Session` data is required.");
        session.set("lang", params.lang);
        println!("{:?}", session.get::<String>("lang"))
    }
    next.call(req).await
}

pub struct Locale(poem::i18n::I18NBundle);

impl Locale {
    /// Gets the text with arguments.
    ///
    /// See also: [`I18NBundle::text_with_args`](I18NBundle::text_with_args)
    pub fn text_with_args<'a>(
        &self,
        id: impl AsRef<str>,
        args: impl Into<I18NArgs<'a>>,
    ) -> Result<String, I18NError> {
        self.0.text_with_args(id, args)
    }

    /// Gets the text.
    ///
    /// See also: [`I18NBundle::text`](I18NBundle::text)
    pub fn text(&self, id: impl AsRef<str>) -> Result<String, I18NError> {
        self.0.text(id)
    }
}

#[poem::async_trait]
impl<'a> FromRequest<'a> for Locale {
    async fn from_request(req: &'a Request, body: &mut RequestBody) -> poem::Result<Self> {
        let session = req
            .extensions()
            .get::<Session>()
            .expect("To use the `Locale` extractor, the `Session` data is required.");
        let resources = req
            .extensions()
            .get::<I18NResources>()
            .expect("To use the `Locale` extractor, the `I18NResources` data is required.");

        let mut lang_id = None;
        if let Some(lang) = session.get::<String>("lang") {
            lang_id = Some(lang);
        };

        if let Some(lang_id) = lang_id {
            if let Ok(lang_id) = LanguageIdentifier::from_str(&lang_id) {
                return Ok(Self(resources.negotiate_languages(&[&lang_id])));
            }
        };

        let accept_languages = req
            .headers()
            .get(header::ACCEPT_LANGUAGE)
            .and_then(|value| value.to_str().ok())
            .map(parse_accept_languages)
            .unwrap_or_default();

        Ok(Self(resources.negotiate_languages(&accept_languages)))
    }
}

fn parse_accept_languages(value: &str) -> Vec<LanguageIdentifier> {
    let mut languages = Vec::new();

    for s in value.split(',').map(str::trim) {
        if let Some(res) = parse_language(s) {
            languages.push(res);
        }
    }

    languages.sort_by(|(_, a), (_, b)| b.cmp(a));
    languages
        .into_iter()
        .map(|(language, _)| language)
        .collect()
}

fn parse_language(value: &str) -> Option<(LanguageIdentifier, u16)> {
    let mut parts = value.split(';');
    let name = parts.next()?.trim();
    let quality = match parts.next() {
        Some(quality) => parse_quality(quality).unwrap_or_default(),
        None => 1000,
    };
    let language = LanguageIdentifier::from_str(name).ok()?;
    Some((language, quality))
}

fn parse_quality(value: &str) -> Option<u16> {
    let mut parts = value.split('=');
    let name = parts.next()?.trim();
    if name != "q" {
        return None;
    }
    let q = parts.next()?.trim().parse::<f32>().ok()?;
    Some((q.clamp(0.0, 1.0) * 1000.0) as u16)
}