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
|
use sqlx::error::Error;
use sqlx::sqlite::{SqlitePool, SqliteRow};
use sqlx_core::row::Row;
use crate::model::user::User;
pub async fn list(pool: &SqlitePool) -> Vec<User> {
let res = sqlx::query_as::<_, User>(
r#"
SELECT
id,
name,
email
FROM
users
ORDER BY
name
"#,
)
.fetch_all(pool)
.await;
match res {
Ok(users) => users,
Err(err) => {
error!("Error listing users: {:?}", err);
vec![]
}
}
}
pub async fn set_login_token(
pool: &SqlitePool,
email: String,
login_token: String,
) -> bool {
let res = sqlx::query(
r#"
UPDATE
users
SET
login_token = ?,
updated_at = datetime()
WHERE
email = ?
"#,
)
.bind(login_token)
.bind(email)
.execute(pool)
.await;
match res {
Ok(_) => true,
Err(err) => {
error!("Error updating login token: {:?}", err);
false
}
}
}
pub async fn remove_login_token(pool: &SqlitePool, id: i64) -> bool {
let res = sqlx::query(
r#"
UPDATE
users
SET
login_token = NULL,
updated_at = datetime()
WHERE
id = ?
"#,
)
.bind(id)
.execute(pool)
.await;
match res {
Ok(_) => true,
Err(err) => {
error!("Error removing login token: {:?}", err);
false
}
}
}
pub async fn get_by_login_token(
pool: &SqlitePool,
login_token: String,
) -> Option<User> {
let res = sqlx::query_as::<_, User>(
r#"
SELECT
id,
name,
email
FROM
users
WHERE
login_token = ?
"#,
)
.bind(login_token)
.fetch_one(pool)
.await;
match res {
Ok(user) => Some(user),
Err(Error::RowNotFound) => None,
Err(err) => {
error!("Error getting user from login token: {:?}", err);
None
}
}
}
pub async fn get_password_hash(
pool: &SqlitePool,
email: String,
) -> Option<String> {
let res = sqlx::query(
r#"
SELECT
password
FROM
users
WHERE
email = ?
"#,
)
.bind(email)
.map(|row: SqliteRow| row.get("password"))
.fetch_one(pool)
.await;
match res {
Ok(hash) => Some(hash),
Err(Error::RowNotFound) => None,
Err(err) => {
error!("Error getting password hash: {:?}", err);
None
}
}
}
|