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.

114 lines
2.4 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"
"log"
10 years ago
"net/http"
"net/http/httputil"
"os"
"strings"
10 years ago
"time"
10 years ago
"unicode"
)
10 years ago
var (
client = new(http.Client)
conf *moon.Doc
)
10 years ago
func httpHandler(w http.ResponseWriter, r *http.Request) {
id := newRequestId()
10 years ago
fmt.Printf("%s >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n", id.String())
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)
10 years ago
start := time.Now()
10 years ago
res, err := client.Do(r)
if err != nil {
fmt.Printf("error forwarding request: %s\n", err)
return
}
defer res.Body.Close()
10 years ago
fmt.Printf("%s <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n", id.String())
resb, err := httputil.DumpResponse(res, false)
if err != nil {
fmt.Printf("fuuuuuuuuuck")
}
os.Stdout.Write(resb)
10 years ago
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
elapsed := time.Since(start)
10 years ago
r.RequestURI = requestURI
10 years ago
fmt.Printf("elapsed: %v (%v)\n", elapsed, elapsed.Nanoseconds()/1000000)
saveRequest(id, r, elapsed)
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()
log.Printf("reading config from %s", configPath)
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)
}
if err := openDB(); err != nil {
bail(1, "unable to open db: %s", err)
}
defer db.Close()
10 years ago
go appServer()
proxyListener()
10 years ago
}