forked from keybase/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kbfs.go
290 lines (267 loc) · 8.91 KB
/
kbfs.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
// Auto-generated by avdl-compiler v1.3.25 (https://github.com/keybase/node-avdl-compiler)
// Input file: avdl/keybase1/kbfs.avdl
package keybase1
import (
"github.com/keybase/go-framed-msgpack-rpc/rpc"
context "golang.org/x/net/context"
)
type KBFSTeamSettings struct {
TlfID TLFID `codec:"tlfID" json:"tlfID"`
}
func (o KBFSTeamSettings) DeepCopy() KBFSTeamSettings {
return KBFSTeamSettings{
TlfID: o.TlfID.DeepCopy(),
}
}
type FSEventArg struct {
Event FSNotification `codec:"event" json:"event"`
}
type FSPathUpdateArg struct {
Path string `codec:"path" json:"path"`
}
type FSEditListArg struct {
Edits FSFolderEditHistory `codec:"edits" json:"edits"`
RequestID int `codec:"requestID" json:"requestID"`
}
type FSSyncStatusArg struct {
Status FSSyncStatus `codec:"status" json:"status"`
RequestID int `codec:"requestID" json:"requestID"`
}
type FSSyncEventArg struct {
Event FSPathSyncStatus `codec:"event" json:"event"`
}
type CreateTLFArg struct {
TeamID TeamID `codec:"teamID" json:"teamID"`
TlfID TLFID `codec:"tlfID" json:"tlfID"`
}
type GetKBFSTeamSettingsArg struct {
TeamID TeamID `codec:"teamID" json:"teamID"`
}
type UpgradeTLFArg struct {
TlfName string `codec:"tlfName" json:"tlfName"`
Public bool `codec:"public" json:"public"`
}
type KbfsInterface interface {
// Idea is that kbfs would call the function below whenever these actions are
// performed on a file.
//
// Note that this list/interface is very temporary and highly likely to change
// significantly.
//
// It is just a starting point to get kbfs notifications through the daemon to
// the clients.
FSEvent(context.Context, FSNotification) error
// kbfs calls this whenever the currently subscribed-to folder (via the
// SimpleFSList[Recursive call) has been updated.
FSPathUpdate(context.Context, string) error
// kbfs calls this as a response to receiving an FSEditListRequest with a
// given requestID.
FSEditList(context.Context, FSEditListArg) error
// FSSyncStatus is called by KBFS as a response to receiving an
// FSSyncStatusRequest with a given requestID.
FSSyncStatus(context.Context, FSSyncStatusArg) error
// FSSyncEvent is called by KBFS when the sync status of an individual path
// changes.
FSSyncEvent(context.Context, FSPathSyncStatus) error
// createTLF is called by KBFS to associate the tlfID with the given teamID,
// using the v2 Team-based system.
CreateTLF(context.Context, CreateTLFArg) error
// getKBFSTeamSettings gets the settings written for the team in the team's sigchain.
GetKBFSTeamSettings(context.Context, TeamID) (KBFSTeamSettings, error)
// upgradeTLF upgrades a TLF to use implicit team keys
UpgradeTLF(context.Context, UpgradeTLFArg) error
}
func KbfsProtocol(i KbfsInterface) rpc.Protocol {
return rpc.Protocol{
Name: "keybase.1.kbfs",
Methods: map[string]rpc.ServeHandlerDescription{
"FSEvent": {
MakeArg: func() interface{} {
var ret [1]FSEventArg
return &ret
},
Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) {
typedArgs, ok := args.(*[1]FSEventArg)
if !ok {
err = rpc.NewTypeError((*[1]FSEventArg)(nil), args)
return
}
err = i.FSEvent(ctx, typedArgs[0].Event)
return
},
MethodType: rpc.MethodCall,
},
"FSPathUpdate": {
MakeArg: func() interface{} {
var ret [1]FSPathUpdateArg
return &ret
},
Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) {
typedArgs, ok := args.(*[1]FSPathUpdateArg)
if !ok {
err = rpc.NewTypeError((*[1]FSPathUpdateArg)(nil), args)
return
}
err = i.FSPathUpdate(ctx, typedArgs[0].Path)
return
},
MethodType: rpc.MethodNotify,
},
"FSEditList": {
MakeArg: func() interface{} {
var ret [1]FSEditListArg
return &ret
},
Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) {
typedArgs, ok := args.(*[1]FSEditListArg)
if !ok {
err = rpc.NewTypeError((*[1]FSEditListArg)(nil), args)
return
}
err = i.FSEditList(ctx, typedArgs[0])
return
},
MethodType: rpc.MethodCall,
},
"FSSyncStatus": {
MakeArg: func() interface{} {
var ret [1]FSSyncStatusArg
return &ret
},
Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) {
typedArgs, ok := args.(*[1]FSSyncStatusArg)
if !ok {
err = rpc.NewTypeError((*[1]FSSyncStatusArg)(nil), args)
return
}
err = i.FSSyncStatus(ctx, typedArgs[0])
return
},
MethodType: rpc.MethodCall,
},
"FSSyncEvent": {
MakeArg: func() interface{} {
var ret [1]FSSyncEventArg
return &ret
},
Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) {
typedArgs, ok := args.(*[1]FSSyncEventArg)
if !ok {
err = rpc.NewTypeError((*[1]FSSyncEventArg)(nil), args)
return
}
err = i.FSSyncEvent(ctx, typedArgs[0].Event)
return
},
MethodType: rpc.MethodCall,
},
"createTLF": {
MakeArg: func() interface{} {
var ret [1]CreateTLFArg
return &ret
},
Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) {
typedArgs, ok := args.(*[1]CreateTLFArg)
if !ok {
err = rpc.NewTypeError((*[1]CreateTLFArg)(nil), args)
return
}
err = i.CreateTLF(ctx, typedArgs[0])
return
},
MethodType: rpc.MethodCall,
},
"getKBFSTeamSettings": {
MakeArg: func() interface{} {
var ret [1]GetKBFSTeamSettingsArg
return &ret
},
Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) {
typedArgs, ok := args.(*[1]GetKBFSTeamSettingsArg)
if !ok {
err = rpc.NewTypeError((*[1]GetKBFSTeamSettingsArg)(nil), args)
return
}
ret, err = i.GetKBFSTeamSettings(ctx, typedArgs[0].TeamID)
return
},
MethodType: rpc.MethodCall,
},
"upgradeTLF": {
MakeArg: func() interface{} {
var ret [1]UpgradeTLFArg
return &ret
},
Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) {
typedArgs, ok := args.(*[1]UpgradeTLFArg)
if !ok {
err = rpc.NewTypeError((*[1]UpgradeTLFArg)(nil), args)
return
}
err = i.UpgradeTLF(ctx, typedArgs[0])
return
},
MethodType: rpc.MethodCall,
},
},
}
}
type KbfsClient struct {
Cli rpc.GenericClient
}
// Idea is that kbfs would call the function below whenever these actions are
// performed on a file.
//
// Note that this list/interface is very temporary and highly likely to change
// significantly.
//
// It is just a starting point to get kbfs notifications through the daemon to
// the clients.
func (c KbfsClient) FSEvent(ctx context.Context, event FSNotification) (err error) {
__arg := FSEventArg{Event: event}
err = c.Cli.Call(ctx, "keybase.1.kbfs.FSEvent", []interface{}{__arg}, nil)
return
}
// kbfs calls this whenever the currently subscribed-to folder (via the
// SimpleFSList[Recursive call) has been updated.
func (c KbfsClient) FSPathUpdate(ctx context.Context, path string) (err error) {
__arg := FSPathUpdateArg{Path: path}
err = c.Cli.Notify(ctx, "keybase.1.kbfs.FSPathUpdate", []interface{}{__arg})
return
}
// kbfs calls this as a response to receiving an FSEditListRequest with a
// given requestID.
func (c KbfsClient) FSEditList(ctx context.Context, __arg FSEditListArg) (err error) {
err = c.Cli.Call(ctx, "keybase.1.kbfs.FSEditList", []interface{}{__arg}, nil)
return
}
// FSSyncStatus is called by KBFS as a response to receiving an
// FSSyncStatusRequest with a given requestID.
func (c KbfsClient) FSSyncStatus(ctx context.Context, __arg FSSyncStatusArg) (err error) {
err = c.Cli.Call(ctx, "keybase.1.kbfs.FSSyncStatus", []interface{}{__arg}, nil)
return
}
// FSSyncEvent is called by KBFS when the sync status of an individual path
// changes.
func (c KbfsClient) FSSyncEvent(ctx context.Context, event FSPathSyncStatus) (err error) {
__arg := FSSyncEventArg{Event: event}
err = c.Cli.Call(ctx, "keybase.1.kbfs.FSSyncEvent", []interface{}{__arg}, nil)
return
}
// createTLF is called by KBFS to associate the tlfID with the given teamID,
// using the v2 Team-based system.
func (c KbfsClient) CreateTLF(ctx context.Context, __arg CreateTLFArg) (err error) {
err = c.Cli.Call(ctx, "keybase.1.kbfs.createTLF", []interface{}{__arg}, nil)
return
}
// getKBFSTeamSettings gets the settings written for the team in the team's sigchain.
func (c KbfsClient) GetKBFSTeamSettings(ctx context.Context, teamID TeamID) (res KBFSTeamSettings, err error) {
__arg := GetKBFSTeamSettingsArg{TeamID: teamID}
err = c.Cli.Call(ctx, "keybase.1.kbfs.getKBFSTeamSettings", []interface{}{__arg}, &res)
return
}
// upgradeTLF upgrades a TLF to use implicit team keys
func (c KbfsClient) UpgradeTLF(ctx context.Context, __arg UpgradeTLFArg) (err error) {
err = c.Cli.Call(ctx, "keybase.1.kbfs.upgradeTLF", []interface{}{__arg}, nil)
return
}