-
Notifications
You must be signed in to change notification settings - Fork 180
/
cleaner.go
168 lines (154 loc) · 4.05 KB
/
cleaner.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
158
159
160
161
162
163
164
165
166
167
168
/*
* Copyright (c) 2018. Abstrium SAS <team (at) pydio.com>
* This file is part of Pydio Cells.
*
* Pydio Cells is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Pydio Cells is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Pydio Cells. If not, see <http://www.gnu.org/licenses/>.
*
* The latest code can be found at <https://pydio.com>.
*/
package grpc
import (
"context"
"sync"
"time"
"github.com/golang/protobuf/ptypes/any"
"github.com/micro/protobuf/ptypes"
"go.uber.org/zap"
"github.com/pydio/cells/common"
"github.com/pydio/cells/common/log"
"github.com/pydio/cells/common/micro"
"github.com/pydio/cells/common/proto/idm"
"github.com/pydio/cells/common/service/proto"
)
type AclBatcher struct {
timeout time.Duration
incoming chan *idm.ACL
workspaceId string
done chan string
}
func NewAclBatcher(wsId string, done chan string, timeout time.Duration) *AclBatcher {
a := &AclBatcher{
timeout: timeout,
incoming: make(chan *idm.ACL),
workspaceId: wsId,
done: done,
}
go a.Start()
return a
}
func (a *AclBatcher) Start() {
defer func() {
a.done <- a.workspaceId
}()
for {
select {
case <-a.incoming:
// Do nothing, just select and reset timeout
case <-time.After(a.timeout):
return
}
}
}
// WsCleaner subscribe to ACL:Delete events to clean workspaces
// that do not have any ACLs anymore
type WsCleaner struct {
Handler *Handler
batches map[string]*AclBatcher
listener chan string
lock *sync.Mutex
ctx context.Context
}
func NewWsCleaner(h *Handler, ctx context.Context) *WsCleaner {
listener := make(chan string, 1)
lock := &sync.Mutex{}
w := &WsCleaner{
Handler: h,
ctx: ctx,
listener: listener,
lock: lock,
batches: make(map[string]*AclBatcher),
}
// Start listening to ws
go func() {
for {
select {
case wsId := <-listener:
if err := w.deleteEmptyWs(wsId); err != nil {
log.Logger(context.Background()).Info("Error while trying to delete workspace without ACLs (" + wsId + ")")
}
lock.Lock()
delete(w.batches, wsId)
lock.Unlock()
}
}
}()
return w
}
func (c *WsCleaner) Handle(ctx context.Context, msg *idm.ChangeEvent) error {
if msg.Type != idm.ChangeEventType_DELETE || msg.Acl == nil {
return nil
}
acl := msg.Acl
if acl.WorkspaceID == "" {
return nil
}
c.lock.Lock()
if batcher, ok := c.batches[acl.WorkspaceID]; ok {
batcher.incoming <- acl
} else {
batcher := NewAclBatcher(acl.WorkspaceID, c.listener, 3*time.Second)
c.batches[acl.WorkspaceID] = batcher
batcher.incoming <- acl
}
c.lock.Unlock()
return nil
}
func (c *WsCleaner) deleteEmptyWs(workspaceId string) error {
ctx := context.Background()
// Check if there are still some ACLs for this workspace
cl := idm.NewACLServiceClient(common.SERVICE_GRPC_NAMESPACE_+common.SERVICE_ACL, defaults.NewClient())
q, _ := ptypes.MarshalAny(&idm.ACLSingleQuery{
WorkspaceIDs: []string{workspaceId},
})
streamer, e := cl.SearchACL(ctx, &idm.SearchACLRequest{
Query: &service.Query{SubQueries: []*any.Any{q}},
})
if e != nil {
return e
}
defer streamer.Close()
hasAcl := false
for {
resp, e := streamer.Recv()
if e != nil {
break
}
if resp != nil {
hasAcl = true
break
}
}
if !hasAcl {
q2, _ := ptypes.MarshalAny(&idm.WorkspaceSingleQuery{
Uuid: workspaceId,
})
e := c.Handler.DeleteWorkspace(c.ctx, &idm.DeleteWorkspaceRequest{
Query: &service.Query{SubQueries: []*any.Any{q2}},
}, &idm.DeleteWorkspaceResponse{})
if e == nil {
log.Logger(c.ctx).Info("Deleted workspace based on ACL Delete events", zap.String("wsId", workspaceId))
}
}
return nil
}