forked from dromara/carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdifference.go
executable file
·208 lines (182 loc) · 4.44 KB
/
difference.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
package carbon
import "strings"
// DiffInYears 相差多少年
func (c Carbon) DiffInYears(arg ...Carbon) int64 {
end := c.Now()
if len(arg) > 0 {
end = arg[0]
}
return c.DiffInMonths(end) / 12
}
// DiffInYearsWithAbs 相差多少年(绝对值)
func (c Carbon) DiffInYearsWithAbs(arg ...Carbon) int64 {
end := c.Now()
if len(arg) > 0 {
end = arg[0]
}
return getAbsValue(c.DiffInYears(end))
}
// DiffInMonths 相差多少月
func (c Carbon) DiffInMonths(arg ...Carbon) int64 {
end := c.Now()
if len(arg) > 0 {
end = arg[0]
}
dy, dm, dd := end.Year()-c.Year(), end.Month()-c.Month(), end.Day()-c.Day()
if dd < 0 {
dm = dm - 1
}
if dy == 0 && dm == 0 {
return 0
}
if dy == 0 && dm != 0 && dd != 0 {
if int(end.DiffInHoursWithAbs(c)) < c.DaysInMonth()*HoursPerDay {
return 0
}
return int64(dm)
}
return int64(dy*MonthsPerYear + dm)
}
// DiffInMonthsWithAbs 相差多少月(绝对值)
func (c Carbon) DiffInMonthsWithAbs(arg ...Carbon) int64 {
end := c.Now()
if len(arg) > 0 {
end = arg[0]
}
return getAbsValue(c.DiffInMonths(end))
}
// DiffInWeeks 相差多少周
func (c Carbon) DiffInWeeks(arg ...Carbon) int64 {
end := c.Now()
if len(arg) > 0 {
end = arg[0]
}
return c.DiffInDays(end) / DaysPerWeek
}
// DiffInWeeksWithAbs 相差多少周(绝对值)
func (c Carbon) DiffInWeeksWithAbs(arg ...Carbon) int64 {
end := c.Now()
if len(arg) > 0 {
end = arg[0]
}
return getAbsValue(c.DiffInWeeks(end))
}
// DiffInDays 相差多少天
func (c Carbon) DiffInDays(arg ...Carbon) int64 {
end := c.Now()
if len(arg) > 0 {
end = arg[0]
}
return c.DiffInSeconds(end) / SecondsPerDay
}
// DiffInDaysWithAbs 相差多少天(绝对值)
func (c Carbon) DiffInDaysWithAbs(arg ...Carbon) int64 {
end := c.Now()
if len(arg) > 0 {
end = arg[0]
}
return getAbsValue(c.DiffInDays(end))
}
// DiffInHours 相差多少小时
func (c Carbon) DiffInHours(arg ...Carbon) int64 {
end := c.Now()
if len(arg) > 0 {
end = arg[0]
}
return c.DiffInSeconds(end) / SecondsPerHour
}
// DiffInHoursWithAbs 相差多少小时(绝对值)
func (c Carbon) DiffInHoursWithAbs(arg ...Carbon) int64 {
end := c.Now()
if len(arg) > 0 {
end = arg[0]
}
return getAbsValue(c.DiffInHours(end))
}
// DiffInMinutes 相差多少分钟
func (c Carbon) DiffInMinutes(arg ...Carbon) int64 {
end := c.Now()
if len(arg) > 0 {
end = arg[0]
}
return c.DiffInSeconds(end) / SecondsPerMinute
}
// DiffInMinutesWithAbs 相差多少分钟(绝对值)
func (c Carbon) DiffInMinutesWithAbs(arg ...Carbon) int64 {
end := c.Now()
if len(arg) > 0 {
end = arg[0]
}
return getAbsValue(c.DiffInMinutes(end))
}
// DiffInSeconds 相差多少秒
func (c Carbon) DiffInSeconds(arg ...Carbon) int64 {
end := c.Now()
if len(arg) > 0 {
end = arg[0]
}
return end.ToTimestamp() - c.ToTimestamp()
}
// DiffInSecondsWithAbs 相差多少秒(绝对值)
func (c Carbon) DiffInSecondsWithAbs(arg ...Carbon) int64 {
end := c.Now()
if len(arg) > 0 {
end = arg[0]
}
return getAbsValue(c.DiffInSeconds(end))
}
// DiffForHumans 获取对人类友好的可读格式时间差
func (c Carbon) DiffForHumans(arg ...Carbon) string {
end := c.Now()
if len(arg) > 0 {
end = arg[0]
}
var unit string
var diff int64
switch true {
case c.DiffInYearsWithAbs(end) > 0:
unit = "year"
diff = c.DiffInYearsWithAbs(end)
break
case c.DiffInMonthsWithAbs(end) > 0:
unit = "month"
diff = c.DiffInMonthsWithAbs(end)
break
case c.DiffInWeeksWithAbs(end) > 0:
unit = "week"
diff = c.DiffInWeeksWithAbs(end)
break
case c.DiffInDaysWithAbs(end) > 0:
unit = "day"
diff = c.DiffInDaysWithAbs(end)
break
case c.DiffInHoursWithAbs(end) > 0:
unit = "hour"
diff = c.DiffInHoursWithAbs(end)
break
case c.DiffInMinutesWithAbs(end) > 0:
unit = "minute"
diff = c.DiffInMinutesWithAbs(end)
case c.DiffInSecondsWithAbs(end) > 0:
unit = "second"
diff = c.DiffInSecondsWithAbs(end)
case c.DiffInSecondsWithAbs(end) == 0:
unit = "now"
diff = 0
return c.Lang.translate(unit, diff)
}
translation := c.Lang.translate(unit, diff)
if c.Lt(end) && len(arg) == 0 {
return strings.Replace(c.Lang.resources["ago"], "%s", translation, 1)
}
if c.Lt(end) && len(arg) > 0 {
return strings.Replace(c.Lang.resources["before"], "%s", translation, 1)
}
if c.Gt(end) && len(arg) == 0 {
return strings.Replace(c.Lang.resources["from_now"], "%s", translation, 1)
}
if c.Gt(end) && len(arg) > 0 {
return strings.Replace(c.Lang.resources["after"], "%s", translation, 1)
}
return translation
}