Add support for language and name hints to cli

master
Edward Shen 2022-01-15 23:49:33 -08:00
parent b7d5425a73
commit ca71815d22
Signed by: edward
GPG Key ID: 19182661E818369F
2 changed files with 91 additions and 10 deletions

57
cli/src/fragment.rs Normal file
View File

@ -0,0 +1,57 @@
use omegaupload_common::secrecy::{ExposeSecret, SecretString};
pub struct Builder {
decryption_key: SecretString,
needs_password: bool,
file_name: Option<String>,
language: Option<String>,
}
impl Builder {
pub fn new(decryption_key: SecretString) -> Self {
Self {
decryption_key,
needs_password: false,
file_name: None,
language: None,
}
}
pub fn needs_password(mut self) -> Self {
self.needs_password = true;
self
}
pub fn file_name(mut self, name: String) -> Self {
self.file_name = Some(name);
self
}
pub fn language(mut self, language: String) -> Self {
self.language = Some(language);
self
}
pub fn build(self) -> SecretString {
if !self.needs_password && self.file_name.is_none() && self.language.is_none() {
return self.decryption_key;
}
let mut args = String::new();
if self.needs_password {
args.push_str("!pw");
}
if let Some(file_name) = self.file_name {
args.push_str("!name:");
args.push_str(&file_name);
}
if let Some(language) = self.language {
args.push_str("!lang:");
args.push_str(&language);
}
SecretString::new(format!(
"key:{}{}",
self.decryption_key.expose_secret(),
args
))
}
}

View File

@ -24,7 +24,7 @@ use anyhow::{anyhow, bail, Context, Result};
use atty::Stream;
use clap::Parser;
use omegaupload_common::crypto::{open_in_place, seal_in_place};
use omegaupload_common::secrecy::{ExposeSecret, SecretVec};
use omegaupload_common::secrecy::{ExposeSecret, SecretString, SecretVec};
use omegaupload_common::{
base64, Expiration, ParsedUrl, Url, API_ENDPOINT, EXPIRATION_HEADER_NAME,
};
@ -33,6 +33,10 @@ use reqwest::header::EXPIRES;
use reqwest::StatusCode;
use rpassword::prompt_password_stderr;
use crate::fragment::Builder;
mod fragment;
#[derive(Parser)]
struct Opts {
#[clap(subcommand)]
@ -53,6 +57,13 @@ enum Action {
/// The path to the file to upload. If none is provided, then reads
/// stdin instead.
path: Option<PathBuf>,
/// Hint that the uploaded file should be syntax highlighted with a
/// specific language.
#[clap(short, long)]
language: Option<String>,
/// Don't provide a file name hint.
#[clap(short = 'F', long)]
no_file_name_hint: bool,
},
Download {
/// The paste to download.
@ -69,7 +80,9 @@ fn main() -> Result<()> {
password,
duration,
path,
} => handle_upload(url, password, duration, path),
language,
no_file_name_hint,
} => handle_upload(url, password, duration, path, language, no_file_name_hint),
Action::Download { url } => handle_download(url),
}?;
@ -81,6 +94,8 @@ fn handle_upload(
password: bool,
duration: Option<Expiration>,
path: Option<PathBuf>,
language: Option<String>,
no_file_name_hint: bool,
) -> Result<()> {
url.set_fragment(None);
@ -89,7 +104,7 @@ fn handle_upload(
}
let (data, key) = {
let mut container = if let Some(path) = path {
let mut container = if let Some(ref path) = path {
std::fs::read(path)?
} else {
let mut container = vec![];
@ -110,7 +125,7 @@ fn handle_upload(
};
let enc_key = seal_in_place(&mut container, password)?;
let key = base64::encode(&enc_key.expose_secret().as_ref());
let key = SecretString::new(base64::encode(&enc_key.expose_secret().as_ref()));
(container, key)
};
@ -130,13 +145,22 @@ fn handle_upload(
.map_err(|_| anyhow!("Failed to get base URL"))?
.extend(std::iter::once(res.text()?));
let fragment = if password {
format!("key:{}!pw", key)
} else {
key
};
let mut fragment = Builder::new(key);
if password {
fragment = fragment.needs_password();
}
url.set_fragment(Some(&fragment));
if !no_file_name_hint {
if let Some(path) = path {
fragment = fragment.file_name(path.to_string_lossy().to_string());
}
}
if let Some(language) = language {
fragment = fragment.language(language);
}
url.set_fragment(Some(&fragment.build().expose_secret()));
println!("{}", url);