use std::{collections::HashMap, fs, net::SocketAddr, path::Path}; use once_cell::sync::Lazy; use serde::Deserialize; use tracing::info; use crate::engines::Engine; #[derive(Debug)] pub struct Config { pub bind: SocketAddr, pub ui: UiConfig, pub image_search: ImageSearchConfig, pub engines: EnginesConfig, } #[derive(Deserialize, Debug)] pub struct PartialConfig { pub bind: Option, pub ui: Option, pub image_search: Option, pub engines: Option, } impl Config { pub fn overlay(&mut self, partial: PartialConfig) { self.bind = partial.bind.unwrap_or(self.bind); self.ui.overlay(partial.ui.unwrap_or_default()); self.image_search .overlay(partial.image_search.unwrap_or_default()); self.engines.overlay(partial.engines.unwrap_or_default()); } } #[derive(Debug)] pub struct UiConfig { pub show_engine_list_separator: bool, pub show_version_info: bool, } #[derive(Deserialize, Debug, Default)] pub struct PartialUiConfig { #[serde(default)] pub show_engine_list_separator: Option, #[serde(default)] pub show_version_info: Option, } impl UiConfig { pub fn overlay(&mut self, partial: PartialUiConfig) { self.show_engine_list_separator = partial .show_engine_list_separator .unwrap_or(self.show_engine_list_separator); self.show_version_info = partial.show_version_info.unwrap_or(self.show_version_info); } } #[derive(Debug)] pub struct ImageSearchConfig { pub enabled: bool, pub show_engines: bool, pub proxy: ImageProxyConfig, } #[derive(Deserialize, Debug, Default)] pub struct PartialImageSearchConfig { pub enabled: Option, pub show_engines: Option, #[serde(default)] pub proxy: PartialImageProxyConfig, } impl ImageSearchConfig { pub fn overlay(&mut self, partial: PartialImageSearchConfig) { self.enabled = partial.enabled.unwrap_or(self.enabled); self.show_engines = partial.show_engines.unwrap_or(self.show_engines); self.proxy.overlay(partial.proxy); } } #[derive(Debug)] pub struct ImageProxyConfig { pub enabled: bool, pub max_download_size: u64, } #[derive(Deserialize, Debug, Default)] pub struct PartialImageProxyConfig { /// Whether we should proxy remote images through our server. This is mostly /// a privacy feature. pub enabled: Option, /// The maximum size of an image that can be proxied. This is in bytes. pub max_download_size: Option, } impl ImageProxyConfig { pub fn overlay(&mut self, partial: PartialImageProxyConfig) { self.enabled = partial.enabled.unwrap_or(self.enabled); self.max_download_size = partial.max_download_size.unwrap_or(self.max_download_size); } } #[derive(Debug)] pub struct EnginesConfig { pub map: HashMap, } #[derive(Deserialize, Debug, Default)] pub struct PartialEnginesConfig { #[serde(flatten)] pub map: HashMap, } #[derive(Deserialize, Clone, Debug)] #[serde(untagged)] pub enum PartialDefaultableEngineConfig { Boolean(bool), Full(PartialEngineConfig), } impl EnginesConfig { pub fn overlay(&mut self, partial: PartialEnginesConfig) { for (key, value) in partial.map { let full = match value { PartialDefaultableEngineConfig::Boolean(enabled) => PartialEngineConfig { enabled: Some(enabled), ..Default::default() }, PartialDefaultableEngineConfig::Full(full) => full, }; if let Some(existing) = self.map.get_mut(&key) { existing.overlay(full); } else { let mut new = EngineConfig::default(); new.overlay(full); self.map.insert(key, new); } } } pub fn get(&self, engine: Engine) -> &EngineConfig { self.map.get(&engine).unwrap_or(&DEFAULT_ENGINE_CONFIG_REF) } } #[derive(Debug)] pub struct EngineConfig { pub enabled: bool, pub weight: f64, pub extra: toml::Table, } #[derive(Deserialize, Clone, Debug, Default)] pub struct PartialEngineConfig { #[serde(default)] pub enabled: Option, /// The priority of this engine relative to the other engines. #[serde(default)] pub weight: Option, /// Per-engine configs. These are parsed at request time. #[serde(flatten)] pub extra: toml::Table, } impl EngineConfig { pub fn overlay(&mut self, partial: PartialEngineConfig) { self.enabled = partial.enabled.unwrap_or(self.enabled); self.weight = partial.weight.unwrap_or(self.weight); self.extra.extend(partial.extra); } } impl Config { pub fn read_or_create(config_path: &Path) -> eyre::Result { let mut config = Config::default(); if !config_path.exists() { info!("No config found, creating one at {config_path:?}"); let default_config_str = include_str!("../config-default.toml"); fs::write(config_path, default_config_str)?; } let given_config = toml::from_str::(&fs::read_to_string(config_path)?)?; config.overlay(given_config); Ok(config) } } // // DEFAULTS // impl Default for Config { fn default() -> Self { Config { bind: "0.0.0.0:28019".parse().unwrap(), ui: UiConfig { show_engine_list_separator: false, show_version_info: false, }, image_search: ImageSearchConfig { enabled: false, show_engines: true, proxy: ImageProxyConfig { enabled: true, max_download_size: 10_000_000, }, }, engines: EnginesConfig::default(), } } } impl Default for EngineConfig { fn default() -> Self { Self { enabled: true, weight: 1.0, extra: Default::default(), } } } static DEFAULT_ENGINE_CONFIG_REF: Lazy = Lazy::new(EngineConfig::default); impl EngineConfig { pub fn new() -> Self { Self::default() } pub fn with_weight(self, weight: f64) -> Self { Self { weight, ..self } } pub fn disabled(self) -> Self { Self { enabled: false, ..self } } pub fn with_extra(self, extra: toml::Table) -> Self { Self { extra, ..self } } } impl Default for EnginesConfig { fn default() -> Self { use toml::value::Value; let mut map = HashMap::new(); // engines are enabled by default, so engines that aren't listed here are // enabled // main search engines map.insert(Engine::Google, EngineConfig::new().with_weight(1.05)); map.insert(Engine::Bing, EngineConfig::new().with_weight(1.0)); map.insert(Engine::Brave, EngineConfig::new().with_weight(1.25)); map.insert( Engine::Marginalia, EngineConfig::new().with_weight(0.15).with_extra( vec![( "args".to_string(), Value::Table( vec![ ("profile".to_string(), Value::String("corpo".to_string())), ("js".to_string(), Value::String("default".to_string())), ("adtech".to_string(), Value::String("default".to_string())), ] .into_iter() .collect(), ), )] .into_iter() .collect(), ), ); // additional search engines map.insert( Engine::GoogleScholar, EngineConfig::new().with_weight(0.50).disabled(), ); map.insert( Engine::RightDao, EngineConfig::new().with_weight(0.10).disabled(), ); map.insert( Engine::Stract, EngineConfig::new().with_weight(0.15).disabled(), ); map.insert( Engine::Yep, EngineConfig::new().with_weight(0.10).disabled(), ); // calculators (give them a high weight so they're always the first thing in // autocomplete) map.insert(Engine::Numbat, EngineConfig::new().with_weight(10.0)); map.insert( Engine::Fend, EngineConfig::new().with_weight(10.0).disabled(), ); // other engines map.insert( Engine::Mdn, EngineConfig::new().with_extra( vec![("max_sections".to_string(), Value::Integer(1))] .into_iter() .collect(), ), ); Self { map } } }