use std::{fs, path::Path}; use anyhow::Result; use serde::Deserialize; use serde_with::{serde_as, OneOrMany}; /// The main configuration. #[derive(Debug, Clone, Deserialize, Default)] pub struct Config { /// Flag indicating whether logs should be uploaded or not. pub upload: bool, /// Flag indicating whether logs with an unknown boss should be uploaded. #[serde(default)] pub upload_unknown: bool, /// Minimum log duration in milliseconds for uploads. #[serde(default)] pub minimum_duration: u64, /// How often the upload to dps.report should be retried. #[serde(default)] pub retries: u32, /// Whether ezau should zip non-zipped logs. #[serde(default = "default_zip")] pub zip: bool, /// Option Discord information for bot postings. pub discord: Option, /// Optional Matrix information for bot postings. pub matrix: Option, } /// Configuration pertaining to the Discord posting. #[derive(Debug, Clone, Deserialize)] pub struct Discord { /// Auth token for the Discord bot. pub auth_token: String, /// Channel ID in which logs should be posted. pub channel_id: u64, } /// Configuration pertaining to the Matrix posting. #[serde_as] #[derive(Debug, Clone, Deserialize)] pub struct Matrix { /// Matrix homeserver. pub homeserver: String, /// Matrix username. pub username: String, /// Matrix password. pub password: String, /// Device ID, or None if a new one should be generated. pub device_id: Option, /// Room ID(s) where the message should be posted to. #[serde_as(as = "OneOrMany<_>")] pub room_id: Vec, } /// Attempt to load the configuration from the given file. pub fn load>(path: P) -> Result { let content = fs::read(path)?; Ok(toml::from_slice(&content)?) } fn default_zip() -> bool { true }