-
Notifications
You must be signed in to change notification settings - Fork 113
/
shares.go
150 lines (132 loc) · 4.29 KB
/
shares.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
// Copyright 2018-2021 CERN
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// In applying this license, CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
package migrate
import (
"bufio"
"context"
"encoding/json"
"log"
"os"
"path"
gateway "github.com/cs3org/go-cs3apis/cs3/gateway/v1beta1"
user "github.com/cs3org/go-cs3apis/cs3/identity/user/v1beta1"
rpc "github.com/cs3org/go-cs3apis/cs3/rpc/v1beta1"
collaboration "github.com/cs3org/go-cs3apis/cs3/sharing/collaboration/v1beta1"
provider "github.com/cs3org/go-cs3apis/cs3/storage/provider/v1beta1"
)
// share representation in the import metadata
type share struct {
Path string `json:"path"`
ShareType string `json:"shareType"`
Type string `json:"type"`
Owner string `json:"owner"`
SharedBy string `json:"sharedBy"`
SharedWith string `json:"sharedWith"`
Permissions int `json:"permissions"`
ExpirationDate string `json:"expirationDate"`
Password string `json:"password"`
Name string `json:"name"`
Token string `json:"token"`
}
// ImportShares from a shares.jsonl file in exportPath. The files must already be present on the storage
func ImportShares(ctx context.Context, client gateway.GatewayAPIClient, exportPath string, ns string) error {
sharesJSONL, err := os.Open(path.Join(exportPath, "shares.jsonl"))
if err != nil {
return err
}
jsonLines := bufio.NewScanner(sharesJSONL)
sharesJSONL.Close()
for jsonLines.Scan() {
var shareData share
if err := json.Unmarshal(jsonLines.Bytes(), &shareData); err != nil {
log.Fatal(err)
return err
}
// Stat file, skip share creation if it does not exist on the target system
resourcePath := path.Join(ns, path.Base(exportPath), shareData.Path)
statReq := &provider.StatRequest{Ref: &provider.Reference{Path: resourcePath}}
statResp, err := client.Stat(ctx, statReq)
if err != nil {
log.Fatal(err)
}
if statResp.Status.Code == rpc.Code_CODE_NOT_FOUND {
log.Print("File does not exist on target system, skipping share import: " + resourcePath)
continue
}
_, err = client.CreateShare(ctx, shareReq(statResp.Info, &shareData))
if err != nil {
return err
}
}
return nil
}
func shareReq(info *provider.ResourceInfo, share *share) *collaboration.CreateShareRequest {
return &collaboration.CreateShareRequest{
ResourceInfo: info,
Grant: &collaboration.ShareGrant{
Grantee: &provider.Grantee{
Type: provider.GranteeType_GRANTEE_TYPE_USER,
Id: &provider.Grantee_UserId{UserId: &user.UserId{
OpaqueId: share.SharedWith,
}},
},
Permissions: &collaboration.SharePermissions{
Permissions: convertPermissions(share.Permissions),
},
},
}
}
// Maps oc10 permissions to roles
var ocPermToRole = map[int]string{
1: "viewer",
15: "co-owner",
31: "editor",
}
// Create resource permission-set from ownCloud permissions int
func convertPermissions(ocPermissions int) *provider.ResourcePermissions {
perms := &provider.ResourcePermissions{}
switch ocPermToRole[ocPermissions] {
case "viewer":
perms.Stat = true
perms.ListContainer = true
perms.InitiateFileDownload = true
perms.ListGrants = true
case "editor":
perms.Stat = true
perms.ListContainer = true
perms.InitiateFileDownload = true
perms.CreateContainer = true
perms.InitiateFileUpload = true
perms.Delete = true
perms.Move = true
perms.ListGrants = true
case "co-owner":
perms.Stat = true
perms.ListContainer = true
perms.InitiateFileDownload = true
perms.CreateContainer = true
perms.InitiateFileUpload = true
perms.Delete = true
perms.Move = true
perms.ListGrants = true
perms.AddGrant = true
perms.RemoveGrant = true
perms.UpdateGrant = true
}
return perms
}