func newServer(c *Context, e *empire.Empire) http.Handler { var opts server.Options opts.GitHub.Webhooks.Secret = c.String(FlagGithubWebhooksSecret) opts.GitHub.Deployments.Environments = strings.Split(c.String(FlagGithubDeploymentsEnvironments), ",") opts.GitHub.Deployments.ImageBuilder = newImageBuilder(c) opts.GitHub.Deployments.TugboatURL = c.String(FlagGithubDeploymentsTugboatURL) s := server.New(e, opts) s.URL = c.URL(FlagURL) s.Heroku.Auth = newAuth(c, e) s.Heroku.Secret = []byte(c.String(FlagSecret)) sp, err := c.SAMLServiceProvider() if err != nil { panic(err) } if sp != nil { s.ServiceProvider = sp s.Heroku.Unauthorized = heroku.SAMLUnauthorized(c.String(FlagURL) + "/saml/login") } h := middleware.Common(s) return middleware.Handler(c, h) }
func newServer(c *Context, e *empire.Empire) http.Handler { var opts server.Options opts.Authenticator = newAuthenticator(c, e) opts.GitHub.Webhooks.Secret = c.String(FlagGithubWebhooksSecret) opts.GitHub.Deployments.Environments = strings.Split(c.String(FlagGithubDeploymentsEnvironments), ",") opts.GitHub.Deployments.ImageBuilder = newImageBuilder(c) opts.GitHub.Deployments.TugboatURL = c.String(FlagGithubDeploymentsTugboatURL) h := middleware.Common(server.New(e, opts)) return middleware.Handler(c, h) }
// NewTestServer returns a new httptest.Server for testing empire's http server. func NewTestServer(t testing.TB, e *empire.Empire, opts server.Options) *Server { if e == nil { e = NewEmpire(t) } s := server.New(e, opts) return &Server{ Empire: e, Server: httptest.NewServer(middleware.Handler(context.Background(), s)), } }
func newServer(c *cli.Context, e *empire.Empire) (http.Handler, error) { rootCtx, err := newRootContext(c) if err != nil { return nil, err } var opts server.Options opts.Authenticator = newAuthenticator(c, e) opts.GitHub.Webhooks.Secret = c.String(FlagGithubWebhooksSecret) opts.GitHub.Deployments.Environments = strings.Split(c.String(FlagGithubDeploymentsEnvironments), ",") opts.GitHub.Deployments.ImageBuilder = newImageBuilder(c) opts.GitHub.Deployments.TugboatURL = c.String(FlagGithubDeploymentsTugboatURL) h := middleware.Common(server.New(e, opts)) return middleware.Handler(rootCtx, h), nil }
// newTestServer returns a new httptest.Server for testing empire's http server. func newTestServer(t testing.TB, e *empire.Empire, opts server.Options) *Server { if e == nil { e = NewEmpire(t) } // Log reporter errors to stderr ctx := reporter.WithReporter(context.Background(), reporter.ReporterFunc(func(ctx context.Context, err error) error { fmt.Fprintf(os.Stderr, "reported error: %v\n", err) return nil })) s := server.New(e, opts) svr := httptest.NewUnstartedServer(middleware.Handler(ctx, s)) u, _ := url.Parse(svr.URL) s.URL = u return &Server{ Empire: e, Server: s, svr: svr, } }