mirror of
https://github.com/msfjarvis/clipboard-substitutor
synced 2025-08-14 22:27:03 +05:30
57 lines
1.9 KiB
Rust
57 lines
1.9 KiB
Rust
mod config;
|
|
|
|
use std::error::Error;
|
|
use std::ops::{Deref, Not};
|
|
|
|
use anyhow::{anyhow, Result};
|
|
use clipboard::{ClipboardContext, ClipboardProvider};
|
|
use dirs::config_dir;
|
|
use log::{debug, error};
|
|
|
|
use crate::config::{Act, Match, Replacements};
|
|
|
|
fn main() -> Result<()> {
|
|
pretty_env_logger::init();
|
|
let mut config_path = config_dir().ok_or_else(|| anyhow!("Failed to get config dir"))?;
|
|
config_path.push("substitutor");
|
|
config_path.push("config");
|
|
config_path.set_extension("toml");
|
|
let config_str = std::fs::read_to_string(config_path.as_path()).unwrap_or_default();
|
|
let config: Replacements<'_> = toml::from_str(&config_str)?;
|
|
let mut clipboard: ClipboardContext =
|
|
ClipboardProvider::new().expect("Failed to get clipboard");
|
|
let mut clipboard_contents = get_clipboard_contents(&mut clipboard);
|
|
while let Ok(contents) = clipboard_contents.as_deref() {
|
|
if let Some(subst) = config
|
|
.substitutors
|
|
.iter()
|
|
.find(|subst| subst.matcher.clone().check_match(&contents))
|
|
{
|
|
if subst.name.is_empty().not() {
|
|
debug!("{}: matched on {}...", &subst.name, truncate(&contents, 40));
|
|
}
|
|
let result = subst.action.clone().apply_action(contents.deref());
|
|
if let Err(e) = clipboard.set_contents(result.to_owned()) {
|
|
error!("{}", e);
|
|
}
|
|
};
|
|
while let Ok(new_contents) = get_clipboard_contents(&mut clipboard) {
|
|
if new_contents != contents {
|
|
clipboard_contents = Ok(new_contents);
|
|
break;
|
|
};
|
|
}
|
|
}
|
|
return Ok(());
|
|
}
|
|
|
|
fn get_clipboard_contents(clipboard: &mut ClipboardContext) -> Result<String, Box<dyn Error>> {
|
|
clipboard.get_contents()
|
|
}
|
|
|
|
fn truncate(s: &str, max_chars: usize) -> &str {
|
|
match s.char_indices().nth(max_chars) {
|
|
None => s,
|
|
Some((idx, _)) => &s[..idx],
|
|
}
|
|
}
|