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.
amethyst/src/main.rs

152 lines
4.6 KiB
Rust

mod database;
mod internal;
mod operations;
use crate::internal::{init, sort, structs::Options};
3 years ago
use clap::{App, AppSettings, Arg, ArgSettings, SubCommand};
use std::process::exit;
3 years ago
fn main() {
let matches = App::new("Amethyst")
.version(env!("CARGO_PKG_VERSION"))
.about(env!("CARGO_PKG_DESCRIPTION"))
.arg(
Arg::with_name("verbose")
.short("v")
3 years ago
.long("verbose")
.multiple(true)
3 years ago
.set(ArgSettings::Global)
.help("Sets the level of verbosity"),
)
3 years ago
.arg(
Arg::with_name("noconfirm")
.long("noconfirm")
.set(ArgSettings::Global)
.help("Complete operation without prompting user"),
)
.subcommand(
SubCommand::with_name("install")
.about("Installs a package from either the AUR or the PacMan-defined repositories")
.aliases(&["-S", "ins"])
.arg(
Arg::with_name("package(s)")
.help("The name of the package(s) to install")
.required(true)
.multiple(true)
.index(1),
),
)
.subcommand(
SubCommand::with_name("remove")
.about("Removes a previously installed package")
3 years ago
.aliases(&["-R", "-Rs", "rm"])
.arg(
Arg::with_name("package(s)")
.help("The name of the package(s) to remove")
.required(true)
.multiple(true)
.index(1),
),
)
.subcommand(
SubCommand::with_name("search")
.about("Searches for the relevant packages in both the AUR and repos.")
.aliases(&["-Ss", "sea"])
.arg(
3 years ago
Arg::with_name("aur")
.short("a")
.long("aur")
.help("Search only the AUR for the package"),
)
.arg(
3 years ago
Arg::with_name("repo")
.short("r")
.long("repo")
.help("Searches only local repos for the package"),
)
.arg(
Arg::with_name("package(s)")
3 years ago
.help("The name of the package to search for")
.required(true)
3 years ago
.multiple(false)
.index(1),
),
)
3 years ago
.settings(&[
AppSettings::GlobalVersion,
AppSettings::VersionlessSubcommands,
AppSettings::ArgRequiredElseHelp,
])
.get_matches();
let verbosity: i32 = matches.occurrences_of("verbose") as i32;
3 years ago
let noconfirm: bool = matches.is_present("noconfirm");
let options = Options {
verbosity,
noconfirm,
};
init(options);
let packages: Vec<String> = matches
3 years ago
.subcommand()
.1
.unwrap()
.values_of("package(s)")
.unwrap()
.into_iter()
.map(|s| s.to_string())
.collect();
if let true = matches.is_present("install") {
3 years ago
let sorted = sort(&packages, options);
3 years ago
3 years ago
operations::install(sorted.repo, options);
operations::aur_install(sorted.aur, options);
if !sorted.nf.is_empty() {
eprintln!(
"Couldn't find packages: {} in repos or the AUR.",
sorted.nf.join(", ")
);
}
exit(0);
}
if let true = matches.is_present("remove") {
operations::uninstall(packages, options);
exit(0);
}
if let true = matches.is_present("search") {
if matches
.subcommand_matches("search")
.unwrap()
.is_present("aur")
{
operations::aur_search(&packages[0], options);
}
if matches
.subcommand_matches("search")
.unwrap()
.is_present("repo")
{
operations::search(&packages[0], options);
}
if !matches
.subcommand_matches("search")
.unwrap()
.is_present("repo")
&& !matches
.subcommand_matches("search")
.unwrap()
.is_present("aur")
{
operations::search(&packages[0], options);
operations::aur_search(&packages[0], options);
}
exit(0);
}
}