use std::fs;
use anyhow::{anyhow, bail, Ok};
use serde::Deserialize;
use serde::Serialize;
pub const CONTEXT_DEFAULT_TEXT: &str = "version = \"1.0\"
[[environment]]
name = 'local'
target = 'docker'
set = true
[[environment]]
name = 'prod'
target = 'tembo-cloud'
org_id = 'ORG_ID'
profile = 'prod'
";
pub const CREDENTIALS_DEFAULT_TEXT: &str = "version = \"1.0\"
[[profile]]
name = 'prod'
tembo_access_token = 'ACCESS_TOKEN'
tembo_host = 'https://api.tembo.io'
tembo_data_host = 'https://api.data-1.use1.tembo.io'
";
#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)]
pub struct Context {
pub version: String,
pub environment: Vec<Environment>,
}
#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)]
pub struct Environment {
pub name: String,
pub target: String,
pub org_id: Option<String>,
pub profile: Option<String>,
pub set: Option<bool>,
pub selected_profile: Option<Profile>,
}
#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)]
pub struct Credential {
pub version: String,
pub profile: Vec<Profile>,
}
#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)]
pub struct Profile {
pub name: String,
pub tembo_access_token: String,
pub tembo_host: String,
pub tembo_data_host: String,
}
pub enum Target {
Docker,
TemboCloud,
}
impl ToString for Target {
fn to_string(&self) -> String {
match self {
Self::Docker => String::from("docker"),
Self::TemboCloud => String::from("tembo-cloud"),
}
}
}
pub fn tembo_home_dir() -> String {
let mut tembo_home = home::home_dir().unwrap().as_path().display().to_string();
tembo_home.push_str("/.tembo");
tembo_home
}
pub fn tembo_context_file_path() -> String {
tembo_home_dir() + "/context"
}
pub fn tembo_credentials_file_path() -> String {
tembo_home_dir() + "/credentials"
}
pub fn list_context() -> Result<Context, anyhow::Error> {
let filename = tembo_context_file_path();
let contents = fs::read_to_string(&filename)
.map_err(|err| anyhow!("Error reading file {filename}: {err}"))?;
let context: Context =
toml::from_str(&contents).map_err(|err| anyhow!("Error reading file {filename}: {err}"))?;
Ok(context)
}
pub fn get_current_context() -> Result<Environment, anyhow::Error> {
let context = list_context()?;
let profiles = list_credential_profiles()?;
for mut env in context.environment {
if let Some(_is_set) = env.set {
if let Some(profile) = &env.profile {
let credential = profiles.iter().rev().find(|c| &c.name == profile).unwrap();
env.selected_profile = Some(credential.to_owned());
}
return Ok(env);
}
}
bail!("Tembo context not set");
}
pub fn list_credential_profiles() -> Result<Vec<Profile>, anyhow::Error> {
let filename = tembo_credentials_file_path();
let contents = fs::read_to_string(&filename)
.map_err(|err| anyhow!("Error reading file {filename}: {err}"))?;
let credential: Credential = toml::from_str(&contents)
.map_err(|err| anyhow!("Issue with the format of the TOML file {filename}: {err}"))?;
Ok(credential.profile)
}