"os/exec"
"time"
"strings"
+ "flag"
+
+ "github.com/spf13/viper"
)
-var pid int
+type Header struct {
+ Name string
+ Value string
+}
-var path = "/home/tux/Documenti/sviluppo/centriestivi"
+type ConfigProxy struct {
+ Port int
+ Headers []Header
+}
+
+type ConfigService struct {
+ Address string
+ Port int
+ Path string
+ Executable string
+}
+
+type Config struct {
+ Proxy ConfigProxy `mapstructure:"Proxy"`
+ Service ConfigService `mapstructure:"Service"`
+}
+
+var config Config
+
+var pid int
var watched = make(map[string]time.Time)
func modifyRequest(req *http.Request) {
//req.Header.Set("X-Proxy", "Simple-Reverse-Proxy")
- req.Header.Set("ZType", "be")
+ for _, h := range config.Proxy.Headers {
+ fmt.Println(h.Name, h.Value)
+ req.Header.Set(h.Name, h.Value)
+ }
fmt.Println(req.URL)
/* controllo se i file *.go sono cambiati */
rebuild := false
- dir, _ := os.Open(path)
+ dir, _ := os.Open(config.Service.Path)
dirEntries, _ := dir.ReadDir(0)
for _, entry := range dirEntries {
if !entry.IsDir() && strings.HasSuffix(entry.Name(), ".go") {
break
} else {
if watched[entry.Name()].Before(info.ModTime()) {
+ fmt.Println("File modificato", entry.Name())
watched[entry.Name()] = info.ModTime()
rebuild = true
break
}
cmd := &exec.Cmd {
- Dir: path,
+ Dir: config.Service.Path,
Path: goExecPath,
- Args: []string{goExecPath, "build", "."},
+ Args: []string{goExecPath, "build", "-o", config.Service.Executable, "."},
Stdout: os.Stdout,
Stderr: os.Stdout,
}
fmt.Println("ESEGUO RUN")
cmd = &exec.Cmd {
- Dir: path,
- Path: path + "/centriestivi",
- Args: []string{path + "/centriestivi"},
+ Dir: config.Service.Path,
+ Path: config.Service.Path + "/" + config.Service.Executable,
+ Args: []string{config.Service.Path + "/" + config.Service.Executable},
Stdout: os.Stdout,
Stderr: os.Stdout,
}
/* per adesso testo se la porta tcp รจ aperta */
for {
timeout := time.Second
- conn, err := net.DialTimeout("tcp", net.JoinHostPort("10.101.101.103", "9083"), timeout)
+ conn, err := net.DialTimeout("tcp", net.JoinHostPort(config.Service.Address, fmt.Sprintf("%d", config.Service.Port)), timeout)
if err != nil {
fmt.Println("Connecting error:", err)
time.Sleep(5 * time.Second)
} else {
if conn != nil {
defer conn.Close()
- fmt.Println("Opened", net.JoinHostPort("10.101.101.103", "9083"))
+ fmt.Println("Opened", net.JoinHostPort(config.Service.Address, fmt.Sprintf("%d", config.Service.Port)))
break
}
}
}
func watchedInit() {
- dir, _ := os.Open(path)
+ dir, _ := os.Open(config.Service.Path)
dirEntries, _ := dir.ReadDir(0)
for _, entry := range dirEntries {
fmt.Println(entry.Name())
}
func main() {
+ var config_file string
+
+ flag.StringVar(&config_file, "c", "./app.toml", "Config file")
+
+ flag.Parse()
+
+ viper.SetConfigFile(config_file)
+
+ viper.AutomaticEnv()
+
+ err := viper.ReadInConfig()
+ if err != nil {
+ fmt.Printf("error %v", err)
+ return
+ }
+ err = viper.Unmarshal(&config)
+ if err != nil {
+ fmt.Printf("error %v", err)
+ return
+ }
+
watchedInit()
startApp()
// initialize a reverse proxy and pass the actual backend server url here
- proxy, err := NewProxy("http://localhost:9083")
+ proxy, err := NewProxy(fmt.Sprintf("http://%s:%d", config.Service.Address, config.Service.Port))
if err != nil {
panic(err)
}
// handle all requests to your server using the proxy
http.HandleFunc("/", ProxyRequestHandler(proxy))
- log.Fatal(http.ListenAndServe(":9080", nil))
+ log.Fatal(http.ListenAndServe(fmt.Sprintf(":%d", config.Proxy.Port), nil))
+
+ fmt.Printf("Listening and serving")
}