cusku/src/config.rs

91 lines
2.6 KiB
Rust
Raw Normal View History

2024-08-07 11:28:24 +02:00
// Copyright (C) 2023-2099 The crate authors.
//
// This program is free software: you can redistribute it and/or modify it
// under the terms of the GNU Affero General Public License as published by the
// Free Software Foundation, either version 3 of the License, or (at your
// option) any later version.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
// for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
use std::io::{Error as IoError, ErrorKind as IoErrorKind};
use std::net::{IpAddr, Ipv6Addr, SocketAddr};
use camino::{Utf8Path, Utf8PathBuf};
2024-08-07 11:28:24 +02:00
use jid::BareJid;
use log::debug;
use serde::{Deserialize, Serialize};
use crate::error::Error;
#[derive(Debug, Serialize, Deserialize)]
pub struct Config {
/// Account address
pub jid: BareJid,
/// Account password
pub password: String,
/// Rooms to join, e.g., room@chat.example.org
#[serde(default = "Vec::new")]
pub rooms: Vec<BareJid>,
/// Nickname to use in rooms
#[serde(default = "Config::default_nickname")]
pub nickname: String,
/// Secret that matches the one provided to the Webhook service
#[serde(rename = "secret")]
pub secret: String,
/// HTTP Webhook listening address and port, e.g., 127.0.0.1:1234 or [::1]:1234
#[serde(default = "Config::default_addr")]
pub addr: SocketAddr,
}
impl Config {
pub fn default_nickname() -> String {
String::from("cusku")
}
pub fn default_addr() -> SocketAddr {
SocketAddr::new(IpAddr::V6(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1)), 3000)
}
pub fn from_file(file: Utf8PathBuf) -> Result<Config, Error> {
2024-08-07 11:28:24 +02:00
if file.try_exists().is_err() {
let err = IoError::new(IoErrorKind::NotFound, format!("{:?} not found", file));
return Err(Error::Io(err));
}
// TODO: tokio::fs
let buf = std::fs::read_to_string(file)?;
Ok(toml::from_str(&buf)?)
}
pub fn from_arg(file: Option<&Utf8PathBuf>) -> Result<Config, Error> {
2024-08-07 11:28:24 +02:00
let path = if let Some(path) = file {
// Provided by --config flag
path.canonicalize_utf8()?
2024-08-07 11:28:24 +02:00
} else {
let confdir: Utf8PathBuf = match std::env::var("XDG_CONFIG_HOME") {
Ok(ref dir) => Utf8Path::new(dir).to_path_buf(),
2024-08-07 11:28:24 +02:00
Err(_) => {
let home = std::env::var("HOME")?;
Utf8Path::new(home.as_str()).join(".config")
2024-08-07 11:28:24 +02:00
}
};
confdir.join("cusku/config.toml")
};
debug!("Using configuration file: {:?}", path);
Self::from_file(path)
}
}