You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
1.9 KiB
Go

10 years ago
package main
import (
10 years ago
"flag"
10 years ago
"fmt"
10 years ago
"github.com/jordanorelli/moon/lib"
10 years ago
"io"
"net/http"
"net/http/httputil"
"os"
"strings"
"unicode"
)
10 years ago
var (
client = new(http.Client)
conf *moon.Doc
)
10 years ago
func httpHandler(w http.ResponseWriter, r *http.Request) {
10 years ago
fmt.Println("from:", r.RemoteAddr)
10 years ago
if err := freezeRequest(r); err != nil {
fmt.Printf("error freezing request: %s\n", err)
return
}
10 years ago
b, err := httputil.DumpRequest(r, true)
if err != nil {
fmt.Printf("error dumping request: %s\n", err)
return
}
os.Stdout.Write(b)
10 years ago
requestURI := r.RequestURI
10 years ago
r.RequestURI = ""
r.URL.Scheme = strings.Map(unicode.ToLower, r.URL.Scheme)
res, err := client.Do(r)
if err != nil {
fmt.Printf("error forwarding request: %s\n", err)
return
}
defer res.Body.Close()
for k, v := range res.Header {
w.Header()[k] = v
}
10 years ago
if _, ok := w.Header()["Proxy-Connection"]; ok {
delete(w.Header(), "Proxy-Connection")
}
10 years ago
w.WriteHeader(res.StatusCode)
if _, err := io.Copy(w, res.Body); err != nil {
fmt.Printf("error copying body: %s\n", err)
}
10 years ago
if requestHistory == nil {
requestHistory = make([]http.Request, 0, 100)
}
r.RequestURI = requestURI
requestHistory = append(requestHistory, *r)
10 years ago
}
10 years ago
func bail(status int, t string, args ...interface{}) {
if status == 0 {
fmt.Fprintf(os.Stdout, t+"\n", args...)
} else {
fmt.Fprintf(os.Stderr, t+"\n", args...)
}
os.Exit(status)
}
10 years ago
func proxyListener() {
var addr string
if err := conf.Get("proxy_addr", &addr); err != nil {
bail(1, "error reading proxy_addr from config: %s", err)
}
m := http.NewServeMux()
m.HandleFunc("/", httpHandler)
http.ListenAndServe(addr, m)
}
10 years ago
func main() {
10 years ago
var configPath string
flag.StringVar(&configPath, "config", "./prox_config.moon", "path to configuration file")
flag.Parse()
10 years ago
var err error
conf, err = moon.ReadFile(configPath)
10 years ago
if err != nil {
bail(1, "unable to read config: %s", err)
}
10 years ago
go appServer()
proxyListener()
10 years ago
}