gt/src/request.rs

118 lines
4.0 KiB
Rust
Raw Normal View History

2021-02-24 13:12:13 -05:00
use std::collections::HashMap;
use clap::ArgMatches;
use reqwest::blocking::Client;
2021-02-24 13:12:13 -05:00
use crate::config::Configuration;
pub struct Request<'a> {
pub client: Client,
2021-07-27 01:48:05 -04:00
pub arg_value: ArgMatches<'a>,
2021-02-24 13:12:13 -05:00
pub map: HashMap<String, String>,
pub url: Option<String>,
2021-07-27 01:48:05 -04:00
pub authentication: Authentication,
2021-02-24 13:12:13 -05:00
}
pub struct Authentication {
pub basic: bool,
pub api_token: bool,
pub credentials: (Option<String>, Option<String>),
2021-02-24 13:12:13 -05:00
}
2021-07-27 01:48:05 -04:00
impl<'a> Request<'a> {
/// Public constructor for a request with a simple username and password
pub fn with_basic_request(
config: Configuration,
2021-07-27 01:48:05 -04:00
arg: ArgMatches,
auth: Authentication,
) -> Request {
2021-02-24 13:12:13 -05:00
Request {
client: Client::new(),
2021-07-27 01:48:05 -04:00
arg_value: arg,
2021-02-24 13:12:13 -05:00
map: HashMap::new(),
url: Some(format!("{}{}", config.base_url, config.base_api)),
2021-07-27 01:48:05 -04:00
authentication: auth,
}
}
/// Public constructor for a request with an API token
pub fn with_api_request(
config: Configuration,
2021-07-27 01:48:05 -04:00
arg: ArgMatches,
auth: Authentication,
) -> Request {
2021-07-27 01:48:05 -04:00
Request {
client: Client::new(),
arg_value: arg,
map: HashMap::new(),
url: Some(format!("{}{}", config.base_url, config.base_api)),
authentication: auth,
2021-02-24 13:12:13 -05:00
}
}
}
impl Authentication {
2021-07-27 01:48:05 -04:00
/// Public constructor for getting authentication, provided by the configuration
/// file. The most secure methods are checked first, filtering down to the least
/// secure methods. Currently, only two methods are supported: API token, and
2021-07-27 01:48:05 -04:00
/// username/password combo.
2021-02-24 13:12:13 -05:00
pub fn new(config: &Configuration) -> Authentication {
// TODO: might be broken, haven't tested
// this is horror code, I know it
// match the damn thing
// someone is going to take this and put it in r/badcode lol
let basic_auth = config.password.as_ref().unwrap().to_string();
let api_auth = config.api_token.as_ref().unwrap().to_string();
2021-07-27 01:48:05 -04:00
if api_auth.is_empty() {
if !(basic_auth.is_empty()) {
Authentication::with_basic(
config.username.as_ref().unwrap().to_string(),
basic_auth,
)
2021-07-27 01:48:05 -04:00
} else {
panic!("Must have some form of authentication! Exiting...");
}
} else {
Authentication::with_api_token(config.username.as_ref().unwrap().to_string(), api_auth)
}
2021-02-24 13:12:13 -05:00
}
2021-07-27 01:48:05 -04:00
/// Private constructor once the public constructor figures out what kind of authentication
/// is being used. This constructor uses the username/password combo, a less secure of
/// authenticating that the API token.
fn with_basic(user: String, pass: String) -> Authentication {
2021-02-24 13:12:13 -05:00
Authentication {
basic: true,
2021-07-27 01:48:05 -04:00
api_token: false,
credentials: (Some(user), Some(pass)),
2021-02-24 13:12:13 -05:00
}
}
2021-07-27 01:48:05 -04:00
/// Private constructor once the public constructor figures out what kind of authentication
/// is being used. This constructor uses the API token, a more secure way of authenticating
/// instead of using the basic username and password.
fn with_api_token(user: String, api_token: String) -> Authentication {
2021-02-24 13:12:13 -05:00
Authentication {
basic: false,
2021-07-27 01:48:05 -04:00
api_token: true,
credentials: (Some(user), Some(api_token)),
2021-02-24 13:12:13 -05:00
}
}
2021-07-27 01:48:05 -04:00
/// Public method that based on the what kind of authentication is being used, it can
/// determine what kind of requesting method is going to be used. See the Request
/// structure for more details.
pub fn request_chooser(self, config: Configuration, arg: ArgMatches<'static>) -> Request {
2021-07-27 01:48:05 -04:00
if let true = self.api_token {
Request::with_api_request(config, arg.to_owned(), self)
} else {
match self.basic {
true => Request::with_basic_request(config, arg.to_owned(), self),
false => panic!(),
}
}
2021-02-24 13:12:13 -05:00
}
2021-07-27 01:48:05 -04:00
}