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
use crate::config::{internal::SetOpt, proxy::Proxy};
use std::fmt;
use std::ops::{BitOr, BitOrAssign};
#[derive(Clone)]
pub struct Credentials {
username: String,
password: String,
}
impl Credentials {
pub fn new(username: impl Into<String>, password: impl Into<String>) -> Self {
Self {
username: username.into(),
password: password.into(),
}
}
}
impl SetOpt for Credentials {
fn set_opt<H>(&self, easy: &mut curl::easy::Easy2<H>) -> Result<(), curl::Error> {
easy.username(&self.username)?;
easy.password(&self.password)
}
}
impl SetOpt for Proxy<Credentials> {
fn set_opt<H>(&self, easy: &mut curl::easy::Easy2<H>) -> Result<(), curl::Error> {
easy.proxy_username(&self.0.username)?;
easy.proxy_password(&self.0.password)
}
}
impl fmt::Debug for Credentials {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Credentials")
.field("username", &self.username)
.field("password", &"*****")
.finish()
}
}
#[derive(Clone, Debug)]
pub struct Authentication(u8);
impl Default for Authentication {
fn default() -> Self {
Self::none()
}
}
impl Authentication {
pub const fn none() -> Self {
Authentication(0)
}
pub const fn all() -> Self {
#[allow(unused_mut)]
let mut all = Self::basic().0 | Self::digest().0;
#[cfg(feature = "spnego")]
{
all |= Self::negotiate().0;
}
Authentication(all)
}
pub const fn basic() -> Self {
Authentication(0b0001)
}
pub const fn digest() -> Self {
Authentication(0b0010)
}
#[cfg(feature = "spnego")]
pub const fn negotiate() -> Self {
Authentication(0b0100)
}
const fn contains(&self, other: Self) -> bool {
(self.0 & other.0) == other.0
}
fn as_auth(&self) -> curl::easy::Auth {
let mut auth = curl::easy::Auth::new();
if self.contains(Authentication::basic()) {
auth.basic(true);
}
if self.contains(Authentication::digest()) {
auth.digest(true);
}
#[cfg(feature = "spnego")]
{
if self.contains(Authentication::negotiate()) {
auth.gssnegotiate(true);
}
}
auth
}
}
impl BitOr for Authentication {
type Output = Self;
fn bitor(mut self, other: Self) -> Self {
self |= other;
self
}
}
impl BitOrAssign for Authentication {
fn bitor_assign(&mut self, rhs: Self) {
self.0 |= rhs.0;
}
}
impl SetOpt for Authentication {
fn set_opt<H>(&self, easy: &mut curl::easy::Easy2<H>) -> Result<(), curl::Error> {
#[cfg(feature = "spnego")]
{
if self.contains(Authentication::negotiate()) {
easy.username("")?;
easy.password("")?;
}
}
easy.http_auth(&self.as_auth())
}
}
impl SetOpt for Proxy<Authentication> {
fn set_opt<H>(&self, easy: &mut curl::easy::Easy2<H>) -> Result<(), curl::Error> {
#[cfg(feature = "spnego")]
{
if self.0.contains(Authentication::negotiate()) {
easy.proxy_username("")?;
easy.proxy_password("")?;
}
}
easy.proxy_auth(&self.0.as_auth())
}
}
#[cfg(test)]
mod tests {
use super::Authentication;
#[test]
fn auth_default() {
let auth = Authentication::default();
assert!(!auth.contains(Authentication::basic()));
assert!(!auth.contains(Authentication::digest()));
}
#[test]
fn auth_all() {
let auth = Authentication::all();
assert!(auth.contains(Authentication::basic()));
assert!(auth.contains(Authentication::digest()));
}
#[test]
fn auth_single() {
let auth = Authentication::basic();
assert!(auth.contains(Authentication::basic()));
assert!(!auth.contains(Authentication::digest()));
let auth = Authentication::digest();
assert!(!auth.contains(Authentication::basic()));
assert!(auth.contains(Authentication::digest()));
}
}