This change adds enterprise support throughout garm. Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
282 lines
7.3 KiB
Go
282 lines
7.3 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"
|
|
"net/http"
|
|
|
|
"garm/apiserver/params"
|
|
gErrors "garm/errors"
|
|
runnerParams "garm/params"
|
|
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
func (a *APIController) CreateEnterpriseHandler(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
var enterpriseData runnerParams.CreateEnterpriseParams
|
|
if err := json.NewDecoder(r.Body).Decode(&enterpriseData); err != nil {
|
|
handleError(w, gErrors.ErrBadRequest)
|
|
return
|
|
}
|
|
|
|
enterprise, err := a.r.CreateEnterprise(ctx, enterpriseData)
|
|
if err != nil {
|
|
log.Printf("error creating enterprise: %+v", err)
|
|
handleError(w, err)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
json.NewEncoder(w).Encode(enterprise)
|
|
}
|
|
|
|
func (a *APIController) ListEnterprisesHandler(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
enterprise, err := a.r.ListEnterprises(ctx)
|
|
if err != nil {
|
|
log.Printf("listing enterprise: %s", err)
|
|
handleError(w, err)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
json.NewEncoder(w).Encode(enterprise)
|
|
}
|
|
|
|
func (a *APIController) GetEnterpriseByIDHandler(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
vars := mux.Vars(r)
|
|
enterpriseID, ok := vars["enterpriseID"]
|
|
if !ok {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
json.NewEncoder(w).Encode(params.APIErrorResponse{
|
|
Error: "Bad Request",
|
|
Details: "No enterprise ID specified",
|
|
})
|
|
return
|
|
}
|
|
|
|
enterprise, err := a.r.GetEnterpriseByID(ctx, enterpriseID)
|
|
if err != nil {
|
|
log.Printf("fetching enterprise: %s", err)
|
|
handleError(w, err)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
json.NewEncoder(w).Encode(enterprise)
|
|
}
|
|
|
|
func (a *APIController) DeleteEnterpriseHandler(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
vars := mux.Vars(r)
|
|
enterpriseID, ok := vars["enterpriseID"]
|
|
if !ok {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
json.NewEncoder(w).Encode(params.APIErrorResponse{
|
|
Error: "Bad Request",
|
|
Details: "No enterprise ID specified",
|
|
})
|
|
return
|
|
}
|
|
|
|
if err := a.r.DeleteEnterprise(ctx, enterpriseID); err != nil {
|
|
log.Printf("removing enterprise: %+v", err)
|
|
handleError(w, err)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
}
|
|
|
|
func (a *APIController) UpdateEnterpriseHandler(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
vars := mux.Vars(r)
|
|
enterpriseID, ok := vars["enterpriseID"]
|
|
if !ok {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
json.NewEncoder(w).Encode(params.APIErrorResponse{
|
|
Error: "Bad Request",
|
|
Details: "No enterprise ID specified",
|
|
})
|
|
return
|
|
}
|
|
|
|
var updatePayload runnerParams.UpdateRepositoryParams
|
|
if err := json.NewDecoder(r.Body).Decode(&updatePayload); err != nil {
|
|
handleError(w, gErrors.ErrBadRequest)
|
|
return
|
|
}
|
|
|
|
enterprise, err := a.r.UpdateEnterprise(ctx, enterpriseID, updatePayload)
|
|
if err != nil {
|
|
log.Printf("error updating enterprise: %s", err)
|
|
handleError(w, err)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
json.NewEncoder(w).Encode(enterprise)
|
|
}
|
|
|
|
func (a *APIController) CreateEnterprisePoolHandler(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
vars := mux.Vars(r)
|
|
enterpriseID, ok := vars["enterpriseID"]
|
|
if !ok {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
json.NewEncoder(w).Encode(params.APIErrorResponse{
|
|
Error: "Bad Request",
|
|
Details: "No enterprise ID specified",
|
|
})
|
|
return
|
|
}
|
|
|
|
var poolData runnerParams.CreatePoolParams
|
|
if err := json.NewDecoder(r.Body).Decode(&poolData); err != nil {
|
|
log.Printf("failed to decode: %s", err)
|
|
handleError(w, gErrors.ErrBadRequest)
|
|
return
|
|
}
|
|
|
|
pool, err := a.r.CreateEnterprisePool(ctx, enterpriseID, poolData)
|
|
if err != nil {
|
|
log.Printf("error creating enterprise pool: %s", err)
|
|
handleError(w, err)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
json.NewEncoder(w).Encode(pool)
|
|
}
|
|
|
|
func (a *APIController) ListEnterprisePoolsHandler(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
vars := mux.Vars(r)
|
|
enterpriseID, ok := vars["enterpriseID"]
|
|
if !ok {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
json.NewEncoder(w).Encode(params.APIErrorResponse{
|
|
Error: "Bad Request",
|
|
Details: "No enterprise ID specified",
|
|
})
|
|
return
|
|
}
|
|
|
|
pools, err := a.r.ListEnterprisePools(ctx, enterpriseID)
|
|
if err != nil {
|
|
log.Printf("listing pools: %s", err)
|
|
handleError(w, err)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
json.NewEncoder(w).Encode(pools)
|
|
}
|
|
|
|
func (a *APIController) GetEnterprisePoolHandler(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
vars := mux.Vars(r)
|
|
enterpriseID, enterpriseOk := vars["enterpriseID"]
|
|
poolID, poolOk := vars["poolID"]
|
|
if !enterpriseOk || !poolOk {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
json.NewEncoder(w).Encode(params.APIErrorResponse{
|
|
Error: "Bad Request",
|
|
Details: "No enterprise or pool ID specified",
|
|
})
|
|
return
|
|
}
|
|
|
|
pool, err := a.r.GetEnterprisePoolByID(ctx, enterpriseID, poolID)
|
|
if err != nil {
|
|
log.Printf("listing pools: %s", err)
|
|
handleError(w, err)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
json.NewEncoder(w).Encode(pool)
|
|
}
|
|
|
|
func (a *APIController) DeleteEnterprisePoolHandler(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
vars := mux.Vars(r)
|
|
enterpriseID, enterpriseOk := vars["enterpriseID"]
|
|
poolID, poolOk := vars["poolID"]
|
|
if !enterpriseOk || !poolOk {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
json.NewEncoder(w).Encode(params.APIErrorResponse{
|
|
Error: "Bad Request",
|
|
Details: "No enterprise or pool ID specified",
|
|
})
|
|
return
|
|
}
|
|
|
|
if err := a.r.DeleteEnterprisePool(ctx, enterpriseID, poolID); err != nil {
|
|
log.Printf("removing pool: %s", err)
|
|
handleError(w, err)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
}
|
|
|
|
func (a *APIController) UpdateEnterprisePoolHandler(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
vars := mux.Vars(r)
|
|
enterpriseID, enterpriseOk := vars["enterpriseID"]
|
|
poolID, poolOk := vars["poolID"]
|
|
if !enterpriseOk || !poolOk {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
json.NewEncoder(w).Encode(params.APIErrorResponse{
|
|
Error: "Bad Request",
|
|
Details: "No enterprise or pool ID specified",
|
|
})
|
|
return
|
|
}
|
|
|
|
var poolData runnerParams.UpdatePoolParams
|
|
if err := json.NewDecoder(r.Body).Decode(&poolData); err != nil {
|
|
log.Printf("failed to decode: %s", err)
|
|
handleError(w, gErrors.ErrBadRequest)
|
|
return
|
|
}
|
|
|
|
pool, err := a.r.UpdateEnterprisePool(ctx, enterpriseID, poolID, poolData)
|
|
if err != nil {
|
|
log.Printf("error creating enterprise pool: %s", err)
|
|
handleError(w, err)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
json.NewEncoder(w).Encode(pool)
|
|
}
|