-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest_doc.go
183 lines (153 loc) · 3.49 KB
/
request_doc.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
183
package main
import (
"fmt"
"net/http"
"github.com/julienschmidt/httprouter"
)
func cacheGetDoc(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
doc := `{
"POST": {
"description": "Returns value from dcached cluster",
"parameters": {
"appname": {
"type": "string",
"description": "Application name requesting value",
"required": true
},
"key": {
"type": "string",
"description": "The key to retrieve",
"required": true
}
}
}
}`
w.Header().Set("Allow", "POST,OPTIONS")
w.Header().Set("Content-Type", "application/json")
fmt.Fprintf(w, "%s", doc)
}
func cacheSetDoc(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
doc := `{
"POST": {
"description": "Stores value into dcached cluster",
"parameters": {
"appname": {
"type": "string",
"description": "Application name storing value",
"required": true
},
"key": {
"type": "string",
"description": "The key to set",
"required": true
},
"value": {
"type": "string",
"description": "The value you want to cache",
"required": true
},
"ttl": {
"type": "integer",
"description": "Seconds since creation to invalidate this value",
"required": true
}
}
}
}`
w.Header().Set("Allow", "POST,OPTIONS")
w.Header().Set("Content-Type", "application/json")
fmt.Fprintf(w, "%s", doc)
}
func cacheRemoveDoc(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
doc := ""
cacheBlock := ps.ByName("cache_block")
if cacheBlock == "application" {
doc = `{
"POST": {
"description": "Removes application workspace from dcached cluster",
"parameters": {
"appname": {
"type": "string",
"description": "Application name to remove",
"required": true
}
}
}
}`
} else if cacheBlock == "key" {
doc = `{
"POST": {
"description": "Removes value from dcached cluster",
"parameters": {
"appname": {
"type": "string",
"description": "Application name to remove key from",
"required": true
},
"key": {
"type": "string",
"description": "The key to remove",
"required": true
}
}
}
}`
} else if cacheBlock == "all" {
doc = `{
"POST": {
"description": "Wipes dcached cluster (all nodes)",
"parameters": {
"appname": {
"type": "string",
"description": "Application name, must be '*'",
"required": true
}
}
}
}`
} else {
e := newException("ResourceNotFoundException", "Resource not found")
e.write(w)
return
}
w.Header().Set("Allow", "POST,OPTIONS")
w.Header().Set("Content-Type", "application/json")
fmt.Fprintf(w, "%s", doc)
}
func cacheImportDoc(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
doc := `{
"POST": {
"description": "Reserved",
"parameters": {}
}
}`
w.Header().Set("Allow", "POST,OPTIONS")
w.Header().Set("Content-Type", "application/json")
fmt.Fprintf(w, "%s", doc)
}
func cacheStatsHandlerDoc(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
doc := ""
statsType := ps.ByName("stats_type")
if statsType == "local" {
doc = `{
"GET": {
"description": "Returns statistic from the requested node",
"parameters": {}
}
}`
} else if statsType == "all" {
doc = `{
"GET": {
"description": "Returns statistics from the whole cluster",
"parameters": {}
}
}`
} else {
e := newException("ResourceNotFoundException", "Resource not found")
e.write(w)
return
}
w.Header().Set("Allow", "GET,OPTIONS")
w.Header().Set("Content-Type", "application/json")
fmt.Fprintf(w, "%s", doc)
}