HAProxy Data Plane API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

152 lines
4.7 KiB

// Copyright 2019 HAProxy Technologies
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package handlers
import (
"github.com/go-openapi/runtime/middleware"
client_native "github.com/haproxytech/client-native/v6"
"github.com/haproxytech/dataplaneapi/misc"
"github.com/haproxytech/dataplaneapi/operations/spoe"
)
// SpoeCreateSpoeScopeHandlerImpl implementation of the SpoeCreateSpoeScopeHandler interface
type SpoeCreateSpoeScopeHandlerImpl struct {
Client client_native.HAProxyClient
}
func (h *SpoeCreateSpoeScopeHandlerImpl) Handle(params spoe.CreateSpoeScopeParams, principal interface{}) middleware.Responder {
spoeStorage, err := h.Client.Spoe()
if err != nil {
e := misc.HandleError(err)
return spoe.NewCreateSpoeScopeDefault(int(*e.Code)).WithPayload(e)
}
ss, err := spoeStorage.GetSingleSpoe(params.Spoe)
if err != nil {
e := misc.HandleError(err)
return spoe.NewCreateSpoeScopeDefault(int(*e.Code)).WithPayload(e)
}
t := ""
if params.TransactionID != nil {
t = *params.TransactionID
}
v := int64(0)
if params.Version != nil {
v = *params.Version
}
err = ss.CreateScope(&params.Data, t, v)
if err != nil {
e := misc.HandleError(err)
return spoe.NewCreateSpoeScopeDefault(int(*e.Code)).WithPayload(e)
}
return spoe.NewCreateSpoeScopeCreated().WithPayload(spoe.NewCreateSpoeScopeCreated().Payload)
}
// SpoeDeleteSpoeScopeHandlerImpl implementation of the SpoeDeleteSpoeScopeHandler interface
type SpoeDeleteSpoeScopeHandlerImpl struct {
Client client_native.HAProxyClient
}
func (h *SpoeDeleteSpoeScopeHandlerImpl) Handle(params spoe.DeleteSpoeScopeParams, principal interface{}) middleware.Responder {
spoeStorage, err := h.Client.Spoe()
if err != nil {
e := misc.HandleError(err)
return spoe.NewDeleteSpoeScopeDefault(int(*e.Code)).WithPayload(e)
}
ss, err := spoeStorage.GetSingleSpoe(params.Spoe)
if err != nil {
e := misc.HandleError(err)
return spoe.NewDeleteSpoeScopeDefault(int(*e.Code)).WithPayload(e)
}
t := ""
if params.TransactionID != nil {
t = *params.TransactionID
}
v := int64(0)
if params.Version != nil {
v = *params.Version
}
err = ss.DeleteScope(params.Name, t, v)
if err != nil {
e := misc.HandleError(err)
return spoe.NewDeleteSpoeScopeDefault(int(*e.Code)).WithPayload(e)
}
return spoe.NewDeleteSpoeScopeNoContent()
}
// SpoeGetSpoeScopesHandlerImpl implementation of the SpoeGetSpoeScopesHandler interface
type SpoeGetSpoeScopesHandlerImpl struct {
Client client_native.HAProxyClient
}
// SpoeGetAllSpoeFilesHandlerImpl implementation of the SpoeGetAllSpoeFilesHandler
func (h *SpoeGetSpoeScopesHandlerImpl) Handle(params spoe.GetSpoeScopesParams, principal interface{}) middleware.Responder {
spoeStorage, err := h.Client.Spoe()
if err != nil {
e := misc.HandleError(err)
return spoe.NewGetAllSpoeFilesDefault(int(*e.Code)).WithPayload(e)
}
ss, err := spoeStorage.GetSingleSpoe(params.Spoe)
if err != nil {
e := misc.HandleError(err)
return spoe.NewGetAllSpoeFilesDefault(int(*e.Code)).WithPayload(e)
}
t := ""
if params.TransactionID != nil {
t = *params.TransactionID
}
_, scopes, err := ss.GetScopes(t)
if err != nil {
e := misc.HandleError(err)
return spoe.NewGetAllSpoeFilesDefault(int(*e.Code)).WithPayload(e)
}
return spoe.NewGetSpoeScopesOK().WithPayload(scopes)
}
// SpoeGetSpoeScopeHandlerImpl implementation of the SpoeGetSpoeScopeHandler interface
type SpoeGetSpoeScopeHandlerImpl struct {
Client client_native.HAProxyClient
}
func (h *SpoeGetSpoeScopeHandlerImpl) Handle(params spoe.GetSpoeScopeParams, principal interface{}) middleware.Responder {
spoeStorage, err := h.Client.Spoe()
if err != nil {
e := misc.HandleError(err)
return spoe.NewGetSpoeScopeDefault(int(*e.Code)).WithPayload(e)
}
ss, err := spoeStorage.GetSingleSpoe(params.Spoe)
if err != nil {
e := misc.HandleError(err)
return spoe.NewGetSpoeScopeDefault(int(*e.Code)).WithPayload(e)
}
t := ""
if params.TransactionID != nil {
t = *params.TransactionID
}
_, scope, err := ss.GetScope(params.Name, t)
if err != nil {
e := misc.HandleError(err)
return spoe.NewGetSpoeScopeDefault(int(*e.Code)).WithPayload(e)
}
if scope == nil {
return spoe.NewGetSpoeScopeNotFound()
}
return spoe.NewGetSpoeScopeOK().WithPayload(*scope)
}