httpserver.go
4.49 KB
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
package logic
import (
"HttpServer/conf"
"common/logger"
"io/ioutil"
"strconv"
//"log"
"net/http"
)
//定时处理倒计时
func StartHttpTicker() {
}
func StartHttpServe() {
startServerHttpServe()
}
//just for test
func Testsendhttp() {
}
func CheckErr(err error) {
if err != nil {
panic(err)
}
}
func startServerHttpServe() {
//-------------------------------------------------------------
//http.HandleFunc("/catcafe/ClearData", ClearData) //情况账号的测试接口
//http.HandleFunc("/catcafe/AddWhiteList", AddWhiteList) //情况账号的测试接口
//http.HandleFunc("/catcafe/QueryAllAccount", QueryAllAccount) //查询所有账号的等级信息等数据
//-------------------------------------------------------------
http.HandleFunc("/eliminatestar/login", UserLogin) //登录
http.HandleFunc("/eliminatestar/watchads", Watchads) //观看激励视频
http.HandleFunc("/eliminatestar/queryguaninfo", Queryguaninfo) //获取存钱罐数据
http.HandleFunc("/eliminatestar/getguangold", Getguangold) //获取金币到存钱罐
http.HandleFunc("/eliminatestar/drawguangold", Drawguangold) //提取存钱罐的金币到个人钱包
http.HandleFunc("/eliminatestar/querdrawinfo", Querdrawinfo) //获取提现档位信息接口
http.HandleFunc("/eliminatestar/getcash", Getcash) //提现
http.HandleFunc("/eliminatestar/getcashrecord", Getcashrecord) //提现记录列表
err := http.ListenAndServe(conf.GetServerHttpAddrConf(), nil)
CheckErr(err)
}
func Getcashrecord(w http.ResponseWriter, r *http.Request) {
Uuid := 0
if len(r.Header) > 0 {
Uuid, _ = strconv.Atoi(r.Header.Get("Uuid"))
}
if Uuid == 0 {
SetHeader(w)
//logger.Error("Uuid is nil!")
return
}
result, _ := ioutil.ReadAll(r.Body)
r.Body.Close()
s := string(result)
logger.Info("Getcashrecord , body:%v,uuid=%v", s, Uuid)
HandlerGetcashrecord(w, s, Uuid)
}
func Getcash(w http.ResponseWriter, r *http.Request) {
Uuid := 0
if len(r.Header) > 0 {
Uuid, _ = strconv.Atoi(r.Header.Get("Uuid"))
}
if Uuid == 0 {
SetHeader(w)
//logger.Error("Uuid is nil!")
return
}
result, _ := ioutil.ReadAll(r.Body)
r.Body.Close()
s := string(result)
logger.Info("Getcash , body:%v,uuid=%v", s, Uuid)
HandlerGetcash(w, s, Uuid)
}
func Querdrawinfo(w http.ResponseWriter, r *http.Request) {
Uuid := 0
if len(r.Header) > 0 {
Uuid, _ = strconv.Atoi(r.Header.Get("Uuid"))
}
if Uuid == 0 {
SetHeader(w)
//logger.Error("Uuid is nil!")
return
}
result, _ := ioutil.ReadAll(r.Body)
r.Body.Close()
s := string(result)
logger.Info("Querdrawinfo , body:%v,uuid=%v", s, Uuid)
HandlerQuerdrawinfo(w, s, Uuid)
}
func Drawguangold(w http.ResponseWriter, r *http.Request) {
Uuid := 0
if len(r.Header) > 0 {
Uuid, _ = strconv.Atoi(r.Header.Get("Uuid"))
}
if Uuid == 0 {
SetHeader(w)
//logger.Error("Uuid is nil!")
return
}
result, _ := ioutil.ReadAll(r.Body)
r.Body.Close()
s := string(result)
logger.Info("Drawguangold , body:%v,uuid=%v", s, Uuid)
HandlerDrawguangold(w, s, Uuid)
}
func Getguangold(w http.ResponseWriter, r *http.Request) {
Uuid := 0
if len(r.Header) > 0 {
Uuid, _ = strconv.Atoi(r.Header.Get("Uuid"))
}
if Uuid == 0 {
SetHeader(w)
//logger.Error("Uuid is nil!")
return
}
result, _ := ioutil.ReadAll(r.Body)
r.Body.Close()
s := string(result)
logger.Info("Getguangold , body:%v,uuid=%v", s, Uuid)
HandlerGetguangold(w, s, Uuid)
}
func Queryguaninfo(w http.ResponseWriter, r *http.Request) {
Uuid := 0
if len(r.Header) > 0 {
Uuid, _ = strconv.Atoi(r.Header.Get("Uuid"))
}
if Uuid == 0 {
SetHeader(w)
//logger.Error("Uuid is nil!")
return
}
result, _ := ioutil.ReadAll(r.Body)
r.Body.Close()
s := string(result)
logger.Info("Queryguaninfo , body:%v,uuid=%v", s, Uuid)
HandlerQueryguaninfo(w, s, Uuid)
}
func Watchads(w http.ResponseWriter, r *http.Request) {
Uuid := 0
if len(r.Header) > 0 {
Uuid, _ = strconv.Atoi(r.Header.Get("Uuid"))
}
if Uuid == 0 {
SetHeader(w)
//logger.Error("Uuid is nil!")
return
}
result, _ := ioutil.ReadAll(r.Body)
r.Body.Close()
s := string(result)
logger.Info("Watchads , body:%v,uuid=%v", s, Uuid)
HandlerWatchads(w, s, Uuid)
}
func UserLogin(w http.ResponseWriter, r *http.Request) {
Uuid := 0
if len(r.Header) > 0 {
Uuid, _ = strconv.Atoi(r.Header.Get("Uuid"))
}
if Uuid == 0 {
SetHeader(w)
//logger.Error("Uuid is nil!")
return
}
result, _ := ioutil.ReadAll(r.Body)
r.Body.Close()
s := string(result)
logger.Info("UserLogin , body:%v,uuid=%v", s, Uuid)
HandlerLogin(w, s, Uuid)
}