-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathidentity_service_grpc.pb.go
395 lines (369 loc) · 16.4 KB
/
identity_service_grpc.pb.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
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.2.0
// - protoc v3.21.12
// source: user/v1/identity_service.proto
package user
import (
context "context"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
)
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
// Requires gRPC-Go v1.32.0 or later.
const _ = grpc.SupportPackageIsVersion7
// IdentityClient is the client API for Identity service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
type IdentityClient interface {
// LinkAccount links an owner account to the user identified and authenticated
// by a one-time use token.
//
// Notably, this RPC has the following side effects:
// - A new user is automatically created if one doesn't exist.
// - Server will create a new data container for at least every unique
// owner account linked to the user.
LinkAccount(ctx context.Context, in *LinkAccountRequest, opts ...grpc.CallOption) (*LinkAccountResponse, error)
// UnlinkAccount removes links from an owner account. It will NOT remove
// existing associations between users, owner accounts and identifying
// features.
//
// The following associations will remain intact to ensure owner accounts
// can continue to be used with a consistent login experience:
// - the user continues to be associated to existing owner accounts and
// identifying features
//
// Client can continue mainting their current login session. Their current
// user and data container will remain the same.
//
// The call is guaranteed to be idempotent. It will not fail if the link is
// already removed by either a previous call to this RPC or by a more recent
// call to LinkAccount. A failure will only occur if the link between a user
// and the owner accout or identifying feature never existed.
UnlinkAccount(ctx context.Context, in *UnlinkAccountRequest, opts ...grpc.CallOption) (*UnlinkAccountResponse, error)
// GetUser gets user information given a user identifier and an owner account.
GetUser(ctx context.Context, in *GetUserRequest, opts ...grpc.CallOption) (*GetUserResponse, error)
// UpdatePreferences updates user preferences.
UpdatePreferences(ctx context.Context, in *UpdatePreferencesRequest, opts ...grpc.CallOption) (*UpdatePreferencesResponse, error)
// LoginToThirdPartyApp logs a user into a third party app for a given intent
// ID. If the original request requires payment, then SubmitIntent must be called.
LoginToThirdPartyApp(ctx context.Context, in *LoginToThirdPartyAppRequest, opts ...grpc.CallOption) (*LoginToThirdPartyAppResponse, error)
// GetLoginForThirdPartyApp gets a login for a third party app from an existing
// request. This endpoint supports all paths where login is possible (login on payment,
// raw login, etc.).
GetLoginForThirdPartyApp(ctx context.Context, in *GetLoginForThirdPartyAppRequest, opts ...grpc.CallOption) (*GetLoginForThirdPartyAppResponse, error)
// GetTwitterUser gets Twitter user information
//
// Note 1: This RPC will only return results for Twitter users that have
// accounts linked with Code.
//
// Note 2: This RPC is heavily cached, and may not reflect real-time Twitter
// information.
GetTwitterUser(ctx context.Context, in *GetTwitterUserRequest, opts ...grpc.CallOption) (*GetTwitterUserResponse, error)
}
type identityClient struct {
cc grpc.ClientConnInterface
}
func NewIdentityClient(cc grpc.ClientConnInterface) IdentityClient {
return &identityClient{cc}
}
func (c *identityClient) LinkAccount(ctx context.Context, in *LinkAccountRequest, opts ...grpc.CallOption) (*LinkAccountResponse, error) {
out := new(LinkAccountResponse)
err := c.cc.Invoke(ctx, "/code.user.v1.Identity/LinkAccount", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *identityClient) UnlinkAccount(ctx context.Context, in *UnlinkAccountRequest, opts ...grpc.CallOption) (*UnlinkAccountResponse, error) {
out := new(UnlinkAccountResponse)
err := c.cc.Invoke(ctx, "/code.user.v1.Identity/UnlinkAccount", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *identityClient) GetUser(ctx context.Context, in *GetUserRequest, opts ...grpc.CallOption) (*GetUserResponse, error) {
out := new(GetUserResponse)
err := c.cc.Invoke(ctx, "/code.user.v1.Identity/GetUser", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *identityClient) UpdatePreferences(ctx context.Context, in *UpdatePreferencesRequest, opts ...grpc.CallOption) (*UpdatePreferencesResponse, error) {
out := new(UpdatePreferencesResponse)
err := c.cc.Invoke(ctx, "/code.user.v1.Identity/UpdatePreferences", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *identityClient) LoginToThirdPartyApp(ctx context.Context, in *LoginToThirdPartyAppRequest, opts ...grpc.CallOption) (*LoginToThirdPartyAppResponse, error) {
out := new(LoginToThirdPartyAppResponse)
err := c.cc.Invoke(ctx, "/code.user.v1.Identity/LoginToThirdPartyApp", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *identityClient) GetLoginForThirdPartyApp(ctx context.Context, in *GetLoginForThirdPartyAppRequest, opts ...grpc.CallOption) (*GetLoginForThirdPartyAppResponse, error) {
out := new(GetLoginForThirdPartyAppResponse)
err := c.cc.Invoke(ctx, "/code.user.v1.Identity/GetLoginForThirdPartyApp", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *identityClient) GetTwitterUser(ctx context.Context, in *GetTwitterUserRequest, opts ...grpc.CallOption) (*GetTwitterUserResponse, error) {
out := new(GetTwitterUserResponse)
err := c.cc.Invoke(ctx, "/code.user.v1.Identity/GetTwitterUser", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// IdentityServer is the server API for Identity service.
// All implementations must embed UnimplementedIdentityServer
// for forward compatibility
type IdentityServer interface {
// LinkAccount links an owner account to the user identified and authenticated
// by a one-time use token.
//
// Notably, this RPC has the following side effects:
// - A new user is automatically created if one doesn't exist.
// - Server will create a new data container for at least every unique
// owner account linked to the user.
LinkAccount(context.Context, *LinkAccountRequest) (*LinkAccountResponse, error)
// UnlinkAccount removes links from an owner account. It will NOT remove
// existing associations between users, owner accounts and identifying
// features.
//
// The following associations will remain intact to ensure owner accounts
// can continue to be used with a consistent login experience:
// - the user continues to be associated to existing owner accounts and
// identifying features
//
// Client can continue mainting their current login session. Their current
// user and data container will remain the same.
//
// The call is guaranteed to be idempotent. It will not fail if the link is
// already removed by either a previous call to this RPC or by a more recent
// call to LinkAccount. A failure will only occur if the link between a user
// and the owner accout or identifying feature never existed.
UnlinkAccount(context.Context, *UnlinkAccountRequest) (*UnlinkAccountResponse, error)
// GetUser gets user information given a user identifier and an owner account.
GetUser(context.Context, *GetUserRequest) (*GetUserResponse, error)
// UpdatePreferences updates user preferences.
UpdatePreferences(context.Context, *UpdatePreferencesRequest) (*UpdatePreferencesResponse, error)
// LoginToThirdPartyApp logs a user into a third party app for a given intent
// ID. If the original request requires payment, then SubmitIntent must be called.
LoginToThirdPartyApp(context.Context, *LoginToThirdPartyAppRequest) (*LoginToThirdPartyAppResponse, error)
// GetLoginForThirdPartyApp gets a login for a third party app from an existing
// request. This endpoint supports all paths where login is possible (login on payment,
// raw login, etc.).
GetLoginForThirdPartyApp(context.Context, *GetLoginForThirdPartyAppRequest) (*GetLoginForThirdPartyAppResponse, error)
// GetTwitterUser gets Twitter user information
//
// Note 1: This RPC will only return results for Twitter users that have
// accounts linked with Code.
//
// Note 2: This RPC is heavily cached, and may not reflect real-time Twitter
// information.
GetTwitterUser(context.Context, *GetTwitterUserRequest) (*GetTwitterUserResponse, error)
mustEmbedUnimplementedIdentityServer()
}
// UnimplementedIdentityServer must be embedded to have forward compatible implementations.
type UnimplementedIdentityServer struct {
}
func (UnimplementedIdentityServer) LinkAccount(context.Context, *LinkAccountRequest) (*LinkAccountResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method LinkAccount not implemented")
}
func (UnimplementedIdentityServer) UnlinkAccount(context.Context, *UnlinkAccountRequest) (*UnlinkAccountResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method UnlinkAccount not implemented")
}
func (UnimplementedIdentityServer) GetUser(context.Context, *GetUserRequest) (*GetUserResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetUser not implemented")
}
func (UnimplementedIdentityServer) UpdatePreferences(context.Context, *UpdatePreferencesRequest) (*UpdatePreferencesResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdatePreferences not implemented")
}
func (UnimplementedIdentityServer) LoginToThirdPartyApp(context.Context, *LoginToThirdPartyAppRequest) (*LoginToThirdPartyAppResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method LoginToThirdPartyApp not implemented")
}
func (UnimplementedIdentityServer) GetLoginForThirdPartyApp(context.Context, *GetLoginForThirdPartyAppRequest) (*GetLoginForThirdPartyAppResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetLoginForThirdPartyApp not implemented")
}
func (UnimplementedIdentityServer) GetTwitterUser(context.Context, *GetTwitterUserRequest) (*GetTwitterUserResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetTwitterUser not implemented")
}
func (UnimplementedIdentityServer) mustEmbedUnimplementedIdentityServer() {}
// UnsafeIdentityServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to IdentityServer will
// result in compilation errors.
type UnsafeIdentityServer interface {
mustEmbedUnimplementedIdentityServer()
}
func RegisterIdentityServer(s grpc.ServiceRegistrar, srv IdentityServer) {
s.RegisterService(&Identity_ServiceDesc, srv)
}
func _Identity_LinkAccount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(LinkAccountRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IdentityServer).LinkAccount(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/code.user.v1.Identity/LinkAccount",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IdentityServer).LinkAccount(ctx, req.(*LinkAccountRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Identity_UnlinkAccount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UnlinkAccountRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IdentityServer).UnlinkAccount(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/code.user.v1.Identity/UnlinkAccount",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IdentityServer).UnlinkAccount(ctx, req.(*UnlinkAccountRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Identity_GetUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetUserRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IdentityServer).GetUser(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/code.user.v1.Identity/GetUser",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IdentityServer).GetUser(ctx, req.(*GetUserRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Identity_UpdatePreferences_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdatePreferencesRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IdentityServer).UpdatePreferences(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/code.user.v1.Identity/UpdatePreferences",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IdentityServer).UpdatePreferences(ctx, req.(*UpdatePreferencesRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Identity_LoginToThirdPartyApp_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(LoginToThirdPartyAppRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IdentityServer).LoginToThirdPartyApp(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/code.user.v1.Identity/LoginToThirdPartyApp",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IdentityServer).LoginToThirdPartyApp(ctx, req.(*LoginToThirdPartyAppRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Identity_GetLoginForThirdPartyApp_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetLoginForThirdPartyAppRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IdentityServer).GetLoginForThirdPartyApp(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/code.user.v1.Identity/GetLoginForThirdPartyApp",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IdentityServer).GetLoginForThirdPartyApp(ctx, req.(*GetLoginForThirdPartyAppRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Identity_GetTwitterUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetTwitterUserRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IdentityServer).GetTwitterUser(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/code.user.v1.Identity/GetTwitterUser",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IdentityServer).GetTwitterUser(ctx, req.(*GetTwitterUserRequest))
}
return interceptor(ctx, in, info, handler)
}
// Identity_ServiceDesc is the grpc.ServiceDesc for Identity service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var Identity_ServiceDesc = grpc.ServiceDesc{
ServiceName: "code.user.v1.Identity",
HandlerType: (*IdentityServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "LinkAccount",
Handler: _Identity_LinkAccount_Handler,
},
{
MethodName: "UnlinkAccount",
Handler: _Identity_UnlinkAccount_Handler,
},
{
MethodName: "GetUser",
Handler: _Identity_GetUser_Handler,
},
{
MethodName: "UpdatePreferences",
Handler: _Identity_UpdatePreferences_Handler,
},
{
MethodName: "LoginToThirdPartyApp",
Handler: _Identity_LoginToThirdPartyApp_Handler,
},
{
MethodName: "GetLoginForThirdPartyApp",
Handler: _Identity_GetLoginForThirdPartyApp_Handler,
},
{
MethodName: "GetTwitterUser",
Handler: _Identity_GetTwitterUser_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "user/v1/identity_service.proto",
}