nushell/src/commands/open.rs

209 lines
7.2 KiB
Rust
Raw Normal View History

2019-05-28 06:00:00 +02:00
use crate::errors::ShellError;
use crate::object::{Primitive, Value};
2019-06-08 00:35:07 +02:00
use crate::parser::lexer::Spanned;
2019-05-28 06:00:00 +02:00
use crate::prelude::*;
2019-06-03 09:41:28 +02:00
use std::path::{Path, PathBuf};
2019-05-28 06:00:00 +02:00
pub fn open(args: CommandArgs) -> Result<OutputStream, ShellError> {
2019-06-03 09:41:28 +02:00
if args.positional.len() == 0 {
2019-06-15 20:36:17 +02:00
return Err(ShellError::maybe_labeled_error(
"Open requires a path or url",
"needs path or url",
args.name_span,
));
2019-06-03 09:41:28 +02:00
}
2019-06-16 01:03:49 +02:00
let span = args.name_span;
2019-06-13 23:47:25 +02:00
let cwd = args
.env
.lock()
.unwrap()
2019-06-15 19:52:55 +02:00
.front()
2019-06-13 23:47:25 +02:00
.unwrap()
.path()
.to_path_buf();
2019-05-28 06:00:00 +02:00
let mut full_path = PathBuf::from(cwd);
let (file_extension, contents) = match &args.positional[0].item {
2019-06-08 00:35:07 +02:00
Value::Primitive(Primitive::String(s)) => {
2019-06-08 20:09:17 +02:00
if s.starts_with("http:") || s.starts_with("https:") {
let response = reqwest::get(s);
match response {
Ok(mut r) => match r.text() {
Ok(s) => {
let fname = r
.url()
.path_segments()
.and_then(|segments| segments.last())
.and_then(|name| if name.is_empty() { None } else { Some(name) })
.and_then(|name| {
PathBuf::from(name)
.extension()
.map(|name| name.to_string_lossy().to_string())
});
(fname, s)
}
2019-06-08 20:09:17 +02:00
Err(_) => {
return Err(ShellError::labeled_error(
"Web page contents corrupt",
"received garbled data",
args.positional[0].span,
));
}
},
Err(_) => {
return Err(ShellError::labeled_error(
"URL could not be opened",
"url not found",
args.positional[0].span,
));
}
}
} else {
full_path.push(Path::new(&s));
match std::fs::read_to_string(&full_path) {
Ok(s) => (
full_path
.extension()
.map(|name| name.to_string_lossy().to_string()),
s,
),
2019-06-08 20:09:17 +02:00
Err(_) => {
return Err(ShellError::labeled_error(
"File cound not be opened",
"file not found",
args.positional[0].span,
));
}
2019-06-08 00:35:07 +02:00
}
}
}
_ => {
return Err(ShellError::labeled_error(
"Expected string value for filename",
"expected filename",
args.positional[0].span,
));
}
};
2019-05-28 06:00:00 +02:00
let mut stream = VecDeque::new();
2019-06-01 21:20:48 +02:00
2019-06-15 04:24:13 +02:00
let file_extension = match args.positional.get(1) {
2019-06-08 00:35:07 +02:00
Some(Spanned {
item: Value::Primitive(Primitive::String(s)),
2019-06-15 04:24:13 +02:00
span,
}) => {
if s == "--raw" {
None
} else if s == "--json" {
Some("json".to_string())
} else if s == "--xml" {
Some("xml".to_string())
2019-06-16 08:43:40 +02:00
} else if s == "--ini" {
Some("ini".to_string())
2019-06-15 04:24:13 +02:00
} else if s == "--yaml" {
Some("yaml".to_string())
} else if s == "--toml" {
Some("toml".to_string())
} else {
return Err(ShellError::labeled_error(
"Unknown flag for open",
"unknown flag",
span.clone(),
));
}
2019-06-08 00:35:07 +02:00
}
2019-06-15 04:24:13 +02:00
_ => file_extension,
2019-06-01 21:20:48 +02:00
};
match file_extension {
2019-06-15 04:24:13 +02:00
Some(x) if x == "toml" => {
2019-06-03 09:41:28 +02:00
stream.push_back(ReturnValue::Value(
2019-06-16 01:03:49 +02:00
crate::commands::from_toml::from_toml_string_to_value(contents).map_err(
move |_| {
ShellError::maybe_labeled_error(
"Could not open as TOML",
"could not open as TOML",
span,
)
},
)?,
2019-06-03 09:41:28 +02:00
));
2019-06-01 21:20:48 +02:00
}
2019-06-15 04:24:13 +02:00
Some(x) if x == "json" => {
2019-06-03 09:41:28 +02:00
stream.push_back(ReturnValue::Value(
2019-06-16 01:03:49 +02:00
crate::commands::from_json::from_json_string_to_value(contents).map_err(
move |_| {
ShellError::maybe_labeled_error(
"Could not open as JSON",
"could not open as JSON",
span,
)
},
)?,
2019-06-03 09:41:28 +02:00
));
}
2019-06-16 08:43:40 +02:00
Some(x) if x == "ini" => {
stream.push_back(ReturnValue::Value(
crate::commands::from_ini::from_ini_string_to_value(contents).map_err(
move |_| {
ShellError::maybe_labeled_error(
"Could not open as INI",
"could not open as INI",
span,
)
},
)?,
));
}
2019-06-15 04:24:13 +02:00
Some(x) if x == "xml" => {
2019-06-11 08:26:03 +02:00
stream.push_back(ReturnValue::Value(
2019-06-16 01:03:49 +02:00
crate::commands::from_xml::from_xml_string_to_value(contents).map_err(
move |_| {
ShellError::maybe_labeled_error(
"Could not open as XML",
"could not open as XML",
span,
)
},
)?,
2019-06-11 08:26:03 +02:00
));
}
2019-06-15 04:24:13 +02:00
Some(x) if x == "yml" => {
2019-06-03 09:41:28 +02:00
stream.push_back(ReturnValue::Value(
2019-06-16 01:03:49 +02:00
crate::commands::from_yaml::from_yaml_string_to_value(contents).map_err(
move |_| {
ShellError::maybe_labeled_error(
"Could not open as YAML",
"could not open as YAML",
span,
)
},
)?,
2019-06-03 09:41:28 +02:00
));
}
2019-06-15 04:24:13 +02:00
Some(x) if x == "yaml" => {
2019-06-03 09:41:28 +02:00
stream.push_back(ReturnValue::Value(
2019-06-16 01:03:49 +02:00
crate::commands::from_yaml::from_yaml_string_to_value(contents).map_err(
move |_| {
ShellError::maybe_labeled_error(
"Could not open as YAML",
"could not open as YAML",
span,
)
},
)?,
2019-06-03 09:41:28 +02:00
));
2019-06-01 21:20:48 +02:00
}
_ => {
stream.push_back(ReturnValue::Value(Value::Primitive(Primitive::String(
contents,
))));
}
}
2019-05-28 06:00:00 +02:00
Ok(stream.boxed())
}