forked from ory/hydra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
handler_client_factory.go
46 lines (41 loc) · 1.02 KB
/
handler_client_factory.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
package server
import (
"github.com/julienschmidt/httprouter"
"github.com/ory/herodot"
"github.com/ory/hydra/client"
"github.com/ory/hydra/config"
)
func newClientManager(c *config.Config) client.Manager {
ctx := c.Context()
switch con := ctx.Connection.(type) {
case *config.MemoryConnection:
return &client.MemoryManager{
Clients: map[string]client.Client{},
Hasher: ctx.Hasher,
}
case *config.SQLConnection:
return &client.SQLManager{
DB: con.GetDatabase(),
Hasher: ctx.Hasher,
}
case *config.PluginConnection:
if m, err := con.NewClientManager(); err != nil {
c.GetLogger().Fatalf("Could not load client manager plugin %s", err)
} else {
return m
}
break
default:
panic("Unknown connection type.")
}
return nil
}
func newClientHandler(c *config.Config, router *httprouter.Router, manager client.Manager) *client.Handler {
ctx := c.Context()
h := &client.Handler{
H: herodot.NewJSONWriter(c.GetLogger()),
W: ctx.Warden, Manager: manager,
}
h.SetRoutes(router)
return h
}