2016-05-02 19:21:25 +00:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
2017-04-11 17:06:45 +00:00
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/cncd/logging"
|
|
|
|
"github.com/cncd/pubsub"
|
|
|
|
"github.com/cncd/queue"
|
2017-04-14 11:32:36 +00:00
|
|
|
"github.com/drone/drone/model"
|
2017-04-11 17:06:45 +00:00
|
|
|
"github.com/drone/drone/plugins/registry"
|
|
|
|
"github.com/drone/drone/plugins/secrets"
|
|
|
|
"github.com/drone/drone/plugins/sender"
|
|
|
|
"github.com/drone/drone/server"
|
2016-05-02 19:21:25 +00:00
|
|
|
"github.com/drone/drone/store"
|
|
|
|
"github.com/drone/drone/store/datastore"
|
2017-03-16 10:14:02 +00:00
|
|
|
"github.com/urfave/cli"
|
2016-05-02 19:21:25 +00:00
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Store is a middleware function that initializes the Datastore and attaches to
|
|
|
|
// the context of every http.Request.
|
|
|
|
func Store(cli *cli.Context) gin.HandlerFunc {
|
|
|
|
v := setupStore(cli)
|
2017-04-11 17:06:45 +00:00
|
|
|
|
|
|
|
// HACK during refactor period. Please ignore my mess.
|
|
|
|
|
|
|
|
// storage
|
|
|
|
server.Config.Storage.Files = v
|
|
|
|
|
|
|
|
// services
|
2017-04-14 11:32:36 +00:00
|
|
|
server.Config.Services.Queue = model.WithTaskStore(queue.New(), v)
|
2017-04-11 17:06:45 +00:00
|
|
|
server.Config.Services.Logs = logging.New()
|
|
|
|
server.Config.Services.Pubsub = pubsub.New()
|
|
|
|
server.Config.Services.Pubsub.Create(context.Background(), "topic/events")
|
|
|
|
server.Config.Services.Registries = registry.New(v)
|
|
|
|
server.Config.Services.Secrets = secrets.New(v)
|
|
|
|
server.Config.Services.Senders = sender.New(v)
|
|
|
|
if endpoint := cli.String("registry-service"); endpoint != "" {
|
|
|
|
server.Config.Services.Registries = registry.NewRemote(endpoint)
|
|
|
|
}
|
|
|
|
if endpoint := cli.String("secret-service"); endpoint != "" {
|
|
|
|
server.Config.Services.Secrets = secrets.NewRemote(endpoint)
|
|
|
|
}
|
|
|
|
if endpoint := cli.String("gating-service"); endpoint != "" {
|
|
|
|
server.Config.Services.Senders = sender.NewRemote(endpoint)
|
|
|
|
}
|
|
|
|
|
|
|
|
// server configuration
|
|
|
|
server.Config.Server.Cert = cli.String("server-cert")
|
|
|
|
server.Config.Server.Key = cli.String("server-key")
|
|
|
|
server.Config.Server.Pass = cli.String("agent-secret")
|
|
|
|
server.Config.Server.Host = cli.String("server-host")
|
|
|
|
server.Config.Server.Port = cli.String("server-addr")
|
2017-04-14 08:41:24 +00:00
|
|
|
server.Config.Pipeline.Networks = cli.StringSlice("network")
|
|
|
|
server.Config.Pipeline.Volumes = cli.StringSlice("volumes")
|
|
|
|
server.Config.Pipeline.Privileged = cli.StringSlice("escalate")
|
2017-04-11 17:06:45 +00:00
|
|
|
// server.Config.Server.Open = cli.Bool("open")
|
|
|
|
// server.Config.Server.Orgs = sliceToMap(cli.StringSlice("orgs"))
|
|
|
|
// server.Config.Server.Admins = sliceToMap(cli.StringSlice("admin"))
|
|
|
|
|
2016-05-02 19:21:25 +00:00
|
|
|
return func(c *gin.Context) {
|
|
|
|
store.ToContext(c, v)
|
|
|
|
c.Next()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// helper function to create the datastore from the CLI context.
|
|
|
|
func setupStore(c *cli.Context) store.Store {
|
|
|
|
return datastore.New(
|
|
|
|
c.String("driver"),
|
|
|
|
c.String("datasource"),
|
|
|
|
)
|
|
|
|
}
|
2017-04-11 17:06:45 +00:00
|
|
|
|
|
|
|
// helper function to convert a string slice to a map.
|
|
|
|
func sliceToMap(s []string) map[string]struct{} {
|
|
|
|
v := map[string]struct{}{}
|
|
|
|
for _, ss := range s {
|
|
|
|
v[ss] = struct{}{}
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
}
|