gt/src/arg.rs

92 lines
5.1 KiB
Rust
Raw Normal View History

use clap::{App, Arg, SubCommand, ArgMatches};
/// Global function that grabs the arguments and shows the user help on any given command.
/// An error occurs when a command passes through and it doesn't match the argument specified.
pub fn get_args() -> ArgMatches<'static> {
let matches = App::new("gt")
2021-12-19 13:10:28 -05:00
.version("0.0.2")
.author("Wyatt J. Miller <wjmiller2016@gmail.com>")
.about("It's a Gitea CLI client!")
2024-08-23 16:36:39 -04:00
.arg(Arg::with_name("--json").help("Print out results in JSON"))
.subcommand(SubCommand::with_name("repo")
.about("Create, delete, list, search, or fork a repository")
.arg(Arg::with_name("create")
.short("c")
.long("create")
.value_names(&["REPO"])
.help("Create a repository for a user")
)
.arg(Arg::with_name("search")
.short("s")
.long("search")
2021-07-27 01:48:05 -04:00
.value_names(&["REPO"])
.help("Search repositories for a user")
)
.arg(Arg::with_name("list")
.short("l")
.long("list")
.help("List all the repositories for the authenticated user")
)
.arg(Arg::with_name("delete")
.short("d")
.long("delete")
.value_names(&["OWNER", "REPO"])
.help("Delete a repository for a user")
)
.arg(Arg::with_name("fork")
.short("f")
.long("fork")
.value_names(&["OWNER", "REPO"])
.help("Fork a repository for a user")
)
2021-12-19 20:01:05 -05:00
.arg(Arg::with_name("draw")
.short("o")
.long("push")
.value_names(&["OWNER", "REPO", "BRANCH"])
.help("Push local changes to a remote repository")
)
.arg(Arg::with_name("pull")
.short("pl")
.long("pull")
.value_names(&["OWNER", "REPO", "BRANCH"])
.help("Pull latest changes from a remote repository")
)
.arg(Arg::with_name("clone")
.short("i")
.long("clone")
.value_names(&["OWNER", "REPO"])
.help("Clone a repository")
)
)
.subcommand(SubCommand::with_name("issue")
.about("Create, search, comment, close, or reopen an issue")
.arg(Arg::with_name("create")
.short("c")
.long("c")
2021-12-18 20:08:46 -05:00
.value_names(&["OWNER", "REPO"])
.help("Create an issue for a repository")
)
)
.arg(Arg::with_name(""))
.subcommand(SubCommand::with_name("pr")
.about("Create, search, comment, merge, and close pull requests")
.arg(Arg::with_name("create")
.short("c")
.long("create")
.value_names(&["REPO"])
.help("Create a new pull request for a repository")
)
)
.subcommand(SubCommand::with_name("user")
.about("Check the status, repositories, followers, and other such items about your and others user")
.arg(Arg::with_name("get")
.short("g")
.long("get")
.help("Get your authenticated user")
)
)
.get_matches();
matches
2021-07-27 01:48:05 -04:00
}