summaryrefslogtreecommitdiff
path: root/src/graphql/mutation.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphql/mutation.rs')
-rw-r--r--src/graphql/mutation.rs35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/graphql/mutation.rs b/src/graphql/mutation.rs
new file mode 100644
index 0000000..9321653
--- /dev/null
+++ b/src/graphql/mutation.rs
@@ -0,0 +1,35 @@
+use crate::graphql::types::jwt;
+use crate::state::AppState;
+use async_graphql::{Context, Error, FieldResult, Object};
+
+pub struct Mutation;
+
+#[Object]
+impl Mutation {
+ async fn login<'ctx>(
+ &self,
+ ctx: &Context<'ctx>,
+ input: jwt::LoginCredentials,
+ ) -> FieldResult<jwt::AuthBody> {
+ let state = ctx.data::<AppState>().expect("Can't connect to db");
+ let client = &*state.client;
+
+ let password = sha256::digest(input.password);
+ let rows = client
+ .query(
+ "SELECT id FROM users WHERE email = $1 AND password = $2",
+ &[&input.email, &password],
+ )
+ .await
+ .unwrap();
+
+ let id: Vec<i32> = rows.iter().map(|row| row.get(0)).collect();
+ if id.len() == 1 {
+ let claims = jwt::Claims::new(id[0]);
+ let token = claims.get_token().unwrap();
+ Ok(jwt::AuthBody::new(token))
+ } else {
+ Err(Error::new("Invalid email or password"))
+ }
+ }
+}