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
|
/*
Copyright (c) 2019 Ben Morrison (gbmor)
This file is part of Getwtxt.
Getwtxt is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Getwtxt is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Getwtxt. If not, see <https://www.gnu.org/licenses/>.
*/
package svc // import "github.com/getwtxt/getwtxt/svc"
import (
"context"
"fmt"
"log"
"net"
"net/http"
"strings"
)
// content-type consts
const txtutf8 = "text/plain; charset=utf-8"
const htmlutf8 = "text/html; charset=utf-8"
const cssutf8 = "text/css; charset=utf-8"
// ipCtxKey is the Context value key for user IP addresses
type ipCtxKey int
const ctxKey ipCtxKey = iota
// Attaches a request's IP address to the request's context.
// 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]
if _, ok := r.Header["X-Forwarded-For"]; ok {
proxied := r.Header["X-Forwarded-For"]
base = strings.Split(proxied[len(proxied)-1], ":")
uip = base[0]
}
xRealIP := http.CanonicalHeaderKey("X-Real-IP")
if _, ok := r.Header[xRealIP]; ok {
proxied := r.Header[xRealIP]
base = strings.Split(proxied[len(proxied)-1], ":")
uip = base[0]
}
return context.WithValue(ctx, ctxKey, uip)
}
// 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))
})
}
func log200(r *http.Request) {
useragent := r.Header["User-Agent"]
uip := getIPFromCtx(r.Context())
reqLog.Printf("*** %v :: 200 :: %v %v :: %v\n", uip, r.Method, r.URL, useragent)
}
func errHTTP(w http.ResponseWriter, r *http.Request, err error, code int) {
useragent := r.Header["User-Agent"]
uip := getIPFromCtx(r.Context())
reqLog.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)
}
|