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.
 
 

240 lines
8.6 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 (
"strings"
"sync"
"github.com/go-openapi/runtime/middleware"
client_native "github.com/haproxytech/client-native/v6"
"github.com/haproxytech/client-native/v6/models"
cn "github.com/haproxytech/dataplaneapi/client-native"
"github.com/haproxytech/dataplaneapi/haproxy"
"github.com/haproxytech/dataplaneapi/misc"
"github.com/haproxytech/dataplaneapi/operations/transactions"
"github.com/haproxytech/dataplaneapi/rate"
)
// RateLimitedStartTransactionHandlerImpl decorates StartTransactionHandlerImpl with the rate limiting logic
type RateLimitedStartTransactionHandlerImpl struct {
TransactionCounter rate.Threshold
Handler transactions.StartTransactionHandler
}
// StartTransactionHandlerImpl implementation of the StartTransactionHandler interface using client-native client
type StartTransactionHandlerImpl struct {
Client client_native.HAProxyClient
}
// DeleteTransactionHandlerImpl implementation of the DeleteTransactionHandler interface using client-native client
type DeleteTransactionHandlerImpl struct {
Client client_native.HAProxyClient
}
// GetTransactionHandlerImpl implementation of the GetTransactionHandler interface using client-native client
type GetTransactionHandlerImpl struct {
Client client_native.HAProxyClient
}
// GetTransactionsHandlerImpl implementation of the GetTransactionsHandler interface using client-native client
type GetTransactionsHandlerImpl struct {
Client client_native.HAProxyClient
}
// CommitTransactionHandlerImpl implementation of the CommitTransactionHandlerImpl interface using client-native client
type CommitTransactionHandlerImpl struct {
Client client_native.HAProxyClient
ReloadAgent haproxy.IReloadAgent
Mutex *sync.Mutex
}
// Handle executing the request and returning a response
func (h *StartTransactionHandlerImpl) Handle(params transactions.StartTransactionParams, principal interface{}) middleware.Responder {
configuration, err := h.Client.Configuration()
if err != nil {
e := misc.HandleError(err)
return transactions.NewStartTransactionDefault(int(*e.Code)).WithPayload(e)
}
t, err := configuration.StartTransaction(params.Version)
if err != nil {
e := misc.HandleError(err)
return transactions.NewStartTransactionDefault(int(*e.Code)).WithPayload(e)
}
return transactions.NewStartTransactionCreated().WithPayload(t)
}
// Handle executing the request and returning a response
func (h *DeleteTransactionHandlerImpl) Handle(params transactions.DeleteTransactionParams, principal interface{}) middleware.Responder {
configuration, err := h.Client.Configuration()
if err != nil {
e := misc.HandleError(err)
return transactions.NewDeleteTransactionDefault(int(*e.Code)).WithPayload(e)
}
err = configuration.DeleteTransaction(params.ID)
if err != nil {
e := misc.HandleError(err)
if strings.HasSuffix(*e.Message, "does not exist") {
e.Code = misc.Int64P(404)
return transactions.NewDeleteTransactionNotFound().WithPayload(e)
}
return transactions.NewDeleteTransactionDefault(int(*e.Code)).WithPayload(e)
}
return transactions.NewDeleteTransactionNoContent()
}
// Handle executing the request and returning a response
func (h *GetTransactionHandlerImpl) Handle(params transactions.GetTransactionParams, principal interface{}) middleware.Responder {
configuration, err := h.Client.Configuration()
if err != nil {
e := misc.HandleError(err)
return transactions.NewGetTransactionDefault(int(*e.Code)).WithPayload(e)
}
t, err := configuration.GetTransaction(params.ID)
if err != nil {
e := misc.HandleError(err)
if strings.HasSuffix(*e.Message, "does not exist") {
e.Code = misc.Int64P(404)
return transactions.NewDeleteTransactionNotFound().WithPayload(e)
}
return transactions.NewGetTransactionsDefault(int(*e.Code)).WithPayload(e)
}
return transactions.NewGetTransactionOK().WithPayload(t)
}
// Handle executing the request and returning a response
func (h *GetTransactionsHandlerImpl) Handle(params transactions.GetTransactionsParams, principal interface{}) middleware.Responder {
s := ""
if params.Status != nil {
s = *params.Status
}
configuration, err := h.Client.Configuration()
if err != nil {
e := misc.HandleError(err)
return transactions.NewGetTransactionsDefault(int(*e.Code)).WithPayload(e)
}
ts, err := configuration.GetTransactions(s)
if err != nil {
e := misc.HandleError(err)
return transactions.NewGetTransactionsDefault(int(*e.Code)).WithPayload(e)
}
return transactions.NewGetTransactionsOK().WithPayload(*ts)
}
// Handle executing the request and returning a response
func (h *CommitTransactionHandlerImpl) Handle(params transactions.CommitTransactionParams, principal interface{}) middleware.Responder {
h.Mutex.Lock()
defer h.Mutex.Unlock()
var err error
var transaction *models.Transaction
configuration, err := h.Client.Configuration()
if err != nil {
e := misc.HandleError(err)
return transactions.NewCommitTransactionDefault(int(*e.Code)).WithPayload(e)
}
if transaction, err = configuration.GetTransaction(params.ID); err != nil {
e := misc.HandleError(err)
if strings.HasSuffix(*e.Message, "does not exist") {
e.Code = misc.Int64P(404)
return transactions.NewDeleteTransactionNotFound().WithPayload(e)
}
return transactions.NewCommitTransactionDefault(int(*e.Code)).WithPayload(e)
}
switch transaction.Status {
case models.TransactionStatusOutdated:
return transactions.NewCommitTransactionNotAcceptable().WithPayload(misc.OutdatedTransactionError(transaction.ID))
case models.TransactionStatusFailed:
return transactions.NewCommitTransactionNotAcceptable().WithPayload(misc.FailedTransactionError(transaction.ID))
}
// save old runtime configuration to know if the runtime client must be configured after the new configuration is
// reloaded by HAProxy. Logic is done by cn.ReconfigureRuntime() function.
_, globalConf, err := configuration.GetGlobalConfiguration("")
if err != nil {
e := misc.HandleError(err)
return transactions.NewCommitTransactionDefault(int(*e.Code)).WithPayload(e)
}
runtimeAPIsOld := globalConf.RuntimeAPIs
var t *models.Transaction
t, err = configuration.CommitTransaction(params.ID)
if err != nil {
e := misc.HandleError(err)
if strings.HasSuffix(*e.Message, "does not exist") {
e.Code = misc.Int64P(404)
return transactions.NewDeleteTransactionNotFound().WithPayload(e)
}
return transactions.NewCommitTransactionDefault(int(*e.Code)).WithPayload(e)
}
// Deleting outdated transactions with mismatching version ID
var txs *models.Transactions
txs, err = configuration.GetTransactions(models.TransactionStatusInProgress)
if err != nil {
e := misc.HandleError(err)
return transactions.NewCommitTransactionDefault(int(*e.Code)).WithPayload(e)
}
for _, tx := range *txs {
if tx.Version <= t.Version {
_ = configuration.MarkTransactionOutdated(tx.ID)
}
}
callbackNeeded, reconfigureFunc, err := cn.ReconfigureRuntime(h.Client, runtimeAPIsOld)
if err != nil {
e := misc.HandleError(err)
return transactions.NewCommitTransactionDefault(int(*e.Code)).WithPayload(e)
}
if *params.ForceReload {
if callbackNeeded {
err = h.ReloadAgent.ForceReloadWithCallback(reconfigureFunc)
} else {
err = h.ReloadAgent.ForceReload()
}
if err != nil {
e := misc.HandleError(err)
return transactions.NewCommitTransactionDefault(int(*e.Code)).WithPayload(e)
}
return transactions.NewCommitTransactionOK().WithPayload(t)
}
var rID string
if callbackNeeded {
rID = h.ReloadAgent.ReloadWithCallback(reconfigureFunc)
} else {
rID = h.ReloadAgent.Reload()
}
return transactions.NewCommitTransactionAccepted().WithReloadID(rID).WithPayload(t)
}
// Handle executes the decorated Handler and, in case of successful creation, increase the counter if this is
func (r RateLimitedStartTransactionHandlerImpl) Handle(params transactions.StartTransactionParams, principal interface{}) middleware.Responder {
if err := r.TransactionCounter.LimitReached(); err != nil {
e := misc.HandleError(err)
return transactions.NewStartTransactionDefault(int(*e.Code)).WithPayload(e)
}
return r.Handler.Handle(params, principal)
}