use std::collections::HashMap; use std::env; use std::time::Duration; use eyre::{bail, Result}; use reqwest::{ header::{HeaderMap, AUTHORIZATION, USER_AGENT}, StatusCode, Url, }; use atuin_common::record::{EncryptedData, HostId, Record, RecordId}; use atuin_common::{ api::{ AddHistoryRequest, CountResponse, DeleteHistoryRequest, ErrorResponse, IndexResponse, LoginRequest, LoginResponse, RegisterResponse, StatusResponse, SyncHistoryResponse, }, record::RecordIndex, }; use semver::Version; use time::format_description::well_known::Rfc3339; use time::OffsetDateTime; use crate::{history::History, sync::hash_str}; static APP_USER_AGENT: &str = concat!("atuin/", env!("CARGO_PKG_VERSION"),); pub struct Client<'a> { sync_addr: &'a str, client: reqwest::Client, } pub async fn register( address: &str, username: &str, email: &str, password: &str, ) -> Result { let mut map = HashMap::new(); map.insert("username", username); map.insert("email", email); map.insert("password", password); let url = format!("{address}/user/{username}"); let resp = reqwest::get(url).await?; if resp.status().is_success() { bail!("username already in use"); } let url = format!("{address}/register"); let client = reqwest::Client::new(); let resp = client .post(url) .header(USER_AGENT, APP_USER_AGENT) .json(&map) .send() .await?; if !resp.status().is_success() { let error = resp.json::().await?; bail!("failed to register user: {}", error.reason); } let session = resp.json::().await?; Ok(session) } pub async fn login(address: &str, req: LoginRequest) -> Result { let url = format!("{address}/login"); let client = reqwest::Client::new(); let resp = client .post(url) .header(USER_AGENT, APP_USER_AGENT) .json(&req) .send() .await?; if resp.status() != reqwest::StatusCode::OK { let error = resp.json::().await?; bail!("invalid login details: {}", error.reason); } let session = resp.json::().await?; Ok(session) } pub async fn latest_version() -> Result { let url = "https://api.atuin.sh"; let client = reqwest::Client::new(); let resp = client .get(url) .header(USER_AGENT, APP_USER_AGENT) .send() .await?; if resp.status() != reqwest::StatusCode::OK { let error = resp.json::().await?; bail!("failed to check latest version: {}", error.reason); } let index = resp.json::().await?; let version = Version::parse(index.version.as_str())?; Ok(version) } impl<'a> Client<'a> { pub fn new( sync_addr: &'a str, session_token: &'a str, connect_timeout: u64, timeout: u64, ) -> Result { let mut headers = HeaderMap::new(); headers.insert(AUTHORIZATION, format!("Token {session_token}").parse()?); Ok(Client { sync_addr, client: reqwest::Client::builder() .user_agent(APP_USER_AGENT) .default_headers(headers) .connect_timeout(Duration::new(connect_timeout, 0)) .timeout(Duration::new(timeout, 0)) .build()?, }) } pub async fn count(&self) -> Result { let url = format!("{}/sync/count", self.sync_addr); let url = Url::parse(url.as_str())?; let resp = self.client.get(url).send().await?; if resp.status() != StatusCode::OK { bail!("failed to get count (are you logged in?)"); } let count = resp.json::().await?; Ok(count.count) } pub async fn status(&self) -> Result { let url = format!("{}/sync/status", self.sync_addr); let url = Url::parse(url.as_str())?; let resp = self.client.get(url).send().await?; if resp.status() != StatusCode::OK { bail!("failed to get status (are you logged in?)"); } let status = resp.json::().await?; Ok(status) } pub async fn get_history( &self, sync_ts: OffsetDateTime, history_ts: OffsetDateTime, host: Option, ) -> Result { let host = host.unwrap_or_else(|| { hash_str(&format!( "{}:{}", env::var("ATUIN_HOST_NAME").unwrap_or_else(|_| whoami::hostname()), env::var("ATUIN_HOST_USER").unwrap_or_else(|_| whoami::username()) )) }); let url = format!( "{}/sync/history?sync_ts={}&history_ts={}&host={}", self.sync_addr, urlencoding::encode(sync_ts.format(&Rfc3339)?.as_str()), urlencoding::encode(history_ts.format(&Rfc3339)?.as_str()), host, ); let resp = self.client.get(url).send().await?; let history = resp.json::().await?; Ok(history) } pub async fn post_history(&self, history: &[AddHistoryRequest]) -> Result<()> { let url = format!("{}/history", self.sync_addr); let url = Url::parse(url.as_str())?; self.client.post(url).json(history).send().await?; Ok(()) } pub async fn delete_history(&self, h: History) -> Result<()> { let url = format!("{}/history", self.sync_addr); let url = Url::parse(url.as_str())?; self.client .delete(url) .json(&DeleteHistoryRequest { client_id: h.id }) .send() .await?; Ok(()) } pub async fn post_records(&self, records: &[Record]) -> Result<()> { let url = format!("{}/record", self.sync_addr); let url = Url::parse(url.as_str())?; self.client.post(url).json(records).send().await?; Ok(()) } pub async fn next_records( &self, host: HostId, tag: String, start: Option, count: u64, ) -> Result>> { let url = format!( "{}/record/next?host={}&tag={}&count={}", self.sync_addr, host.0, tag, count ); let mut url = Url::parse(url.as_str())?; if let Some(start) = start { url.set_query(Some( format!( "host={}&tag={}&count={}&start={}", host.0, tag, count, start.0 ) .as_str(), )); } let resp = self.client.get(url).send().await?; let records = resp.json::>>().await?; Ok(records) } pub async fn record_index(&self) -> Result { let url = format!("{}/record", self.sync_addr); let url = Url::parse(url.as_str())?; let resp = self.client.get(url).send().await?; let index = resp.json().await?; Ok(index) } pub async fn delete(&self) -> Result<()> { let url = format!("{}/account", self.sync_addr); let url = Url::parse(url.as_str())?; let resp = self.client.delete(url).send().await?; if resp.status() == 403 { bail!("invalid login details"); } else if resp.status() == 200 { Ok(()) } else { bail!("Unknown error"); } } }