2023-08-10 09:06:00 +00:00
|
|
|
// Copyright 2023 Woodpecker Authors
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2017-03-05 07:56:08 +00:00
|
|
|
package backend
|
|
|
|
|
2018-04-01 18:34:01 +00:00
|
|
|
import (
|
2022-09-05 04:01:14 +00:00
|
|
|
"context"
|
2021-11-26 02:34:48 +00:00
|
|
|
"fmt"
|
|
|
|
|
2023-12-08 07:15:08 +00:00
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/pipeline/backend/docker"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/pipeline/backend/kubernetes"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/pipeline/backend/local"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/pipeline/backend/types"
|
2021-11-26 02:34:48 +00:00
|
|
|
)
|
|
|
|
|
2023-03-13 07:07:41 +00:00
|
|
|
var (
|
2023-12-14 18:20:47 +00:00
|
|
|
backendsByName map[string]types.Backend
|
|
|
|
backends []types.Backend
|
2023-03-13 07:07:41 +00:00
|
|
|
)
|
2017-03-05 07:56:08 +00:00
|
|
|
|
2024-01-11 21:15:15 +00:00
|
|
|
func Init() {
|
2023-12-14 18:20:47 +00:00
|
|
|
backends = []types.Backend{
|
2022-03-08 15:21:43 +00:00
|
|
|
docker.New(),
|
2022-03-10 21:07:02 +00:00
|
|
|
local.New(),
|
2024-01-11 21:15:15 +00:00
|
|
|
kubernetes.New(),
|
2022-03-08 15:21:43 +00:00
|
|
|
}
|
2021-11-26 02:34:48 +00:00
|
|
|
|
2023-12-14 18:20:47 +00:00
|
|
|
backendsByName = make(map[string]types.Backend)
|
|
|
|
for _, engine := range backends {
|
|
|
|
backendsByName[engine.Name()] = engine
|
2022-03-08 15:21:43 +00:00
|
|
|
}
|
2021-11-26 02:34:48 +00:00
|
|
|
}
|
2021-10-02 08:25:26 +00:00
|
|
|
|
2023-12-14 18:20:47 +00:00
|
|
|
func FindBackend(ctx context.Context, backendName string) (types.Backend, error) {
|
|
|
|
if backendName == "auto-detect" {
|
|
|
|
for _, engine := range backends {
|
2023-03-19 19:24:43 +00:00
|
|
|
if engine.IsAvailable(ctx) {
|
2021-11-26 02:34:48 +00:00
|
|
|
return engine, nil
|
|
|
|
}
|
|
|
|
}
|
2021-10-02 08:25:26 +00:00
|
|
|
|
2023-03-19 19:24:43 +00:00
|
|
|
return nil, fmt.Errorf("can't detect an available backend engine")
|
2021-11-26 02:34:48 +00:00
|
|
|
}
|
2021-10-02 08:25:26 +00:00
|
|
|
|
2023-12-14 18:20:47 +00:00
|
|
|
engine, ok := backendsByName[backendName]
|
2021-11-26 02:34:48 +00:00
|
|
|
if !ok {
|
2023-12-14 18:20:47 +00:00
|
|
|
return nil, fmt.Errorf("backend engine '%s' not found", backendName)
|
2021-11-26 02:34:48 +00:00
|
|
|
}
|
2021-10-02 08:25:26 +00:00
|
|
|
|
2021-11-26 02:34:48 +00:00
|
|
|
return engine, nil
|
2017-03-05 07:56:08 +00:00
|
|
|
}
|