diff options
author | alpaylan | 2021-04-12 22:15:17 +0300 |
---|---|---|
committer | alpaylan | 2021-04-12 22:15:17 +0300 |
commit | aa169ad1b3c277859f01413a945ea2d6f1375615 (patch) | |
tree | 402042bce17641759fa28e5c9a7219025caefcbb /src/handlers.rs | |
parent | 87e690420cb61efc172e82a29c38b479fc734247 (diff) | |
download | gradecoin-aa169ad1b3c277859f01413a945ea2d6f1375615.tar.gz gradecoin-aa169ad1b3c277859f01413a945ea2d6f1375615.tar.bz2 gradecoin-aa169ad1b3c277859f01413a945ea2d6f1375615.zip |
implement user authentication using jwt
Diffstat (limited to 'src/handlers.rs')
-rw-r--r-- | src/handlers.rs | 60 |
1 files changed, 56 insertions, 4 deletions
diff --git a/src/handlers.rs b/src/handlers.rs index 38bd459..07986f5 100644 --- a/src/handlers.rs +++ b/src/handlers.rs | |||
@@ -1,16 +1,29 @@ | |||
1 | use blake2::{Blake2s, Digest}; | ||
2 | use jsonwebtoken::{decode, Algorithm, DecodingKey, Validation}; | ||
1 | /// API handlers, the ends of each filter chain | 3 | /// API handlers, the ends of each filter chain |
2 | use log::debug; | 4 | use log::debug; |
5 | use md5::Md5; | ||
3 | use parking_lot::RwLockUpgradableReadGuard; | 6 | use parking_lot::RwLockUpgradableReadGuard; |
7 | use serde::{Deserialize, Serialize}; | ||
4 | use serde_json; | 8 | use serde_json; |
5 | use serde_json::json; | 9 | use serde_json::json; |
6 | use std::convert::Infallible; | 10 | use std::convert::Infallible; |
7 | use warp::{http::Response, http::StatusCode, reply}; | 11 | use std::fs; |
12 | use warp::{http::Response, http::StatusCode, reject, reply}; | ||
8 | 13 | ||
9 | use blake2::{Blake2s, Digest}; | 14 | use gradecoin::schema::{ |
15 | AuthRequest, Block, Db, MetuId, NakedBlock, PublicKeySignature, Transaction, User, | ||
16 | }; | ||
10 | 17 | ||
11 | use std::fs; | 18 | const BEARER: &str = "Bearer "; |
12 | 19 | ||
13 | use gradecoin::schema::{AuthRequest, Block, Db, MetuId, NakedBlock, Transaction, User}; | 20 | /// tha: Transaction Hash, String |
21 | /// iat: Issued At, Unix Time, epoch | ||
22 | #[derive(Debug, Serialize, Deserialize)] | ||
23 | pub struct Claims { | ||
24 | pub tha: String, | ||
25 | pub iat: usize, | ||
26 | } | ||
14 | 27 | ||
15 | /// POST /register | 28 | /// POST /register |
16 | /// Enables a student to introduce themselves to the system | 29 | /// Enables a student to introduce themselves to the system |
@@ -167,3 +180,42 @@ pub async fn propose_block(new_block: Block, db: Db) -> Result<impl warp::Reply, | |||
167 | Ok(StatusCode::BAD_REQUEST) | 180 | Ok(StatusCode::BAD_REQUEST) |
168 | } | 181 | } |
169 | } | 182 | } |
183 | |||
184 | pub async fn auth_propose_transaction( | ||
185 | new_transaction: Transaction, | ||
186 | token: String, | ||
187 | db: Db, | ||
188 | ) -> Result<impl warp::Reply, warp::Rejection> { | ||
189 | debug!("new transaction request {:?}", new_transaction); | ||
190 | let raw_jwt = token.trim_start_matches(BEARER).to_owned(); | ||
191 | |||
192 | let decoded = jsonwebtoken::decode::<Claims>( | ||
193 | &token, | ||
194 | &DecodingKey::from_rsa_pem( | ||
195 | db.users | ||
196 | .read() | ||
197 | .get(&new_transaction.by) | ||
198 | .unwrap() | ||
199 | .public_key | ||
200 | .as_bytes(), | ||
201 | ) | ||
202 | .unwrap(), | ||
203 | // todo@keles: If user is not found return user not found error | ||
204 | &Validation::new(Algorithm::PS256), | ||
205 | ) | ||
206 | .unwrap(); | ||
207 | // todo: If user is found but header is not validated, return header not valid | ||
208 | |||
209 | let hashed_transaction = Md5::digest(&serde_json::to_vec(&new_transaction).unwrap()); | ||
210 | |||
211 | // let mut transactions = db.lock().await; | ||
212 | if decoded.claims.tha == format!("{:x}", hashed_transaction) { | ||
213 | let mut transactions = db.pending_transactions.write(); | ||
214 | |||
215 | transactions.insert(new_transaction.source.to_owned(), new_transaction); | ||
216 | |||
217 | Ok(StatusCode::CREATED) | ||
218 | } else { | ||
219 | Ok(StatusCode::BAD_REQUEST) | ||
220 | } | ||
221 | } | ||