mirror of https://github.com/docker/compose.git
86 lines
1.9 KiB
Go
86 lines
1.9 KiB
Go
/*
|
|
Copyright 2020 Docker, Inc.
|
|
|
|
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"
|
|
"io/ioutil"
|
|
"log"
|
|
"math/rand"
|
|
"net"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
rand.Seed(time.Now().UnixNano())
|
|
|
|
fwd := &forwarder{"words", 8080}
|
|
http.Handle("/words/", http.StripPrefix("/words", fwd))
|
|
http.Handle("/", http.FileServer(http.Dir("static")))
|
|
|
|
fmt.Println("Listening on port 80")
|
|
err := http.ListenAndServe(":80", nil)
|
|
if err != nil {
|
|
fmt.Printf("Error while starting server: %v", err)
|
|
}
|
|
}
|
|
|
|
type forwarder struct {
|
|
host string
|
|
port int
|
|
}
|
|
|
|
func (f *forwarder) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
addrs, err := net.LookupHost(f.host)
|
|
if err != nil {
|
|
log.Println("Error", err)
|
|
http.Error(w, err.Error(), 500)
|
|
return
|
|
}
|
|
|
|
log.Printf("%s %d available ips: %v", r.URL.Path, len(addrs), addrs)
|
|
ip := addrs[rand.Intn(len(addrs))]
|
|
log.Printf("%s I choose %s", r.URL.Path, ip)
|
|
|
|
url := fmt.Sprintf("http://%s:%d%s", ip, f.port, r.URL.Path)
|
|
log.Printf("%s Calling %s", r.URL.Path, url)
|
|
|
|
if err = copy(url, ip, w); err != nil {
|
|
log.Println("Error", err)
|
|
http.Error(w, err.Error(), 500)
|
|
return
|
|
}
|
|
}
|
|
|
|
func copy(url, ip string, w http.ResponseWriter) error {
|
|
resp, err := http.Get(url)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
w.Header().Set("source", ip)
|
|
|
|
buf, err := ioutil.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = w.Write(buf)
|
|
return err
|
|
}
|