mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2026-04-15 01:41:56 +00:00
Introduced backend API endpoints, database operations, and web UI components for creating, updating, listing, and deleting manual pipeline parameters. This update includes tests for datastore functions, integration with the Vue.js web interface, and mock implementation for parameter-related methods.
172 lines
4.9 KiB
Go
172 lines
4.9 KiB
Go
// Copyright 2024 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.
|
|
|
|
package services
|
|
|
|
import (
|
|
"crypto"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/jellydator/ttlcache/v3"
|
|
"github.com/urfave/cli/v3"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/forge"
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/model"
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/services/config"
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/services/environment"
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/services/parameter"
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/services/registry"
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/services/secret"
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/services/utils"
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/store"
|
|
)
|
|
|
|
const forgeCacheTTL = 10 * time.Minute
|
|
|
|
type SetupForge func(forge *model.Forge) (forge.Forge, error)
|
|
|
|
type Manager interface {
|
|
SignaturePublicKey() crypto.PublicKey
|
|
ParameterServiceFromRepo(repo *model.Repo) parameter.Service
|
|
SecretServiceFromRepo(repo *model.Repo) secret.Service
|
|
SecretService() secret.Service
|
|
RegistryServiceFromRepo(repo *model.Repo) registry.Service
|
|
RegistryService() registry.Service
|
|
ConfigServiceFromRepo(repo *model.Repo) config.Service
|
|
EnvironmentService() environment.Service
|
|
ForgeFromRepo(repo *model.Repo) (forge.Forge, error)
|
|
ForgeFromUser(user *model.User) (forge.Forge, error)
|
|
ForgeByID(forgeID int64) (forge.Forge, error)
|
|
}
|
|
|
|
type manager struct {
|
|
signaturePrivateKey crypto.PrivateKey
|
|
signaturePublicKey crypto.PublicKey
|
|
store store.Store
|
|
parameter parameter.Service
|
|
secret secret.Service
|
|
registry registry.Service
|
|
config config.Service
|
|
environment environment.Service
|
|
forgeCache *ttlcache.Cache[int64, forge.Forge]
|
|
setupForge SetupForge
|
|
client *utils.Client
|
|
}
|
|
|
|
func NewManager(c *cli.Command, store store.Store, setupForge SetupForge) (Manager, error) {
|
|
signaturePrivateKey, signaturePublicKey, err := setupSignatureKeys(store)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = setupForgeService(c, store)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
client, err := utils.NewHTTPClient(signaturePrivateKey, c.String("extensions-allowed-hosts"))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
configService, err := setupConfigService(c, client)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &manager{
|
|
signaturePrivateKey: signaturePrivateKey,
|
|
signaturePublicKey: signaturePublicKey,
|
|
store: store,
|
|
parameter: setupParameterService(store),
|
|
secret: setupSecretService(store),
|
|
registry: setupRegistryService(store, c.String("docker-config")),
|
|
config: configService,
|
|
environment: environment.Parse(c.StringSlice("environment")),
|
|
forgeCache: ttlcache.New(ttlcache.WithDisableTouchOnHit[int64, forge.Forge]()),
|
|
setupForge: setupForge,
|
|
client: client,
|
|
}, nil
|
|
}
|
|
|
|
func (m *manager) SignaturePublicKey() crypto.PublicKey {
|
|
return m.signaturePublicKey
|
|
}
|
|
|
|
func (m *manager) ParameterServiceFromRepo(_ *model.Repo) parameter.Service {
|
|
return m.ParameterService()
|
|
}
|
|
|
|
func (m *manager) SecretServiceFromRepo(_ *model.Repo) secret.Service {
|
|
return m.SecretService()
|
|
}
|
|
|
|
func (m *manager) ParameterService() parameter.Service {
|
|
return m.parameter
|
|
}
|
|
|
|
func (m *manager) SecretService() secret.Service {
|
|
return m.secret
|
|
}
|
|
|
|
func (m *manager) RegistryServiceFromRepo(_ *model.Repo) registry.Service {
|
|
return m.RegistryService()
|
|
}
|
|
|
|
func (m *manager) RegistryService() registry.Service {
|
|
return m.registry
|
|
}
|
|
|
|
func (m *manager) ConfigServiceFromRepo(repo *model.Repo) config.Service {
|
|
if repo.ConfigExtensionEndpoint != "" {
|
|
return config.NewCombined(m.config, config.NewHTTP(strings.TrimRight(repo.ConfigExtensionEndpoint, "/"), m.client))
|
|
}
|
|
|
|
return m.config
|
|
}
|
|
|
|
func (m *manager) EnvironmentService() environment.Service {
|
|
return m.environment
|
|
}
|
|
|
|
func (m *manager) ForgeFromRepo(repo *model.Repo) (forge.Forge, error) {
|
|
return m.ForgeByID(repo.ForgeID)
|
|
}
|
|
|
|
func (m *manager) ForgeFromUser(user *model.User) (forge.Forge, error) {
|
|
return m.ForgeByID(user.ForgeID)
|
|
}
|
|
|
|
func (m *manager) ForgeByID(id int64) (forge.Forge, error) {
|
|
item := m.forgeCache.Get(id)
|
|
if item != nil && !item.IsExpired() {
|
|
return item.Value(), nil
|
|
}
|
|
|
|
forgeModel, err := m.store.ForgeGet(id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
forge, err := m.setupForge(forgeModel)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
m.forgeCache.Set(id, forge, forgeCacheTTL)
|
|
|
|
return forge, nil
|
|
}
|