mirror of
https://github.com/nushell/nushell.git
synced 2024-12-03 13:53:59 +01:00
78 lines
2.1 KiB
Rust
78 lines
2.1 KiB
Rust
use crate::commands::command::CommandAction;
|
|
use crate::commands::open::{fetch, parse_as_value};
|
|
use crate::errors::ShellError;
|
|
use crate::object::{Primitive, Value};
|
|
use crate::prelude::*;
|
|
use std::path::PathBuf;
|
|
|
|
pub fn enter(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
if args.len() == 0 {
|
|
return Err(ShellError::maybe_labeled_error(
|
|
"open requires a path or url",
|
|
"missing path",
|
|
args.name_span,
|
|
));
|
|
}
|
|
|
|
let span = args.name_span;
|
|
|
|
let cwd = args
|
|
.env()
|
|
.lock()
|
|
.unwrap()
|
|
.front()
|
|
.unwrap()
|
|
.path()
|
|
.to_path_buf();
|
|
|
|
let full_path = PathBuf::from(cwd);
|
|
|
|
let (file_extension, contents) = match &args.expect_nth(0)?.item {
|
|
Value::Primitive(Primitive::String(s)) => fetch(&full_path, s, args.expect_nth(0)?.span)?,
|
|
_ => {
|
|
return Err(ShellError::labeled_error(
|
|
"Expected string value for filename",
|
|
"expected filename",
|
|
args.expect_nth(0)?.span,
|
|
));
|
|
}
|
|
};
|
|
|
|
let mut stream = VecDeque::new();
|
|
|
|
let file_extension = if args.has("raw") {
|
|
None
|
|
} else if args.has("json") {
|
|
Some("json".to_string())
|
|
} else if args.has("xml") {
|
|
Some("xml".to_string())
|
|
} else if args.has("ini") {
|
|
Some("ini".to_string())
|
|
} else if args.has("yaml") {
|
|
Some("yaml".to_string())
|
|
} else if args.has("toml") {
|
|
Some("toml".to_string())
|
|
} else {
|
|
if let Some(ref named_args) = args.args.named {
|
|
for named in named_args.iter() {
|
|
return Err(ShellError::labeled_error(
|
|
"Unknown flag for enter",
|
|
"unknown flag",
|
|
named.1.span.clone(),
|
|
));
|
|
}
|
|
file_extension
|
|
} else {
|
|
file_extension
|
|
}
|
|
};
|
|
|
|
stream.push_back(ReturnValue::Action(CommandAction::Enter(parse_as_value(
|
|
file_extension,
|
|
contents,
|
|
span,
|
|
)?)));
|
|
|
|
Ok(stream.boxed())
|
|
}
|