Ejemplo n.º 1
0
func TestParse(t *testing.T) {
	f, err := ioutil.TempFile("", "")
	if err != nil {
		t.Error(err)
	}
	defer func() {
		f.Close()
		os.Remove(f.Name())
	}()

	data := `
addr        = ":8080"
domain      = "example.com"
session_key = "secret123"

auth {
    service       = "google"
    client_id     = "secret client id"
    client_secret = "secret client secret"
    redirect_url  = "https://example.com/oauth2callback"
    restrictions  = [
        "yourdomain.com",
        "*****@*****.**",
    ]
}

proxies {
    hoge {
        path = "/"
        dest = "http://127.0.0.1:8081"
    }
    fuga {
        path = "/"
        dest = "http://127.0.0.1:8081"
    }
}`

	if err := ioutil.WriteFile(f.Name(), []byte(data), 0644); err != nil {
		t.Error(err)
	}

	conf, err := config.LoadConfig(f.Name())
	if err != nil {
		t.Error(err)
	}

	if conf.Addr != ":8080" {
		t.Errorf("unexpected address: %s", conf.Addr)
	}
}
Ejemplo n.º 2
0
func main() {
	c, err := config.LoadConfig(configPath)
	if err != nil {
		log.Fatal(err)
	}

	pp.Println(c)

	cookieStore := cookiestore.New([]byte(c.SessionKey))
	cookieStore.Options(sessions.Options{Domain: c.Domain})

	a := auth.New(c)

	n := negroni.New()
	n.Use(sessions.Sessions("session", cookieStore))
	n.Use(a.NewOauth2Provider())
	n.Use(a.LoginRequired())
	n.Use(a.RestrictRequest())
	n.Use(proxy.Proxy(c))

	ran.Run(c.Addr, n)
}