You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
phetch/src/main.rs

122 lines
3.2 KiB
Rust

use phetch::{
args, gopher, menu,
ui::{Mode, UI},
};
use std::{env, error::Error, io, process};
5 years ago
5 years ago
fn main() {
if let Err(e) = run() {
eprintln!("{}", e);
process::exit(1);
}
4 years ago
}
/// Start the app. Returns UNIX exit code.
fn run() -> Result<(), Box<dyn Error>> {
let str_args = env::args().skip(1).collect::<Vec<String>>();
let mut cfg = args::parse(&str_args)?;
4 years ago
// check for simple modes
match cfg.mode {
Mode::Raw => return print_raw(&cfg.start, cfg.tls, cfg.tor),
Mode::Version => return print_version(),
Mode::Help => return print_usage(),
Mode::NoTTY => return print_plain(&cfg.start, cfg.tls, cfg.tor),
4 years ago
Mode::Print => cfg.wide = true,
Mode::Run => {}
5 years ago
}
// load url
4 years ago
let start = cfg.start.clone();
let mode = cfg.mode;
4 years ago
let mut ui = UI::new(cfg);
ui.open(&start, &start)?;
// print rendered version
if mode == Mode::Print {
println!("{}", ui.render()?);
return Ok(());
}
// run app
ui.run()?;
Ok(())
5 years ago
}
/// --version
fn print_version() -> Result<(), Box<dyn Error>> {
4 years ago
println!(
4 years ago
"phetch v{version} ({built})",
4 years ago
built = phetch::BUILD_DATE,
version = phetch::VERSION
);
Ok(())
5 years ago
}
/// --help
fn print_usage() -> Result<(), Box<dyn Error>> {
print_version()?;
5 years ago
println!(
4 years ago
"
4 years ago
Usage:
4 years ago
phetch [options] Launch phetch in interactive mode
phetch [options] url Open Gopher URL in interactive mode
4 years ago
Options:
4 years ago
-s, --tls Try to open Gopher URLs securely w/ TLS
-o, --tor Use local Tor proxy to open all pages
-S, -O Disable TLS or Tor
4 years ago
-r, --raw Print raw Gopher response only
-p, --print Print rendered Gopher response only
-l, --local Connect to 127.0.0.1:7070
4 years ago
4 years ago
-c, --config FILE Use instead of ~/.config/phetch/phetch.conf
-C, --no-config Don't use any config file
4 years ago
-h, --help Show this screen
-v, --version Show phetch version
4 years ago
Command line options always override options set in phetch.conf.
4 years ago
Once you've launched phetch, use `ctrl-h` to view the on-line help."
5 years ago
);
Ok(())
5 years ago
}
5 years ago
/// Print just the raw Gopher response.
fn print_raw(url: &str, tls: bool, tor: bool) -> Result<(), Box<dyn Error>> {
let (_, out) = gopher::fetch_url(url, tls, tor)?;
println!("{}", out);
Ok(())
}
/// Print a colorless, plain version of the response for a non-tty
/// (like a pipe).
fn print_plain(url: &str, tls: bool, tor: bool) -> Result<(), Box<dyn Error>> {
let mut out = String::new();
let typ = gopher::type_for_url(url);
let (_, response) = gopher::fetch_url(url, tls, tor)?;
match typ {
gopher::Type::Menu => {
let menu = menu::parse(url, response);
for line in menu.lines {
out.push_str(line.text(&menu.raw));
out.push('\n');
}
4 years ago
}
gopher::Type::Text => println!("{}", response.trim_end_matches(".\r\n")),
_ => {
return Err(Box::new(io::Error::new(
io::ErrorKind::Other,
format!("can't print gopher type: {:?}", typ),
)));
}
};
print!("{}", out);
Ok(())
5 years ago
}