199 lines
5.7 KiB
Go
199 lines
5.7 KiB
Go
// Copyright 2025 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"
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
gErrors "github.com/cloudbase/garm-provider-common/errors"
|
|
"github.com/cloudbase/garm/params"
|
|
)
|
|
|
|
// swagger:route POST /gitea/endpoints endpoints CreateGiteaEndpoint
|
|
//
|
|
// Create a Gitea Endpoint.
|
|
//
|
|
// Parameters:
|
|
// + name: Body
|
|
// description: Parameters used when creating a Gitea endpoint.
|
|
// type: CreateGiteaEndpointParams
|
|
// in: body
|
|
// required: true
|
|
//
|
|
// Responses:
|
|
// 200: ForgeEndpoint
|
|
// default: APIErrorResponse
|
|
func (a *APIController) CreateGiteaEndpoint(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
var params params.CreateGiteaEndpointParams
|
|
if err := json.NewDecoder(r.Body).Decode(¶ms); err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to decode request")
|
|
handleError(ctx, w, gErrors.ErrBadRequest)
|
|
return
|
|
}
|
|
|
|
endpoint, err := a.r.CreateGiteaEndpoint(ctx, params)
|
|
if err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to create Gitea endpoint")
|
|
handleError(ctx, w, err)
|
|
return
|
|
}
|
|
w.Header().Set("Content-Type", "application/json")
|
|
if err := json.NewEncoder(w).Encode(endpoint); err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to encode response")
|
|
}
|
|
}
|
|
|
|
// swagger:route GET /gitea/endpoints endpoints ListGiteaEndpoints
|
|
//
|
|
// List all Gitea Endpoints.
|
|
//
|
|
// Responses:
|
|
// 200: ForgeEndpoints
|
|
// default: APIErrorResponse
|
|
func (a *APIController) ListGiteaEndpoints(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
endpoints, err := a.r.ListGiteaEndpoints(ctx)
|
|
if err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to list Gitea endpoints")
|
|
handleError(ctx, w, err)
|
|
return
|
|
}
|
|
w.Header().Set("Content-Type", "application/json")
|
|
if err := json.NewEncoder(w).Encode(endpoints); err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to encode response")
|
|
}
|
|
}
|
|
|
|
// swagger:route GET /gitea/endpoints/{name} endpoints GetGiteaEndpoint
|
|
//
|
|
// Get a Gitea Endpoint.
|
|
//
|
|
// Parameters:
|
|
// + name: name
|
|
// description: The name of the Gitea endpoint.
|
|
// type: string
|
|
// in: path
|
|
// required: true
|
|
//
|
|
// Responses:
|
|
// 200: ForgeEndpoint
|
|
// default: APIErrorResponse
|
|
func (a *APIController) GetGiteaEndpoint(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
vars := mux.Vars(r)
|
|
name, ok := vars["name"]
|
|
if !ok {
|
|
slog.ErrorContext(ctx, "missing name in request")
|
|
handleError(ctx, w, gErrors.ErrBadRequest)
|
|
return
|
|
}
|
|
endpoint, err := a.r.GetGiteaEndpoint(ctx, name)
|
|
if err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to get Gitea endpoint")
|
|
handleError(ctx, w, err)
|
|
return
|
|
}
|
|
w.Header().Set("Content-Type", "application/json")
|
|
if err := json.NewEncoder(w).Encode(endpoint); err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to encode response")
|
|
}
|
|
}
|
|
|
|
// swagger:route DELETE /gitea/endpoints/{name} endpoints DeleteGiteaEndpoint
|
|
//
|
|
// Delete a Gitea Endpoint.
|
|
//
|
|
// Parameters:
|
|
// + name: name
|
|
// description: The name of the Gitea endpoint.
|
|
// type: string
|
|
// in: path
|
|
// required: true
|
|
//
|
|
// Responses:
|
|
// default: APIErrorResponse
|
|
func (a *APIController) DeleteGiteaEndpoint(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
vars := mux.Vars(r)
|
|
name, ok := vars["name"]
|
|
if !ok {
|
|
slog.ErrorContext(ctx, "missing name in request")
|
|
handleError(ctx, w, gErrors.ErrBadRequest)
|
|
return
|
|
}
|
|
if err := a.r.DeleteGiteaEndpoint(ctx, name); err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to delete Gitea endpoint")
|
|
handleError(ctx, w, err)
|
|
return
|
|
}
|
|
w.WriteHeader(http.StatusNoContent)
|
|
}
|
|
|
|
// swagger:route PUT /gitea/endpoints/{name} endpoints UpdateGiteaEndpoint
|
|
//
|
|
// Update a Gitea Endpoint.
|
|
//
|
|
// Parameters:
|
|
// + name: name
|
|
// description: The name of the Gitea endpoint.
|
|
// type: string
|
|
// in: path
|
|
// required: true
|
|
// + name: Body
|
|
// description: Parameters used when updating a Gitea endpoint.
|
|
// type: UpdateGiteaEndpointParams
|
|
// in: body
|
|
// required: true
|
|
//
|
|
// Responses:
|
|
// 200: ForgeEndpoint
|
|
// default: APIErrorResponse
|
|
func (a *APIController) UpdateGiteaEndpoint(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
vars := mux.Vars(r)
|
|
name, ok := vars["name"]
|
|
if !ok {
|
|
slog.ErrorContext(ctx, "missing name in request")
|
|
handleError(ctx, w, gErrors.ErrBadRequest)
|
|
return
|
|
}
|
|
|
|
var params params.UpdateGiteaEndpointParams
|
|
if err := json.NewDecoder(r.Body).Decode(¶ms); err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to decode request")
|
|
handleError(ctx, w, gErrors.ErrBadRequest)
|
|
return
|
|
}
|
|
|
|
endpoint, err := a.r.UpdateGiteaEndpoint(ctx, name, params)
|
|
if err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to update GitHub endpoint")
|
|
handleError(ctx, w, err)
|
|
return
|
|
}
|
|
w.Header().Set("Content-Type", "application/json")
|
|
if err := json.NewEncoder(w).Encode(endpoint); err != nil {
|
|
slog.With(slog.Any("error", err)).ErrorContext(ctx, "failed to encode response")
|
|
}
|
|
}
|