-
-
Notifications
You must be signed in to change notification settings - Fork 560
/
Copy pathtime_builder.rs
59 lines (47 loc) · 1.18 KB
/
time_builder.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
extern crate chrono;
use chrono::prelude::*;
pub struct TimeBuilder {
time: DateTime<FixedOffset>,
}
impl TimeBuilder {
pub fn now() -> Self {
Self {
time: Utc::now().fixed_offset(),
}
}
pub fn from_string(str: &str) -> Self {
Self {
time: DateTime::parse_from_rfc3339(str).unwrap(),
}
}
pub fn from_i64(timestamp: i64) -> Self {
let time = DateTime::from_timestamp(timestamp, 0)
.unwrap()
.fixed_offset();
Self { time }
}
pub fn to_string(&self) -> String {
self.time.to_rfc3339()
}
pub fn to_i64(&self) -> i64 {
self.time.timestamp()
}
pub fn is_near_now(&self) -> bool {
self.is_near_offset_sec(1)
}
pub fn is_near_offset_sec(&self, offset_sec: i64) -> bool {
let now = Utc::now();
let diff = now.signed_duration_since(self.time).num_seconds().abs();
diff <= offset_sec
}
}
impl From<TimeBuilder> for String {
fn from(time: TimeBuilder) -> Self {
time.to_string()
}
}
impl From<TimeBuilder> for i64 {
fn from(time: TimeBuilder) -> Self {
time.to_i64()
}
}