mirror of
https://github.com/nushell/nushell.git
synced 2025-06-04 17:16:40 +02:00
Based on the discussion in #13419. ## Description Reworks the `decode`/`encode` commands by adding/changing the following bases: - `base32` - `base32hex` - `hex` - `new-base64` The `hex` base is compatible with the previous version of `hex` out of the box (it only adds more flags). `base64` isn't, so the PR adds a new version and deprecates the old one. All commands have `string -> binary` signature for decoding and `string | binary -> string` signature for encoding. A few `base64` encodings, which are not a part of the [RFC4648](https://datatracker.ietf.org/doc/html/rfc4648#section-6), have been dropped. ## Example usage ```Nushell ~/fork/nushell> "string" | encode base32 | decode base32 | decode string ``` ```Nushell ~/fork/nushell> "ORSXG5A=" | decode base32 # `decode` always returns a binary value Length: 4 (0x4) bytes | printable whitespace ascii_other non_ascii 00000000: 74 65 73 74 test ``` ## User-Facing Changes - New commands: `encode/decode base32/base32hex`. - `encode hex` gets a `--lower` flag. - `encode/decode base64` deprecated in favor of `encode/decode new-base64`.
194 lines
5.3 KiB
Rust
194 lines
5.3 KiB
Rust
use data_encoding::Encoding;
|
|
|
|
use nu_engine::command_prelude::*;
|
|
|
|
const EXTRA_USAGE: &str = r"The default alphabet is taken from RFC 4648, section 4. A URL-safe version is available.
|
|
|
|
Note this command will collect stream input.";
|
|
|
|
fn get_encoding_from_flags(url: bool, nopad: bool) -> Encoding {
|
|
match (url, nopad) {
|
|
(false, false) => data_encoding::BASE64,
|
|
(false, true) => data_encoding::BASE64_NOPAD,
|
|
(true, false) => data_encoding::BASE64URL,
|
|
(true, true) => data_encoding::BASE64URL_NOPAD,
|
|
}
|
|
}
|
|
|
|
fn get_encoding(
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
call: &Call,
|
|
) -> Result<Encoding, ShellError> {
|
|
let url = call.has_flag(engine_state, stack, "url")?;
|
|
let nopad = call.has_flag(engine_state, stack, "nopad")?;
|
|
|
|
Ok(get_encoding_from_flags(url, nopad))
|
|
}
|
|
|
|
fn get_encoding_const(working_set: &StateWorkingSet, call: &Call) -> Result<Encoding, ShellError> {
|
|
let url = call.has_flag_const(working_set, "url")?;
|
|
let nopad = call.has_flag_const(working_set, "nopad")?;
|
|
|
|
Ok(get_encoding_from_flags(url, nopad))
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
pub struct DecodeBase64;
|
|
|
|
impl Command for DecodeBase64 {
|
|
fn name(&self) -> &str {
|
|
"decode new-base64"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("decode new-base64")
|
|
.input_output_types(vec![(Type::String, Type::Binary)])
|
|
.allow_variants_without_examples(true)
|
|
.switch("url", "Decode the URL-safe Base64 version.", None)
|
|
.switch("nopad", "Reject padding.", None)
|
|
.category(Category::Formats)
|
|
}
|
|
|
|
fn description(&self) -> &str {
|
|
"Decode a Base64 value."
|
|
}
|
|
|
|
fn extra_description(&self) -> &str {
|
|
EXTRA_USAGE
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![
|
|
Example {
|
|
description: "Decode a Base64 string",
|
|
example: r#""U29tZSBEYXRh" | decode new-base64 | decode"#,
|
|
result: None,
|
|
},
|
|
Example {
|
|
description: "Decode arbitrary data",
|
|
example: r#""/w==" | decode new-base64"#,
|
|
result: Some(Value::test_binary(vec![0xFF])),
|
|
},
|
|
Example {
|
|
description: "Decode a URL-safe Base64 string",
|
|
example: r#""_w==" | decode new-base64 --url"#,
|
|
result: Some(Value::test_binary(vec![0xFF])),
|
|
},
|
|
]
|
|
}
|
|
|
|
fn is_const(&self) -> bool {
|
|
true
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let encoding = get_encoding(engine_state, stack, call)?;
|
|
super::decode(encoding, call.head, input)
|
|
}
|
|
|
|
fn run_const(
|
|
&self,
|
|
working_set: &StateWorkingSet,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let encoding = get_encoding_const(working_set, call)?;
|
|
super::decode(encoding, call.head, input)
|
|
}
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
pub struct EncodeBase64;
|
|
|
|
impl Command for EncodeBase64 {
|
|
fn name(&self) -> &str {
|
|
"encode new-base64"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("encode new-base64")
|
|
.input_output_types(vec![
|
|
(Type::String, Type::String),
|
|
(Type::Binary, Type::String),
|
|
])
|
|
.switch("url", "Use the URL-safe Base64 version.", None)
|
|
.switch("nopad", "Don't pad the output.", None)
|
|
.category(Category::Formats)
|
|
}
|
|
|
|
fn description(&self) -> &str {
|
|
"Encode a string or binary value using Base64."
|
|
}
|
|
|
|
fn extra_description(&self) -> &str {
|
|
EXTRA_USAGE
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![
|
|
Example {
|
|
description: "Encode a string with Base64",
|
|
example: r#""Alphabet from A to Z" | encode new-base64"#,
|
|
result: Some(Value::test_string("QWxwaGFiZXQgZnJvbSBBIHRvIFo=")),
|
|
},
|
|
Example {
|
|
description: "Encode arbitrary data",
|
|
example: r#"0x[BE EE FF] | encode new-base64"#,
|
|
result: Some(Value::test_string("vu7/")),
|
|
},
|
|
Example {
|
|
description: "Use a URL-safe alphabet",
|
|
example: r#"0x[BE EE FF] | encode new-base64 --url"#,
|
|
result: Some(Value::test_string("vu7_")),
|
|
},
|
|
]
|
|
}
|
|
|
|
fn is_const(&self) -> bool {
|
|
true
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let encoding = get_encoding(engine_state, stack, call)?;
|
|
super::encode(encoding, call.head, input)
|
|
}
|
|
|
|
fn run_const(
|
|
&self,
|
|
working_set: &StateWorkingSet,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let encoding = get_encoding_const(working_set, call)?;
|
|
super::encode(encoding, call.head, input)
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_examples_decode() {
|
|
crate::test_examples(DecodeBase64)
|
|
}
|
|
|
|
#[test]
|
|
fn test_examples_encode() {
|
|
crate::test_examples(EncodeBase64)
|
|
}
|
|
}
|