use serde::Deserialize;
use std::path::PathBuf;
#[derive(Debug, Deserialize, Default)]
pub struct Config {
#[serde(default)]
pub connections: Vec<ConnectionProfile>,
}
#[derive(Debug, Deserialize, Clone)]
pub struct ConnectionProfile {
pub name: String,
#[serde(rename = "type")]
pub db_type: String,
pub url: String,
}
impl Config {
pub fn load() -> Result<Self, Box<dyn std::error::Error>> {
let path = config_path();
if !path.exists() {
return Ok(Config::default());
}
let content = std::fs::read_to_string(path)?;
Ok(toml::from_str(&content)?)
}
}
fn config_path() -> PathBuf {
let home = std::env::var("HOME").unwrap_or_default();
PathBuf::from(home)
.join(".config")
.join("rowdy")
.join("config.toml")
}