summary refs log tree commit diff stats
path: root/svc
diff options
context:
space:
mode:
Diffstat (limited to 'svc')
-rw-r--r--svc/http.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/svc/http.go b/svc/http.go
index 0118912..d39ab4e 100644
--- a/svc/http.go
+++ b/svc/http.go
@@ -23,7 +23,6 @@ const ctxKey ipCtxKey = iota
 // If getwtxt is behind a reverse proxy, get the last entry
 // in the X-Forwarded-For or X-Real-IP HTTP header as the user IP.
 func newCtxUserIP(ctx context.Context, r *http.Request) context.Context {
-
 	base := strings.Split(r.RemoteAddr, ":")
 	uip := base[0]
 
@@ -45,18 +44,15 @@ func newCtxUserIP(ctx context.Context, r *http.Request) context.Context {
 
 // Retrieves a request's IP address from the request's context
 func getIPFromCtx(ctx context.Context) net.IP {
-
 	uip, ok := ctx.Value(ctxKey).(string)
 	if !ok {
 		log.Printf("Couldn't retrieve IP from request\n")
 	}
-
 	return net.ParseIP(uip)
 }
 
 // Shim function to modify/pass context value to a handler
 func ipMiddleware(hop http.Handler) http.Handler {
-
 	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
 		ctx := newCtxUserIP(r.Context(), r)
 		hop.ServeHTTP(w, r.WithContext(ctx))
@@ -65,7 +61,6 @@ func ipMiddleware(hop http.Handler) http.Handler {
 
 func log200(r *http.Request) {
 	useragent := r.Header["User-Agent"]
-
 	uip := getIPFromCtx(r.Context())
 	log.Printf("*** %v :: 200 :: %v %v :: %v\n", uip, r.Method, r.URL, useragent)
 }
@@ -73,7 +68,6 @@ func log200(r *http.Request) {
 func errHTTP(w http.ResponseWriter, r *http.Request, err error, code int) {
 	useragent := r.Header["User-Agent"]
 	uip := getIPFromCtx(r.Context())
-
 	log.Printf("*** %v :: %v :: %v %v :: %v :: %v\n", uip, code, r.Method, r.URL, useragent, err.Error())
 	http.Error(w, fmt.Sprintf("Error %v: %v", code, err.Error()), code)
 }
ode' href='/gbmor/getwtxt/commit/svc/handlers_test.go?h=v0.4.1&id=3b6d1cc9f8acf82be9f168657b6ecab1eb34721e'>3b6d1cc ^
126c00e ^
53b313e ^
3b6d1cc ^
126c00e ^
3b6d1cc ^
53b313e ^
126c00e ^

53b313e ^

126c00e ^


e75c7fd ^







126c00e ^

3b6d1cc ^


e75c7fd ^

53b313e ^
e75c7fd ^


53b313e ^
e75c7fd ^



126c00e ^
3b6d1cc ^
126c00e ^

3b6d1cc ^
126c00e ^
a9d7d11 ^



























126c00e ^

a9d7d11 ^
53b313e ^
a9d7d11 ^
53b313e ^
a9d7d11 ^


53b313e ^
a9d7d11 ^
53b313e ^

a9d7d11 ^


53b313e ^
a9d7d11 ^


53b313e ^
a9d7d11 ^
















53b313e ^
a9d7d11 ^

53b313e ^
a9d7d11 ^


126c00e ^
a9d7d11 ^
126c00e ^
a1e9de4 ^
126c00e ^

e75c7fd ^
53b313e ^
126c00e ^

e75c7fd ^
53b313e ^
a1e9de4 ^
126c00e ^
53b313e ^

126c00e ^


53b313e ^
e75c7fd ^






126c00e ^

e75c7fd ^





53b313e ^
e75c7fd ^



126c00e ^

e539d23 ^
53b313e ^
a1e9de4 ^
45a6722 ^
e539d23 ^
53b313e ^
a1e9de4 ^
45a6722 ^
53b313e ^

e539d23 ^



53b313e ^
45a6722 ^


e539d23 ^


45a6722 ^

8d44eb0 ^
e539d23 ^





53b313e ^
e539d23 ^




d6fbc25 ^



6753171 ^
d6fbc25 ^
6753171 ^
d6fbc25 ^


e539d23 ^
d6fbc25 ^


53b313e ^
d6fbc25 ^
53b313e ^

d6fbc25 ^
53b313e ^
d6fbc25 ^


e75c7fd ^
d6fbc25 ^



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
229
230
231
232
233
234
235
236
237
238
239
240
241