2018-02-19 22:24:10 +00:00
|
|
|
// Copyright 2018 Drone.IO Inc.
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// 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
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// 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.
|
|
|
|
|
2016-05-02 19:21:25 +00:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
2019-08-27 11:01:29 +00:00
|
|
|
"github.com/laszlocph/woodpecker/model"
|
2016-05-02 19:21:25 +00:00
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
2017-03-16 10:14:02 +00:00
|
|
|
"github.com/urfave/cli"
|
2016-05-02 19:21:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const configKey = "config"
|
|
|
|
|
|
|
|
// Config is a middleware function that initializes the Configuration and
|
|
|
|
// attaches to the context of every http.Request.
|
|
|
|
func Config(cli *cli.Context) gin.HandlerFunc {
|
|
|
|
v := setupConfig(cli)
|
|
|
|
return func(c *gin.Context) {
|
|
|
|
c.Set(configKey, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// helper function to create the configuration from the CLI context.
|
2017-05-05 16:59:37 +00:00
|
|
|
func setupConfig(c *cli.Context) *model.Settings {
|
|
|
|
return &model.Settings{
|
2016-05-02 19:21:25 +00:00
|
|
|
Open: c.Bool("open"),
|
|
|
|
Secret: c.String("agent-secret"),
|
2017-04-11 17:06:45 +00:00
|
|
|
Admins: sliceToMap2(c.StringSlice("admin")),
|
|
|
|
Orgs: sliceToMap2(c.StringSlice("orgs")),
|
2016-05-02 19:21:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// helper function to convert a string slice to a map.
|
2017-04-11 17:06:45 +00:00
|
|
|
func sliceToMap2(s []string) map[string]bool {
|
2016-05-02 19:21:25 +00:00
|
|
|
v := map[string]bool{}
|
|
|
|
for _, ss := range s {
|
2017-05-30 15:43:34 +00:00
|
|
|
if ss == "" {
|
|
|
|
continue
|
|
|
|
}
|
2016-05-02 19:21:25 +00:00
|
|
|
v[ss] = true
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
}
|