-
Notifications
You must be signed in to change notification settings - Fork 0
/
time.go
56 lines (47 loc) · 1.21 KB
/
time.go
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
package do
import "time"
// IsExpired show if deadline is expired compared to now
// always return false if deadline is zero
func IsExpired(deadline, now time.Time) bool {
if deadline.IsZero() {
return false
}
return !deadline.After(now)
}
func TodayZero() time.Time {
now := time.Now()
return DayZero(now)
}
func ThisMonthFirst() time.Time {
now := time.Now()
return MonthFirst(now)
}
func ThisYearFirst() time.Time {
now := time.Now()
return YearFirst(now)
}
func DayZero(t time.Time) time.Time {
y, m, d := t.Date()
return time.Date(y, m, d, 0, 0, 0, 0, t.Location())
}
func MonthFirst(t time.Time) time.Time {
y, m, _ := t.Date()
return time.Date(y, m, 1, 0, 0, 0, 0, t.Location())
}
func YearFirst(t time.Time) time.Time {
y, _, _ := t.Date()
return time.Date(y, 1, 1, 0, 0, 0, 0, t.Location())
}
// ParseTime parse time string t with layout s one by one; if layouts is empty, it will use "2006-01-02 15:04:05" as default
func ParseTime(t string, layouts ...string) (r time.Time, err error) {
if len(layouts) == 0 {
layouts = append(layouts, "2006-01-02 15:04:05")
}
for _, layout := range layouts {
r, err = time.ParseInLocation(layout, t, time.Local)
if err == nil {
return
}
}
return
}