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
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use crate::{CookieJar, CookieJarAcceptPolicy, SessionFeature};
use glib::{prelude::*, translate::*};

glib::wrapper! {
    /// Text-file-based ("cookies.txt") Cookie Jar
    ///
    /// #SoupCookieJarText is a [`CookieJar`][crate::CookieJar] that reads cookies from and writes
    /// them to a text file in format similar to Mozilla's "cookies.txt".
    ///
    /// ## Properties
    ///
    ///
    /// #### `filename`
    ///  Cookie-storage filename.
    ///
    /// Readable | Writeable | Construct Only
    /// <details><summary><h4>CookieJar</h4></summary>
    ///
    ///
    /// #### `accept-policy`
    ///  The policy the jar should follow to accept or reject cookies.
    ///
    /// Readable | Writeable
    ///
    ///
    /// #### `read-only`
    ///  Whether or not the cookie jar is read-only.
    ///
    /// Readable | Writeable | Construct Only
    /// </details>
    ///
    /// # Implements
    ///
    /// [`CookieJarExt`][trait@crate::prelude::CookieJarExt], [`trait@glib::ObjectExt`], [`SessionFeatureExt`][trait@crate::prelude::SessionFeatureExt], [`CookieJarExtManual`][trait@crate::prelude::CookieJarExtManual]
    #[doc(alias = "SoupCookieJarText")]
    pub struct CookieJarText(Object<ffi::SoupCookieJarText, ffi::SoupCookieJarTextClass>) @extends CookieJar, @implements SessionFeature;

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

impl CookieJarText {
    /// Creates a #SoupCookieJarText.
    ///
    /// @filename will be read in at startup to create an initial set of cookies. If
    /// @read_only is [`false`], then the non-session cookies will be written to
    /// @filename when the [`changed`][struct@crate::CookieJar#changed] signal is emitted from the
    /// jar. (If @read_only is [`true`], then the cookie jar will only be used for this
    /// session, and changes made to it will be lost when the jar is destroyed.)
    /// ## `filename`
    /// the filename to read to/write from
    /// ## `read_only`
    /// [`true`] if @filename is read-only
    ///
    /// # Returns
    ///
    /// the new #SoupCookieJar
    #[doc(alias = "soup_cookie_jar_text_new")]
    pub fn new(filename: &str, read_only: bool) -> CookieJarText {
        assert_initialized_main_thread!();
        unsafe {
            CookieJar::from_glib_full(ffi::soup_cookie_jar_text_new(
                filename.to_glib_none().0,
                read_only.into_glib(),
            ))
            .unsafe_cast()
        }
    }

    // rustdoc-stripper-ignore-next
    /// Creates a new builder-pattern struct instance to construct [`CookieJarText`] objects.
    ///
    /// This method returns an instance of [`CookieJarTextBuilder`](crate::builders::CookieJarTextBuilder) which can be used to create [`CookieJarText`] objects.
    pub fn builder() -> CookieJarTextBuilder {
        CookieJarTextBuilder::new()
    }

    /// Cookie-storage filename.
    pub fn filename(&self) -> Option<glib::GString> {
        ObjectExt::property(self, "filename")
    }
}

impl Default for CookieJarText {
    fn default() -> Self {
        glib::object::Object::new::<Self>()
    }
}

// rustdoc-stripper-ignore-next
/// A [builder-pattern] type to construct [`CookieJarText`] objects.
///
/// [builder-pattern]: https://doc.rust-lang.org/1.0.0/style/ownership/builders.html
#[must_use = "The builder must be built to be used"]
pub struct CookieJarTextBuilder {
    builder: glib::object::ObjectBuilder<'static, CookieJarText>,
}

impl CookieJarTextBuilder {
    fn new() -> Self {
        Self {
            builder: glib::object::Object::builder(),
        }
    }

    /// Cookie-storage filename.
    pub fn filename(self, filename: impl Into<glib::GString>) -> Self {
        Self {
            builder: self.builder.property("filename", filename.into()),
        }
    }

    /// The policy the jar should follow to accept or reject cookies.
    pub fn accept_policy(self, accept_policy: CookieJarAcceptPolicy) -> Self {
        Self {
            builder: self.builder.property("accept-policy", accept_policy),
        }
    }

    /// Whether or not the cookie jar is read-only.
    pub fn read_only(self, read_only: bool) -> Self {
        Self {
            builder: self.builder.property("read-only", read_only),
        }
    }

    // rustdoc-stripper-ignore-next
    /// Build the [`CookieJarText`].
    #[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
    pub fn build(self) -> CookieJarText {
        self.builder.build()
    }
}