2021-09-22 13:48:01 -05: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.
|
|
|
|
|
|
|
|
|
|
package server
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"time"
|
|
|
|
|
|
2024-12-22 11:44:34 +02:00
|
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/cache"
|
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/logging"
|
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/model"
|
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/pubsub"
|
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/queue"
|
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/services"
|
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/services/log"
|
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/services/permissions"
|
2021-09-22 13:48:01 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var Config = struct {
|
|
|
|
|
Services struct {
|
2024-02-11 18:42:33 +01:00
|
|
|
Pubsub *pubsub.Publisher
|
|
|
|
|
Queue queue.Queue
|
|
|
|
|
Logs logging.Log
|
|
|
|
|
Membership cache.MembershipService
|
2024-04-16 08:04:55 +02:00
|
|
|
Manager services.Manager
|
2024-06-06 14:34:57 +02:00
|
|
|
LogStore log.Service
|
2021-09-22 13:48:01 -05:00
|
|
|
}
|
|
|
|
|
Server struct {
|
2024-06-27 16:52:09 +02:00
|
|
|
JWTSecret string
|
2022-05-12 19:07:33 +02:00
|
|
|
Key string
|
|
|
|
|
Cert string
|
|
|
|
|
OAuthHost string
|
|
|
|
|
Host string
|
2023-06-18 15:47:40 +03:00
|
|
|
WebhookHost string
|
2022-05-12 19:07:33 +02:00
|
|
|
Port string
|
2023-05-11 06:11:10 +02:00
|
|
|
PortTLS string
|
2023-01-28 14:13:04 +01:00
|
|
|
AgentToken string
|
2022-05-12 19:07:33 +02:00
|
|
|
StatusContext string
|
|
|
|
|
StatusContextFormat string
|
|
|
|
|
SessionExpires time.Duration
|
2023-08-07 16:05:18 +02:00
|
|
|
RootPath string
|
2023-07-10 12:46:35 +02:00
|
|
|
CustomCSSFile string
|
|
|
|
|
CustomJsFile string
|
2023-12-27 22:16:15 +01:00
|
|
|
}
|
2024-11-11 18:51:14 +01:00
|
|
|
Agent struct {
|
|
|
|
|
DisableUserRegisteredAgentRegistration bool
|
|
|
|
|
}
|
2023-12-27 22:16:15 +01:00
|
|
|
WebUI struct {
|
|
|
|
|
EnableSwagger bool
|
|
|
|
|
SkipVersionCheck bool
|
2021-09-22 13:48:01 -05:00
|
|
|
}
|
|
|
|
|
Prometheus struct {
|
|
|
|
|
AuthToken string
|
|
|
|
|
}
|
|
|
|
|
Pipeline struct {
|
2022-05-09 05:26:09 -04:00
|
|
|
AuthenticatePublicRepos bool
|
2025-02-20 12:28:28 -05:00
|
|
|
DefaultAllowPullRequests bool
|
2022-05-09 05:26:09 -04:00
|
|
|
DefaultCancelPreviousPipelineEvents []model.WebhookEvent
|
2025-08-11 12:59:02 +02:00
|
|
|
DefaultApprovalMode model.ApprovalMode
|
2024-11-14 23:23:42 +02:00
|
|
|
DefaultWorkflowLabels map[string]string
|
2024-09-01 20:41:10 +02:00
|
|
|
DefaultClonePlugin string
|
|
|
|
|
TrustedClonePlugins []string
|
2022-05-09 05:26:09 -04:00
|
|
|
Volumes []string
|
|
|
|
|
Networks []string
|
2024-08-31 19:04:47 +02:00
|
|
|
PrivilegedPlugins []string
|
2023-03-19 20:24:43 +01:00
|
|
|
DefaultTimeout int64
|
|
|
|
|
MaxTimeout int64
|
2023-08-07 21:13:26 +02:00
|
|
|
Proxy struct {
|
|
|
|
|
No string
|
|
|
|
|
HTTP string
|
|
|
|
|
HTTPS string
|
|
|
|
|
}
|
2021-09-22 13:48:01 -05:00
|
|
|
}
|
2023-11-12 14:39:41 +01:00
|
|
|
Permissions struct {
|
|
|
|
|
Open bool
|
|
|
|
|
Admins *permissions.Admins
|
|
|
|
|
Orgs *permissions.Orgs
|
|
|
|
|
OwnersAllowlist *permissions.OwnersAllowlist
|
|
|
|
|
}
|
2021-09-22 13:48:01 -05:00
|
|
|
}{}
|