-
Notifications
You must be signed in to change notification settings - Fork 186
/
main.go
138 lines (121 loc) · 3.09 KB
/
main.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
package main
import (
"flag"
"fmt"
"math/rand"
"net"
"os"
"runtime"
"strconv"
"strings"
"time"
"github.com/phuslu/glog"
"./httpproxy"
"./httpproxy/filters"
"./httpproxy/helpers"
"./httpproxy/storage"
"./httpproxy/filters/gae"
"./httpproxy/filters/php"
)
var (
version = "r9999"
)
func init() {
rand.Seed(time.Now().UnixNano())
}
func main() {
if len(os.Args) > 1 {
var line string
switch os.Args[1] {
case "-version":
line = version
case "-arch":
line = runtime.GOARCH
case "-os":
line = runtime.GOOS
}
if line != "" {
fmt.Println(line)
return
}
}
helpers.SetFlagsIfAbsent(map[string]string{
"logtostderr": "true",
"v": "2",
})
flag.Parse()
gover := strings.Split(strings.TrimPrefix(runtime.Version(), "devel +"), " ")[0]
switch runtime.GOARCH {
case "386", "amd64":
helpers.SetConsoleTitle(fmt.Sprintf("GoProxy %s (go/%s)", version, gover))
}
config := make(map[string]httpproxy.Config)
filename := "httpproxy.json"
err := storage.LookupStoreByFilterName("httpproxy").UnmarshallJson(filename, &config)
if err != nil {
fmt.Printf("storage.LookupStoreByFilterName(%#v) failed: %s\n", filename, err)
return
}
fmt.Fprintf(os.Stderr, `------------------------------------------------------
GoProxy Version : %s (go/%s %s/%s)`,
version, gover, runtime.GOOS, runtime.GOARCH)
for profile, config := range config {
if !config.Enabled {
continue
}
addr := config.Address
if ip, port, err := net.SplitHostPort(addr); err == nil {
switch ip {
case "", "0.0.0.0", "::":
if ip1, err := helpers.LocalPerferIPv4(); err == nil {
ip = ip1.String()
} else if ips, err := helpers.LocalIPv4s(); err == nil && len(ips) > 0 {
ip = ips[0].String()
}
}
addr = net.JoinHostPort(ip, port)
}
fmt.Fprintf(os.Stderr, `
GoProxy Profile : %s
Listen Address : %s
Enabled Filters : %v`,
profile,
addr,
fmt.Sprintf("%s|%s|%s", strings.Join(config.RequestFilters, ","), strings.Join(config.RoundTripFilters, ","), strings.Join(config.ResponseFilters, ",")))
for _, fn := range config.RoundTripFilters {
f, err := filters.GetFilter(fn)
if err != nil {
glog.Fatalf("filters.GetFilter(%#v) error: %+v", fn, err)
}
switch fn {
case "autoproxy":
fmt.Fprintf(os.Stderr, `
Pac Server : http://%s/proxy.pac`, addr)
case "gae":
config := f.(*gae.Filter).Config
fmt.Fprintf(os.Stderr, `
GAE AppIDs : %s`, strings.Join(config.AppIDs, "|"))
if config.EnableQuic {
fmt.Fprintf(os.Stderr, `
GAE Features : quic`)
}
case "php":
urls := make([]string, 0)
for _, s := range f.(*php.Filter).Config.Servers {
urls = append(urls, s.URL)
}
fmt.Fprintf(os.Stderr, `
GAE AppIDs : %s`, strings.Join(urls, "|"))
}
}
go httpproxy.ServeProfile(config, "goproxy "+version)
}
fmt.Fprintf(os.Stderr, "\n------------------------------------------------------\n")
if ws, ok := os.LookupEnv("GOPROXY_WAIT_SECONDS"); ok {
if ws1, err := strconv.Atoi(ws); err == nil {
time.Sleep(time.Duration(ws1) * time.Second)
return
}
}
select {}
}