nushell/src/commands/open.rs

57 lines
1.8 KiB
Rust
Raw Normal View History

2019-05-28 04:00:00 +00:00
use crate::errors::ShellError;
use crate::object::{Primitive, Value};
use crate::prelude::*;
2019-06-03 07:41:28 +00:00
use std::path::{Path, PathBuf};
2019-05-28 04:00:00 +00:00
pub fn open(args: CommandArgs) -> Result<OutputStream, ShellError> {
2019-06-03 07:41:28 +00:00
if args.positional.len() == 0 {
return Err(ShellError::string("open requires a filepath"));
}
2019-05-28 04:00:00 +00:00
let cwd = args.env.lock().unwrap().cwd().to_path_buf();
let mut full_path = PathBuf::from(cwd);
match &args.positional[0] {
2019-06-03 07:41:28 +00:00
Value::Primitive(Primitive::String(s)) => full_path.push(Path::new(s)),
2019-05-28 04:00:00 +00:00
_ => {}
}
let contents = std::fs::read_to_string(&full_path).unwrap();
let mut stream = VecDeque::new();
2019-06-01 19:20:48 +00:00
let open_raw = match args.positional.get(1) {
Some(Value::Primitive(Primitive::String(s))) if s == "--raw" => true,
_ => false,
};
match full_path.extension() {
Some(x) if x == "toml" && !open_raw => {
2019-06-03 07:41:28 +00:00
stream.push_back(ReturnValue::Value(
crate::commands::from_toml::from_toml_string_to_value(contents),
));
2019-06-01 19:20:48 +00:00
}
Some(x) if x == "json" && !open_raw => {
2019-06-03 07:41:28 +00:00
stream.push_back(ReturnValue::Value(
crate::commands::from_json::from_json_string_to_value(contents),
));
}
Some(x) if x == "yml" && !open_raw => {
stream.push_back(ReturnValue::Value(
crate::commands::from_yaml::from_yaml_string_to_value(contents),
));
}
Some(x) if x == "yaml" && !open_raw => {
stream.push_back(ReturnValue::Value(
crate::commands::from_yaml::from_yaml_string_to_value(contents),
));
2019-06-01 19:20:48 +00:00
}
_ => {
stream.push_back(ReturnValue::Value(Value::Primitive(Primitive::String(
contents,
))));
}
}
2019-05-28 04:00:00 +00:00
Ok(stream.boxed())
}