2017-12-23 16:45:25 +00:00
|
|
|
package kv
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2018-01-05 16:31:24 +00:00
|
|
|
"math"
|
2018-01-03 15:49:13 +00:00
|
|
|
"net/http"
|
2017-12-23 16:45:25 +00:00
|
|
|
"sort"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"text/template"
|
|
|
|
|
|
|
|
"github.com/BurntSushi/ty/fun"
|
2018-01-03 15:42:40 +00:00
|
|
|
"github.com/containous/flaeg"
|
2017-12-23 16:45:25 +00:00
|
|
|
"github.com/containous/traefik/log"
|
|
|
|
"github.com/containous/traefik/provider/label"
|
2018-01-05 16:31:24 +00:00
|
|
|
"github.com/containous/traefik/tls"
|
2017-12-23 16:45:25 +00:00
|
|
|
"github.com/containous/traefik/types"
|
|
|
|
"github.com/docker/libkv/store"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (p *Provider) buildConfiguration() *types.Configuration {
|
|
|
|
templateObjects := struct {
|
|
|
|
Prefix string
|
|
|
|
}{
|
|
|
|
// Allow `/traefik/alias` to supersede `p.Prefix`
|
|
|
|
Prefix: strings.TrimSuffix(p.get(p.Prefix, p.Prefix+pathAlias), pathSeparator),
|
|
|
|
}
|
|
|
|
|
|
|
|
var KvFuncMap = template.FuncMap{
|
|
|
|
"List": p.list,
|
|
|
|
"ListServers": p.listServers,
|
|
|
|
"Get": p.get,
|
2018-01-03 14:57:36 +00:00
|
|
|
"GetBool": p.getBool,
|
|
|
|
"GetInt": p.getInt,
|
|
|
|
"GetInt64": p.getInt64,
|
2018-01-07 20:44:52 +00:00
|
|
|
"GetList": p.getList,
|
2017-12-23 16:45:25 +00:00
|
|
|
"SplitGet": p.splitGet,
|
|
|
|
"Last": p.last,
|
2018-01-03 14:57:36 +00:00
|
|
|
"Has": p.has,
|
2017-12-23 16:45:25 +00:00
|
|
|
|
2018-01-24 10:57:06 +00:00
|
|
|
"getTLSSection": p.getTLSSection,
|
2018-01-05 16:31:24 +00:00
|
|
|
|
2018-01-03 15:37:31 +00:00
|
|
|
// Frontend functions
|
2018-01-05 16:31:24 +00:00
|
|
|
"getBackendName": p.getFuncString(pathFrontendBackend, ""),
|
|
|
|
"getPriority": p.getFuncInt(pathFrontendPriority, 0),
|
|
|
|
"getPassHostHeader": p.getFuncBool(pathFrontendPassHostHeader, true),
|
|
|
|
"getPassTLSCert": p.getFuncBool(pathFrontendPassTLSCert, label.DefaultPassTLSCert),
|
2018-01-07 20:44:52 +00:00
|
|
|
"getEntryPoints": p.getFuncList(pathFrontendEntryPoints),
|
|
|
|
"getWhitelistSourceRange": p.getFuncList(pathFrontendWhiteListSourceRange),
|
|
|
|
"getBasicAuth": p.getFuncList(pathFrontendBasicAuth),
|
2018-01-05 16:31:24 +00:00
|
|
|
"getRoutes": p.getRoutes,
|
|
|
|
"getRedirect": p.getRedirect,
|
|
|
|
"getErrorPages": p.getErrorPages,
|
|
|
|
"getRateLimit": p.getRateLimit,
|
|
|
|
"getHeaders": p.getHeaders,
|
2018-01-03 15:39:37 +00:00
|
|
|
|
2017-12-23 16:45:25 +00:00
|
|
|
// Backend functions
|
2018-01-05 16:31:24 +00:00
|
|
|
"getServers": p.getServers,
|
|
|
|
"getCircuitBreaker": p.getCircuitBreaker,
|
|
|
|
"getLoadBalancer": p.getLoadBalancer,
|
|
|
|
"getMaxConn": p.getMaxConn,
|
|
|
|
"getHealthCheck": p.getHealthCheck,
|
|
|
|
"getSticky": p.getSticky, // Deprecated [breaking]
|
|
|
|
"hasStickinessLabel": p.hasStickinessLabel, // Deprecated [breaking]
|
|
|
|
"getStickinessCookieName": p.getStickinessCookieName, // Deprecated [breaking]
|
2017-12-23 16:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
configuration, err := p.GetConfiguration("templates/kv.tmpl", KvFuncMap, templateObjects)
|
|
|
|
if err != nil {
|
|
|
|
log.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for key, frontend := range configuration.Frontends {
|
|
|
|
if _, ok := configuration.Backends[frontend.Backend]; !ok {
|
|
|
|
delete(configuration.Frontends, key)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return configuration
|
|
|
|
}
|
|
|
|
|
2018-01-05 16:31:24 +00:00
|
|
|
// Deprecated
|
2017-12-23 16:45:25 +00:00
|
|
|
func (p *Provider) getSticky(rootPath string) bool {
|
|
|
|
stickyValue := p.get("", rootPath, pathBackendLoadBalancerSticky)
|
|
|
|
if len(stickyValue) > 0 {
|
|
|
|
log.Warnf("Deprecated configuration found: %s. Please use %s.", pathBackendLoadBalancerSticky, pathBackendLoadBalancerStickiness)
|
|
|
|
} else {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
sticky, err := strconv.ParseBool(stickyValue)
|
|
|
|
if err != nil {
|
|
|
|
log.Warnf("Invalid %s value: %s.", pathBackendLoadBalancerSticky, stickyValue)
|
|
|
|
}
|
|
|
|
|
|
|
|
return sticky
|
|
|
|
}
|
|
|
|
|
2018-01-05 16:31:24 +00:00
|
|
|
// Deprecated
|
2017-12-23 16:45:25 +00:00
|
|
|
func (p *Provider) hasStickinessLabel(rootPath string) bool {
|
|
|
|
return p.getBool(false, rootPath, pathBackendLoadBalancerStickiness)
|
|
|
|
}
|
|
|
|
|
2018-01-05 16:31:24 +00:00
|
|
|
// Deprecated
|
2017-12-23 16:45:25 +00:00
|
|
|
func (p *Provider) getStickinessCookieName(rootPath string) string {
|
|
|
|
return p.get("", rootPath, pathBackendLoadBalancerStickinessCookieName)
|
|
|
|
}
|
|
|
|
|
2018-01-03 15:37:31 +00:00
|
|
|
func (p *Provider) getRedirect(rootPath string) *types.Redirect {
|
|
|
|
if p.has(rootPath, pathFrontendRedirectEntryPoint) {
|
|
|
|
return &types.Redirect{
|
|
|
|
EntryPoint: p.get("", rootPath, pathFrontendRedirectEntryPoint),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.has(rootPath, pathFrontendRedirectRegex) && p.has(rootPath, pathFrontendRedirectReplacement) {
|
|
|
|
return &types.Redirect{
|
|
|
|
Regex: p.get("", rootPath, pathFrontendRedirectRegex),
|
|
|
|
Replacement: p.get("", rootPath, pathFrontendRedirectReplacement),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-01-03 15:39:37 +00:00
|
|
|
func (p *Provider) getErrorPages(rootPath string) map[string]*types.ErrorPage {
|
|
|
|
var errorPages map[string]*types.ErrorPage
|
|
|
|
|
|
|
|
pathErrors := p.list(rootPath, pathFrontendErrorPages)
|
|
|
|
|
|
|
|
for _, pathPage := range pathErrors {
|
|
|
|
if errorPages == nil {
|
|
|
|
errorPages = make(map[string]*types.ErrorPage)
|
|
|
|
}
|
|
|
|
|
|
|
|
pageName := p.last(pathPage)
|
|
|
|
|
|
|
|
errorPages[pageName] = &types.ErrorPage{
|
|
|
|
Backend: p.get("", pathPage, pathFrontendErrorPagesBackend),
|
|
|
|
Query: p.get("", pathPage, pathFrontendErrorPagesQuery),
|
2018-01-07 20:44:52 +00:00
|
|
|
Status: p.getList(pathPage, pathFrontendErrorPagesStatus),
|
2018-01-03 15:39:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return errorPages
|
|
|
|
}
|
|
|
|
|
2018-01-03 15:42:40 +00:00
|
|
|
func (p *Provider) getRateLimit(rootPath string) *types.RateLimit {
|
|
|
|
extractorFunc := p.get("", rootPath, pathFrontendRateLimitExtractorFunc)
|
|
|
|
if len(extractorFunc) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var limits map[string]*types.Rate
|
|
|
|
|
|
|
|
pathRateSet := p.list(rootPath, pathFrontendRateLimitRateSet)
|
|
|
|
for _, pathLimits := range pathRateSet {
|
|
|
|
if limits == nil {
|
|
|
|
limits = make(map[string]*types.Rate)
|
|
|
|
}
|
|
|
|
|
|
|
|
rawPeriod := p.get("", pathLimits+pathFrontendRateLimitPeriod)
|
|
|
|
|
|
|
|
var period flaeg.Duration
|
|
|
|
err := period.Set(rawPeriod)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("Invalid %q value: %q", pathLimits+pathFrontendRateLimitPeriod, rawPeriod)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
limitName := p.last(pathLimits)
|
|
|
|
|
|
|
|
limits[limitName] = &types.Rate{
|
|
|
|
Average: p.getInt64(0, pathLimits+pathFrontendRateLimitAverage),
|
|
|
|
Burst: p.getInt64(0, pathLimits+pathFrontendRateLimitBurst),
|
|
|
|
Period: period,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &types.RateLimit{
|
|
|
|
ExtractorFunc: extractorFunc,
|
|
|
|
RateSet: limits,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-03 15:49:13 +00:00
|
|
|
func (p *Provider) getHeaders(rootPath string) *types.Headers {
|
|
|
|
headers := &types.Headers{
|
|
|
|
CustomRequestHeaders: p.getMap(rootPath, pathFrontendCustomRequestHeaders),
|
|
|
|
CustomResponseHeaders: p.getMap(rootPath, pathFrontendCustomResponseHeaders),
|
|
|
|
SSLProxyHeaders: p.getMap(rootPath, pathFrontendSSLProxyHeaders),
|
2018-01-07 20:44:52 +00:00
|
|
|
AllowedHosts: p.getList("", rootPath, pathFrontendAllowedHosts),
|
|
|
|
HostsProxyHeaders: p.getList(rootPath, pathFrontendHostsProxyHeaders),
|
2018-01-03 15:49:13 +00:00
|
|
|
SSLRedirect: p.getBool(false, rootPath, pathFrontendSSLRedirect),
|
|
|
|
SSLTemporaryRedirect: p.getBool(false, rootPath, pathFrontendSSLTemporaryRedirect),
|
|
|
|
SSLHost: p.get("", rootPath, pathFrontendSSLHost),
|
|
|
|
STSSeconds: p.getInt64(0, rootPath, pathFrontendSTSSeconds),
|
|
|
|
STSIncludeSubdomains: p.getBool(false, rootPath, pathFrontendSTSIncludeSubdomains),
|
|
|
|
STSPreload: p.getBool(false, rootPath, pathFrontendSTSPreload),
|
|
|
|
ForceSTSHeader: p.getBool(false, rootPath, pathFrontendForceSTSHeader),
|
|
|
|
FrameDeny: p.getBool(false, rootPath, pathFrontendFrameDeny),
|
|
|
|
CustomFrameOptionsValue: p.get("", rootPath, pathFrontendCustomFrameOptionsValue),
|
|
|
|
ContentTypeNosniff: p.getBool(false, rootPath, pathFrontendContentTypeNosniff),
|
|
|
|
BrowserXSSFilter: p.getBool(false, rootPath, pathFrontendBrowserXSSFilter),
|
|
|
|
ContentSecurityPolicy: p.get("", rootPath, pathFrontendContentSecurityPolicy),
|
|
|
|
PublicKey: p.get("", rootPath, pathFrontendPublicKey),
|
|
|
|
ReferrerPolicy: p.get("", rootPath, pathFrontendReferrerPolicy),
|
|
|
|
IsDevelopment: p.getBool(false, rootPath, pathFrontendIsDevelopment),
|
|
|
|
}
|
|
|
|
|
|
|
|
if !headers.HasSecureHeadersDefined() && !headers.HasCustomHeadersDefined() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return headers
|
|
|
|
}
|
|
|
|
|
2018-01-05 16:31:24 +00:00
|
|
|
func (p *Provider) getLoadBalancer(rootPath string) *types.LoadBalancer {
|
|
|
|
lb := &types.LoadBalancer{
|
|
|
|
Method: p.get(label.DefaultBackendLoadBalancerMethod, rootPath, pathBackendLoadBalancerMethod),
|
|
|
|
Sticky: p.getSticky(rootPath),
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.getBool(false, rootPath, pathBackendLoadBalancerStickiness) {
|
|
|
|
lb.Stickiness = &types.Stickiness{
|
|
|
|
CookieName: p.get("", rootPath, pathBackendLoadBalancerStickinessCookieName),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return lb
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provider) getCircuitBreaker(rootPath string) *types.CircuitBreaker {
|
|
|
|
if !p.has(rootPath, pathBackendCircuitBreakerExpression) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
circuitBreaker := p.get(label.DefaultCircuitBreakerExpression, rootPath, pathBackendCircuitBreakerExpression)
|
|
|
|
if len(circuitBreaker) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return &types.CircuitBreaker{Expression: circuitBreaker}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provider) getMaxConn(rootPath string) *types.MaxConn {
|
|
|
|
amount := p.getInt64(math.MinInt64, rootPath, pathBackendMaxConnAmount)
|
|
|
|
extractorFunc := p.get(label.DefaultBackendMaxconnExtractorFunc, rootPath, pathBackendMaxConnExtractorFunc)
|
|
|
|
|
|
|
|
if amount == math.MinInt64 || len(extractorFunc) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return &types.MaxConn{
|
|
|
|
Amount: amount,
|
|
|
|
ExtractorFunc: extractorFunc,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provider) getHealthCheck(rootPath string) *types.HealthCheck {
|
|
|
|
path := p.get("", rootPath, pathBackendHealthCheckPath)
|
|
|
|
|
|
|
|
if len(path) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
port := p.getInt(label.DefaultBackendHealthCheckPort, rootPath, pathBackendHealthCheckPort)
|
|
|
|
interval := p.get("30s", rootPath, pathBackendHealthCheckInterval)
|
|
|
|
|
|
|
|
return &types.HealthCheck{
|
|
|
|
Path: path,
|
|
|
|
Port: port,
|
|
|
|
Interval: interval,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-24 10:57:06 +00:00
|
|
|
func (p *Provider) getTLSSection(prefix string) []*tls.Configuration {
|
|
|
|
var tlsSection []*tls.Configuration
|
2018-01-05 16:31:24 +00:00
|
|
|
|
2018-01-24 10:57:06 +00:00
|
|
|
for _, tlsConfPath := range p.list(prefix, pathTLS) {
|
|
|
|
certFile := p.get("", tlsConfPath, pathTLSCertFile)
|
|
|
|
keyFile := p.get("", tlsConfPath, pathTLSKeyFile)
|
2018-01-05 16:31:24 +00:00
|
|
|
|
|
|
|
if len(certFile) == 0 && len(keyFile) == 0 {
|
|
|
|
log.Warnf("Invalid TLS configuration (no cert and no key): %s", tlsConfPath)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-01-24 10:57:06 +00:00
|
|
|
entryPoints := p.getList(tlsConfPath, pathTLSEntryPoints)
|
2018-01-05 16:31:24 +00:00
|
|
|
if len(entryPoints) == 0 {
|
|
|
|
log.Warnf("Invalid TLS configuration (no entry points): %s", tlsConfPath)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
tlsConf := &tls.Configuration{
|
|
|
|
EntryPoints: entryPoints,
|
|
|
|
Certificate: &tls.Certificate{
|
|
|
|
CertFile: tls.FileOrContent(certFile),
|
|
|
|
KeyFile: tls.FileOrContent(keyFile),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-01-24 10:57:06 +00:00
|
|
|
tlsSection = append(tlsSection, tlsConf)
|
2018-01-05 16:31:24 +00:00
|
|
|
}
|
|
|
|
|
2018-01-24 10:57:06 +00:00
|
|
|
return tlsSection
|
2018-01-05 16:31:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provider) getRoutes(rootPath string) map[string]types.Route {
|
|
|
|
var routes map[string]types.Route
|
|
|
|
|
|
|
|
rts := p.list(rootPath, pathFrontendRoutes)
|
|
|
|
for _, rt := range rts {
|
|
|
|
|
|
|
|
rule := p.get("", rt, pathFrontendRule)
|
|
|
|
if len(rule) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if routes == nil {
|
|
|
|
routes = make(map[string]types.Route)
|
|
|
|
}
|
|
|
|
|
|
|
|
routeName := p.last(rt)
|
|
|
|
routes[routeName] = types.Route{
|
|
|
|
Rule: rule,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return routes
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provider) getServers(rootPath string) map[string]types.Server {
|
|
|
|
var servers map[string]types.Server
|
|
|
|
|
|
|
|
serverKeys := p.listServers(rootPath)
|
|
|
|
for _, serverKey := range serverKeys {
|
|
|
|
serverURL := p.get("", serverKey, pathBackendServerURL)
|
|
|
|
if len(serverURL) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if servers == nil {
|
|
|
|
servers = make(map[string]types.Server)
|
|
|
|
}
|
|
|
|
|
|
|
|
serverName := p.last(serverKey)
|
|
|
|
servers[serverName] = types.Server{
|
|
|
|
URL: serverURL,
|
|
|
|
Weight: p.getInt(0, serverKey, pathBackendServerWeight),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return servers
|
|
|
|
}
|
|
|
|
|
2017-12-23 16:45:25 +00:00
|
|
|
func (p *Provider) listServers(backend string) []string {
|
|
|
|
serverNames := p.list(backend, pathBackendServers)
|
|
|
|
return fun.Filter(p.serverFilter, serverNames).([]string)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provider) serverFilter(serverName string) bool {
|
|
|
|
key := fmt.Sprint(serverName, pathBackendServerURL)
|
|
|
|
if _, err := p.kvClient.Get(key, nil); err != nil {
|
|
|
|
if err != store.ErrKeyNotFound {
|
|
|
|
log.Errorf("Failed to retrieve value for key %s: %s", key, err)
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return p.checkConstraints(serverName, pathTags)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provider) checkConstraints(keys ...string) bool {
|
|
|
|
joinedKeys := strings.Join(keys, "")
|
|
|
|
keyPair, err := p.kvClient.Get(joinedKeys, nil)
|
|
|
|
|
|
|
|
value := ""
|
|
|
|
if err == nil && keyPair != nil && keyPair.Value != nil {
|
|
|
|
value = string(keyPair.Value)
|
|
|
|
}
|
|
|
|
|
|
|
|
constraintTags := label.SplitAndTrimString(value, ",")
|
|
|
|
ok, failingConstraint := p.MatchConstraints(constraintTags)
|
|
|
|
if !ok {
|
|
|
|
if failingConstraint != nil {
|
|
|
|
log.Debugf("Constraint %v not matching with following tags: %v", failingConstraint.String(), value)
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2018-01-05 16:31:24 +00:00
|
|
|
func (p *Provider) getFuncString(key string, defaultValue string) func(rootPath string) string {
|
|
|
|
return func(rootPath string) string {
|
|
|
|
return p.get(defaultValue, rootPath, key)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provider) getFuncBool(key string, defaultValue bool) func(rootPath string) bool {
|
|
|
|
return func(rootPath string) bool {
|
|
|
|
return p.getBool(defaultValue, rootPath, key)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provider) getFuncInt(key string, defaultValue int) func(rootPath string) int {
|
|
|
|
return func(rootPath string) int {
|
|
|
|
return p.getInt(defaultValue, rootPath, key)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-07 20:44:52 +00:00
|
|
|
func (p *Provider) getFuncList(key string) func(rootPath string) []string {
|
2018-01-05 16:31:24 +00:00
|
|
|
return func(rootPath string) []string {
|
2018-01-07 20:44:52 +00:00
|
|
|
return p.getList(rootPath, key)
|
2018-01-05 16:31:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-23 16:45:25 +00:00
|
|
|
func (p *Provider) get(defaultValue string, keyParts ...string) string {
|
|
|
|
key := strings.Join(keyParts, "")
|
|
|
|
|
|
|
|
if p.storeType == store.ETCD {
|
|
|
|
key = strings.TrimPrefix(key, pathSeparator)
|
|
|
|
}
|
|
|
|
|
|
|
|
keyPair, err := p.kvClient.Get(key, nil)
|
|
|
|
if err != nil {
|
|
|
|
log.Debugf("Cannot get key %s %s, setting default %s", key, err, defaultValue)
|
|
|
|
return defaultValue
|
|
|
|
} else if keyPair == nil {
|
|
|
|
log.Debugf("Cannot get key %s, setting default %s", key, defaultValue)
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(keyPair.Value)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provider) getBool(defaultValue bool, keyParts ...string) bool {
|
|
|
|
rawValue := p.get(strconv.FormatBool(defaultValue), keyParts...)
|
|
|
|
|
|
|
|
if len(rawValue) == 0 {
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
|
|
|
|
value, err := strconv.ParseBool(rawValue)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("Invalid value for %v: %s", keyParts, rawValue)
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
2018-01-03 14:57:36 +00:00
|
|
|
func (p *Provider) has(keyParts ...string) bool {
|
|
|
|
value := p.get("", keyParts...)
|
|
|
|
return len(value) > 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provider) getInt(defaultValue int, keyParts ...string) int {
|
|
|
|
rawValue := p.get("", keyParts...)
|
|
|
|
|
|
|
|
if len(rawValue) == 0 {
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
|
|
|
|
value, err := strconv.Atoi(rawValue)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("Invalid value for %v: %s", keyParts, rawValue)
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provider) getInt64(defaultValue int64, keyParts ...string) int64 {
|
|
|
|
rawValue := p.get("", keyParts...)
|
|
|
|
|
|
|
|
if len(rawValue) == 0 {
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
|
|
|
|
value, err := strconv.ParseInt(rawValue, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("Invalid value for %v: %s", keyParts, rawValue)
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
2017-12-23 16:45:25 +00:00
|
|
|
func (p *Provider) list(keyParts ...string) []string {
|
|
|
|
rootKey := strings.Join(keyParts, "")
|
|
|
|
|
|
|
|
keysPairs, err := p.kvClient.List(rootKey, nil)
|
|
|
|
if err != nil {
|
|
|
|
log.Debugf("Cannot list keys under %q: %v", rootKey, err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
directoryKeys := make(map[string]string)
|
|
|
|
for _, key := range keysPairs {
|
|
|
|
directory := strings.Split(strings.TrimPrefix(key.Key, rootKey), pathSeparator)[0]
|
|
|
|
directoryKeys[directory] = rootKey + directory
|
|
|
|
}
|
|
|
|
|
|
|
|
keys := fun.Values(directoryKeys).([]string)
|
|
|
|
sort.Strings(keys)
|
|
|
|
return keys
|
|
|
|
}
|
|
|
|
|
2018-01-07 20:44:52 +00:00
|
|
|
func (p *Provider) getList(keyParts ...string) []string {
|
|
|
|
values := p.splitGet(keyParts...)
|
|
|
|
if len(values) > 0 {
|
|
|
|
return values
|
|
|
|
}
|
|
|
|
|
|
|
|
return p.getSlice(keyParts...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// get sub keys. ex: foo/0, foo/1, foo/2
|
|
|
|
func (p *Provider) getSlice(keyParts ...string) []string {
|
|
|
|
baseKey := strings.Join(keyParts, "")
|
|
|
|
if !strings.HasSuffix(baseKey, "/") {
|
|
|
|
baseKey += "/"
|
|
|
|
}
|
|
|
|
|
|
|
|
listKeys := p.list(baseKey)
|
|
|
|
|
|
|
|
var values []string
|
|
|
|
for _, entryKey := range listKeys {
|
|
|
|
val := p.get("", entryKey)
|
|
|
|
if len(val) > 0 {
|
|
|
|
values = append(values, val)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return values
|
|
|
|
}
|
|
|
|
|
2017-12-23 16:45:25 +00:00
|
|
|
func (p *Provider) splitGet(keyParts ...string) []string {
|
|
|
|
value := p.get("", keyParts...)
|
|
|
|
|
|
|
|
if len(value) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return label.SplitAndTrimString(value, ",")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provider) last(key string) string {
|
|
|
|
index := strings.LastIndex(key, pathSeparator)
|
|
|
|
return key[index+1:]
|
|
|
|
}
|
2018-01-03 15:49:13 +00:00
|
|
|
|
|
|
|
func (p *Provider) getMap(keyParts ...string) map[string]string {
|
|
|
|
var mapData map[string]string
|
|
|
|
|
|
|
|
list := p.list(keyParts...)
|
|
|
|
for _, name := range list {
|
|
|
|
if mapData == nil {
|
|
|
|
mapData = make(map[string]string)
|
|
|
|
}
|
|
|
|
|
|
|
|
mapData[http.CanonicalHeaderKey(p.last(name))] = p.get("", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
return mapData
|
|
|
|
}
|