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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// from webkit-gir-files
// DO NOT EDIT

use crate::{ffi, AuthenticationScheme, Credential, SecurityOrigin};
use glib::{
    prelude::*,
    signal::{connect_raw, SignalHandlerId},
    translate::*,
};
use std::boxed::Box as Box_;

glib::wrapper! {
    /// Represents an authentication request.
    ///
    /// Whenever a client attempts to load a page protected by HTTP
    /// authentication, credentials will need to be provided to authorize access.
    /// To allow the client to decide how it wishes to handle authentication,
    /// WebKit will fire a #WebKitWebView::authenticate signal with a
    /// WebKitAuthenticationRequest object to provide client side
    /// authentication support. Credentials are exposed through the
    /// #WebKitCredential object.
    ///
    /// In case the client application does not wish
    /// to handle this signal WebKit will provide a default handler. To handle
    /// authentication asynchronously, simply increase the reference count of the
    /// WebKitAuthenticationRequest object.
    ///
    /// ## Signals
    ///
    ///
    /// #### `authenticated`
    ///  This signal is emitted when the user authentication request succeeded.
    /// Applications handling their own credential storage should connect to
    /// this signal to save the credentials.
    ///
    ///
    ///
    ///
    /// #### `cancelled`
    ///  This signal is emitted when the user authentication request is
    /// cancelled. It allows the application to dismiss its authentication
    /// dialog in case of page load failure for example.
    ///
    ///
    #[doc(alias = "WebKitAuthenticationRequest")]
    pub struct AuthenticationRequest(Object<ffi::WebKitAuthenticationRequest, ffi::WebKitAuthenticationRequestClass>);

    match fn {
        type_ => || ffi::webkit_authentication_request_get_type(),
    }
}

impl AuthenticationRequest {
    /// Authenticate the #WebKitAuthenticationRequest.
    ///
    /// Authenticate the #WebKitAuthenticationRequest using the #WebKitCredential
    /// supplied. To continue without credentials, pass [`None`] as @credential.
    /// ## `credential`
    /// A #WebKitCredential, or [`None`]
    #[doc(alias = "webkit_authentication_request_authenticate")]
    pub fn authenticate(&self, credential: Option<&Credential>) {
        unsafe {
            ffi::webkit_authentication_request_authenticate(
                self.to_glib_none().0,
                mut_override(credential.to_glib_none().0),
            );
        }
    }

    /// Determine whether this #WebKitAuthenticationRequest should allow the storage of credentials.
    ///
    /// Determine whether the authentication method associated with this
    /// #WebKitAuthenticationRequest should allow the storage of credentials.
    /// This will return [`false`] if WebKit doesn't support credential storing,
    /// if private browsing is enabled, or if persistent credential storage has been
    /// disabled in #WebKitWebsiteDataManager, unless credentials saving has been
    /// explicitly enabled with webkit_authentication_request_set_can_save_credentials().
    ///
    /// # Returns
    ///
    /// [`true`] if WebKit can store credentials or [`false`] otherwise.
    #[doc(alias = "webkit_authentication_request_can_save_credentials")]
    pub fn can_save_credentials(&self) -> bool {
        unsafe {
            from_glib(ffi::webkit_authentication_request_can_save_credentials(
                self.to_glib_none().0,
            ))
        }
    }

    /// Cancel the authentication challenge.
    ///
    /// This will also cancel the page loading and result in a
    /// #WebKitWebView::load-failed signal with a #WebKitNetworkError of type [`NetworkError::Cancelled`][crate::NetworkError::Cancelled] being emitted.
    #[doc(alias = "webkit_authentication_request_cancel")]
    pub fn cancel(&self) {
        unsafe {
            ffi::webkit_authentication_request_cancel(self.to_glib_none().0);
        }
    }

    /// Get the #GTlsPasswordFlags of the [`AuthenticationScheme::ClientCertificatePinRequested`][crate::AuthenticationScheme::ClientCertificatePinRequested] authentication challenge.
    ///
    /// # Returns
    ///
    /// a #GTlsPasswordFlags
    #[doc(alias = "webkit_authentication_request_get_certificate_pin_flags")]
    #[doc(alias = "get_certificate_pin_flags")]
    pub fn certificate_pin_flags(&self) -> gio::TlsPasswordFlags {
        unsafe {
            from_glib(
                ffi::webkit_authentication_request_get_certificate_pin_flags(self.to_glib_none().0),
            )
        }
    }

    /// Get the host that this authentication challenge is applicable to.
    ///
    /// # Returns
    ///
    /// The host of @self.
    #[doc(alias = "webkit_authentication_request_get_host")]
    #[doc(alias = "get_host")]
    pub fn host(&self) -> Option<glib::GString> {
        unsafe {
            from_glib_none(ffi::webkit_authentication_request_get_host(
                self.to_glib_none().0,
            ))
        }
    }

    /// Get the port that this authentication challenge is applicable to.
    ///
    /// # Returns
    ///
    /// The port of @self.
    #[doc(alias = "webkit_authentication_request_get_port")]
    #[doc(alias = "get_port")]
    pub fn port(&self) -> u32 {
        unsafe { ffi::webkit_authentication_request_get_port(self.to_glib_none().0) }
    }

    /// Get the #WebKitCredential of the proposed authentication challenge.
    ///
    /// Get the #WebKitCredential of the proposed authentication challenge that was
    /// stored from a previous session. The client can use this directly for
    /// authentication or construct their own #WebKitCredential.
    ///
    /// # Returns
    ///
    /// A #WebKitCredential encapsulating credential details
    /// or [`None`] if there is no stored credential.
    #[doc(alias = "webkit_authentication_request_get_proposed_credential")]
    #[doc(alias = "get_proposed_credential")]
    pub fn proposed_credential(&self) -> Option<Credential> {
        unsafe {
            from_glib_full(ffi::webkit_authentication_request_get_proposed_credential(
                self.to_glib_none().0,
            ))
        }
    }

    /// Get the realm that this authentication challenge is applicable to.
    ///
    /// # Returns
    ///
    /// The realm of @self.
    #[doc(alias = "webkit_authentication_request_get_realm")]
    #[doc(alias = "get_realm")]
    pub fn realm(&self) -> Option<glib::GString> {
        unsafe {
            from_glib_none(ffi::webkit_authentication_request_get_realm(
                self.to_glib_none().0,
            ))
        }
    }

    /// Get the authentication scheme of the authentication challenge.
    ///
    /// # Returns
    ///
    /// The #WebKitAuthenticationScheme of @self.
    #[doc(alias = "webkit_authentication_request_get_scheme")]
    #[doc(alias = "get_scheme")]
    pub fn scheme(&self) -> AuthenticationScheme {
        unsafe {
            from_glib(ffi::webkit_authentication_request_get_scheme(
                self.to_glib_none().0,
            ))
        }
    }

    /// Get the #WebKitSecurityOrigin that this authentication challenge is applicable to.
    ///
    /// # Returns
    ///
    /// a newly created #WebKitSecurityOrigin.
    #[doc(alias = "webkit_authentication_request_get_security_origin")]
    #[doc(alias = "get_security_origin")]
    pub fn security_origin(&self) -> Option<SecurityOrigin> {
        unsafe {
            from_glib_full(ffi::webkit_authentication_request_get_security_origin(
                self.to_glib_none().0,
            ))
        }
    }

    /// Determine whether the authentication challenge is associated with a proxy server.
    ///
    /// Determine whether the authentication challenge is associated with a proxy server rather than an "origin" server.
    ///
    /// # Returns
    ///
    /// [`true`] if authentication is for a proxy or [`false`] otherwise.
    #[doc(alias = "webkit_authentication_request_is_for_proxy")]
    pub fn is_for_proxy(&self) -> bool {
        unsafe {
            from_glib(ffi::webkit_authentication_request_is_for_proxy(
                self.to_glib_none().0,
            ))
        }
    }

    /// Determine whether this this is a first attempt or a retry for this authentication challenge.
    ///
    /// # Returns
    ///
    /// [`true`] if authentication attempt is a retry or [`false`] otherwise.
    #[doc(alias = "webkit_authentication_request_is_retry")]
    pub fn is_retry(&self) -> bool {
        unsafe {
            from_glib(ffi::webkit_authentication_request_is_retry(
                self.to_glib_none().0,
            ))
        }
    }

    /// Set whether the authentication method associated with @self
    /// should allow the storage of credentials.
    ///
    /// Set whether the authentication method associated with @self
    /// should allow the storage of credentials.
    /// This should be used by applications handling their own credentials
    /// storage to indicate that it should be supported even when internal
    /// credential storage is disabled or unsupported.
    /// Note that storing of credentials will not be allowed on ephemeral
    /// sessions in any case.
    /// ## `enabled`
    /// value to set
    #[doc(alias = "webkit_authentication_request_set_can_save_credentials")]
    pub fn set_can_save_credentials(&self, enabled: bool) {
        unsafe {
            ffi::webkit_authentication_request_set_can_save_credentials(
                self.to_glib_none().0,
                enabled.into_glib(),
            );
        }
    }

    /// Set the #WebKitCredential of the proposed authentication challenge.
    ///
    /// Set the #WebKitCredential of the proposed authentication challenge that was
    /// stored from a previous session. This should only be used by applications handling
    /// their own credential storage. (When using the default WebKit credential storage,
    /// webkit_authentication_request_get_proposed_credential() already contains previously-stored
    /// credentials.)
    /// Passing a [`None`] @credential will clear the proposed credential.
    /// ## `credential`
    /// a #WebKitCredential, or [`None`]
    #[doc(alias = "webkit_authentication_request_set_proposed_credential")]
    pub fn set_proposed_credential(&self, credential: &mut Credential) {
        unsafe {
            ffi::webkit_authentication_request_set_proposed_credential(
                self.to_glib_none().0,
                credential.to_glib_none_mut().0,
            );
        }
    }

    /// This signal is emitted when the user authentication request succeeded.
    /// Applications handling their own credential storage should connect to
    /// this signal to save the credentials.
    /// ## `credential`
    /// the #WebKitCredential accepted
    #[doc(alias = "authenticated")]
    pub fn connect_authenticated<F: Fn(&Self, &Credential) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn authenticated_trampoline<
            F: Fn(&AuthenticationRequest, &Credential) + 'static,
        >(
            this: *mut ffi::WebKitAuthenticationRequest,
            credential: *mut ffi::WebKitCredential,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this), &from_glib_borrow(credential))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"authenticated\0".as_ptr() as *const _,
                Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
                    authenticated_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    /// This signal is emitted when the user authentication request is
    /// cancelled. It allows the application to dismiss its authentication
    /// dialog in case of page load failure for example.
    #[doc(alias = "cancelled")]
    pub fn connect_cancelled<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn cancelled_trampoline<F: Fn(&AuthenticationRequest) + 'static>(
            this: *mut ffi::WebKitAuthenticationRequest,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"cancelled\0".as_ptr() as *const _,
                Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
                    cancelled_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }
}