use std::{fmt::Display, io::Read};
use csv::StringRecord;
use crate::{InfluxError, Precision, ReadQuery, WriteQuery};
pub struct Client<'a> {
url: &'a str,
token: String,
reqwest_client: reqwest::blocking::Client,
}
impl<'a> Client<'a> {
pub fn new(url: &'a str, token: &'a str) -> Self {
Self {
url,
token: token.to_owned(),
reqwest_client: reqwest::blocking::Client::new(),
}
}
pub fn from_env(url: &'a str) -> Result<Self, InfluxError> {
Ok(Self {
url,
token: std::env::var("INFLUXDB_TOKEN").map_err(|e| InfluxError {
msg: Some(e.to_string()),
})?,
reqwest_client: reqwest::blocking::Client::new(),
})
}
pub fn insert<T: Display>(
&self,
bucket: &'a str,
org: &'a str,
precision: Precision,
query: WriteQuery<T>,
) -> Result<(), InfluxError> {
self.reqwest_client
.post(&format!(
"{}/api/v2/write?org={}&bucket={}&precision={}",
self.url, org, bucket, precision
))
.header("Authorization", &format!("Token {}", self.token))
.body(format!(
"{}{} {}={}",
query.name,
query
.tags
.iter()
.map(|(key, val)| format!(",{key}={val}"))
.collect::<String>(),
query.field_name,
query.value
))
.send()
.map_err(|e| InfluxError {
msg: Some(e.to_string()),
})?;
Ok(())
}
pub fn get(&self, org: &'a str, query: ReadQuery) -> Result<String, InfluxError> {
self.get_raw(org, &query.to_string())
}
pub fn get_csv(
&self,
org: &'a str,
query: ReadQuery,
) -> Result<Vec<StringRecord>, InfluxError> {
let res = self.get(org, query)?;
let reader = csv::ReaderBuilder::new().from_reader(res.as_bytes());
Ok(reader.into_records().map(|r| r.unwrap()).collect())
}
pub fn get_raw(&self, org: &'a str, query: &'a str) -> Result<String, InfluxError> {
let mut buf = String::new();
self.reqwest_client
.post(&format!("{}/api/v2/query?org={}", self.url, org))
.header("Accept", "application/csv")
.header("Content-Type", "application/vnd.flux")
.header("Authorization", &format!("Token {}", self.token))
.body(query.to_owned())
.send()
.map_err(|e| InfluxError {
msg: Some(e.to_string()),
})?
.read_to_string(&mut buf)
.map_err(|e| InfluxError {
msg: Some(e.to_string()),
})?;
Ok(buf)
}
}