forked from keybase/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pgp_ui.go
200 lines (180 loc) · 5.93 KB
/
pgp_ui.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
// Auto-generated by avdl-compiler v1.3.19 (https://github.com/keybase/node-avdl-compiler)
// Input file: avdl/keybase1/pgp_ui.avdl
package keybase1
import (
"github.com/keybase/go-framed-msgpack-rpc/rpc"
context "golang.org/x/net/context"
)
type OutputSignatureSuccessArg struct {
SessionID int `codec:"sessionID" json:"sessionID"`
Fingerprint string `codec:"fingerprint" json:"fingerprint"`
Username string `codec:"username" json:"username"`
SignedAt Time `codec:"signedAt" json:"signedAt"`
}
func (o OutputSignatureSuccessArg) DeepCopy() OutputSignatureSuccessArg {
return OutputSignatureSuccessArg{
SessionID: o.SessionID,
Fingerprint: o.Fingerprint,
Username: o.Username,
SignedAt: o.SignedAt.DeepCopy(),
}
}
type OutputSignatureSuccessNonKeybaseArg struct {
SessionID int `codec:"sessionID" json:"sessionID"`
KeyID string `codec:"keyID" json:"keyID"`
SignedAt Time `codec:"signedAt" json:"signedAt"`
}
func (o OutputSignatureSuccessNonKeybaseArg) DeepCopy() OutputSignatureSuccessNonKeybaseArg {
return OutputSignatureSuccessNonKeybaseArg{
SessionID: o.SessionID,
KeyID: o.KeyID,
SignedAt: o.SignedAt.DeepCopy(),
}
}
type KeyGeneratedArg struct {
SessionID int `codec:"sessionID" json:"sessionID"`
Kid KID `codec:"kid" json:"kid"`
Key KeyInfo `codec:"key" json:"key"`
}
func (o KeyGeneratedArg) DeepCopy() KeyGeneratedArg {
return KeyGeneratedArg{
SessionID: o.SessionID,
Kid: o.Kid.DeepCopy(),
Key: o.Key.DeepCopy(),
}
}
type ShouldPushPrivateArg struct {
SessionID int `codec:"sessionID" json:"sessionID"`
}
func (o ShouldPushPrivateArg) DeepCopy() ShouldPushPrivateArg {
return ShouldPushPrivateArg{
SessionID: o.SessionID,
}
}
type FinishedArg struct {
SessionID int `codec:"sessionID" json:"sessionID"`
}
func (o FinishedArg) DeepCopy() FinishedArg {
return FinishedArg{
SessionID: o.SessionID,
}
}
type PGPUiInterface interface {
OutputSignatureSuccess(context.Context, OutputSignatureSuccessArg) error
OutputSignatureSuccessNonKeybase(context.Context, OutputSignatureSuccessNonKeybaseArg) error
KeyGenerated(context.Context, KeyGeneratedArg) error
ShouldPushPrivate(context.Context, int) (bool, error)
Finished(context.Context, int) error
}
func PGPUiProtocol(i PGPUiInterface) rpc.Protocol {
return rpc.Protocol{
Name: "keybase.1.pgpUi",
Methods: map[string]rpc.ServeHandlerDescription{
"outputSignatureSuccess": {
MakeArg: func() interface{} {
ret := make([]OutputSignatureSuccessArg, 1)
return &ret
},
Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) {
typedArgs, ok := args.(*[]OutputSignatureSuccessArg)
if !ok {
err = rpc.NewTypeError((*[]OutputSignatureSuccessArg)(nil), args)
return
}
err = i.OutputSignatureSuccess(ctx, (*typedArgs)[0])
return
},
MethodType: rpc.MethodCall,
},
"outputSignatureSuccessNonKeybase": {
MakeArg: func() interface{} {
ret := make([]OutputSignatureSuccessNonKeybaseArg, 1)
return &ret
},
Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) {
typedArgs, ok := args.(*[]OutputSignatureSuccessNonKeybaseArg)
if !ok {
err = rpc.NewTypeError((*[]OutputSignatureSuccessNonKeybaseArg)(nil), args)
return
}
err = i.OutputSignatureSuccessNonKeybase(ctx, (*typedArgs)[0])
return
},
MethodType: rpc.MethodCall,
},
"keyGenerated": {
MakeArg: func() interface{} {
ret := make([]KeyGeneratedArg, 1)
return &ret
},
Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) {
typedArgs, ok := args.(*[]KeyGeneratedArg)
if !ok {
err = rpc.NewTypeError((*[]KeyGeneratedArg)(nil), args)
return
}
err = i.KeyGenerated(ctx, (*typedArgs)[0])
return
},
MethodType: rpc.MethodCall,
},
"shouldPushPrivate": {
MakeArg: func() interface{} {
ret := make([]ShouldPushPrivateArg, 1)
return &ret
},
Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) {
typedArgs, ok := args.(*[]ShouldPushPrivateArg)
if !ok {
err = rpc.NewTypeError((*[]ShouldPushPrivateArg)(nil), args)
return
}
ret, err = i.ShouldPushPrivate(ctx, (*typedArgs)[0].SessionID)
return
},
MethodType: rpc.MethodCall,
},
"finished": {
MakeArg: func() interface{} {
ret := make([]FinishedArg, 1)
return &ret
},
Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) {
typedArgs, ok := args.(*[]FinishedArg)
if !ok {
err = rpc.NewTypeError((*[]FinishedArg)(nil), args)
return
}
err = i.Finished(ctx, (*typedArgs)[0].SessionID)
return
},
MethodType: rpc.MethodCall,
},
},
}
}
type PGPUiClient struct {
Cli rpc.GenericClient
}
func (c PGPUiClient) OutputSignatureSuccess(ctx context.Context, __arg OutputSignatureSuccessArg) (err error) {
err = c.Cli.Call(ctx, "keybase.1.pgpUi.outputSignatureSuccess", []interface{}{__arg}, nil)
return
}
func (c PGPUiClient) OutputSignatureSuccessNonKeybase(ctx context.Context, __arg OutputSignatureSuccessNonKeybaseArg) (err error) {
err = c.Cli.Call(ctx, "keybase.1.pgpUi.outputSignatureSuccessNonKeybase", []interface{}{__arg}, nil)
return
}
func (c PGPUiClient) KeyGenerated(ctx context.Context, __arg KeyGeneratedArg) (err error) {
err = c.Cli.Call(ctx, "keybase.1.pgpUi.keyGenerated", []interface{}{__arg}, nil)
return
}
func (c PGPUiClient) ShouldPushPrivate(ctx context.Context, sessionID int) (res bool, err error) {
__arg := ShouldPushPrivateArg{SessionID: sessionID}
err = c.Cli.Call(ctx, "keybase.1.pgpUi.shouldPushPrivate", []interface{}{__arg}, &res)
return
}
func (c PGPUiClient) Finished(ctx context.Context, sessionID int) (err error) {
__arg := FinishedArg{SessionID: sessionID}
err = c.Cli.Call(ctx, "keybase.1.pgpUi.finished", []interface{}{__arg}, nil)
return
}