2023-09-23 03:01:36 -04:00
|
|
|
#![feature(iterator_try_collect)]
|
|
|
|
|
2023-09-26 22:36:03 -04:00
|
|
|
use clap::{Parser, Subcommand};
|
2023-09-23 03:01:36 -04:00
|
|
|
use std::io::{self, Write};
|
|
|
|
|
|
|
|
mod queries;
|
|
|
|
use queries::*;
|
2023-09-26 21:37:13 -04:00
|
|
|
mod state;
|
|
|
|
use state::*;
|
2023-09-23 03:01:36 -04:00
|
|
|
mod datasets;
|
|
|
|
use datasets::*;
|
|
|
|
|
2023-09-26 22:36:03 -04:00
|
|
|
/// ## CLI Structs
|
|
|
|
|
|
|
|
#[derive(Parser)]
|
|
|
|
#[command(name = "StartGGElo")]
|
|
|
|
#[command(author = "Kiana Sheibani <kiana.a.sheibani@gmail.com>")]
|
|
|
|
#[command(version = "0.1.0")]
|
|
|
|
#[command(about = "Elo rating calculator for start.gg tournaments", long_about = None)]
|
|
|
|
#[command(propagate_version = true)]
|
|
|
|
struct Cli {
|
|
|
|
#[command(subcommand)]
|
|
|
|
subcommand: Subcommands,
|
|
|
|
#[arg(long)]
|
|
|
|
auth_token: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Subcommand)]
|
|
|
|
enum Subcommands {
|
|
|
|
Dataset {
|
|
|
|
#[command(subcommand)]
|
|
|
|
subcommand: DatasetSC,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Subcommand)]
|
|
|
|
enum DatasetSC {
|
|
|
|
List,
|
|
|
|
}
|
|
|
|
|
2023-09-23 03:01:36 -04:00
|
|
|
fn main() {
|
2023-09-26 22:36:03 -04:00
|
|
|
let cli = Cli::parse();
|
|
|
|
|
2023-09-23 03:01:36 -04:00
|
|
|
let mut config_dir = dirs::config_dir().unwrap();
|
|
|
|
config_dir.push("ggelo");
|
|
|
|
|
2023-09-26 21:37:13 -04:00
|
|
|
let auth_token = get_auth_key(&config_dir).unwrap();
|
|
|
|
|
2023-09-26 22:36:03 -04:00
|
|
|
let app_state = AppState {
|
|
|
|
config_dir,
|
|
|
|
auth_token,
|
|
|
|
};
|
|
|
|
|
|
|
|
match cli.subcommand {
|
|
|
|
Subcommands::Dataset {
|
|
|
|
subcommand: DatasetSC::List,
|
|
|
|
} => dataset_list(app_state),
|
|
|
|
}
|
|
|
|
|
2023-09-26 21:37:13 -04:00
|
|
|
// let config = AppState {
|
|
|
|
// config_dir,
|
|
|
|
// auth_token,
|
|
|
|
// };
|
|
|
|
|
2023-09-26 22:36:03 -04:00
|
|
|
// let path = dataset_path(&config_dir, "test").unwrap();
|
|
|
|
// let connection = open_dataset(&path).unwrap();
|
2023-09-23 03:01:36 -04:00
|
|
|
|
2023-09-26 22:36:03 -04:00
|
|
|
// let set_data = SetData {
|
|
|
|
// teams: vec![
|
|
|
|
// vec![PlayerData {
|
|
|
|
// id: PlayerId(1),
|
|
|
|
// name: Some("player1".to_owned()),
|
|
|
|
// prefix: None,
|
|
|
|
// }],
|
|
|
|
// vec![PlayerData {
|
|
|
|
// id: PlayerId(2),
|
|
|
|
// name: Some("player2".to_owned()),
|
|
|
|
// prefix: None,
|
|
|
|
// }],
|
|
|
|
// ],
|
|
|
|
// winner: 0,
|
|
|
|
// };
|
|
|
|
|
|
|
|
// update_from_set(&connection, set_data.clone()).unwrap();
|
|
|
|
// println!("{:?}", get_ratings(&connection, &set_data.teams).unwrap());
|
2023-09-23 03:01:36 -04:00
|
|
|
}
|
2023-09-26 22:36:03 -04:00
|
|
|
|
|
|
|
fn dataset_list(state: AppState) {}
|