2021-09-22 20:48:01 +02:00
|
|
|
// Copyright 2018 Drone.IO Inc.
|
|
|
|
// Copyright 2021 Informatyka Boguslawski sp. z o.o. sp.k., http://www.ib.pl/
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// This file has been modified by Informatyka Boguslawski sp. z o.o. sp.k.
|
|
|
|
|
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2021-09-23 22:29:09 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/logging"
|
2021-09-27 19:51:55 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/model"
|
2021-09-23 22:29:09 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/pubsub"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/server/queue"
|
2021-11-26 14:01:54 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/remote"
|
2021-09-22 20:48:01 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
var Config = struct {
|
|
|
|
Services struct {
|
|
|
|
Pubsub pubsub.Publisher
|
|
|
|
Queue queue.Queue
|
|
|
|
Logs logging.Log
|
|
|
|
Senders model.SenderService
|
|
|
|
Secrets model.SecretService
|
|
|
|
Registries model.RegistryService
|
|
|
|
Environ model.EnvironService
|
2021-11-26 14:01:54 +02:00
|
|
|
Remote remote.Remote
|
2021-09-22 20:48:01 +02:00
|
|
|
}
|
|
|
|
Storage struct {
|
|
|
|
// Users model.UserStore
|
|
|
|
// Repos model.RepoStore
|
|
|
|
// Builds model.BuildStore
|
|
|
|
// Logs model.LogStore
|
2022-01-05 18:54:44 +02:00
|
|
|
Files model.FileStore
|
|
|
|
Procs model.ProcStore
|
2021-09-22 20:48:01 +02:00
|
|
|
// Registries model.RegistryStore
|
|
|
|
// Secrets model.SecretStore
|
|
|
|
}
|
|
|
|
Server struct {
|
|
|
|
Key string
|
|
|
|
Cert string
|
2021-12-13 21:22:09 +02:00
|
|
|
OAuthHost string
|
2021-09-22 20:48:01 +02:00
|
|
|
Host string
|
|
|
|
Port string
|
|
|
|
Pass string
|
2021-10-12 18:21:13 +02:00
|
|
|
Docs string
|
2022-01-29 21:37:36 +02:00
|
|
|
StatusContext string
|
2021-09-22 20:48:01 +02:00
|
|
|
SessionExpires time.Duration
|
|
|
|
// Open bool
|
|
|
|
// Orgs map[string]struct{}
|
|
|
|
// Admins map[string]struct{}
|
|
|
|
}
|
|
|
|
Prometheus struct {
|
|
|
|
AuthToken string
|
|
|
|
}
|
|
|
|
Pipeline struct {
|
2022-02-08 18:55:08 +02:00
|
|
|
AuthenticatePublicRepos bool
|
|
|
|
Limits model.ResourceLimit
|
|
|
|
Volumes []string
|
|
|
|
Networks []string
|
|
|
|
Privileged []string
|
2021-09-22 20:48:01 +02:00
|
|
|
}
|
2021-12-19 13:04:29 +02:00
|
|
|
FlatPermissions bool // TODO(485) temporary workaround to not hit api rate limits
|
2021-09-22 20:48:01 +02:00
|
|
|
}{}
|