-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapi.go
180 lines (161 loc) · 4.59 KB
/
api.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
package account
import (
"github.com/emicklei/go-restful"
"net/http"
)
type logOnRequest struct {
Username string
Password string
}
type logOnResponse struct {
Token []byte
}
type registrationRequest struct {
Username string
Password string
Question1 string
Question2 string
Question3 string
Answer1 string
Answer2 string
Answer3 string
}
type registrationResponse struct {
Device []byte
}
type changePasswordRequest struct {
Username string
Password string
NewPassword string
}
type changePasswordResponse struct {
Device []byte
}
type changeQuestionsRequest struct {
Username string
Password string
Question1 string
Question2 string
Question3 string
Answer1 string
Answer2 string
Answer3 string
}
type recoverRequest struct {
Username string
NewPassword string
Answer1 string
Answer2 string
Answer3 string
}
type recoverResponse struct {
Device []byte
}
type deviceLoginRequest struct {
Device []byte
}
func NewAPI() *restful.WebService {
accountAPI := new(restful.WebService)
accountAPI.Path("/account")
accountAPI.Consumes(restful.MIME_JSON)
accountAPI.Produces(restful.MIME_JSON)
accountAPI.Route(accountAPI.PUT("").To(createAccount))
accountAPI.Route(accountAPI.POST("").To(loginAccount))
accountAPI.Route(accountAPI.POST("/device").To(deviceLogin))
accountAPI.Route(accountAPI.POST("/recover").To(recoverAccount))
accountAPI.Route(accountAPI.PATCH("/questions").To(changeQuestions))
accountAPI.Route(accountAPI.PATCH("").To(changePassword))
return accountAPI
}
func createAccount(request *restful.Request, response *restful.Response) {
registration := new(registrationRequest)
err := request.ReadEntity(®istration)
if err != nil {
response.WriteError(http.StatusInternalServerError, err)
} else {
registrationRes := new(registrationResponse)
registrationRes.Device, err = Register(registration.Username, registration.Password, registration.Question1,
registration.Question2, registration.Question3, registration.Answer1,
registration.Answer2, registration.Answer3)
if err != nil {
response.WriteError(http.StatusInternalServerError, err)
} else {
response.WriteEntity(registrationRes)
}
}
}
func loginAccount(request *restful.Request, response *restful.Response) {
login := new(logOnRequest)
err := request.ReadEntity(&login)
if err != nil {
response.WriteError(http.StatusInternalServerError, err)
} else {
_, err = LogOn(login.Username, login.Password)
if err != nil {
response.WriteError(http.StatusInternalServerError, err)
} else {
loginRes := new(logOnResponse)
loginRes.Token = []byte("Let em in, Frank")
response.WriteEntity(loginRes)
}
}
}
func changePassword(request *restful.Request, response *restful.Response) {
change := new(changePasswordRequest)
err := request.ReadEntity(&change)
if err != nil {
response.WriteError(http.StatusInternalServerError, err)
} else {
changeRes := new(changePasswordResponse)
changeRes.Device, err = ChangePassword(change.Username, change.Password, change.NewPassword)
if err != nil {
response.WriteError(http.StatusInternalServerError, err)
} else {
response.WriteEntity(changeRes)
}
}
}
func changeQuestions(request *restful.Request, response *restful.Response) {
change := new(changeQuestionsRequest)
err := request.ReadEntity(&change)
if err != nil {
response.WriteError(http.StatusInternalServerError, err)
} else {
err = ChangeQuestions(change.Username, change.Password, change.Question1,
change.Question2, change.Question3, change.Answer1,
change.Answer2, change.Answer3)
if err != nil {
response.WriteError(http.StatusInternalServerError, err)
}
}
}
func recoverAccount(request *restful.Request, response *restful.Response) {
recovery := new(recoverRequest)
err := request.ReadEntity(&recovery)
if err != nil {
response.WriteError(http.StatusInternalServerError, err)
}
recoverRes := new(recoverResponse)
recoverRes.Device, err = Recover(recovery.Username, recovery.NewPassword, recovery.Answer1,
recovery.Answer2, recovery.Answer3)
if err != nil {
response.WriteError(http.StatusInternalServerError, err)
}
response.WriteEntity(recoverRes)
}
func deviceLogin(request *restful.Request, response *restful.Response) {
login := new(deviceLoginRequest)
err := request.ReadEntity(&login)
if err != nil {
response.WriteError(http.StatusInternalServerError, err)
} else {
_, err = DeviceLogOn(login.Device)
if err != nil {
response.WriteError(http.StatusInternalServerError, err)
} else {
loginRes := new(logOnResponse)
loginRes.Token = []byte("Let em in, Frank")
response.WriteEntity(loginRes)
}
}
}