-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproxy.go
142 lines (123 loc) · 3.83 KB
/
proxy.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
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
// Copyright 2021 Google LLC
//
// 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 (
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"log"
"net/http"
"net/http/httputil"
"net/url"
"os"
"strings"
"github.com/ghodss/yaml"
)
var (
host = flag.String("host", "127.0.0.1", "Host to listen on; 127.0.0.1 only allows connections "+
"from localhost; set to 0.0.0.0 or empty to allow external connections.")
port = flag.Int("port", 9000, "Port to listen on")
configFile = flag.String("config", "", "Config file, either YAML (*.yaml, *.yml) or JSON (*.json) format.")
)
// Route represents a single pair (URL path prefix, target).
type Route struct {
Path string `yaml:"path" json:"path"`
Target string `yaml:"target" json:"target"`
}
// ProxyConfig represents the set of routes for the reverse proxy.
type ProxyConfig struct {
Routes []Route `yaml:"routes" json:"routes"`
}
// ConfigError is returned while parsing or loading an invalid config.
type ConfigError struct {
Message string
}
func (ce *ConfigError) Error() string {
return ce.Message
}
// ParseConfig loads the config stored in the provided file and returns a
// config object.
func ParseConfig(filename string) (*ProxyConfig, error) {
if filename == "" {
return nil, &ConfigError{
Message: "Config filename must be specified (provided empty string)",
}
}
data, readErr := ioutil.ReadFile(filename)
if readErr != nil {
return nil, &ConfigError{
Message: fmt.Sprintf("Error reading file %s: %v", filename, readErr),
}
}
config := &ProxyConfig{}
if strings.HasSuffix(*configFile, "yaml") || strings.HasSuffix(*configFile, ".yml") {
yamlErr := yaml.Unmarshal(data, config)
if yamlErr != nil {
return nil, &ConfigError{
Message: fmt.Sprintf("Error parsing YAML: %v", yamlErr),
}
}
} else if strings.HasSuffix(*configFile, ".json") {
jsonErr := json.Unmarshal(data, config)
if jsonErr != nil {
return nil, &ConfigError{
Message: fmt.Sprintf("Error parsing JSON: %v", jsonErr),
}
}
} else {
return nil, &ConfigError{
Message: fmt.Sprintf("Unrecognized file suffix (only YAML and JSON are supported): %s\n", *config),
}
}
return config, nil
}
// Proxy represents the runtime state of the reverse proxy.
type Proxy struct {
Backends map[string]*httputil.ReverseProxy
}
func (proxy *Proxy) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
for path, backend := range proxy.Backends {
if strings.HasPrefix(req.URL.Path, path) {
log.Printf("%s %s", req.Method, req.URL.Path)
backend.ServeHTTP(rw, req)
return
}
}
log.Printf("Error: unhandled request (no backend mapping): %s %s\n", req.Method, req.URL.Path)
}
func main() {
flag.Parse()
config, configErr := ParseConfig(*configFile)
if configErr != nil {
log.Printf("%v\n", configErr)
os.Exit(1)
}
backends := make(map[string]*httputil.ReverseProxy)
for _, route := range config.Routes {
target, err := url.Parse(route.Target)
if err != nil {
log.Fatalf("Error parsing target URL %s: %v\n", route.Target, err)
}
log.Printf("Redirecting %s -> %s\n", route.Path, route.Target)
backends[route.Path] = httputil.NewSingleHostReverseProxy(target)
}
hostPort := fmt.Sprintf("%s:%d", *host, *port)
log.Printf("Listening on http://%s", hostPort)
proxy := &Proxy{
Backends: backends,
}
http.Handle("/", proxy)
log.Fatal(http.ListenAndServe(hostPort, nil))
}