-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.go
94 lines (76 loc) · 2.53 KB
/
server.go
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
// Copyright 2014 Jack Wakefield
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"fmt"
"net/http"
"github.com/jackwakefield/gopac"
"github.com/spf13/viper"
"gopkg.in/elazarl/goproxy.v1"
)
type server struct {
parser *gopac.Parser
client *http.Client
http *goproxy.ProxyHttpServer
unproxied *http.Client
}
func newServer(parser *gopac.Parser, client *http.Client) (s *server) {
s = &server{
parser: parser,
client: client,
http: goproxy.NewProxyHttpServer(),
}
s.http.NonproxyHandler = s.nonProxyHandler()
// determine whether a proxy entry is available for the URL/host for each
// HTTP request and if so, forward it to the proxy client
s.http.OnRequest(s.isForwardable()).DoFunc(s.forward)
return
}
func (s *server) isForwardable() goproxy.ReqConditionFunc {
return func(req *http.Request, ctx *goproxy.ProxyCtx) bool {
// find a proxy entry for the request URL/host
entry, err := s.parser.FindProxy(req.URL.String(), req.URL.Host)
// ensure no error occurred when finding an entry and that the entry
// doesn't indicate the connection should be made directly
if err == nil && entry != "DIRECT" {
return true
}
return false
}
}
func (s *server) forward(r *http.Request, ctx *goproxy.ProxyCtx) (*http.Request, *http.Response) {
// retrieve a response for the request using the proxy client
if resp, err := s.client.Get(r.URL.String()); err == nil {
return r, resp
}
return r, nil
}
func (s *server) nonProxyHandler() http.HandlerFunc {
return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
// set the absolute URL from the host and relative URL and pass it back
// to the proxy server
req.RequestURI = ""
req.URL.Scheme = "http"
req.URL.Host = req.Host
s.http.ServeHTTP(w, req)
})
}
func (s *server) address() string {
return fmt.Sprintf(":%d", viper.GetInt(serverPortKey))
}
func (s *server) listen() error {
address := s.address()
logger.Infof("Proxy server listening on address '%s'", address)
return http.ListenAndServe(address, s.http)
}