2019-07-26 04:09:19 +00:00
|
|
|
use crate::prelude::*;
|
|
|
|
use chrono::{DateTime, Local, Utc};
|
Extract core stuff into own crates
This commit extracts five new crates:
- nu-source, which contains the core source-code handling logic in Nu,
including Text, Span, and also the pretty.rs-based debug logic
- nu-parser, which is the parser and expander logic
- nu-protocol, which is the bulk of the types and basic conveniences
used by plugins
- nu-errors, which contains ShellError, ParseError and error handling
conveniences
- nu-textview, which is the textview plugin extracted into a crate
One of the major consequences of this refactor is that it's no longer
possible to `impl X for Spanned<Y>` outside of the `nu-source` crate, so
a lot of types became more concrete (Value became a concrete type
instead of Spanned<Value>, for example).
This also turned a number of inherent methods in the main nu crate into
plain functions (impl Value {} became a bunch of functions in the
`value` namespace in `crate::data::value`).
2019-11-26 02:30:48 +00:00
|
|
|
use nu_errors::ShellError;
|
|
|
|
use nu_protocol::{Dictionary, Value};
|
2019-07-26 04:09:19 +00:00
|
|
|
|
2019-08-15 05:02:02 +00:00
|
|
|
use crate::commands::WholeStreamCommand;
|
2019-07-26 04:09:19 +00:00
|
|
|
use chrono::{Datelike, TimeZone, Timelike};
|
|
|
|
use core::fmt::Display;
|
|
|
|
use indexmap::IndexMap;
|
Extract core stuff into own crates
This commit extracts five new crates:
- nu-source, which contains the core source-code handling logic in Nu,
including Text, Span, and also the pretty.rs-based debug logic
- nu-parser, which is the parser and expander logic
- nu-protocol, which is the bulk of the types and basic conveniences
used by plugins
- nu-errors, which contains ShellError, ParseError and error handling
conveniences
- nu-textview, which is the textview plugin extracted into a crate
One of the major consequences of this refactor is that it's no longer
possible to `impl X for Spanned<Y>` outside of the `nu-source` crate, so
a lot of types became more concrete (Value became a concrete type
instead of Spanned<Value>, for example).
This also turned a number of inherent methods in the main nu crate into
plain functions (impl Value {} became a bunch of functions in the
`value` namespace in `crate::data::value`).
2019-11-26 02:30:48 +00:00
|
|
|
use nu_protocol::{Signature, UntaggedValue};
|
2019-07-26 04:09:19 +00:00
|
|
|
|
|
|
|
pub struct Date;
|
|
|
|
|
2019-08-15 05:02:02 +00:00
|
|
|
impl WholeStreamCommand for Date {
|
2019-08-29 22:52:32 +00:00
|
|
|
fn name(&self) -> &str {
|
|
|
|
"date"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
2019-10-28 05:15:35 +00:00
|
|
|
Signature::build("date")
|
|
|
|
.switch("utc", "use universal time (UTC)")
|
|
|
|
.switch("local", "use the local time")
|
2019-08-29 22:52:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"Get the current datetime."
|
|
|
|
}
|
|
|
|
|
2019-08-09 04:51:21 +00:00
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
|
|
|
date(args, registry)
|
2019-07-26 04:09:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-21 14:33:14 +00:00
|
|
|
pub fn date_to_value<T: TimeZone>(dt: DateTime<T>, tag: Tag) -> Value
|
2019-07-26 04:09:19 +00:00
|
|
|
where
|
|
|
|
T::Offset: Display,
|
|
|
|
{
|
|
|
|
let mut indexmap = IndexMap::new();
|
|
|
|
|
2019-12-04 19:52:31 +00:00
|
|
|
indexmap.insert(
|
|
|
|
"year".to_string(),
|
|
|
|
UntaggedValue::int(dt.year()).into_value(&tag),
|
|
|
|
);
|
|
|
|
indexmap.insert(
|
|
|
|
"month".to_string(),
|
|
|
|
UntaggedValue::int(dt.month()).into_value(&tag),
|
|
|
|
);
|
|
|
|
indexmap.insert(
|
|
|
|
"day".to_string(),
|
|
|
|
UntaggedValue::int(dt.day()).into_value(&tag),
|
|
|
|
);
|
|
|
|
indexmap.insert(
|
|
|
|
"hour".to_string(),
|
|
|
|
UntaggedValue::int(dt.hour()).into_value(&tag),
|
|
|
|
);
|
2019-11-21 14:33:14 +00:00
|
|
|
indexmap.insert(
|
|
|
|
"minute".to_string(),
|
2019-12-04 19:52:31 +00:00
|
|
|
UntaggedValue::int(dt.minute()).into_value(&tag),
|
2019-11-21 14:33:14 +00:00
|
|
|
);
|
|
|
|
indexmap.insert(
|
|
|
|
"second".to_string(),
|
2019-12-04 19:52:31 +00:00
|
|
|
UntaggedValue::int(dt.second()).into_value(&tag),
|
2019-11-21 14:33:14 +00:00
|
|
|
);
|
2019-07-26 04:09:19 +00:00
|
|
|
|
|
|
|
let tz = dt.offset();
|
|
|
|
indexmap.insert(
|
|
|
|
"timezone".to_string(),
|
2019-12-04 19:52:31 +00:00
|
|
|
UntaggedValue::string(format!("{}", tz)).into_value(&tag),
|
2019-07-26 04:09:19 +00:00
|
|
|
);
|
|
|
|
|
2019-11-21 14:33:14 +00:00
|
|
|
UntaggedValue::Row(Dictionary::from(indexmap)).into_value(&tag)
|
2019-07-26 04:09:19 +00:00
|
|
|
}
|
|
|
|
|
2019-08-09 04:51:21 +00:00
|
|
|
pub fn date(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
|
|
|
let args = args.evaluate_once(registry)?;
|
|
|
|
|
2019-07-26 04:09:19 +00:00
|
|
|
let mut date_out = VecDeque::new();
|
2019-10-13 04:12:43 +00:00
|
|
|
let tag = args.call_info.name_tag.clone();
|
2019-07-26 04:09:19 +00:00
|
|
|
|
|
|
|
let value = if args.has("utc") {
|
|
|
|
let utc: DateTime<Utc> = Utc::now();
|
2019-09-14 16:30:24 +00:00
|
|
|
date_to_value(utc, tag)
|
2019-07-26 04:09:19 +00:00
|
|
|
} else {
|
|
|
|
let local: DateTime<Local> = Local::now();
|
2019-09-14 16:30:24 +00:00
|
|
|
date_to_value(local, tag)
|
2019-07-26 04:09:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
date_out.push_back(value);
|
|
|
|
|
|
|
|
Ok(date_out.to_output_stream())
|
|
|
|
}
|