-
Notifications
You must be signed in to change notification settings - Fork 0
/
handler.go
157 lines (137 loc) · 4.25 KB
/
handler.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
package server
import (
"crypto/tls"
"fmt"
"net/http"
"github.com/julienschmidt/httprouter"
"github.com/meatballhat/negroni-logrus"
"github.com/ory/graceful"
"github.com/ory/herodot"
"github.com/ory/hydra/client"
"github.com/ory/hydra/config"
"github.com/ory/hydra/jwk"
"github.com/ory/hydra/oauth2"
"github.com/ory/hydra/pkg"
"github.com/ory/hydra/policy"
"github.com/ory/hydra/warden"
"github.com/ory/hydra/warden/group"
"github.com/ory/ladon"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"github.com/urfave/negroni"
)
func RunHost(c *config.Config) func(cmd *cobra.Command, args []string) {
return func(cmd *cobra.Command, args []string) {
router := httprouter.New()
logger := c.GetLogger()
serverHandler := &Handler{
Config: c,
H: herodot.NewJSONWriter(logger),
}
serverHandler.registerRoutes(router)
c.ForceHTTP, _ = cmd.Flags().GetBool("dangerous-force-http")
if c.ClusterURL == "" {
proto := "https"
if c.ForceHTTP {
proto = "http"
}
host := "localhost"
if c.BindHost != "" {
host = c.BindHost
}
c.ClusterURL = fmt.Sprintf("%s://%s:%d", proto, host, c.BindPort)
}
if ok, _ := cmd.Flags().GetBool("dangerous-auto-logon"); ok {
logger.Warnln("Do not use flag --dangerous-auto-logon in production.")
err := c.Persist()
pkg.Must(err, "Could not write configuration file: %s", err)
}
n := negroni.New()
n.Use(negronilogrus.NewMiddlewareFromLogger(logger, c.Issuer))
n.UseFunc(serverHandler.rejectInsecureRequests)
n.UseHandler(router)
var srv = graceful.WithDefaults(&http.Server{
Addr: c.GetAddress(),
Handler: n,
TLSConfig: &tls.Config{
Certificates: []tls.Certificate{getOrCreateTLSCertificate(cmd, c)},
},
})
pkg.Must(graceful.Graceful(func() error {
var err error
logger.Infof("Setting up http server on %s", c.GetAddress())
if c.ForceHTTP {
logger.Warnln("HTTPS disabled. Never do this in production.")
err = srv.ListenAndServe()
} else if c.AllowTLSTermination != "" {
logger.Infoln("TLS termination enabled, disabling https.")
err = srv.ListenAndServe()
} else {
err = srv.ListenAndServeTLS("", "")
}
return err
}, srv.Shutdown), "Could not gracefully run server")
}
}
type Handler struct {
Clients *client.Handler
Keys *jwk.Handler
OAuth2 *oauth2.Handler
Policy *policy.Handler
Groups *group.Handler
Warden *warden.WardenHandler
Config *config.Config
H herodot.Writer
}
func (h *Handler) registerRoutes(router *httprouter.Router) {
c := h.Config
ctx := c.Context()
// Set up dependencies
injectJWKManager(c)
clientsManager := newClientManager(c)
injectFositeStore(c, clientsManager)
oauth2Provider := newOAuth2Provider(c, ctx.KeyManager)
// set up warden
ctx.Warden = &warden.LocalWarden{
Warden: &ladon.Ladon{
Manager: ctx.LadonManager,
},
OAuth2: oauth2Provider,
Issuer: c.Issuer,
AccessTokenLifespan: c.GetAccessTokenLifespan(),
Groups: ctx.GroupManager,
L: c.GetLogger(),
}
// Set up handlers
h.Clients = newClientHandler(c, router, clientsManager)
h.Keys = newJWKHandler(c, router)
h.Policy = newPolicyHandler(c, router)
h.OAuth2 = newOAuth2Handler(c, router, ctx.KeyManager, oauth2Provider)
h.Warden = warden.NewHandler(c, router)
h.Groups = &group.Handler{
H: herodot.NewJSONWriter(c.GetLogger()),
W: ctx.Warden,
Manager: ctx.GroupManager,
}
h.Groups.SetRoutes(router)
router.GET("/health", func(rw http.ResponseWriter, r *http.Request, _ httprouter.Params) {
rw.WriteHeader(http.StatusNoContent)
})
// Create root account if new install
createRS256KeysIfNotExist(c, oauth2.ConsentEndpointKey, "private", "sig")
createRS256KeysIfNotExist(c, oauth2.ConsentChallengeKey, "private", "sig")
h.createRootIfNewInstall(c)
}
func (h *Handler) rejectInsecureRequests(rw http.ResponseWriter, r *http.Request, next http.HandlerFunc) {
if r.TLS != nil || h.Config.ForceHTTP {
next.ServeHTTP(rw, r)
return
}
if err := h.Config.DoesRequestSatisfyTermination(r); err == nil {
next.ServeHTTP(rw, r)
return
} else {
h.Config.GetLogger().WithError(err).Warnln("Could not serve http connection")
}
h.H.WriteErrorCode(rw, r, http.StatusBadGateway, errors.New("Can not serve request over insecure http"))
}