-
Notifications
You must be signed in to change notification settings - Fork 0
/
pydio8_store.go
754 lines (638 loc) · 19.4 KB
/
pydio8_store.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
package pydio8
import (
"context"
"fmt"
"net/url"
"path"
"strings"
json "github.com/pydio/cells/x/jsonx"
"github.com/pydio/cells/common/etl/stores"
"github.com/go-openapi/runtime"
httptransport "github.com/go-openapi/runtime/client"
"github.com/pborman/uuid"
"github.com/pydio/cells/common/config/source"
"github.com/pydio/pydio-sdk-go/client/provisioning"
sdkconfig "github.com/pydio/pydio-sdk-go/config"
models2 "github.com/pydio/pydio-sdk-go/models"
"github.com/pydio/pydio-sdk-go/shares"
"go.uber.org/zap"
"github.com/pydio/cells/common"
"github.com/pydio/cells/common/etl/models"
"github.com/pydio/cells/common/log"
"github.com/pydio/cells/common/proto/idm"
"github.com/pydio/cells/common/proto/rest"
"github.com/pydio/cells/common/proto/tree"
service "github.com/pydio/cells/common/service/proto"
"github.com/pydio/cells/common/utils/permissions"
)
func init() {
stores.RegisterStore("pydio8", func(options *stores.Options) (interface{}, error) {
rawurl, ok := options.Params["url"]
if !ok {
return nil, fmt.Errorf("missing url parameter")
}
user, ok := options.Params["user"]
if !ok {
return nil, fmt.Errorf("missing user parameter")
}
password, ok := options.Params["password"]
if !ok {
return nil, fmt.Errorf("missing password parameter")
}
u, err := url.Parse(rawurl)
if err != nil {
return nil, fmt.Errorf("could not parse url")
}
conf := &sdkconfig.SdkConfig{
Protocol: u.Scheme,
Url: u.Host,
Path: u.Path,
User: user,
Password: password,
}
if skipVerify, ok := options.Params["skipVerify"]; ok && skipVerify == "true" {
conf.SkipVerify = true
}
src := "pydio8" + u.Host
options.MergeOptions.AuthSource = src
options.MergeOptions.RolePrefix = src
options.MergeOptions.Origin = src
return NewPydio8UserStore(conf), nil
})
}
// Pydio8Store implements what it takes to communicate with a Pydio8 entity
type Pydio8Store struct {
Config *sdkconfig.SdkConfig
sharesCache map[string]*shares.Share
}
func NewPydio8UserStore(c *sdkconfig.SdkConfig) *Pydio8Store {
return &Pydio8Store{
Config: c,
}
}
// ListUsers from the pydio 8 api
func (s *Pydio8Store) ListConfig(ctx context.Context, params map[string]interface{}) (*source.ChangeSet, error) {
return &source.ChangeSet{}, nil
}
// ListUsers from the pydio 8 api
func (s *Pydio8Store) ListUsers(ctx context.Context, params map[string]interface{}, progress chan float32) (map[string]*idm.User, error) {
pa := "/"
if p, ok := params["path"]; ok {
pa = p.(string)
}
users, err := getUsersFromPath(s, pa, 1)
if err != nil {
return nil, err
}
ret := make(map[string]*idm.User)
for _, u := range users {
ret[u.Login] = u
}
return ret, nil
}
// ListGroups from the pydio 8 api
func (s *Pydio8Store) ListGroups(ctx context.Context, params map[string]interface{}) ([]*idm.User, error) {
pa := "/"
if p, ok := params["path"]; ok {
pa = p.(string)
}
users, err := s.getGroupsFromPath(pa)
if err != nil {
return nil, err
}
var interfaceSlice = make([]*idm.User, len(users))
for i, d := range users {
interfaceSlice[i] = d
}
return interfaceSlice, nil
}
// Roles
func (s *Pydio8Store) getRoles(ctx context.Context, teams bool, userStore models.ReadableStore) ([]*idm.Role, error) {
var roles []*idm.Role
clientV1 := &ClientV1{}
resp, e := clientV1.ListNonTechnicalRoles(teams, s.Config)
if e != nil {
return nil, e
}
builder := service.NewResourcePoliciesBuilder()
for id, role := range resp {
builder.Reset()
var auto []string
if len(role.AppliesTo) > 0 {
auto = strings.Split(role.AppliesTo, ",")
}
idmRole := &idm.Role{
Uuid: id,
Label: role.RoleLabel,
ForceOverride: role.ForceOverride,
AutoApplies: auto,
}
if role.OwnerId != "" {
if targetUser, _, e := userStore.GetUserInfo(ctx, role.OwnerId, map[string]interface{}{}); e == nil {
idmRole.IsTeam = true
builder = builder.WithOwner(targetUser.Uuid)
builder = builder.WithProfileRead(common.PydioProfileAdmin)
builder = builder.WithProfileWrite(common.PydioProfileAdmin)
builder = builder.WithUserRead(role.OwnerId)
builder = builder.WithUserWrite(role.OwnerId)
} else {
log.Logger(ctx).Error("Got Role for team but cannot find user!")
continue
}
} else {
// SET DEFAULT POLICIES
builder = builder.WithResourcePolicy(&service.ResourcePolicy{Subject: "*", Action: service.ResourcePolicyAction_READ})
builder = builder.WithProfileWrite(common.PydioProfileAdmin)
}
idmRole.Policies = builder.Policies()
roles = append(roles, idmRole)
}
return roles, nil
}
// Return a list of user with
func (s *Pydio8Store) ListRoles(ctx context.Context, userStore models.ReadableStore, params map[string]interface{}) ([]*idm.Role, error) {
var teams bool
if t, o := params["teams"]; o && t.(bool) {
teams = true
}
return s.getRoles(ctx, teams, userStore)
}
// ListACLs returns acls from the pydio api
func (s *Pydio8Store) ListACLs(ctx context.Context, params map[string]interface{}) ([]*idm.ACL, error) {
pa := "/"
if p, ok := params["path"]; ok {
pa = p.(string)
}
roleID := "/"
if r, ok := params["roleID"]; ok {
roleID = r.(string)
}
acls, err := s.getACLs(roleID, pa)
if err != nil {
return nil, err
}
var interfaceSlice = make([]*idm.ACL, len(acls))
for i, d := range acls {
interfaceSlice[i] = d
}
return interfaceSlice, nil
}
func (s *Pydio8Store) GetLdapDomainName() (string, error) {
cV1 := &ClientV1{}
if resp, e := cV1.GetDomainName(s.Config); e == nil {
return resp.DomainName, nil
}
return "", nil
}
func getUsersFromPath(s *Pydio8Store, p string, page int64) ([]*idm.User, error) {
log.Logger(context.Background()).Debug("P8Store:getUsersFromPath", zap.Any("path", p), zap.Any("page", page))
builder := service.NewResourcePoliciesBuilder()
var users []*idm.User
httpClient := sdkconfig.GetHttpClient(s.Config)
apiClient, ctx, err := sdkconfig.GetPreparedApiClient(s.Config)
if err != nil {
return nil, err
}
format := "json"
params := &GetPeopleParams{
Context: ctx,
HTTPClient: httpClient,
Format: &format,
Path: p,
Page: page,
}
c := &Client{apiClient}
result, err := c.GetPeople(params)
if err != nil {
return nil, err
}
data := result.Payload.Data
if data == nil {
return nil, nil
}
log.Logger(context.Background()).Debug("Loaded a users page", zap.Int("count", len(data.Children)))
cV1 := &ClientV1{}
var contextDomain string
// Load contextdomain
if domain, e := cV1.GetDomainName(s.Config); e == nil {
contextDomain = domain.DomainName
}
for key, node := range data.Children {
if node.Type == "collection" {
newUsers, err := getUsersFromPath(s, key, 1)
if err != nil {
log.Info("An error occurred while migrating group... Continuing", zap.Any("params", params), zap.Error(err))
return users, nil
}
users = append(users, newUsers...)
} else {
user := new(idm.User)
groupPath := path.Dir(p + "/")
if groupPath == "." {
groupPath = "/"
}
user.GroupPath = groupPath
var roles []*idm.Role
if node.AjxpRoles != nil {
d, _ := json.Marshal(node.AjxpRoles)
var ajxpRoles map[string]string
if err := json.Unmarshal(d, &ajxpRoles); err == nil {
for _, ajxpRole := range ajxpRoles {
role := new(idm.Role)
role.Uuid = ajxpRole
roles = append(roles, role)
}
}
}
user.Roles = roles
user.Login = path.Base(key)
user.IsGroup = false
if len(user.Attributes) == 0 {
user.Attributes = make(map[string]string)
}
type Plugin map[string]string
type RepoScope map[string]Plugin
if node.JSONMergedRole != nil && node.JSONMergedRole.PARAMETERS != nil {
p, err := json.Marshal(node.JSONMergedRole.PARAMETERS)
if err == nil {
var roleParams map[string]RepoScope
if err := json.Unmarshal(p, &roleParams); err == nil {
if e, ok := roleParams["AJXP_REPO_SCOPE_ALL"]["core.conf"]["email"]; ok {
user.Attributes[idm.UserAttrEmail] = e
}
if d, ok := roleParams["AJXP_REPO_SCOPE_ALL"]["core.conf"]["USER_DISPLAY_NAME"]; ok {
user.Attributes[idm.UserAttrDisplayName] = d
}
}
} else {
log.Logger(context.Background()).Debug("JSON marshal error", zap.Error(err))
}
}
// Load password
if resp, e := cV1.GetAdvancedUserInfo(user.Login, s.Config); e == nil {
user.Password = resp.Password
// Load AuthSource
if (resp.AuthSource != "") && (resp.AuthSource != "sql") {
user.Attributes["AuthSource"] = resp.AuthSource
if contextDomain != "" {
user.GroupPath = "/" + strings.Replace(contextDomain, ",", ".", -1)
}
}
if resp.Profile == common.PydioProfileStandard || resp.Profile == common.PydioProfileShared || resp.Profile == common.PydioProfileAdmin {
user.Attributes[idm.UserAttrProfile] = resp.Profile
}
if resp.Profile == common.PydioProfileShared && resp.OwnerLogin != "" {
builder.Reset()
builder = builder.WithUserRead(resp.OwnerLogin).WithUserWrite(resp.OwnerLogin)
builder = builder.WithUserRead(user.Login).WithUserWrite(user.Login)
builder = builder.WithProfileRead(common.PydioProfileAdmin).WithProfileWrite(common.PydioProfileAdmin)
user.Policies = builder.Policies()
}
log.Logger(ctx).Info("Loaded advanced user info", zap.String("login", user.Login), user.Zap())
}
users = append(users, user)
}
}
if result.Payload.Pagination != nil {
pagination := result.Payload.Pagination
if page != pagination.Current {
// We've already retrieved that data so just return without error
return users, nil
}
if page < pagination.Total {
newUsers, err := getUsersFromPath(s, p, page+1)
if err != nil {
return users, nil
}
if len(newUsers) == 0 {
return users, nil
}
users = append(users, newUsers...)
}
}
return users, nil
}
// Groups
func (s *Pydio8Store) getGroupsFromPath(p string) ([]*idm.User, error) {
var groups []*idm.User
// dir := path.Dir(p)
// base := path.Base(p)
httpClient := sdkconfig.GetHttpClient(s.Config)
apiClient, ctx, err := sdkconfig.GetPreparedApiClient(s.Config)
if err != nil {
return nil, err
}
format := "json"
params := &GetPeopleParams{
Context: ctx,
HTTPClient: httpClient,
Format: &format,
Path: p,
}
c := &Client{apiClient}
result, err := c.GetPeople(params)
if err != nil {
return nil, err
}
data := result.Payload.Data
if data == nil {
return nil, nil
}
for key, node := range data.Children {
if node.Type == "collection" {
newGroups, err := s.getGroupsFromPath(key)
if err != nil {
return nil, err
}
groups = append(groups, newGroups...)
group := new(idm.User)
group.GroupLabel = path.Base(key)
group.GroupPath = path.Dir(key)
group.IsGroup = true
attributes := make(map[string]string)
attributes["AuthSource"] = "pydio8-" + s.Config.Url
group.Attributes = attributes
// Do the roles
groups = append(groups, group)
}
}
return groups, nil
}
// ACLs
func (s *Pydio8Store) getACLs(roleID string, path string) ([]*idm.ACL, error) {
var acls []*idm.ACL
httpClient := sdkconfig.GetHttpClient(s.Config)
apiClient, ctx, err := sdkconfig.GetPreparedApiClient(s.Config)
if err != nil {
return nil, err
}
format := "json"
params := &provisioning.GetRoleParams{
Context: ctx,
HTTPClient: httpClient,
Format: &format,
RoleID: path,
}
role, err := apiClient.Provisioning.GetRole(params, nil)
if err != nil {
return nil, err
}
aclData := role.Payload.ACL
var roleACLs map[string]interface{}
if sli, ok := aclData.([]interface{}); ok {
roleACLs = make(map[string]interface{})
for i, k := range sli {
roleACLs[fmt.Sprintf("%d", i)] = k
}
} else if mapA, ok := aclData.(map[string]interface{}); ok {
roleACLs = mapA
} else {
log.Logger(context.Background()).Debug("Cannot convert roles acls", zap.Any("result", aclData))
return nil, fmt.Errorf("could not convert role acls")
}
log.Logger(context.Background()).Debug("Loaded role", zap.Any("path", path), zap.Any("roleID", roleID), zap.Any("result", roleACLs))
rightsMap := map[rune]*idm.ACLAction{
'r': {Name: "read", Value: "1"},
'w': {Name: "write", Value: "1"},
'd': {Name: "deny", Value: "1"},
}
wsMap := map[string]string{
"ajxp_home": "homepage",
"ajxp_conf": "settings",
}
for ws, rights := range roleACLs {
for c, action := range rightsMap {
if rights == "AJXP_VALUE_CLEAR" {
rights = "d"
}
if strings.ContainsRune(fmt.Sprint(rights), c) {
wsID, ok := wsMap[ws]
if !ok {
wsID = ws
}
acls = append(acls, &idm.ACL{
Action: action,
RoleID: roleID,
WorkspaceID: wsID,
})
}
}
}
return acls, nil
}
func (s *Pydio8Store) GetAPIV1Client() *ClientV1 {
resourcePath := path.Join(s.Config.Path, "/api")
cli := httptransport.New(s.Config.Url, resourcePath, []string{s.Config.Protocol})
// Making sure we also handle the text/xml case
cli.Consumers["text/xml"] = runtime.XMLConsumer()
basicAuth := httptransport.BasicAuth(s.Config.User, s.Config.Password)
cli.DefaultAuthentication = basicAuth
return &ClientV1{cli}
}
// SHARES
func (s *Pydio8Store) getSharesCache(ctx context.Context) (map[string]*shares.Share, error) {
if s.sharesCache == nil {
shares.SetConfig(s.Config)
allShares, _, e := shares.LoadShares()
if e != nil {
return nil, e
}
s.sharesCache = allShares
}
return s.sharesCache, nil
}
func (s *Pydio8Store) CrossLoadShare(ctx context.Context, syncShare *models.SyncShare, target models.ReadableStore, params map[string]interface{}) error {
share, ok := syncShare.InternalData.(*shares.Share)
if !ok {
return fmt.Errorf("invalid internal data")
}
if e := share.LoadElement(); e != nil {
return e
}
// LOAD OWNER
ownerId := share.GetOwnerId()
ownerUser, usrCtx, e := target.GetUserInfo(ctx, ownerId, nil)
if e != nil {
return fmt.Errorf("cannot load access list for user %s: %s", ownerId, e.Error())
}
// Find Root Node
mapping := params["mapping"].(map[string]string)
cache, _ := s.getSharesCache(ctx)
fullPath, ws, ownerId, e := shares.RecurseParentPaths(cache, share)
if e != nil {
return e
}
cellsWs, ok := mapping[fmt.Sprintf("%v", ws.ID)]
if !ok {
return fmt.Errorf("cannot find corresponding workspace")
}
rootNode, e := target.ReadNode(usrCtx, cellsWs, fullPath)
if e != nil {
return e
}
//syncShare.OwnerUser = ownerUser
//syncShare.RootNode = node
label := share.GetMetadata().Label
if label == "" {
label = path.Base(share.GetMetadata().OriginalPath)
}
clientV1 := &ClientV1{}
// Create Links Or Cells
if share.SHARETYPE == "minisite" {
for _, pydioLink := range share.GetElement().GetLinks() {
log.Logger(ctx).Debug("Pydio Link", zap.Any("l", pydioLink), zap.Any("share", share))
tpl := s.shareGetTemplateName(share, rootNode)
var perms []rest.ShareLinkAccessType
if !share.DOWNLOADDISABLED {
perms = append(perms, rest.ShareLinkAccessType_Download)
}
if !(rootNode.IsLeaf() && tpl == "pydio_unique_dl") {
perms = append(perms, rest.ShareLinkAccessType_Preview)
}
hiddenUser, ok := share.GetHiddenUser()
if ok && strings.Contains(hiddenUser.Right, "w") {
perms = append(perms, rest.ShareLinkAccessType_Upload)
}
link := &rest.ShareLink{
LinkHash: fmt.Sprintf("%v", pydioLink.Hash),
Label: label,
Description: share.GetElement().Description,
RootNodes: []*tree.Node{rootNode},
Permissions: perms,
ViewTemplateName: tpl,
}
if share.DOWNLOADLIMIT > 0 {
link.MaxDownloads = share.DOWNLOADLIMIT
}
if share.EXPIRETIME > 0 {
link.AccessEnd = share.EXPIRETIME
}
if share.PRESETLOGIN != "" {
r, e := clientV1.GetAdvancedUserInfo(share.PRESETLOGIN, s.Config)
if e == nil {
syncShare.LinkPassword = r.Password
syncShare.PasswordHashed = true
} else {
log.Logger(ctx).Error("Password-Protected Link: could not load advanced user info, generating random password", zap.Any("share", share), zap.Error(e))
syncShare.LinkPassword = uuid.New()[0:16]
}
}
syncShare.OwnerUser = ownerUser
syncShare.OwnerContext = usrCtx
syncShare.Link = link
}
} else if share.SHARETYPE == "repository" && len(share.GetSharedUsers()) > 0 {
cell := &rest.Cell{
Label: label,
RootNodes: []*tree.Node{rootNode},
Description: share.GetElement().Description,
ACLs: map[string]*rest.CellAcl{},
}
for _, u := range share.GetSharedUsers() {
roleId, e := s.shareRoleIdFromEntry(ctx, u, target)
if e != nil {
log.Logger(ctx).Error("Ignoring entry for shared users", zap.Error(e))
continue
}
acl := &rest.CellAcl{
RoleId: roleId,
Actions: []*idm.ACLAction{},
}
if strings.Contains(u.Right, "r") {
acl.Actions = append(acl.Actions, permissions.AclRead)
}
if strings.Contains(u.Right, "w") {
acl.Actions = append(acl.Actions, permissions.AclWrite)
}
cell.ACLs[roleId] = acl
}
syncShare.OwnerUser = ownerUser
syncShare.OwnerContext = usrCtx
syncShare.Cell = cell
}
return nil
}
func (s *Pydio8Store) ListShares(ctx context.Context, params map[string]interface{}) (res []*models.SyncShare, e error) {
allShares, e := s.getSharesCache(ctx)
var filterOwner, filterType string
if v, o := params["ownerId"]; o {
filterOwner = v.(string)
}
if v, o := params["shareType"]; o {
filterType = (v).(string)
}
for _, p8 := range allShares {
if filterOwner != "" && p8.OWNERID != filterOwner {
continue
}
if filterType != "" && ((p8.SHARETYPE == "minisite" && filterType != "LINK") || (p8.SHARETYPE != "minisite" && filterType == "LINK")) {
continue
}
p8share := &models.SyncShare{
InternalData: p8,
}
res = append(res, p8share)
}
return res, nil
}
func (s *Pydio8Store) GetUserInfo(c context.Context, userName string, params map[string]interface{}) (u *idm.User, aclCtxt context.Context, e error) {
return nil, nil, fmt.Errorf("not implemented")
}
func (s *Pydio8Store) GetGroupInfo(ctx context.Context, groupPath string, params map[string]interface{}) (u *idm.User, e error) {
return nil, fmt.Errorf("not implemented")
}
func (s *Pydio8Store) ReadNode(c context.Context, wsUuid string, wsPath string) (*tree.Node, error) {
return nil, fmt.Errorf("not implemented")
}
func (s *Pydio8Store) shareGetTemplateName(share *shares.Share, rootNode *tree.Node) string {
tpl := share.GetTemplateName()
switch tpl {
case "ajxp_unique_strip":
if rootNode.IsLeaf() && share.DOWNLOADLIMIT > 0 {
return "pydio_unique_dl"
} else {
return "pydio_unique_strip"
}
case "ajxp_unique_dl":
return "pydio_unique_dl"
case "ajxp_dropbox_template":
return "pydio_dropbox_template"
case "ajxp_embed_template":
return "pydio_shared_folder"
case "ajxp_film_strip":
return "pydio_film_strip"
default:
if rootNode.IsLeaf() {
if share.DOWNLOADLIMIT > 0 {
return "pydio_unique_dl"
} else {
return "pydio_unique_strip"
}
} else {
return "pydio_shared_folder"
}
}
}
func (s *Pydio8Store) shareRoleIdFromEntry(ctx context.Context, entry *models2.ShareEntry, target models.ReadableStore) (string, error) {
var roleId string
switch entry.Type {
case "user", "tmp_user":
info, _, e := target.GetUserInfo(ctx, entry.ID, nil)
if e != nil {
return "", e
}
roleId = info.Uuid
case "team":
roleId = entry.ID
case "group":
groupPath := strings.TrimPrefix(entry.ID, "AJXP_GRP_")
g, e := target.GetGroupInfo(ctx, groupPath, nil)
if e != nil {
return "", e
}
return g.Uuid, nil
default:
return "", fmt.Errorf("unsupported entry type : %s", entry.Type)
}
return roleId, nil
}