This change switches GARM to the new structured logging standard library. This will allow us to set log levels and reduce some of the log spam. Given that we introduced new knobs to tweak logging, the number of config options for logging now warrants it's own section. Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
191 lines
5 KiB
Go
191 lines
5 KiB
Go
// Copyright 2022 Cloudbase Solutions SRL
|
|
//
|
|
// 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 controllers
|
|
|
|
import (
|
|
"encoding/json"
|
|
"log/slog"
|
|
"net/http"
|
|
|
|
gErrors "github.com/cloudbase/garm-provider-common/errors"
|
|
"github.com/cloudbase/garm/apiserver/params"
|
|
runnerParams "github.com/cloudbase/garm/params"
|
|
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
// swagger:route GET /pools pools ListPools
|
|
//
|
|
// List all pools.
|
|
//
|
|
// Responses:
|
|
// 200: Pools
|
|
// default: APIErrorResponse
|
|
func (a *APIController) ListAllPoolsHandler(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
pools, err := a.r.ListAllPools(ctx)
|
|
|
|
if err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "listing pools")
|
|
handleError(ctx, w, err)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
if err := json.NewEncoder(w).Encode(pools); err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to encode response")
|
|
}
|
|
}
|
|
|
|
// swagger:route GET /pools/{poolID} pools GetPool
|
|
//
|
|
// Get pool by ID.
|
|
//
|
|
// Parameters:
|
|
// + name: poolID
|
|
// description: ID of the pool to fetch.
|
|
// type: string
|
|
// in: path
|
|
// required: true
|
|
//
|
|
// Responses:
|
|
// 200: Pool
|
|
// default: APIErrorResponse
|
|
func (a *APIController) GetPoolByIDHandler(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
vars := mux.Vars(r)
|
|
poolID, ok := vars["poolID"]
|
|
if !ok {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
if err := json.NewEncoder(w).Encode(params.APIErrorResponse{
|
|
Error: "Bad Request",
|
|
Details: "No pool ID specified",
|
|
}); err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to encode response")
|
|
}
|
|
return
|
|
}
|
|
|
|
pool, err := a.r.GetPoolByID(ctx, poolID)
|
|
if err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "fetching pool")
|
|
handleError(ctx, w, err)
|
|
return
|
|
}
|
|
|
|
pool.RunnerBootstrapTimeout = pool.RunnerTimeout()
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
if err := json.NewEncoder(w).Encode(pool); err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to encode response")
|
|
}
|
|
}
|
|
|
|
// swagger:route DELETE /pools/{poolID} pools DeletePool
|
|
//
|
|
// Delete pool by ID.
|
|
//
|
|
// Parameters:
|
|
// + name: poolID
|
|
// description: ID of the pool to delete.
|
|
// type: string
|
|
// in: path
|
|
// required: true
|
|
//
|
|
// Responses:
|
|
// default: APIErrorResponse
|
|
func (a *APIController) DeletePoolByIDHandler(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
vars := mux.Vars(r)
|
|
poolID, ok := vars["poolID"]
|
|
if !ok {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
if err := json.NewEncoder(w).Encode(params.APIErrorResponse{
|
|
Error: "Bad Request",
|
|
Details: "No pool ID specified",
|
|
}); err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to encode response")
|
|
}
|
|
return
|
|
}
|
|
|
|
if err := a.r.DeletePoolByID(ctx, poolID); err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "removing pool")
|
|
handleError(ctx, w, err)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
w.WriteHeader(http.StatusOK)
|
|
}
|
|
|
|
// swagger:route PUT /pools/{poolID} pools UpdatePool
|
|
//
|
|
// Update pool by ID.
|
|
//
|
|
// Parameters:
|
|
// + name: poolID
|
|
// description: ID of the pool to update.
|
|
// type: string
|
|
// in: path
|
|
// required: true
|
|
//
|
|
// + name: Body
|
|
// description: Parameters to update the pool with.
|
|
// type: UpdatePoolParams
|
|
// in: body
|
|
// required: true
|
|
//
|
|
// Responses:
|
|
// 200: Pool
|
|
// default: APIErrorResponse
|
|
func (a *APIController) UpdatePoolByIDHandler(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
vars := mux.Vars(r)
|
|
poolID, ok := vars["poolID"]
|
|
if !ok {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
if err := json.NewEncoder(w).Encode(params.APIErrorResponse{
|
|
Error: "Bad Request",
|
|
Details: "No pool ID specified",
|
|
}); err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to encode response")
|
|
}
|
|
return
|
|
}
|
|
|
|
var poolData runnerParams.UpdatePoolParams
|
|
if err := json.NewDecoder(r.Body).Decode(&poolData); err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to decode")
|
|
handleError(ctx, w, gErrors.ErrBadRequest)
|
|
return
|
|
}
|
|
|
|
pool, err := a.r.UpdatePoolByID(ctx, poolID, poolData)
|
|
if err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "fetching pool")
|
|
handleError(ctx, w, err)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
if err := json.NewEncoder(w).Encode(pool); err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to encode response")
|
|
}
|
|
}
|