-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmain.go
89 lines (78 loc) · 1.57 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
package main
import (
"fmt"
"log"
"net/http"
"os"
"github.com/octavore/naga/service"
)
const (
version = "1.2.1"
)
func main() {
service.Run(&App{})
}
type App struct {
config *Config
configManager *configManager
handlers []*Proxy
handlerIndex map[string]int // use for colors
}
func (a *App) Init(c *service.Config) {
a.handlerIndex = make(map[string]int)
a.addCommands(c)
c.SetDefaultCommand("start")
c.Setup = func() error {
cm, err := newConfigManager()
if err != nil {
return err
}
a.configManager = cm
return nil
}
c.Start = func() {
config, err := a.configManager.ensureAndLoad()
if err != nil {
log.Fatalln(err)
}
a.config = config
if a.config.Addr == "" {
a.config.Addr = "localhost:7999"
}
if a.config.TLSAddr == "" {
a.config.TLSAddr = "localhost:7998"
}
if len(a.config.Entries) == 0 {
fmt.Println("no entries found in config.json; exiting")
os.Exit(1)
}
for i, e := range a.config.Entries {
p, err := NewProxy(e)
if err != nil {
log.Fatalln(err)
}
a.handlers = append(a.handlers, p)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
a.handlerIndex[e.Source] = i
i := a.handlerIndex[e.Source] % len(colors)
fmt.Printf("loaded: %s => %s\n", colors[i](e.Source), e.dest())
}
fmt.Printf("proxy URL: http://%s/proxy.pac\n", a.config.Addr)
a.startServer()
}
}
func (a *App) startServer() {
err := a.startTLSProxy()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
err = http.ListenAndServe(a.config.Addr, a)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}