mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 08:23:48 +02:00
131 lines
2.8 KiB
Go
131 lines
2.8 KiB
Go
package server
|
|
|
|
import (
|
|
"net/http"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/drone/drone/router"
|
|
"github.com/drone/drone/router/middleware"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
"github.com/codegangsta/cli"
|
|
"github.com/gin-gonic/contrib/ginrus"
|
|
)
|
|
|
|
// ServeCmd is the exported command for starting the drone server.
|
|
var ServeCmd = cli.Command{
|
|
Name: "serve",
|
|
Usage: "starts the drone server",
|
|
Action: func(c *cli.Context) {
|
|
if err := start(c); err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
},
|
|
Flags: []cli.Flag{
|
|
cli.StringFlag{
|
|
EnvVar: "SERVER_ADDR",
|
|
Name: "server-addr",
|
|
Usage: "server address",
|
|
Value: ":8000",
|
|
},
|
|
cli.StringFlag{
|
|
EnvVar: "SERVER_CERT",
|
|
Name: "server-cert",
|
|
Usage: "server ssl cert",
|
|
},
|
|
cli.StringFlag{
|
|
EnvVar: "SERVER_KEY",
|
|
Name: "server-key",
|
|
Usage: "server ssl key",
|
|
},
|
|
cli.BoolFlag{
|
|
EnvVar: "DEBUG",
|
|
Name: "debug",
|
|
Usage: "start the server in debug mode",
|
|
},
|
|
cli.BoolFlag{
|
|
EnvVar: "EXPERIMENTAL",
|
|
Name: "experimental",
|
|
Usage: "start the server with experimental features",
|
|
},
|
|
cli.BoolFlag{
|
|
Name: "agreement.ack",
|
|
EnvVar: "I_UNDERSTAND_I_AM_USING_AN_UNSTABLE_VERSION",
|
|
Usage: "agree to terms of use.",
|
|
},
|
|
cli.BoolFlag{
|
|
Name: "agreement.fix",
|
|
EnvVar: "I_AGREE_TO_FIX_BUGS_AND_NOT_FILE_BUGS",
|
|
Usage: "agree to terms of use.",
|
|
},
|
|
},
|
|
}
|
|
|
|
func start(c *cli.Context) error {
|
|
|
|
if c.Bool("agreement.ack") == false || c.Bool("agreement.fix") == false {
|
|
println(agreement)
|
|
os.Exit(1)
|
|
}
|
|
|
|
// debug level if requested by user
|
|
if c.Bool("debug") {
|
|
logrus.SetLevel(logrus.DebugLevel)
|
|
} else {
|
|
logrus.SetLevel(logrus.WarnLevel)
|
|
}
|
|
|
|
// setup the server and start the listener
|
|
handler := router.Load(
|
|
ginrus.Ginrus(logrus.StandardLogger(), time.RFC3339, true),
|
|
middleware.Version,
|
|
middleware.Queue(),
|
|
middleware.Stream(),
|
|
middleware.Bus(),
|
|
middleware.Cache(),
|
|
middleware.Store(),
|
|
middleware.Remote(),
|
|
middleware.Engine(),
|
|
)
|
|
|
|
if c.String("server-cert") != "" {
|
|
return http.ListenAndServeTLS(
|
|
c.String("server-addr"),
|
|
c.String("server-cert"),
|
|
c.String("server-key"),
|
|
handler,
|
|
)
|
|
}
|
|
|
|
return http.ListenAndServe(
|
|
c.String("server-addr"),
|
|
handler,
|
|
)
|
|
}
|
|
|
|
var agreement = `
|
|
---
|
|
|
|
|
|
You are attempting to use the unstable channel. This build is experimental and
|
|
has known bugs and compatibility issues, and is not intended for general use.
|
|
|
|
Please consider using the latest stable release instead:
|
|
|
|
drone/drone:0.4.2
|
|
|
|
If you are attempting to build from source please use the latest stable tag:
|
|
|
|
v0.4.2
|
|
|
|
If you are interested in testing this experimental build and assisting with
|
|
development you will need to set the following environment variables to proceed:
|
|
|
|
I_UNDERSTAND_I_AM_USING_AN_UNSTABLE_VERSION=true
|
|
I_AGREE_TO_FIX_BUGS_AND_NOT_FILE_BUGS=true
|
|
|
|
|
|
---
|
|
`
|