From 73b0fb8762dcf06096757511ad32e0113450b306 Mon Sep 17 00:00:00 2001 From: BitHeaven Date: Fri, 15 Mar 2024 08:17:14 +0500 Subject: [PATCH] Add some users and jwt --- Cargo.lock | 41 +++-- Cargo.toml | 2 +- src/main.rs | 408 ++++++++++++++++++++++++++++++---------------- src/type_users.rs | 22 ++- 4 files changed, 305 insertions(+), 168 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0e2b17d..bfcffa5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -130,9 +130,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.4.1" +version = "2.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" +checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" [[package]] name = "blowfish" @@ -588,9 +588,9 @@ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" [[package]] name = "linux-raw-sys" -version = "0.4.12" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" +checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" [[package]] name = "lock_api" @@ -738,11 +738,11 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "openssl" -version = "0.10.62" +version = "0.10.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cde4d2d9200ad5909f8dac647e29482e07c3a35de8a13fce7c9c7747ad9f671" +checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" dependencies = [ - "bitflags 2.4.1", + "bitflags 2.4.2", "cfg-if", "foreign-types", "libc", @@ -770,9 +770,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.98" +version = "0.9.101" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1665caf8ab2dc9aef43d1c0023bd904633a6a05cb30b0ad59bec2ae986e57a7" +checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff" dependencies = [ "cc", "libc", @@ -877,9 +877,9 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.28" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a" +checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" [[package]] name = "powerfmt" @@ -1003,11 +1003,11 @@ checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" [[package]] name = "rustix" -version = "0.38.30" +version = "0.38.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca" +checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" dependencies = [ - "bitflags 2.4.1", + "bitflags 2.4.2", "errno", "libc", "linux-raw-sys", @@ -1137,9 +1137,9 @@ dependencies = [ [[package]] name = "sky-derive" -version = "0.2.0" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9549afdc45cc6a085341f42c448d30a1b8d4fbd2879876d39d26224942067920" +checksum = "8a5d926a1f01fa0f21cf9ba651777b78e0a8a236be400d94cbb03396f5e22287" dependencies = [ "proc-macro2", "quote", @@ -1148,9 +1148,9 @@ dependencies = [ [[package]] name = "skytable" -version = "0.8.3" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "921ad91fc76119f84e8fa928bd4d2c206213e059c7a6fb297d6267d5b49161b2" +checksum = "03e8d2a2164bdf8d5612caf70c31baf3ae905bc7bc4292dd631cfbe67eb097a9" dependencies = [ "async-trait", "bb8", @@ -1240,13 +1240,12 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.9.0" +version = "3.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa" +checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" dependencies = [ "cfg-if", "fastrand", - "redox_syscall", "rustix", "windows-sys 0.52.0", ] diff --git a/Cargo.toml b/Cargo.toml index dd398ed..05df1fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ jsonwebtoken = "9.2.0" rand = "0.8.5" rsa = "0.9.6" serde_json = "1.0.111" -skytable = "0.8.3" +skytable = "0.8.6" tokio = { version = "1.35.1", features = ["full"] } urlencoding = "2.1.3" uuid = { version = "1.6.1", features = ["v4", "v5"] } diff --git a/src/main.rs b/src/main.rs index 4c08173..8cb12ab 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,76 +1,94 @@ -use std::{ - sync::Arc, - net::SocketAddr, - collections::HashMap, - time::{SystemTime, UNIX_EPOCH}, -}; -use chrono::{ - DateTime, -}; -use http_body_util::{ - Full, - BodyExt, -}; -use hyper::{ - StatusCode, - Request, - Response, - Method, - HeaderMap, - header::HeaderValue, - body::{Bytes, Incoming}, - server::conn::http1 as Server, - service::service_fn, -}; -use hyper_util::{ - rt::TokioIo, -}; -use tokio::{ - net::TcpListener, -}; -use rsa::{ - pkcs1::{EncodeRsaPublicKey, EncodeRsaPrivateKey}, - RsaPrivateKey, - RsaPublicKey, -}; -use urlencoding::{ - decode as url_decode, -}; -use jsonwebtoken as jwt; -use jwt::{ - Header, - Algorithm, - TokenData, - Validation, - EncodingKey, - DecodingKey, - encode as jwt_encode, - decode as jwt_decode, -}; -use serde_json::{ - Value as Json, - json, -}; -use uuid::{ - Uuid, -}; -use skytable::{ - Config, - pool::{self, ConnectionMgrTcp}, - query, -}; -use bb8::{ - Pool, -}; mod type_users; mod type_sites; -use crate::{ - type_users::Users, - type_sites::Sites, + +use { + std::{ + sync::Arc, + net::SocketAddr, + collections::HashMap, + time::{ + SystemTime, + UNIX_EPOCH, + }, + }, + chrono::{ + DateTime, + }, + http_body_util::{ + Full, + BodyExt, + }, + hyper::{ + StatusCode, + Request, + Response, + Method, + HeaderMap, + header::HeaderValue, + body::{ + Bytes, + Incoming, + }, + server::conn::http1 as Server, + service::service_fn, + }, + hyper_util::{ + rt::TokioIo, + }, + tokio::{ + net::TcpListener, + }, + rsa::{ + pkcs1::{ + EncodeRsaPublicKey, + EncodeRsaPrivateKey, + }, + RsaPrivateKey, + RsaPublicKey, + }, + urlencoding::{ + decode as url_decode, + }, + jsonwebtoken as jwt, + jwt::{ + Header, + Algorithm, + TokenData, + Validation, + EncodingKey, + DecodingKey, + encode as jwt_encode, + decode as jwt_decode, + }, + serde_json::{ + Value as Json, + json, + }, + uuid::{ + Uuid, + }, + skytable::{ + query, + Config, + pool::{ + self, + ConnectionMgrTcp + }, + error::Error as SkyError, + }, + bb8::{ + Pool, + }, + crate::{ + type_users::Users, + type_sites::Sites, + }, }; type Res = std::result::Result; type Result = std::result::Result>; +type DBPool = Arc>; +type FullBytes = Result>>; const PORT: u16 = 8081; @@ -98,6 +116,7 @@ const HEADER_HTML: &str = r#"
"#; const FOOTER_HTML: &str = r#" +