nushell/src/commands/open.rs

137 lines
4.7 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-08 20:09:17 +02:00
return Err(ShellError::string("open requires a filepath or url"));
2019-06-03 09:41:28 +02:00
}
2019-06-13 23:47:25 +02:00
let cwd = args
.env
.lock()
.unwrap()
.first()
.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
let open_raw = match args.positional.get(1) {
2019-06-08 00:35:07 +02:00
Some(Spanned {
item: Value::Primitive(Primitive::String(s)),
..
}) if s == "--raw" => true,
Some(v) => {
return Err(ShellError::labeled_error(
"Unknown flag for open",
"unknown flag",
v.span,
))
}
2019-06-01 21:20:48 +02:00
_ => false,
};
match file_extension {
2019-06-01 21:20:48 +02:00
Some(x) if x == "toml" && !open_raw => {
2019-06-03 09:41:28 +02:00
stream.push_back(ReturnValue::Value(
crate::commands::from_toml::from_toml_string_to_value(contents),
));
2019-06-01 21:20:48 +02:00
}
Some(x) if x == "json" && !open_raw => {
2019-06-03 09:41:28 +02:00
stream.push_back(ReturnValue::Value(
crate::commands::from_json::from_json_string_to_value(contents),
));
}
2019-06-11 08:26:03 +02:00
Some(x) if x == "xml" && !open_raw => {
stream.push_back(ReturnValue::Value(
crate::commands::from_xml::from_xml_string_to_value(contents),
));
}
2019-06-03 09:41:28 +02:00
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 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())
}