httpserver.go
3.1 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
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) //提取存钱罐的金币到个人钱包
err := http.ListenAndServe(conf.GetServerHttpAddrConf(), nil)
CheckErr(err)
}
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)
}