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
use crate::{prelude::*, Cookie, CookieJar};
use glib::translate::*;

mod sealed {
    pub trait Sealed {}
    impl<T: super::IsA<crate::CookieJar>> Sealed for T {}
}

pub trait CookieJarExtManual: IsA<CookieJar> + sealed::Sealed + 'static {
    /// Adds @cookie to @self.
    ///
    /// Emits the [`changed`][struct@crate::CookieJar#changed] signal if we are modifying
    /// an existing cookie or adding a valid new cookie ('valid' means
    /// that the cookie's expire date is not in the past).
    ///
    /// @cookie will be 'stolen' by the jar, so don't free it afterwards.
    /// ## `cookie`
    /// a #SoupCookie
    #[doc(alias = "soup_cookie_jar_add_cookie")]
    fn add_cookie(&self, cookie: &mut Cookie) {
        unsafe {
            ffi::soup_cookie_jar_add_cookie(
                self.as_ref().to_glib_none().0,
                mut_override(cookie.to_glib_full()),
            );
        }
    }

    /// Adds @cookie to @self.
    ///
    /// Emits the [`changed`][struct@crate::CookieJar#changed] signal if we are modifying an existing
    /// cookie or adding a valid new cookie ('valid' means that the cookie's expire
    /// date is not in the past).
    ///
    /// @first_party will be used to reject cookies coming from third party
    /// resources in case such a security policy is set in the @self.
    ///
    /// @uri will be used to reject setting or overwriting secure cookies
    /// from insecure origins. [`None`] is treated as secure.
    ///
    /// @cookie will be 'stolen' by the jar, so don't free it afterwards.
    /// ## `cookie`
    /// a #SoupCookie
    /// ## `uri`
    /// the URI setting the cookie
    /// ## `first_party`
    /// the URI for the main document
    #[doc(alias = "soup_cookie_jar_add_cookie_full")]
    fn add_cookie_full(
        &self,
        cookie: &mut Cookie,
        uri: Option<&glib::Uri>,
        first_party: Option<&glib::Uri>,
    ) {
        unsafe {
            ffi::soup_cookie_jar_add_cookie_full(
                self.as_ref().to_glib_none().0,
                mut_override(cookie.to_glib_full()),
                uri.to_glib_none().0,
                first_party.to_glib_none().0,
            );
        }
    }

    /// Adds @cookie to @self.
    ///
    /// Emits the [`changed`][struct@crate::CookieJar#changed] signal if we are modifying
    /// an existing cookie or adding a valid new cookie ('valid' means
    /// that the cookie's expire date is not in the past).
    ///
    /// @first_party will be used to reject cookies coming from third party
    /// resources in case such a security policy is set in the @self.
    ///
    /// @cookie will be 'stolen' by the jar, so don't free it afterwards.
    ///
    /// For secure cookies to work properly you may want to use
    /// [`add_cookie_full()`][Self::add_cookie_full()].
    /// ## `first_party`
    /// the URI for the main document
    /// ## `cookie`
    /// a #SoupCookie
    #[doc(alias = "soup_cookie_jar_add_cookie_with_first_party")]
    fn add_cookie_with_first_party(&self, first_party: &glib::Uri, cookie: &mut Cookie) {
        unsafe {
            ffi::soup_cookie_jar_add_cookie_with_first_party(
                self.as_ref().to_glib_none().0,
                first_party.to_glib_none().0,
                mut_override(cookie.to_glib_full()),
            );
        }
    }

    /// Deletes @cookie from @self.
    ///
    /// Emits the [`changed`][struct@crate::CookieJar#changed] signal.
    /// ## `cookie`
    /// a #SoupCookie
    #[doc(alias = "soup_cookie_jar_delete_cookie")]
    fn delete_cookie(&self, cookie: &mut Cookie) {
        unsafe {
            ffi::soup_cookie_jar_delete_cookie(
                self.as_ref().to_glib_none().0,
                cookie.to_glib_none_mut().0,
            );
        }
    }
}

impl<O: IsA<CookieJar>> CookieJarExtManual for O {}