feat: pw shows compact list, pw list shows verbose
This commit is contained in:
parent
a8ac211a41
commit
c09790ab28
1 changed files with 6 additions and 6 deletions
12
src/main.rs
12
src/main.rs
|
@ -36,7 +36,7 @@ pub enum PostWomanActions {
|
||||||
query: String,
|
query: String,
|
||||||
|
|
||||||
/// run requests in parallel
|
/// run requests in parallel
|
||||||
#[arg(long, default_value_t = false)]
|
#[arg(short, long, default_value_t = false)]
|
||||||
parallel: bool,
|
parallel: bool,
|
||||||
|
|
||||||
/// force debug extractor on all routes
|
/// force debug extractor on all routes
|
||||||
|
@ -46,9 +46,9 @@ pub enum PostWomanActions {
|
||||||
|
|
||||||
/// show all registered routes in current collection
|
/// show all registered routes in current collection
|
||||||
List {
|
List {
|
||||||
/// show verbose details for each route
|
/// show only limited details for each route
|
||||||
#[arg(short, long, default_value_t = false)]
|
#[arg(short, long, default_value_t = false)]
|
||||||
verbose: bool,
|
compact: bool,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -117,15 +117,15 @@ fn load_collections(store: &mut HashMap<String, PostWomanCollection>, mut path:
|
||||||
store.insert(name, collection);
|
store.insert(name, collection);
|
||||||
}
|
}
|
||||||
|
|
||||||
const DEFAULT_ACTION: PostWomanActions = PostWomanActions::List { verbose: false };
|
const DEFAULT_ACTION: PostWomanActions = PostWomanActions::List { compact: true };
|
||||||
type RunResult = (Result<String, PostWomanError>, String, String, chrono::DateTime<chrono::Local>);
|
type RunResult = (Result<String, PostWomanError>, String, String, chrono::DateTime<chrono::Local>);
|
||||||
|
|
||||||
async fn run_postwoman(args: &PostWomanArgs, namespace: String, collection: PostWomanCollection, pool: &mut tokio::task::JoinSet<RunResult>) {
|
async fn run_postwoman(args: &PostWomanArgs, namespace: String, collection: PostWomanCollection, pool: &mut tokio::task::JoinSet<RunResult>) {
|
||||||
let action = args.action.as_ref().unwrap_or(&DEFAULT_ACTION);
|
let action = args.action.as_ref().unwrap_or(&DEFAULT_ACTION);
|
||||||
|
|
||||||
match action {
|
match action {
|
||||||
PostWomanActions::List { verbose } => {
|
|
||||||
println!("> {name}");
|
println!("> {name}");
|
||||||
|
PostWomanActions::List { compact } => {
|
||||||
|
|
||||||
for (key, value) in collection.env {
|
for (key, value) in collection.env {
|
||||||
println!("+ {key}: {}", ext::stringify_toml(&value));
|
println!("+ {key}: {}", ext::stringify_toml(&value));
|
||||||
|
@ -135,7 +135,7 @@ async fn run_postwoman(args: &PostWomanArgs, namespace: String, collection: Post
|
||||||
|
|
||||||
for (name, mut endpoint) in collection.route {
|
for (name, mut endpoint) in collection.route {
|
||||||
println!("- {name}: \t{} \t{}", endpoint.method.as_deref().unwrap_or("GET"), endpoint.url);
|
println!("- {name}: \t{} \t{}", endpoint.method.as_deref().unwrap_or("GET"), endpoint.url);
|
||||||
if *verbose {
|
if ! *compact {
|
||||||
if let Some(ref query) = endpoint.query {
|
if let Some(ref query) = endpoint.query {
|
||||||
for query in query {
|
for query in query {
|
||||||
println!(" |? {query}");
|
println!(" |? {query}");
|
||||||
|
|
Loading…
Reference in a new issue