commiting before i cause any irreprable harm
This commit is contained in:
parent
27de6a00cf
commit
aef3ba85ae
1 changed files with 92 additions and 2 deletions
|
|
@ -2,11 +2,28 @@ use chrono::NaiveDateTime;
|
||||||
use juniper::{graphql_object, EmptyMutation, EmptySubscription, GraphQLObject, RootNode};
|
use juniper::{graphql_object, EmptyMutation, EmptySubscription, GraphQLObject, RootNode};
|
||||||
use rocket::response::content::RawHtml;
|
use rocket::response::content::RawHtml;
|
||||||
use rocket::State;
|
use rocket::State;
|
||||||
|
use rocket::request::{FromRequest, Outcome, Request};
|
||||||
|
use rocket::http::Status;
|
||||||
// use crate::account::account::{read_basic_auth_token, read_bearer_auth_token};
|
// use crate::account::account::{read_basic_auth_token, read_bearer_auth_token};
|
||||||
use crate::nnid::oauth::TokenData;
|
use crate::nnid::oauth::TokenData;
|
||||||
use crate::Pool;
|
use crate::Pool;
|
||||||
|
|
||||||
|
#[rocket::async_trait]
|
||||||
|
impl<'r> FromRequest<'r> for Context {
|
||||||
|
type Error = ();
|
||||||
|
|
||||||
|
async fn from_request(req: &'r Request<'_>) -> Outcome<Self, Self::Error> {
|
||||||
|
let pool = req.rocket().state::<Pool>().cloned().unwrap(); // assume Pool is managed as state
|
||||||
|
|
||||||
|
// Grab API key from header
|
||||||
|
let api_key = req.headers().get_one("X-API-Key").map(|s| s.to_string());
|
||||||
|
|
||||||
|
Outcome::Success(Context {
|
||||||
|
pool,
|
||||||
|
api_key,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub type Schema = RootNode<
|
pub type Schema = RootNode<
|
||||||
'static,
|
'static,
|
||||||
|
|
@ -16,8 +33,12 @@ pub type Schema = RootNode<
|
||||||
>;
|
>;
|
||||||
|
|
||||||
|
|
||||||
pub struct Context(pub Pool);
|
pub struct Context {
|
||||||
impl juniper::Context for Context{}
|
pub pool: Pool,
|
||||||
|
pub api_key: Option<String>,
|
||||||
|
}
|
||||||
|
impl juniper::Context for Context {}
|
||||||
|
|
||||||
|
|
||||||
#[derive(GraphQLObject)]
|
#[derive(GraphQLObject)]
|
||||||
#[graphql(description = "Data inside of a token")]
|
#[graphql(description = "Data inside of a token")]
|
||||||
|
|
@ -27,6 +48,16 @@ struct TokenInfo {
|
||||||
title_id: Option<String>
|
title_id: Option<String>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(GraphQLObject)]
|
||||||
|
#[graphql(description = "User information from a token")]
|
||||||
|
struct UserInfo {
|
||||||
|
username: String,
|
||||||
|
account_level: i32,
|
||||||
|
nex_password: String,
|
||||||
|
mii_data: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
pub struct Query;
|
pub struct Query;
|
||||||
|
|
||||||
#[graphql_object]
|
#[graphql_object]
|
||||||
|
|
@ -56,6 +87,65 @@ impl Query {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn user_from_token(
|
||||||
|
token_data: String,
|
||||||
|
context: &Context,
|
||||||
|
) -> Option<UserInfo> {
|
||||||
|
let data = match TokenData::decode(&token_data) {
|
||||||
|
Some(data) => data,
|
||||||
|
None => {
|
||||||
|
eprintln!("Failed to decode token");
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let user = match sqlx::query!(
|
||||||
|
"SELECT username, account_level, nex_password, mii_data FROM users WHERE pid = $1",
|
||||||
|
data.pid
|
||||||
|
)
|
||||||
|
.fetch_one(&context.0)
|
||||||
|
.await
|
||||||
|
.ok() {
|
||||||
|
Some(user) => user,
|
||||||
|
None => {
|
||||||
|
eprintln!("No user found for PID {}", data.pid);
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
Some(UserInfo {
|
||||||
|
username: user.username,
|
||||||
|
account_level: user.account_level,
|
||||||
|
nex_password: user.nex_password,
|
||||||
|
mii_data: user.mii_data.replace('\n', "").replace('\r', ""),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn user_by_pid(pid: i32, context: &Context) -> Option<UserInfo> {
|
||||||
|
// Expected API key (could also be in an env var)
|
||||||
|
const EXPECTED_KEY: &str = "your-secret-api-key";
|
||||||
|
|
||||||
|
if context.api_key.as_deref() != Some(EXPECTED_KEY) {
|
||||||
|
eprintln!("Rejected request due to missing or invalid API key");
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
|
||||||
|
let user = sqlx::query!(
|
||||||
|
"SELECT username, account_level, nex_password, mii_data FROM users WHERE pid = $1",
|
||||||
|
pid
|
||||||
|
)
|
||||||
|
.fetch_one(&context.pool)
|
||||||
|
.await
|
||||||
|
.ok()?;
|
||||||
|
|
||||||
|
Some(UserInfo {
|
||||||
|
username: user.username,
|
||||||
|
account_level: user.account_level,
|
||||||
|
nex_password: user.nex_password,
|
||||||
|
mii_data: user.mii_data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue