forked from dromara/carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
constellation.go
executable file
·182 lines (165 loc) · 3.83 KB
/
constellation.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
package carbon
import "strings"
// Constellation 获取星座
func (c Carbon) Constellation() string {
if c.IsZero() {
return ""
}
if len(c.Lang.resources) == 0 && c.Lang.SetLocale(defaultLocale) != nil {
return ""
}
index := -1
switch {
case c.Month() == 3 && c.Day() >= 21, c.Month() == 4 && c.Day() <= 19:
index = 0 // 白羊座
case c.Month() == 4 && c.Day() >= 20, c.Month() == 5 && c.Day() <= 20:
index = 1 // 金牛座
case c.Month() == 5 && c.Day() >= 21, c.Month() == 6 && c.Day() <= 21:
index = 2 // 双子座
case c.Month() == 6 && c.Day() >= 22, c.Month() == 7 && c.Day() <= 22:
index = 3 // 巨蟹座
case c.Month() == 7 && c.Day() >= 23, c.Month() == 8 && c.Day() <= 22:
index = 4 // 狮子座
case c.Month() == 8 && c.Day() >= 23, c.Month() == 9 && c.Day() <= 22:
index = 5 // 处女座
case c.Month() == 9 && c.Day() >= 23, c.Month() == 10 && c.Day() <= 23:
index = 6 // 天秤座
case c.Month() == 10 && c.Day() >= 24, c.Month() == 11 && c.Day() <= 22:
index = 7 // 天蝎座
case c.Month() == 11 && c.Day() >= 23, c.Month() == 12 && c.Day() <= 21:
index = 8 // 射手座
case c.Month() == 12 && c.Day() >= 22, c.Month() == 1 && c.Day() <= 19:
index = 9 // 摩羯座
case c.Month() == 1 && c.Day() >= 20, c.Month() == 2 && c.Day() <= 18:
index = 10 // 水瓶座
case c.Month() == 2 && c.Day() >= 19, c.Month() == 3 && c.Day() <= 20:
index = 11 // 双鱼座
default:
return ""
}
if constellations, ok := c.Lang.resources["constellations"]; ok {
slice := strings.Split(constellations, "|")
return slice[index]
}
return ""
}
// IsAries 是否是白羊座
func (c Carbon) IsAries() bool {
if c.Month() == 3 && c.Day() >= 21 {
return true
}
if c.Month() == 4 && c.Day() <= 19 {
return true
}
return false
}
// IsTaurus 是否是金牛座
func (c Carbon) IsTaurus() bool {
if c.Month() == 4 && c.Day() >= 20 {
return true
}
if c.Month() == 5 && c.Day() <= 20 {
return true
}
return false
}
// IsGemini 是否是双子座
func (c Carbon) IsGemini() bool {
if c.Month() == 5 && c.Day() >= 21 {
return true
}
if c.Month() == 6 && c.Day() <= 21 {
return true
}
return false
}
// IsCancer 是否是巨蟹座
func (c Carbon) IsCancer() bool {
if c.Month() == 6 && c.Day() >= 22 {
return true
}
if c.Month() == 7 && c.Day() <= 22 {
return true
}
return false
}
// IsLeo 是否是狮子座
func (c Carbon) IsLeo() bool {
if c.Month() == 7 && c.Day() >= 23 {
return true
}
if c.Month() == 8 && c.Day() <= 22 {
return true
}
return false
}
// IsVirgo 是否是处女座
func (c Carbon) IsVirgo() bool {
if c.Month() == 8 && c.Day() >= 23 {
return true
}
if c.Month() == 9 && c.Day() <= 22 {
return true
}
return false
}
// IsLibra 是否是天秤座
func (c Carbon) IsLibra() bool {
if c.Month() == 9 && c.Day() >= 23 {
return true
}
if c.Month() == 10 && c.Day() <= 23 {
return true
}
return false
}
// IsScorpio 是否是天蝎座
func (c Carbon) IsScorpio() bool {
if c.Month() == 10 && c.Day() >= 24 {
return true
}
if c.Month() == 11 && c.Day() <= 22 {
return true
}
return false
}
// IsSagittarius 是否是射手座
func (c Carbon) IsSagittarius() bool {
if c.Month() == 11 && c.Day() >= 22 {
return true
}
if c.Month() == 12 && c.Day() <= 21 {
return true
}
return false
}
// IsCapricorn 是否是摩羯座
func (c Carbon) IsCapricorn() bool {
if c.Month() == 12 && c.Day() >= 22 {
return true
}
if c.Month() == 1 && c.Day() <= 19 {
return true
}
return false
}
// IsAquarius 是否是水瓶座
func (c Carbon) IsAquarius() bool {
if c.Month() == 1 && c.Day() >= 20 {
return true
}
if c.Month() == 2 && c.Day() <= 18 {
return true
}
return false
}
// IsPisces 是否是双鱼座
func (c Carbon) IsPisces() bool {
if c.Month() == 2 && c.Day() >= 19 {
return true
}
if c.Month() == 3 && c.Day() <= 20 {
return true
}
return false
}