mirror of
https://github.com/nushell/nushell.git
synced 2024-12-04 06:15:27 +01:00
5f550a355b
* Split OutputStream into ActionStream/OutputStream * Fmt * Missed update * Cleanup helper names * Fmt
87 lines
2.5 KiB
Rust
87 lines
2.5 KiB
Rust
use crate::prelude::*;
|
|
use nu_engine::WholeStreamCommand;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{ReturnSuccess, Signature, UntaggedValue, Value};
|
|
|
|
pub struct ToUrl;
|
|
|
|
impl WholeStreamCommand for ToUrl {
|
|
fn name(&self) -> &str {
|
|
"to url"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("to url")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Convert table into url-encoded text"
|
|
}
|
|
|
|
fn run_with_actions(&self, args: CommandArgs) -> Result<ActionStream, ShellError> {
|
|
to_url(args)
|
|
}
|
|
}
|
|
|
|
fn to_url(args: CommandArgs) -> Result<ActionStream, ShellError> {
|
|
let args = args.evaluate_once()?;
|
|
let tag = args.name_tag();
|
|
let input = args.input;
|
|
|
|
Ok(input
|
|
.map(move |value| match value {
|
|
Value {
|
|
value: UntaggedValue::Row(row),
|
|
..
|
|
} => {
|
|
let mut row_vec = vec![];
|
|
for (k, v) in row.entries {
|
|
match v.as_string() {
|
|
Ok(s) => {
|
|
row_vec.push((k.clone(), s.to_string()));
|
|
}
|
|
_ => {
|
|
return Err(ShellError::labeled_error_with_secondary(
|
|
"Expected table with string values",
|
|
"requires table with strings",
|
|
&tag,
|
|
"value originates from here",
|
|
v.tag,
|
|
));
|
|
}
|
|
}
|
|
}
|
|
|
|
match serde_urlencoded::to_string(row_vec) {
|
|
Ok(s) => ReturnSuccess::value(UntaggedValue::string(s).into_value(&tag)),
|
|
_ => Err(ShellError::labeled_error(
|
|
"Failed to convert to url-encoded",
|
|
"cannot url-encode",
|
|
&tag,
|
|
)),
|
|
}
|
|
}
|
|
Value { tag: value_tag, .. } => Err(ShellError::labeled_error_with_secondary(
|
|
"Expected a table from pipeline",
|
|
"requires table input",
|
|
&tag,
|
|
"value originates from here",
|
|
value_tag.span,
|
|
)),
|
|
})
|
|
.to_action_stream())
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::ShellError;
|
|
use super::ToUrl;
|
|
|
|
#[test]
|
|
fn examples_work_as_expected() -> Result<(), ShellError> {
|
|
use crate::examples::test as test_examples;
|
|
|
|
test_examples(ToUrl {})
|
|
}
|
|
}
|