summaryrefslogtreecommitdiff
path: root/phlox/main.go
blob: da5265495e7fc2ddfbe3c8f5c99017097c8c97e7 (plain)
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
package main

import (
	"fmt"
	"io"
	"time"
	"strings"
	"errors"
	"flag"
	"net"
	"net/http"
	"net/url"
	log "github.com/sirupsen/logrus"
	db "sanine.net/git/phlox/db"
)


var P db.Phlox


func main() {
	p := &P
	var dbfile string
	flag.StringVar(&dbfile, "db", "/etc/phlox/phlox.conf", "path to the configuration db")
	flag.Parse()

	err := p.Open(dbfile)
	if err != nil {
		log.Fatal(err)
	}
	defer p.Close()

	addr, err := p.GetHostAddress()
	if err != nil {
		log.Fatal(err)
	}

	endpoints, err := p.AllEndpoints()
	if err != nil {
		log.Fatal(err)
	}
	log.Info("configuring reverse proxy...")
	for _, endpoint := range endpoints {
		configureEndpoint(endpoint.Path, endpoint.Address)
	}

	InitLogin()

	c := time.Tick(5 * time.Minute)
	go (func() {
		p := &P
		for ;; {
			_ = <-c // wait for 5 minutes
			p.CleanSessions(time.Hour)
		}
	})()

	log.Infof("serving on %v", addr)
	log.Fatal(http.ListenAndServe(addr, nil))
}


type Endpoint struct {
	Path string
	Origin *url.URL
}


func configureEndpoint(path, address string) {
	log.Infof("proxying endpoint %v to %v", path, address)
	origin, err := url.Parse(address)
	if err != nil {
		log.Fatal(err)
	}

	end := Endpoint{
		Path: path,
		Origin: origin,
	}

	http.HandleFunc(path + "/", func(w http.ResponseWriter, req *http.Request) {
		log.Infof("REQ: %v", req.URL.Path)
		proxy(w, req, end)
	})
}


func proxy(w http.ResponseWriter, req *http.Request, end Endpoint) {
	p := &P
	cookie, err := req.Cookie("phlox-session-id")
	if errors.Is(err, http.ErrNoCookie) {
		// not logged in
		w.Header().Set("Location", "/login")
		w.WriteHeader(http.StatusTemporaryRedirect)
		return
	}

	// check cookie
	check, err := p.CheckSessionId(cookie.Value)
	if err != nil {
		w.WriteHeader(http.StatusInternalServerError)
		fmt.Fprintf(w, "internal server error")
		return
	}
	if !check {
		// not logged in
		w.Header().Set("Location", "/login")
		w.WriteHeader(http.StatusTemporaryRedirect)
		return
	}
	// update modified time
	p.TouchSessionId(cookie.Value)

	response := proxyRequest(w, req, end)
	if response != nil {
		proxyResponse(w, response)
	}
}


func proxyRequest(w http.ResponseWriter, req *http.Request, end Endpoint)  *http.Response {
	// configure host address
	req.Host = end.Origin.Host
	req.URL.Host = end.Origin.Host

	// strip proxy endpoint path from request path
	req.URL.Path = strings.TrimPrefix(req.URL.Path, end.Path)

	// set X-Forwarded-For
	forwardedFor, _, _ := net.SplitHostPort(req.RemoteAddr)
	req.Header.Set("X-Forwarded-For", forwardedFor)

	// misc request cleanups
	req.URL.Scheme = end.Origin.Scheme
	req.RequestURI = ""

	// make request
	response, err := http.DefaultClient.Do(req)
	if err != nil {
		w.WriteHeader(http.StatusInternalServerError)
		fmt.Fprintf(w, "%v", err)
		log.Error(err)
		return nil
	}

	return response
}


func proxyResponse(w http.ResponseWriter, response *http.Response) {
	// copy header
	for key, values := range response.Header {
		for _, value := range values {
			w.Header().Add(key, value)
		}
	}

	// get trailer keys
	trailerKeys := []string{}
	for key := range response.Trailer {
		trailerKeys = append(trailerKeys, key)
	}
	if (len(trailerKeys) > 0) {
		w.Header().Set("Trailer", strings.Join(trailerKeys, ","))
	}

	w.WriteHeader(response.StatusCode)

	// copy body to client
	io.Copy(w, response.Body)

	// write trailers
	for key, values := range response.Trailer {
		for _, value := range values {
			w.Header().Set(key, value)
		}
	}
}