Replace all instances of errors.Wrap() with fmt.Errorf. Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
95 lines
2.9 KiB
Go
95 lines
2.9 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 runner
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
runnerErrors "github.com/cloudbase/garm-provider-common/errors"
|
|
"github.com/cloudbase/garm/auth"
|
|
"github.com/cloudbase/garm/params"
|
|
)
|
|
|
|
func (r *Runner) CreateGiteaEndpoint(ctx context.Context, param params.CreateGiteaEndpointParams) (params.ForgeEndpoint, error) {
|
|
if !auth.IsAdmin(ctx) {
|
|
return params.ForgeEndpoint{}, runnerErrors.ErrUnauthorized
|
|
}
|
|
|
|
if err := param.Validate(); err != nil {
|
|
return params.ForgeEndpoint{}, fmt.Errorf("failed to validate gitea endpoint params: %w", err)
|
|
}
|
|
|
|
ep, err := r.store.CreateGiteaEndpoint(ctx, param)
|
|
if err != nil {
|
|
return params.ForgeEndpoint{}, fmt.Errorf("failed to create gitea endpoint: %w", err)
|
|
}
|
|
|
|
return ep, nil
|
|
}
|
|
|
|
func (r *Runner) GetGiteaEndpoint(ctx context.Context, name string) (params.ForgeEndpoint, error) {
|
|
if !auth.IsAdmin(ctx) {
|
|
return params.ForgeEndpoint{}, runnerErrors.ErrUnauthorized
|
|
}
|
|
endpoint, err := r.store.GetGiteaEndpoint(ctx, name)
|
|
if err != nil {
|
|
return params.ForgeEndpoint{}, fmt.Errorf("failed to get gitea endpoint: %w", err)
|
|
}
|
|
|
|
return endpoint, nil
|
|
}
|
|
|
|
func (r *Runner) DeleteGiteaEndpoint(ctx context.Context, name string) error {
|
|
if !auth.IsAdmin(ctx) {
|
|
return runnerErrors.ErrUnauthorized
|
|
}
|
|
|
|
err := r.store.DeleteGiteaEndpoint(ctx, name)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to delete gitea endpoint: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (r *Runner) UpdateGiteaEndpoint(ctx context.Context, name string, param params.UpdateGiteaEndpointParams) (params.ForgeEndpoint, error) {
|
|
if !auth.IsAdmin(ctx) {
|
|
return params.ForgeEndpoint{}, runnerErrors.ErrUnauthorized
|
|
}
|
|
|
|
if err := param.Validate(); err != nil {
|
|
return params.ForgeEndpoint{}, fmt.Errorf("failed to validate gitea endpoint params: %w", err)
|
|
}
|
|
|
|
newEp, err := r.store.UpdateGiteaEndpoint(ctx, name, param)
|
|
if err != nil {
|
|
return params.ForgeEndpoint{}, fmt.Errorf("failed to update gitea endpoint: %w", err)
|
|
}
|
|
return newEp, nil
|
|
}
|
|
|
|
func (r *Runner) ListGiteaEndpoints(ctx context.Context) ([]params.ForgeEndpoint, error) {
|
|
if !auth.IsAdmin(ctx) {
|
|
return nil, runnerErrors.ErrUnauthorized
|
|
}
|
|
|
|
endpoints, err := r.store.ListGiteaEndpoints(ctx)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to list gitea endpoints: %w", err)
|
|
}
|
|
|
|
return endpoints, nil
|
|
}
|