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
|
package api0
import (
"net/http"
)
type MainMenuPromos struct {
NewInfo MainMenuPromosNew `json:"newInfo"`
LargeButton MainMenuPromosButtonLarge `json:"largeButton"`
SmallButton1 MainMenuPromosButtonSmall `json:"smallButton1"`
SmallButton2 MainMenuPromosButtonSmall `json:"smallButton2"`
}
type MainMenuPromosNew struct {
Title1 string `json:"Title1"`
Title2 string `json:"Title2"`
Title3 string `json:"Title3"`
}
type MainMenuPromosButtonLarge struct {
Title string `json:"Title"`
Text string `json:"Text"`
Url string `json:"Url"`
ImageIndex int `json:"ImageIndex"`
}
type MainMenuPromosButtonSmall struct {
Title string `json:"Title"`
Url string `json:"Url"`
ImageIndex int `json:"ImageIndex"`
}
func (h *Handler) handleMainMenuPromos(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodOptions && r.Method != http.MethodHead && r.Method != http.MethodGet {
http.Error(w, http.StatusText(http.StatusMethodNotAllowed), http.StatusMethodNotAllowed)
return
}
w.Header().Set("Cache-Control", "private, no-cache, no-store")
w.Header().Set("Expires", "0")
w.Header().Set("Pragma", "no-cache")
if r.Method == http.MethodOptions {
w.Header().Set("Allow", "OPTIONS, HEAD, GET")
w.WriteHeader(http.StatusNoContent)
return
}
var p MainMenuPromos
if h.MainMenuPromos != nil {
p = h.MainMenuPromos(r)
}
respJSON(w, r, http.StatusOK, p)
}
/*
/client/origin_auth:
GET:
/client/auth_with_server:
POST:
/client/auth_with_self:
POST:
/client/servers:
GET:
*/
|