-
Notifications
You must be signed in to change notification settings - Fork 181
/
sessions.go
94 lines (82 loc) · 3.27 KB
/
sessions.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
/*
* 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 websocket starts a WebSocket service forwarding internal events to http clients
package websocket
import (
"context"
"github.com/pydio/melody"
"go.uber.org/zap"
"golang.org/x/time/rate"
"github.com/pydio/cells/common/auth/claim"
"github.com/pydio/cells/common/log"
"github.com/pydio/cells/common/utils/permissions"
"github.com/pydio/cells/common/views"
)
const SessionRolesKey = "roles"
const SessionWorkspacesKey = "workspaces"
const SessionAccessListKey = "accessList"
const SessionUsernameKey = "user"
const SessionProfileKey = "profile"
const SessionClaimsKey = "claims"
const SessionLimiterKey = "limiter"
const LimiterRate = 30
const LimiterBurst = 20
func UpdateSessionFromClaims(session *melody.Session, claims claim.Claims, pool *views.ClientsPool) {
ctx := context.WithValue(context.Background(), claim.ContextKey, claims)
vNodeManager := views.GetVirtualNodesManager()
if accessList, err := permissions.AccessListFromContextClaims(ctx); err == nil {
roles := accessList.OrderedRoles
workspaces := accessList.Workspaces
// Resolve workspaces roots in the current context
for _, workspaces := range workspaces {
var resolvedRoots []string
for _, rootId := range workspaces.RootUUIDs {
if vNode, exists := vNodeManager.ByUuid(rootId); exists {
if resolved, e := vNodeManager.ResolveInContext(ctx, vNode, pool, true); e == nil && resolved.Uuid != "" {
resolvedRoots = append(resolvedRoots, resolved.Uuid)
}
continue // skip this node totally if the resolution failed
}
resolvedRoots = append(resolvedRoots, rootId)
}
workspaces.RootUUIDs = resolvedRoots
}
log.Logger(ctx).Debug("Setting workspaces in session", zap.Any("workspaces", workspaces))
session.Set(SessionRolesKey, roles)
session.Set(SessionWorkspacesKey, workspaces)
session.Set(SessionAccessListKey, accessList)
session.Set(SessionUsernameKey, claims.Name)
session.Set(SessionProfileKey, claims.Profile)
session.Set(SessionClaimsKey, claims)
session.Set(SessionLimiterKey, rate.NewLimiter(LimiterRate, LimiterBurst))
} else {
log.Logger(ctx).Error("Error while setting workspaces in session", zap.Error(err))
ClearSession(session)
}
}
func ClearSession(session *melody.Session) {
session.Set(SessionRolesKey, nil)
session.Set(SessionWorkspacesKey, nil)
session.Set(SessionAccessListKey, nil)
session.Set(SessionUsernameKey, nil)
session.Set(SessionProfileKey, nil)
session.Set(SessionClaimsKey, nil)
session.Set(SessionLimiterKey, nil)
}