como/como_bin/src/graphql.rs

58 lines
1.4 KiB
Rust
Raw Normal View History

2022-10-03 23:00:31 +02:00
use async_graphql::{Context, EmptySubscription, Object, Schema};
2022-10-02 20:52:29 +02:00
2022-10-03 23:00:31 +02:00
use como_domain::item::{requests::CreateItemDto, responses::CreatedItemDto};
2022-10-02 12:12:08 +02:00
2022-10-02 14:15:45 +02:00
use crate::services::users_service::UserService;
pub type CibusSchema = Schema<QueryRoot, MutationRoot, EmptySubscription>;
pub struct MutationRoot;
#[Object]
impl MutationRoot {
async fn login(
&self,
ctx: &Context<'_>,
username: String,
password: String,
) -> anyhow::Result<bool> {
let user_service = ctx.data_unchecked::<UserService>();
let valid = user_service.validate_user(username, password).await?;
2022-10-02 20:51:06 +02:00
let returnvalid = match valid {
2022-10-02 14:15:45 +02:00
Some(..) => true,
None => false,
2022-10-02 20:51:06 +02:00
};
Ok(returnvalid)
2022-10-02 14:15:45 +02:00
}
async fn register(
&self,
ctx: &Context<'_>,
username: String,
password: String,
) -> anyhow::Result<String> {
let user_service = ctx.data_unchecked::<UserService>();
let user_id = user_service.add_user(username, password).await?;
2022-10-02 14:16:13 +02:00
Ok(user_id)
2022-10-02 14:15:45 +02:00
}
2022-10-03 23:00:31 +02:00
async fn create_item(
&self,
ctx: &Context<'_>,
item: CreateItemDto,
) -> anyhow::Result<CreatedItemDto> {
let services_register = ctx.data_unchecked::<ServiceRegister>()
}
2022-10-02 14:15:45 +02:00
}
2022-10-02 12:12:08 +02:00
pub struct QueryRoot;
#[Object]
impl QueryRoot {
2022-10-03 23:00:31 +02:00
async fn get_upcoming(&self, _ctx: &Context<'_>) -> Vec<Event> {}
2022-10-02 12:12:08 +02:00
}