-
Notifications
You must be signed in to change notification settings - Fork 0
/
handler_client_factory.go
63 lines (58 loc) · 1.49 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package server
import (
"github.com/Sirupsen/logrus"
"github.com/julienschmidt/httprouter"
"github.com/ory-am/hydra/client"
"github.com/ory-am/hydra/config"
"github.com/ory-am/hydra/herodot"
"golang.org/x/net/context"
r "gopkg.in/dancannon/gorethink.v2"
)
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:
m := &client.SQLManager{
DB: con.GetDatabase(),
Hasher: ctx.Hasher,
}
if err := m.CreateSchemas(); err != nil {
logrus.Fatalf("Could not create client schema: %s", err)
}
return m
case *config.RethinkDBConnection:
con.CreateTableIfNotExists("hydra_clients")
m := &client.RethinkManager{
Session: con.GetSession(),
Table: r.Table("hydra_clients"),
Hasher: ctx.Hasher,
}
if err := m.ColdStart(); err != nil {
logrus.Fatalf("Could not fetch initial state: %s", err)
}
m.Watch(context.Background())
return m
case *config.RedisConnection:
m := &client.RedisManager{
DB: con.RedisSession(),
Hasher: ctx.Hasher,
}
return m
default:
panic("Unknown connection type.")
}
}
func newClientHandler(c *config.Config, router *httprouter.Router, manager client.Manager) *client.Handler {
ctx := c.Context()
h := &client.Handler{
H: &herodot.JSON{},
W: ctx.Warden, Manager: manager,
}
h.SetRoutes(router)
return h
}