forked from ory/hydra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanager_rethinkdb.go
137 lines (113 loc) · 2.7 KB
/
manager_rethinkdb.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
package connection
import (
"sync"
r "github.com/dancannon/gorethink"
"time"
"github.com/go-errors/errors"
"github.com/ory-am/hydra/pkg"
"golang.org/x/net/context"
)
type RethinkManager struct {
Session *r.Session
Table r.Term
Connections map[string]*Connection
sync.RWMutex
}
func (m *RethinkManager) Create(c *Connection) error {
if err := m.publishCreate(c); err != nil {
return err
}
return nil
}
func (m *RethinkManager) Delete(id string) error {
if err := m.publishDelete(id); err != nil {
return err
}
return nil
}
func (m *RethinkManager) Get(id string) (*Connection, error) {
m.Lock()
defer m.Unlock()
c, ok := m.Connections[id]
if !ok {
return nil, errors.New(pkg.ErrNotFound)
}
return c, nil
}
func (m *RethinkManager) FindAllByLocalSubject(subject string) ([]*Connection, error) {
m.Lock()
defer m.Unlock()
var cs []*Connection
for _, c := range m.Connections {
if c.GetLocalSubject() == subject {
cs = append(cs, c)
}
}
return cs, nil
}
func (m *RethinkManager) FindByRemoteSubject(provider, subject string) (*Connection, error) {
m.Lock()
defer m.Unlock()
for _, c := range m.Connections {
if c.GetProvider() == provider && c.GetRemoteSubject() == subject {
return c, nil
}
}
return nil, errors.New(pkg.ErrNotFound)
}
func (m *RethinkManager) ColdStart() error {
m.Connections = map[string]*Connection{}
clients, err := m.Table.Run(m.Session)
if err != nil {
return errors.New(err)
}
var connection Connection
m.Lock()
defer m.Unlock()
for clients.Next(&connection) {
m.Connections[connection.ID] = &connection
}
return nil
}
func (m *RethinkManager) publishCreate(c *Connection) error {
if err := m.Table.Insert(c).Exec(m.Session); err != nil {
return errors.New(err)
}
return nil
}
func (m *RethinkManager) publishDelete(id string) error {
if err := m.Table.Get(id).Delete().Exec(m.Session); err != nil {
return errors.New(err)
}
return nil
}
func (m *RethinkManager) Watch(ctx context.Context) {
go pkg.Retry(time.Second*15, time.Minute, func() error {
connections, err := m.Table.Changes().Run(m.Session)
if err != nil {
return errors.New(err)
}
defer connections.Close()
var update map[string]*Connection
for connections.Next(&update) {
newVal := update["new_val"]
oldVal := update["old_val"]
m.Lock()
if newVal == nil && oldVal != nil {
delete(m.Connections, oldVal.GetID())
} else if newVal != nil && oldVal != nil {
delete(m.Connections, oldVal.GetID())
m.Connections[newVal.GetID()] = newVal
} else {
m.Connections[newVal.GetID()] = newVal
}
m.Unlock()
}
if connections.Err() != nil {
err = errors.New(connections.Err())
pkg.LogError(err)
return err
}
return nil
})
}