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
#[cfg(feature = "diesel")]
pub(in crate::biome) mod diesel;
pub(in crate::biome) mod memory;
use std::str::FromStr;
mod error;
pub use error::CredentialsStoreError;
use bcrypt::{hash, verify, DEFAULT_COST};
#[cfg(feature = "diesel")]
use self::diesel::models::{CredentialsModel, NewCredentialsModel};
use error::{CredentialsBuilderError, CredentialsError};
const MEDIUM_COST: u32 = 8;
const LOW_COST: u32 = 4;
#[derive(Clone, Debug, PartialEq)]
pub struct Credentials {
pub user_id: String,
pub username: String,
pub password: String,
}
impl Credentials {
pub fn verify_password(&self, password: &str) -> Result<bool, CredentialsError> {
Ok(verify(password, &self.password)?)
}
}
#[derive(Debug, PartialEq, Deserialize, Serialize)]
pub struct UsernameId {
pub username: String,
pub user_id: String,
}
#[derive(Default)]
pub struct CredentialsBuilder {
user_id: Option<String>,
username: Option<String>,
password: Option<String>,
password_encryption_cost: Option<PasswordEncryptionCost>,
}
impl CredentialsBuilder {
pub fn with_user_id(mut self, user_id: &str) -> CredentialsBuilder {
self.user_id = Some(user_id.to_owned());
self
}
pub fn with_username(mut self, username: &str) -> CredentialsBuilder {
self.username = Some(username.to_owned());
self
}
pub fn with_password(mut self, password: &str) -> CredentialsBuilder {
self.password = Some(password.to_owned());
self
}
pub fn with_password_encryption_cost(
mut self,
cost: PasswordEncryptionCost,
) -> CredentialsBuilder {
self.password_encryption_cost = Some(cost);
self
}
pub fn build(self) -> Result<Credentials, CredentialsBuilderError> {
let user_id = self.user_id.ok_or_else(|| {
CredentialsBuilderError::MissingRequiredField("Missing user_id".to_string())
})?;
let username = self.username.ok_or_else(|| {
CredentialsBuilderError::MissingRequiredField("Missing username".to_string())
})?;
let cost = self
.password_encryption_cost
.unwrap_or(PasswordEncryptionCost::High);
let hashed_password = hash(
self.password.ok_or_else(|| {
CredentialsBuilderError::MissingRequiredField("Missing password".to_string())
})?,
cost.to_value(),
)?;
Ok(Credentials {
user_id,
username,
password: hashed_password,
})
}
}
pub trait CredentialsStore: Send + Sync {
fn add_credentials(&self, credentials: Credentials) -> Result<(), CredentialsStoreError>;
fn update_credentials(
&self,
user_id: &str,
updated_username: &str,
updated_password: &str,
password_encryption_cost: PasswordEncryptionCost,
) -> Result<(), CredentialsStoreError>;
fn remove_credentials(&self, user_id: &str) -> Result<(), CredentialsStoreError>;
fn fetch_credential_by_user_id(
&self,
user_id: &str,
) -> Result<Credentials, CredentialsStoreError>;
fn fetch_credential_by_username(
&self,
username: &str,
) -> Result<Credentials, CredentialsStoreError>;
fn fetch_username_by_id(&self, user_id: &str) -> Result<UsernameId, CredentialsStoreError>;
fn list_usernames(&self) -> Result<Vec<UsernameId>, CredentialsStoreError>;
}
impl<CS> CredentialsStore for Box<CS>
where
CS: CredentialsStore + ?Sized,
{
fn add_credentials(&self, credentials: Credentials) -> Result<(), CredentialsStoreError> {
(**self).add_credentials(credentials)
}
fn update_credentials(
&self,
user_id: &str,
updated_username: &str,
updated_password: &str,
password_encryption_cost: PasswordEncryptionCost,
) -> Result<(), CredentialsStoreError> {
(**self).update_credentials(
user_id,
updated_username,
updated_password,
password_encryption_cost,
)
}
fn remove_credentials(&self, user_id: &str) -> Result<(), CredentialsStoreError> {
(**self).remove_credentials(user_id)
}
fn fetch_credential_by_user_id(
&self,
user_id: &str,
) -> Result<Credentials, CredentialsStoreError> {
(**self).fetch_credential_by_user_id(user_id)
}
fn fetch_credential_by_username(
&self,
username: &str,
) -> Result<Credentials, CredentialsStoreError> {
(**self).fetch_credential_by_username(username)
}
fn fetch_username_by_id(&self, user_id: &str) -> Result<UsernameId, CredentialsStoreError> {
(**self).fetch_username_by_id(user_id)
}
fn list_usernames(&self) -> Result<Vec<UsernameId>, CredentialsStoreError> {
(**self).list_usernames()
}
}
#[cfg(feature = "diesel")]
impl From<Credentials> for NewCredentialsModel {
fn from(creds: Credentials) -> Self {
Self {
user_id: creds.user_id,
username: creds.username,
password: creds.password,
}
}
}
#[derive(Debug, Deserialize, Copy, Clone)]
pub enum PasswordEncryptionCost {
High,
Medium,
Low,
}
impl FromStr for PasswordEncryptionCost {
type Err = String;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s.to_lowercase().as_ref() {
"high" => Ok(PasswordEncryptionCost::High),
"medium" => Ok(PasswordEncryptionCost::Medium),
"low" => Ok(PasswordEncryptionCost::Low),
_ => Err(format!(
"Invalid cost value {}, must be high, medium or low",
s
)),
}
}
}
impl PasswordEncryptionCost {
pub(in crate::biome) fn to_value(self) -> u32 {
match self {
PasswordEncryptionCost::High => DEFAULT_COST,
PasswordEncryptionCost::Medium => MEDIUM_COST,
PasswordEncryptionCost::Low => LOW_COST,
}
}
}