86 lines
2.3 KiB
Rust
86 lines
2.3 KiB
Rust
use cynic::{GraphQlResponse, QueryBuilder};
|
|
use serde::{Deserialize, Serialize};
|
|
use std::path::Path;
|
|
|
|
pub mod search_games;
|
|
pub use search_games::*;
|
|
pub mod tournament_sets;
|
|
pub use tournament_sets::*;
|
|
pub mod player_info;
|
|
pub use player_info::*;
|
|
|
|
use crate::state::*;
|
|
use schema::schema;
|
|
|
|
// Auth key
|
|
|
|
pub fn get_auth_key(config_dir: &Path) -> Option<String> {
|
|
use std::env::{var, VarError};
|
|
use std::fs::read_to_string;
|
|
|
|
match var("AUTH_TOKEN") {
|
|
Ok(key) => Some(key),
|
|
Err(VarError::NotUnicode(_)) => panic!("Invalid authorization key"),
|
|
Err(VarError::NotPresent) => {
|
|
let mut auth_file = config_dir.to_owned();
|
|
auth_file.push("auth.txt");
|
|
read_to_string(auth_file).ok().and_then(|s| {
|
|
let trimmed = s.trim();
|
|
if trimmed.is_empty() {
|
|
None
|
|
} else {
|
|
Some(trimmed.to_owned())
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
// Types
|
|
|
|
// HACK: Unfortunately, start.gg seems to use integers for its ID type, whereas
|
|
// cynic always assumes that IDs are strings. To get around that, we define new
|
|
// scalar types that deserialize to u64.
|
|
|
|
#[derive(cynic::Scalar, Debug, Copy, Clone)]
|
|
#[cynic(graphql_type = "ID")]
|
|
pub struct VideogameId(pub u64);
|
|
|
|
#[derive(cynic::Scalar, Debug, Copy, Clone)]
|
|
#[cynic(graphql_type = "ID")]
|
|
pub struct EntrantId(pub u64);
|
|
|
|
#[derive(cynic::Scalar, Debug, Copy, Clone)]
|
|
#[cynic(graphql_type = "ID")]
|
|
pub struct PlayerId(pub u64);
|
|
|
|
#[derive(cynic::Scalar, Debug, Clone)]
|
|
pub struct Timestamp(pub u64);
|
|
|
|
// Query machinery
|
|
|
|
pub trait QueryUnwrap<Vars>: 'static + QueryBuilder<Vars> {
|
|
type Unwrapped;
|
|
|
|
fn unwrap_response(response: GraphQlResponse<Self>) -> Option<Self::Unwrapped>;
|
|
}
|
|
|
|
// Generic function for running start.gg queries
|
|
pub fn run_query<Builder, Vars>(vars: Vars, state: &AppState) -> Option<Builder::Unwrapped>
|
|
where
|
|
Builder: QueryUnwrap<Vars>,
|
|
Vars: Serialize,
|
|
for<'de> Builder: Deserialize<'de>,
|
|
{
|
|
use cynic::http::ReqwestBlockingExt;
|
|
|
|
let query = Builder::build(vars);
|
|
|
|
let response = reqwest::blocking::Client::new()
|
|
.post("https://api.start.gg/gql/alpha")
|
|
.header("Authorization", String::from("Bearer ") + &state.auth_token)
|
|
.run_graphql(query);
|
|
|
|
Builder::unwrap_response(response.unwrap())
|
|
}
|