about summary refs log tree commit diff stats
path: root/js/hill
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2024-06-30 16:23:29 -0400
committerelioat <elioat@tilde.institute>2024-06-30 16:23:29 -0400
commita0ca7781ca50924ce89a1a6187c6f7cabef70a7f (patch)
tree61b781c9d74ea319d8ca78fad4e5010316e906a5 /js/hill
parent3900b10bd2eb73d9a3b2e52973b89546b4ec43ee (diff)
downloadtour-a0ca7781ca50924ce89a1a6187c6f7cabef70a7f.tar.gz
*
Diffstat (limited to 'js/hill')
0 files changed, 0 insertions, 0 deletions
gbmor/getwtxt/blame/handlers.go?h=v0.4.15&id=1f023dcf4595eceee04ce3862dd2be19a496c6db'>^
1168570 ^
893123c ^

dbc93a0 ^

07872ef ^
1168570 ^
ec2c4ed ^
1168570 ^

df79157 ^
dbc93a0 ^





a6f47c0 ^


07872ef ^



1168570 ^
d3d9df2 ^

1168570 ^
df1d1ef ^
747f4fb ^
1168570 ^


893123c ^
fc49c57 ^
df1d1ef ^
893123c ^
b9d16fb ^
1168570 ^

747f4fb ^
1168570 ^



b9d16fb ^
d3d9df2 ^
1168570 ^
4fa97ee ^
b6e7bb3 ^
1168570 ^
4fa97ee ^
b9d16fb ^
d3d9df2 ^
37be25f ^
505c5d8 ^
27f92d8 ^
37be25f ^
505c5d8 ^

1168570 ^
4fa97ee ^
d2680fb ^
1168570 ^
3596509 ^
1168570 ^
d2680fb ^

1168570 ^
4fa97ee ^
fc49c57 ^
1168570 ^
3596509 ^
1168570 ^
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
                                                      

        
                 
             
             
                  
                 

 

                                                            
                                                                  
                                                                         
 

                                                
 





                                                                  


                                                       



                                                                  
                                                  

 
                                                              
                                               
 


                                                                 
         
 
                               
 
 

                                                          
 



                                                                              
 
 
                              
                                           
 
                                        
                                                                                     
 
 
                                                                 
                                        
                                                                               
                                                                     

 
                                                                
                                           
 
                                        
                                                                                                        
                                                       

 
                                                                
                                           
 
                                        
                                                                                                        
                                                                  
 
package svc // import "github.com/getwtxt/getwtxt/svc"

import (
	"context"
	"log"
	"net"
	"net/http"
	"strings"
)

// 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())
	log.Printf("*** %v :: 200 :: %v %v :: %v\n", uip, r.Method, r.URL, useragent)
}

func log400(w http.ResponseWriter, r *http.Request, err string) {
	uip := getIPFromCtx(r.Context())
	log.Printf("*** %v :: 400 :: %v %v :: %v\n", uip, r.Method, r.URL, err)
	http.Error(w, "400 Bad Request: "+err, http.StatusBadRequest)
}

func log404(w http.ResponseWriter, r *http.Request, err error) {
	useragent := r.Header["User-Agent"]

	uip := getIPFromCtx(r.Context())
	log.Printf("*** %v :: 404 :: %v %v :: %v :: %v\n", uip, r.Method, r.URL, useragent, err.Error())
	http.Error(w, err.Error(), http.StatusNotFound)
}

func log500(w http.ResponseWriter, r *http.Request, err error) {
	useragent := r.Header["User-Agent"]

	uip := getIPFromCtx(r.Context())
	log.Printf("*** %v :: 500 :: %v %v :: %v :: %v\n", uip, r.Method, r.URL, useragent, err.Error())
	http.Error(w, err.Error(), http.StatusInternalServerError)
}