fractal/identity_verification_view/
sas_page.rs

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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
use std::collections::HashMap;

use adw::subclass::prelude::*;
use gettextrs::gettext;
use gtk::{gio, glib, glib::clone, prelude::*, CompositeTemplate};

use super::sas_emoji::SasEmoji;
use crate::{
    components::LoadingButton, gettext_f, prelude::*, session::model::IdentityVerification, toast,
    utils::BoundObjectWeakRef,
};

mod imp {
    use std::cell::RefCell;

    use glib::subclass::InitializingObject;

    use super::*;

    #[derive(Debug, Default, CompositeTemplate, glib::Properties)]
    #[template(resource = "/org/gnome/Fractal/ui/identity_verification_view/sas_page.ui")]
    #[properties(wrapper_type = super::SasPage)]
    pub struct SasPage {
        /// The current identity verification.
        #[property(get, set = Self::set_verification, explicit_notify, nullable)]
        pub verification: BoundObjectWeakRef<IdentityVerification>,
        pub display_name_handler: RefCell<Option<glib::SignalHandlerId>>,
        #[template_child]
        pub title: TemplateChild<gtk::Label>,
        #[template_child]
        pub instructions: TemplateChild<gtk::Label>,
        #[template_child]
        pub row_1: TemplateChild<gtk::Box>,
        #[template_child]
        pub row_2: TemplateChild<gtk::Box>,
        #[template_child]
        pub mismatch_btn: TemplateChild<LoadingButton>,
        #[template_child]
        pub match_btn: TemplateChild<LoadingButton>,
    }

    #[glib::object_subclass]
    impl ObjectSubclass for SasPage {
        const NAME: &'static str = "IdentityVerificationSasPage";
        type Type = super::SasPage;
        type ParentType = adw::Bin;

        fn class_init(klass: &mut Self::Class) {
            Self::bind_template(klass);
            Self::Type::bind_template_callbacks(klass);
        }

        fn instance_init(obj: &InitializingObject<Self>) {
            obj.init_template();
        }
    }

    #[glib::derived_properties]
    impl ObjectImpl for SasPage {
        fn dispose(&self) {
            if let Some(verification) = self.verification.obj() {
                if let Some(handler) = self.display_name_handler.take() {
                    verification.user().disconnect(handler);
                }
            }
        }
    }

    impl WidgetImpl for SasPage {
        fn grab_focus(&self) -> bool {
            self.match_btn.grab_focus()
        }
    }

    impl BinImpl for SasPage {}

    impl SasPage {
        /// Set the current identity verification.
        fn set_verification(&self, verification: Option<&IdentityVerification>) {
            let prev_verification = self.verification.obj();

            if prev_verification.as_ref() == verification {
                return;
            }
            let obj = self.obj();

            obj.reset();

            if let Some(verification) = prev_verification {
                if let Some(handler) = self.display_name_handler.take() {
                    verification.user().disconnect(handler);
                }
            }
            self.verification.disconnect_signals();

            if let Some(verification) = verification {
                let display_name_handler = verification.user().connect_display_name_notify(clone!(
                    #[weak]
                    obj,
                    move |_| {
                        obj.update_labels();
                    }
                ));
                self.display_name_handler
                    .replace(Some(display_name_handler));

                let sas_data_changed_handler = verification.connect_sas_data_changed(clone!(
                    #[weak]
                    obj,
                    move |_| {
                        obj.update_labels();
                        obj.fill_rows();
                    }
                ));

                self.verification
                    .set(verification, vec![sas_data_changed_handler]);
            }

            obj.update_labels();
            obj.fill_rows();
            obj.notify_verification();
        }
    }
}

glib::wrapper! {
    /// A page to confirm if SAS verification data matches.
    pub struct SasPage(ObjectSubclass<imp::SasPage>)
        @extends gtk::Widget, adw::Bin, @implements gtk::Accessible;
}

#[gtk::template_callbacks]
impl SasPage {
    pub fn new() -> Self {
        glib::Object::new()
    }

    /// Update the labels for the current verification.
    fn update_labels(&self) {
        let Some(verification) = self.verification() else {
            return;
        };
        let imp = self.imp();

        if verification.is_self_verification() {
            imp.title.set_label(&gettext("Verify Session"));
            if verification.sas_supports_emoji() {
                imp.instructions.set_label(&gettext(
                    "Check if the same emoji appear in the same order on the other client.",
                ));
            } else {
                imp.instructions.set_label(&gettext(
                    "Check if the same numbers appear in the same order on the other client.",
                ));
            }
        } else {
            let name = verification.user().display_name();
            imp.title.set_markup(&gettext("Verification Request"));
            if verification.sas_supports_emoji() {
                imp.instructions.set_markup(&gettext_f(
                    // Translators: Do NOT translate the content between '{' and '}', this is a
                    // variable name.
                    "Ask {user} if they see the following emoji appear in the same order on their screen.",
                    &[("user", &format!("<b>{name}</b>"))]
                ));
            } else {
                imp.instructions.set_markup(&gettext_f(
                    // Translators: Do NOT translate the content between '{' and '}', this is a
                    // variable name.
                    "Ask {user} if they see the following numbers appear in the same order on their screen.",
                    &[("user", &format!("<b>{name}</b>"))]
                ));
            }
        }
    }

    /// Reset the UI to its initial state.
    pub fn reset(&self) {
        self.reset_buttons();
        self.fill_rows();
    }

    /// Reset the buttons to their initial state.
    fn reset_buttons(&self) {
        let imp = self.imp();

        imp.mismatch_btn.set_is_loading(false);
        imp.match_btn.set_is_loading(false);
        self.set_sensitive(true);
    }

    /// Empty the rows.
    fn clean_rows(&self) {
        let imp = self.imp();

        while let Some(child) = imp.row_1.first_child() {
            imp.row_1.remove(&child);
        }

        while let Some(child) = imp.row_2.first_child() {
            imp.row_2.remove(&child);
        }
    }

    /// Fill the rows with the current SAS data.
    fn fill_rows(&self) {
        let Some(verification) = self.verification() else {
            return;
        };
        let imp = self.imp();

        // Make sure the rows are empty.
        self.clean_rows();

        if let Some(emoji_list) = verification.sas_emoji() {
            let emoji_i18n = sas_emoji_i18n();
            for (index, emoji) in emoji_list.iter().enumerate() {
                let emoji_name = emoji_i18n
                    .get(emoji.description)
                    .map_or(emoji.description, String::as_str);
                let emoji_widget = SasEmoji::new(emoji.symbol, emoji_name);

                if index < 4 {
                    imp.row_1.append(&emoji_widget);
                } else {
                    imp.row_2.append(&emoji_widget);
                }
            }
        } else if let Some((a, b, c)) = verification.sas_decimals() {
            let container = gtk::Box::builder()
                .spacing(24)
                .css_classes(["emoji"])
                .build();
            container.append(&gtk::Label::builder().label(a.to_string()).build());
            container.append(&gtk::Label::builder().label(b.to_string()).build());
            container.append(&gtk::Label::builder().label(c.to_string()).build());
            imp.row_1.append(&container);
        }
    }

    #[template_callback]
    async fn data_mismatch(&self) {
        let Some(verification) = self.verification() else {
            return;
        };

        self.imp().mismatch_btn.set_is_loading(true);
        self.set_sensitive(false);

        if verification.sas_mismatch().await.is_err() {
            toast!(self, gettext("Could not send that the data does not match"));
            self.reset_buttons();
        }
    }

    #[template_callback]
    async fn data_match(&self) {
        let Some(verification) = self.verification() else {
            return;
        };

        self.imp().match_btn.set_is_loading(true);
        self.set_sensitive(false);

        if verification.sas_match().await.is_err() {
            toast!(
                self,
                gettext("Could not send confirmation that the data matches")
            );
            self.reset_buttons();
        }
    }
}

/// Get the SAS emoji translations for the current locale.
///
/// Returns a map of emoji name to its translation.
fn sas_emoji_i18n() -> HashMap<String, String> {
    for lang in glib::language_names()
        .into_iter()
        .flat_map(|locale| glib::locale_variants(&locale))
    {
        if let Some(emoji_i18n) = gio::resources_lookup_data(
            &format!("/org/gnome/Fractal/sas-emoji/{lang}.json"),
            gio::ResourceLookupFlags::NONE,
        )
        .ok()
        .and_then(|data| serde_json::from_slice(&data).ok())
        {
            return emoji_i18n;
        }
    }

    HashMap::new()
}