github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/protocol/gregor1/auth_update.go (about)

     1  // Auto-generated to Go types and interfaces using avdl-compiler v1.4.10 (https://github.com/keybase/node-avdl-compiler)
     2  //   Input file: avdl/gregor1/auth_update.avdl
     3  
     4  package gregor1
     5  
     6  import (
     7  	"github.com/keybase/go-framed-msgpack-rpc/rpc"
     8  	context "golang.org/x/net/context"
     9  	"time"
    10  )
    11  
    12  type RevokeSessionIDsArg struct {
    13  	SessionIDs []SessionID `codec:"sessionIDs" json:"sessionIDs"`
    14  }
    15  
    16  type AuthUpdateInterface interface {
    17  	RevokeSessionIDs(context.Context, []SessionID) error
    18  }
    19  
    20  func AuthUpdateProtocol(i AuthUpdateInterface) rpc.Protocol {
    21  	return rpc.Protocol{
    22  		Name: "gregor.1.authUpdate",
    23  		Methods: map[string]rpc.ServeHandlerDescription{
    24  			"revokeSessionIDs": {
    25  				MakeArg: func() interface{} {
    26  					var ret [1]RevokeSessionIDsArg
    27  					return &ret
    28  				},
    29  				Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) {
    30  					typedArgs, ok := args.(*[1]RevokeSessionIDsArg)
    31  					if !ok {
    32  						err = rpc.NewTypeError((*[1]RevokeSessionIDsArg)(nil), args)
    33  						return
    34  					}
    35  					err = i.RevokeSessionIDs(ctx, typedArgs[0].SessionIDs)
    36  					return
    37  				},
    38  			},
    39  		},
    40  	}
    41  }
    42  
    43  type AuthUpdateClient struct {
    44  	Cli rpc.GenericClient
    45  }
    46  
    47  func (c AuthUpdateClient) RevokeSessionIDs(ctx context.Context, sessionIDs []SessionID) (err error) {
    48  	__arg := RevokeSessionIDsArg{SessionIDs: sessionIDs}
    49  	err = c.Cli.Call(ctx, "gregor.1.authUpdate.revokeSessionIDs", []interface{}{__arg}, nil, 0*time.Millisecond)
    50  	return
    51  }