2020-07-29 22:56:56 +02:00
|
|
|
use url::Url;
|
|
|
|
|
|
|
|
use super::{operate, DefaultArguments};
|
|
|
|
use crate::prelude::*;
|
2021-01-10 03:50:49 +01:00
|
|
|
use nu_engine::WholeStreamCommand;
|
2020-07-29 22:56:56 +02:00
|
|
|
use nu_errors::ShellError;
|
|
|
|
use nu_protocol::{Signature, SyntaxShape, Value};
|
|
|
|
|
|
|
|
pub struct UrlScheme;
|
|
|
|
|
|
|
|
#[async_trait]
|
|
|
|
impl WholeStreamCommand for UrlScheme {
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
"url scheme"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
|
|
|
Signature::build("url scheme").rest(SyntaxShape::ColumnPath, "optionally operate by path")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"gets the scheme (eg http, file) of a url"
|
|
|
|
}
|
|
|
|
|
2020-12-18 08:53:49 +01:00
|
|
|
async fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
|
|
let (DefaultArguments { rest }, input) = args.process().await?;
|
2020-07-29 22:56:56 +02:00
|
|
|
operate(input, rest, &Url::scheme).await
|
|
|
|
}
|
|
|
|
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
|
|
vec![
|
|
|
|
Example {
|
|
|
|
description: "Get scheme of a url",
|
|
|
|
example: "echo 'http://www.example.com' | url scheme",
|
|
|
|
result: Some(vec![Value::from("http")]),
|
|
|
|
},
|
|
|
|
Example {
|
|
|
|
description: "You get an empty string if there is no scheme",
|
|
|
|
example: "echo 'test' | url scheme",
|
|
|
|
result: Some(vec![Value::from("")]),
|
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2020-10-03 16:06:02 +02:00
|
|
|
use super::ShellError;
|
2020-07-29 22:56:56 +02:00
|
|
|
use super::UrlScheme;
|
|
|
|
|
|
|
|
#[test]
|
2020-10-03 16:06:02 +02:00
|
|
|
fn examples_work_as_expected() -> Result<(), ShellError> {
|
2020-07-29 22:56:56 +02:00
|
|
|
use crate::examples::test as test_examples;
|
|
|
|
|
2021-02-12 11:13:14 +01:00
|
|
|
test_examples(UrlScheme {})
|
2020-07-29 22:56:56 +02:00
|
|
|
}
|
|
|
|
}
|