Documentation ¶
Overview ¶
Package session is a generated protocol buffer package.
Session Service ¶
Session Service API performs CRUD actions against session resources ¶
It is generated from these files:
server/session/session.proto
It has these top-level messages:
SessionCreateRequest SessionDeleteRequest SessionResponse
Package session is a reverse proxy.
It translates gRPC into RESTful JSON APIs.
Index ¶
- func RegisterSessionServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error
- func RegisterSessionServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client SessionServiceClient) error
- func RegisterSessionServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, ...) (err error)
- func RegisterSessionServiceServer(s *grpc.Server, srv SessionServiceServer)
- type Server
- type SessionCreateRequest
- type SessionDeleteRequest
- type SessionResponse
- type SessionServiceClient
- type SessionServiceServer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func RegisterSessionServiceHandler ¶
func RegisterSessionServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error
RegisterSessionServiceHandler registers the http handlers for service SessionService to "mux". The handlers forward requests to the grpc endpoint over "conn".
func RegisterSessionServiceHandlerClient ¶
func RegisterSessionServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client SessionServiceClient) error
RegisterSessionServiceHandler registers the http handlers for service SessionService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "SessionServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "SessionServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "SessionServiceClient" to call the correct interceptors.
func RegisterSessionServiceHandlerFromEndpoint ¶
func RegisterSessionServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)
RegisterSessionServiceHandlerFromEndpoint is same as RegisterSessionServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.
func RegisterSessionServiceServer ¶
func RegisterSessionServiceServer(s *grpc.Server, srv SessionServiceServer)
Types ¶
type Server ¶
type Server struct {
// contains filtered or unexported fields
}
Server provides a Session service
func NewServer ¶
func NewServer(namespace string, kubeclientset kubernetes.Interface, appclientset appclientset.Interface, serversettings config.ArgoCDSettings) *Server
NewServer returns a new instance of the Session service
func (*Server) AuthFuncOverride ¶
func (s *Server) AuthFuncOverride(ctx context.Context, fullMethodName string) (context.Context, error)
AuthFuncOverride overrides the authentication function and let us not require auth to receive auth. Without this function here, ArgoCDServer.authenticate would be invoked and credentials checked. Since this service is generally invoked when the user has _no_ credentials, that would create a chicken-and-egg situation if we didn't place this here to allow traffic to pass through.
func (*Server) Create ¶
func (s *Server) Create(ctx context.Context, q *SessionCreateRequest) (*SessionResponse, error)
Create an authentication cookie for the client.
func (*Server) Delete ¶
func (s *Server) Delete(ctx context.Context, q *SessionDeleteRequest) (*SessionResponse, error)
Delete an authentication cookie from the client. This makes sense only for the Web client.
type SessionCreateRequest ¶
type SessionCreateRequest struct { Username string `protobuf:"bytes,1,opt,name=username" json:"username,omitempty"` Password string `protobuf:"bytes,2,opt,name=password" json:"password,omitempty"` }
SessionCreateRequest is for logging in.
func (*SessionCreateRequest) Descriptor ¶
func (*SessionCreateRequest) Descriptor() ([]byte, []int)
func (*SessionCreateRequest) GetPassword ¶
func (m *SessionCreateRequest) GetPassword() string
func (*SessionCreateRequest) GetUsername ¶
func (m *SessionCreateRequest) GetUsername() string
func (*SessionCreateRequest) ProtoMessage ¶
func (*SessionCreateRequest) ProtoMessage()
func (*SessionCreateRequest) Reset ¶
func (m *SessionCreateRequest) Reset()
func (*SessionCreateRequest) String ¶
func (m *SessionCreateRequest) String() string
type SessionDeleteRequest ¶
type SessionDeleteRequest struct { }
SessionDeleteRequest is for logging out.
func (*SessionDeleteRequest) Descriptor ¶
func (*SessionDeleteRequest) Descriptor() ([]byte, []int)
func (*SessionDeleteRequest) ProtoMessage ¶
func (*SessionDeleteRequest) ProtoMessage()
func (*SessionDeleteRequest) Reset ¶
func (m *SessionDeleteRequest) Reset()
func (*SessionDeleteRequest) String ¶
func (m *SessionDeleteRequest) String() string
type SessionResponse ¶
type SessionResponse struct {
Token string `protobuf:"bytes,1,opt,name=token" json:"token,omitempty"`
}
SessionResponse wraps the created token or returns an empty string if deleted.
func (*SessionResponse) Descriptor ¶
func (*SessionResponse) Descriptor() ([]byte, []int)
func (*SessionResponse) GetToken ¶
func (m *SessionResponse) GetToken() string
func (*SessionResponse) ProtoMessage ¶
func (*SessionResponse) ProtoMessage()
func (*SessionResponse) Reset ¶
func (m *SessionResponse) Reset()
func (*SessionResponse) String ¶
func (m *SessionResponse) String() string
type SessionServiceClient ¶
type SessionServiceClient interface { // Create a new JWT for authentication. Create(ctx context.Context, in *SessionCreateRequest, opts ...grpc.CallOption) (*SessionResponse, error) // Create a new JWT for authentication. Delete(ctx context.Context, in *SessionDeleteRequest, opts ...grpc.CallOption) (*SessionResponse, error) }
func NewSessionServiceClient ¶
func NewSessionServiceClient(cc *grpc.ClientConn) SessionServiceClient
type SessionServiceServer ¶
type SessionServiceServer interface { // Create a new JWT for authentication. Create(context.Context, *SessionCreateRequest) (*SessionResponse, error) // Create a new JWT for authentication. Delete(context.Context, *SessionDeleteRequest) (*SessionResponse, error) }