mirror of
https://github.com/itzg/mc-router.git
synced 2024-11-04 08:49:47 +01:00
191 lines
4.9 KiB
Go
191 lines
4.9 KiB
Go
package server
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/http"
|
|
"strings"
|
|
"sync"
|
|
|
|
"github.com/gorilla/mux"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func init() {
|
|
apiRoutes.Path("/routes").Methods("GET").
|
|
Headers("Accept", "application/json").
|
|
HandlerFunc(routesListHandler)
|
|
apiRoutes.Path("/routes").Methods("POST").
|
|
Headers("Content-Type", "application/json").
|
|
HandlerFunc(routesCreateHandler)
|
|
apiRoutes.Path("/defaultRoute").Methods("POST").
|
|
Headers("Content-Type", "application/json").
|
|
HandlerFunc(routesSetDefault)
|
|
apiRoutes.Path("/routes/{serverAddress}").Methods("DELETE").HandlerFunc(routesDeleteHandler)
|
|
}
|
|
|
|
func routesListHandler(writer http.ResponseWriter, request *http.Request) {
|
|
mappings := Routes.GetMappings()
|
|
bytes, err := json.Marshal(mappings)
|
|
if err != nil {
|
|
logrus.WithError(err).Error("Failed to marshal mappings")
|
|
writer.WriteHeader(http.StatusInternalServerError)
|
|
return
|
|
}
|
|
writer.Write(bytes)
|
|
}
|
|
|
|
func routesDeleteHandler(writer http.ResponseWriter, request *http.Request) {
|
|
serverAddress := mux.Vars(request)["serverAddress"]
|
|
if serverAddress != "" {
|
|
if Routes.DeleteMapping(serverAddress) {
|
|
writer.WriteHeader(http.StatusOK)
|
|
} else {
|
|
writer.WriteHeader(http.StatusNotFound)
|
|
}
|
|
}
|
|
}
|
|
|
|
func routesCreateHandler(writer http.ResponseWriter, request *http.Request) {
|
|
var definition = struct {
|
|
ServerAddress string
|
|
Backend string
|
|
}{}
|
|
|
|
defer request.Body.Close()
|
|
|
|
decoder := json.NewDecoder(request.Body)
|
|
err := decoder.Decode(&definition)
|
|
if err != nil {
|
|
logrus.WithError(err).Error("Unable to get request body")
|
|
writer.WriteHeader(http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
Routes.CreateMapping(definition.ServerAddress, definition.Backend, func(ctx context.Context) error { return nil })
|
|
writer.WriteHeader(http.StatusCreated)
|
|
}
|
|
|
|
func routesSetDefault(writer http.ResponseWriter, request *http.Request) {
|
|
var body = struct {
|
|
Backend string
|
|
}{}
|
|
|
|
defer request.Body.Close()
|
|
|
|
decoder := json.NewDecoder(request.Body)
|
|
err := decoder.Decode(&body)
|
|
if err != nil {
|
|
logrus.WithError(err).Error("Unable to parse request")
|
|
writer.WriteHeader(http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
Routes.SetDefaultRoute(body.Backend)
|
|
writer.WriteHeader(http.StatusOK)
|
|
}
|
|
|
|
type IRoutes interface {
|
|
RegisterAll(mappings map[string]string)
|
|
// FindBackendForServerAddress returns the host:port for the external server address, if registered.
|
|
// Otherwise, an empty string is returned. Also returns the normalized version of the given serverAddress.
|
|
// The 3rd value returned is an (optional) "waker" function which a caller must invoke to wake up serverAddress.
|
|
FindBackendForServerAddress(ctx context.Context, serverAddress string) (string, string, func(ctx context.Context) error)
|
|
GetMappings() map[string]string
|
|
DeleteMapping(serverAddress string) bool
|
|
CreateMapping(serverAddress string, backend string, waker func(ctx context.Context) error)
|
|
SetDefaultRoute(backend string)
|
|
}
|
|
|
|
var Routes IRoutes = &routesImpl{}
|
|
|
|
func NewRoutes() IRoutes {
|
|
r := &routesImpl{
|
|
mappings: make(map[string]mapping),
|
|
}
|
|
|
|
return r
|
|
}
|
|
|
|
func (r *routesImpl) RegisterAll(mappings map[string]string) {
|
|
r.Lock()
|
|
defer r.Unlock()
|
|
|
|
r.mappings = make(map[string]mapping)
|
|
for k, v := range mappings {
|
|
r.mappings[k] = mapping{backend: v, waker: func(ctx context.Context) error { return nil }}
|
|
}
|
|
}
|
|
|
|
type mapping struct {
|
|
backend string
|
|
waker func(ctx context.Context) error
|
|
}
|
|
|
|
type routesImpl struct {
|
|
sync.RWMutex
|
|
mappings map[string]mapping
|
|
defaultRoute string
|
|
}
|
|
|
|
func (r *routesImpl) SetDefaultRoute(backend string) {
|
|
r.defaultRoute = backend
|
|
|
|
logrus.WithFields(logrus.Fields{
|
|
"backend": backend,
|
|
}).Info("Using default route")
|
|
}
|
|
|
|
func (r *routesImpl) FindBackendForServerAddress(ctx context.Context, serverAddress string) (string, string, func(ctx context.Context) error) {
|
|
r.RLock()
|
|
defer r.RUnlock()
|
|
|
|
addressParts := strings.Split(serverAddress, "\x00")
|
|
|
|
address := strings.ToLower(addressParts[0])
|
|
|
|
if r.mappings != nil {
|
|
if mapping, exists := r.mappings[address]; exists {
|
|
return mapping.backend, address, mapping.waker
|
|
}
|
|
}
|
|
return r.defaultRoute, address, nil
|
|
}
|
|
|
|
func (r *routesImpl) GetMappings() map[string]string {
|
|
r.RLock()
|
|
defer r.RUnlock()
|
|
|
|
result := make(map[string]string, len(r.mappings))
|
|
for k, v := range r.mappings {
|
|
result[k] = v.backend
|
|
}
|
|
return result
|
|
}
|
|
|
|
func (r *routesImpl) DeleteMapping(serverAddress string) bool {
|
|
r.Lock()
|
|
defer r.Unlock()
|
|
logrus.WithField("serverAddress", serverAddress).Info("Deleting route")
|
|
|
|
if _, ok := r.mappings[serverAddress]; ok {
|
|
delete(r.mappings, serverAddress)
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
|
|
func (r *routesImpl) CreateMapping(serverAddress string, backend string, waker func(ctx context.Context) error) {
|
|
r.Lock()
|
|
defer r.Unlock()
|
|
|
|
serverAddress = strings.ToLower(serverAddress)
|
|
|
|
logrus.WithFields(logrus.Fields{
|
|
"serverAddress": serverAddress,
|
|
"backend": backend,
|
|
}).Info("Creating route")
|
|
r.mappings[serverAddress] = mapping{backend: backend, waker: waker}
|
|
}
|