mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-11 11:32:01 +00:00
91b122e1ce
Co-authored-by: Robert Kaussow <xoxys@rknet.org> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
174 lines
5.3 KiB
Go
174 lines
5.3 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"
|
|
"crypto/ed25519"
|
|
"crypto/rand"
|
|
"encoding/hex"
|
|
"errors"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
"github.com/urfave/cli/v2"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/model"
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/services/config"
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/services/registry"
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/services/secret"
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/store"
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/store/types"
|
|
)
|
|
|
|
func setupRegistryService(store store.Store, dockerConfig string) registry.Service {
|
|
if dockerConfig != "" {
|
|
return registry.NewCombined(
|
|
registry.NewDB(store),
|
|
registry.NewFilesystem(dockerConfig),
|
|
)
|
|
}
|
|
|
|
return registry.NewDB(store)
|
|
}
|
|
|
|
func setupSecretService(store store.Store) secret.Service {
|
|
// TODO(1544): fix encrypted store
|
|
// // encryption
|
|
// encryptedSecretStore := encryptedStore.NewSecretStore(v)
|
|
// err := encryption.Encryption(c, v).WithClient(encryptedSecretStore).Build()
|
|
// if err != nil {
|
|
// log.Fatal().Err(err).Msg("could not create encryption service")
|
|
// }
|
|
|
|
return secret.NewDB(store)
|
|
}
|
|
|
|
func setupConfigService(c *cli.Context, privateSignatureKey crypto.PrivateKey) (config.Service, error) {
|
|
timeout := c.Duration("forge-timeout")
|
|
retries := c.Uint("forge-retry")
|
|
if retries == 0 {
|
|
return nil, fmt.Errorf("WOODPECKER_FORGE_RETRY can not be 0")
|
|
}
|
|
configFetcher := config.NewForge(timeout, retries)
|
|
|
|
if endpoint := c.String("config-service-endpoint"); endpoint != "" {
|
|
httpFetcher := config.NewHTTP(endpoint, privateSignatureKey)
|
|
return config.NewCombined(configFetcher, httpFetcher), nil
|
|
}
|
|
|
|
return configFetcher, nil
|
|
}
|
|
|
|
// setupSignatureKeys generate or load key pair to sign webhooks requests (i.e. used for service extensions).
|
|
func setupSignatureKeys(_store store.Store) (crypto.PrivateKey, crypto.PublicKey, error) {
|
|
privKeyID := "signature-private-key"
|
|
|
|
privKey, err := _store.ServerConfigGet(privKeyID)
|
|
if errors.Is(err, types.RecordNotExist) {
|
|
_, privKey, err := ed25519.GenerateKey(rand.Reader)
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("failed to generate private key: %w", err)
|
|
}
|
|
err = _store.ServerConfigSet(privKeyID, hex.EncodeToString(privKey))
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("failed to store private key: %w", err)
|
|
}
|
|
log.Debug().Msg("created private key")
|
|
return privKey, privKey.Public(), nil
|
|
} else if err != nil {
|
|
return nil, nil, fmt.Errorf("failed to load private key: %w", err)
|
|
}
|
|
privKeyStr, err := hex.DecodeString(privKey)
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("failed to decode private key: %w", err)
|
|
}
|
|
privateKey := ed25519.PrivateKey(privKeyStr)
|
|
return privateKey, privateKey.Public(), nil
|
|
}
|
|
|
|
func setupForgeService(c *cli.Context, _store store.Store) error {
|
|
_forge, err := _store.ForgeGet(1)
|
|
if err != nil && !errors.Is(err, types.RecordNotExist) {
|
|
return err
|
|
}
|
|
forgeExists := err == nil
|
|
if _forge == nil {
|
|
_forge = &model.Forge{
|
|
ID: 0,
|
|
}
|
|
}
|
|
if _forge.AdditionalOptions == nil {
|
|
_forge.AdditionalOptions = make(map[string]any)
|
|
}
|
|
|
|
_forge.Client = strings.TrimSpace(c.String("forge-oauth-client"))
|
|
_forge.ClientSecret = strings.TrimSpace(c.String("forge-oauth-secret"))
|
|
_forge.URL = c.String("forge-url")
|
|
_forge.SkipVerify = c.Bool("forge-skip-verify")
|
|
_forge.OAuthHost = c.String("forge-oauth-host")
|
|
|
|
switch {
|
|
case c.String("addon-forge") != "":
|
|
_forge.Type = model.ForgeTypeAddon
|
|
_forge.AdditionalOptions["executable"] = c.String("addon-forge")
|
|
case c.Bool("github"):
|
|
_forge.Type = model.ForgeTypeGithub
|
|
_forge.AdditionalOptions["merge-ref"] = c.Bool("github-merge-ref")
|
|
_forge.AdditionalOptions["public-only"] = c.Bool("github-public-only")
|
|
if _forge.URL == "" {
|
|
_forge.URL = "https://github.com"
|
|
}
|
|
case c.Bool("gitlab"):
|
|
_forge.Type = model.ForgeTypeGitlab
|
|
if _forge.URL == "" {
|
|
_forge.URL = "https://gitlab.com"
|
|
}
|
|
case c.Bool("gitea"):
|
|
_forge.Type = model.ForgeTypeGitea
|
|
if _forge.URL == "" {
|
|
_forge.URL = "https://try.gitea.com"
|
|
}
|
|
case c.Bool("forgejo"):
|
|
_forge.Type = model.ForgeTypeForgejo
|
|
// TODO enable oauth URL with generic config option
|
|
if _forge.URL == "" {
|
|
_forge.URL = "https://next.forgejo.org"
|
|
}
|
|
case c.Bool("bitbucket"):
|
|
_forge.Type = model.ForgeTypeBitbucket
|
|
case c.Bool("bitbucket-dc"):
|
|
_forge.Type = model.ForgeTypeBitbucketDatacenter
|
|
_forge.AdditionalOptions["git-username"] = c.String("bitbucket-dc-git-username")
|
|
_forge.AdditionalOptions["git-password"] = c.String("bitbucket-dc-git-password")
|
|
default:
|
|
return errors.New("forge not configured")
|
|
}
|
|
|
|
if forgeExists {
|
|
err := _store.ForgeUpdate(_forge)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
err := _store.ForgeCreate(_forge)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|