Created
March 28, 2022 19:02
-
-
Save gilbertw1/74baf4f665f75db1b830adaa7fea0419 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use util; | |
use std; | |
use config; | |
use config::Config; | |
use std::io::Write; | |
use std::fs::File; | |
use std::path::PathBuf; | |
use std::collections::HashSet; | |
use clap::ArgMatches; | |
const DEFAULT_CONFIG: &'static str = include_str!("../config.toml.default"); | |
lazy_static! { | |
static ref AUDIO_SOURCES: HashSet<String> = ["desktop".to_string(), "mic".to_string()].iter().cloned().collect(); | |
static ref FILENAME_STRATEGIES: HashSet<String> = ["prepend".to_string(), | |
"append".to_string(), | |
"exact".to_string(), | |
"replace".to_string()].iter().cloned().collect(); | |
} | |
pub fn load_config(matches: &ArgMatches) -> DropConfig { | |
let home_dir = std::env::home_dir().unwrap(); | |
let conf_file = home_dir.join(".config/drop/config.toml"); | |
if !conf_file.exists() { | |
create_default_config_file(&conf_file) | |
} | |
let mut conf = Config::new(); | |
conf.merge(config::File::new(&util::path_to_str(&conf_file), config::FileFormat::Toml)).unwrap(); | |
let config = DropConfig { | |
dir: conf.get_str("drop.dir").ok().unwrap_or("~/.drop".to_string()).replace("~", &home_dir.to_string_lossy().into_owned()), | |
host: none_if_empty(get_string_value(matches, "host").or(conf.get_str("drop.host").ok())), | |
aws_bucket: get_string_value(matches, "aws-bucket").or(conf.get_str("aws.bucket").ok()), | |
aws_key: get_string_value(matches, "aws-key").or(conf.get_str("aws.key").ok()), | |
aws_secret: get_string_value(matches, "aws-secret").or(conf.get_str("aws.secret").ok()), | |
filename_strategy: extract_filename_strategy(get_string_value(matches, "filename-strategy").or(conf.get_str("drop.filename_strategy").ok())), | |
unique_length: get_string_value(matches, "unique-length").map(|ls| ls.parse::<usize>().unwrap()) | |
.or(conf.get_int("drop.unique_length").ok().map(|i| i as usize)) .unwrap_or(10), | |
transparent: matches.is_present("transparent"), | |
tray_icon: !matches.is_present("hide-tray-icon"), | |
stop_key: get_string_value(matches, "stop-key").or(conf.get_str("drop.stop_key").ok()), | |
notifications: !matches.is_present("quiet"), | |
filename: get_string_value(matches, "filename"), | |
extension: get_string_value(matches, "extension"), | |
audio: matches.is_present("audio"), | |
audio_source: extract_audio_source(get_string_value(matches, "audio_source").or(conf.get_str("drop.audio_source").ok())), | |
border: matches.is_present("border"), | |
delay: get_num_value(matches, "delay").unwrap_or(0), | |
local: matches.is_present("local"), | |
mouse: matches.is_present("mouse"), | |
video_format: get_video_format(matches), | |
display_server: get_display_server(matches), | |
verbose: matches.is_present("verbose"), | |
}; | |
ensure_directory_exists(&PathBuf::from(&config.dir)); | |
config | |
} | |
fn extract_filename_strategy(strategy: Option<String>) -> String { | |
let strat = strategy.map(|strat| strat.to_lowercase()).unwrap_or("prepend".to_string()); | |
if !FILENAME_STRATEGIES.contains(&strat) { | |
panic!(format!("Unrecognized filename strategy: {}", strat)) | |
} | |
strat | |
} | |
fn extract_audio_source(source: Option<String>) -> String { | |
let source = source.map(|strat| strat.to_lowercase()).unwrap_or("mic".to_string()); | |
if !AUDIO_SOURCES.contains(&source) { | |
panic!("Unrecognized audio source: {}", source); | |
} | |
source | |
} | |
fn none_if_empty(optvalue: Option<String>) -> Option<String> { | |
match optvalue { | |
Some(ref value) if value != "" => Some(value.to_string()), | |
_ => None, | |
} | |
} | |
fn get_string_value(matches: &ArgMatches, key: &str) -> Option<String> { | |
matches.value_of(key).map(|m| m.to_string()) | |
} | |
fn get_num_value(matches: &ArgMatches, key: &str) -> Option<u64> { | |
matches.value_of(key).map(|m| m.parse::<u64>().unwrap()) | |
} | |
fn get_video_format(matches: &ArgMatches) -> String { | |
match matches.value_of("video-format") { | |
Some("gif") => "gif".to_string(), | |
_ => "mp4".to_string(), | |
} | |
} | |
fn get_display_server(matches: &ArgMatches) -> String { | |
match matches.value_of("display-server") { | |
Some("wayland") => "wayland".to_string(), | |
Some("x11") => "x11".to_string(), | |
_ => std::env::var("XDG_SESSION_TYPE").ok().unwrap_or("x11".to_string()), | |
} | |
} | |
fn ensure_directory_exists(dir: &PathBuf) { | |
let result = std::fs::create_dir_all(dir); | |
if result.is_err() { | |
println!("ERROR: Failed to ensure drop directory exists"); | |
std::process::exit(1); | |
} | |
} | |
fn create_default_config_file(config_file_path: &PathBuf) { | |
ensure_directory_exists(&config_file_path.parent().unwrap().to_path_buf()); | |
let mut file = File::create(config_file_path).unwrap(); | |
let result = file.write_all(DEFAULT_CONFIG.as_bytes()); | |
if result.is_err() { | |
println!("WARNING: Failed to create default config file"); | |
} | |
} | |
#[derive(Debug)] | |
pub struct DropConfig { | |
pub dir: String, | |
pub host: Option<String>, | |
pub aws_bucket: Option<String>, | |
pub aws_key: Option<String>, | |
pub aws_secret: Option<String>, | |
pub filename_strategy: String, | |
pub unique_length: usize, | |
pub transparent: bool, | |
pub tray_icon: bool, | |
pub stop_key: Option<String>, | |
pub notifications: bool, | |
// CLI Only Options | |
pub audio: bool, | |
pub audio_source: String, | |
pub border: bool, | |
pub delay: u64, | |
pub display_server: String, | |
pub extension: Option<String>, | |
pub filename: Option<String>, | |
pub local: bool, | |
pub mouse: bool, | |
pub video_format: String, | |
pub verbose: bool, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment