2017-12-02 18:30:16 +00:00
|
|
|
package ecs
|
|
|
|
|
|
|
|
import (
|
2017-12-16 18:57:40 +00:00
|
|
|
"math"
|
2017-12-02 18:30:16 +00:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"text/template"
|
|
|
|
|
|
|
|
"github.com/BurntSushi/ty/fun"
|
|
|
|
"github.com/containous/traefik/log"
|
|
|
|
"github.com/containous/traefik/provider/label"
|
|
|
|
"github.com/containous/traefik/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// buildConfiguration fills the config template with the given instances
|
|
|
|
func (p *Provider) buildConfiguration(services map[string][]ecsInstance) (*types.Configuration, error) {
|
|
|
|
var ecsFuncMap = template.FuncMap{
|
2017-12-16 18:51:39 +00:00
|
|
|
"filterFrontends": filterFrontends,
|
|
|
|
"getFrontendRule": p.getFrontendRule,
|
|
|
|
"getBasicAuth": getFuncSliceString(label.TraefikFrontendAuthBasic),
|
|
|
|
"hasLoadBalancerLabel": hasLoadBalancerLabel,
|
|
|
|
"getLoadBalancerMethod": getFuncFirstStringValue(label.TraefikBackendLoadBalancerMethod, label.DefaultBackendLoadBalancerMethod),
|
|
|
|
"getSticky": getSticky,
|
|
|
|
"hasStickinessLabel": getFuncFirstBoolValue(label.TraefikBackendLoadBalancerStickiness, false),
|
|
|
|
"getStickinessCookieName": getFuncFirstStringValue(label.TraefikBackendLoadBalancerStickinessCookieName, label.DefaultBackendLoadbalancerStickinessCookieName),
|
|
|
|
"getProtocol": getFuncStringValue(label.TraefikProtocol, label.DefaultProtocol),
|
|
|
|
"getHost": getHost,
|
|
|
|
"getPort": getPort,
|
|
|
|
"getWeight": getFuncStringValue(label.TraefikWeight, label.DefaultWeight),
|
|
|
|
"getPassHostHeader": getFuncStringValue(label.TraefikFrontendPassHostHeader, label.DefaultPassHostHeader),
|
2017-12-16 19:00:36 +00:00
|
|
|
"getPassTLSCert": getFuncBoolValue(label.TraefikFrontendPassTLSCert, label.DefaultPassTLSCert),
|
2017-12-16 18:51:39 +00:00
|
|
|
"getPriority": getFuncStringValue(label.TraefikFrontendPriority, label.DefaultFrontendPriority),
|
|
|
|
"getEntryPoints": getFuncSliceString(label.TraefikFrontendEntryPoints),
|
|
|
|
"hasHealthCheckLabels": hasFuncFirst(label.TraefikBackendHealthCheckPath),
|
|
|
|
"getHealthCheckPath": getFuncFirstStringValue(label.TraefikBackendHealthCheckPath, ""),
|
|
|
|
"getHealthCheckPort": getFuncFirstIntValue(label.TraefikBackendHealthCheckPort, label.DefaultBackendHealthCheckPort),
|
|
|
|
"getHealthCheckInterval": getFuncFirstStringValue(label.TraefikBackendHealthCheckInterval, ""),
|
|
|
|
"hasCircuitBreakerLabel": hasFuncFirst(label.TraefikBackendCircuitBreakerExpression),
|
|
|
|
"getCircuitBreakerExpression": getFuncFirstStringValue(label.TraefikBackendCircuitBreakerExpression, label.DefaultCircuitBreakerExpression),
|
2017-12-16 18:57:40 +00:00
|
|
|
"hasMaxConnLabels": hasMaxConnLabels,
|
|
|
|
"getMaxConnAmount": getFuncFirstInt64Value(label.TraefikBackendMaxConnAmount, math.MaxInt64),
|
|
|
|
"getMaxConnExtractorFunc": getFuncFirstStringValue(label.TraefikBackendMaxConnExtractorFunc, label.DefaultBackendMaxconnExtractorFunc),
|
2017-12-16 19:04:11 +00:00
|
|
|
"getWhitelistSourceRange": getFuncSliceString(label.TraefikFrontendWhitelistSourceRange),
|
2017-12-16 19:12:44 +00:00
|
|
|
"hasRedirect": hasRedirect,
|
|
|
|
"getRedirectEntryPoint": getFuncStringValue(label.TraefikFrontendRedirectEntryPoint, label.DefaultFrontendRedirectEntryPoint),
|
|
|
|
"getRedirectRegex": getFuncStringValue(label.TraefikFrontendRedirectRegex, ""),
|
|
|
|
"getRedirectReplacement": getFuncStringValue(label.TraefikFrontendRedirectReplacement, ""),
|
2017-12-16 19:24:30 +00:00
|
|
|
|
|
|
|
"hasRequestHeaders": hasFuncLabel(label.TraefikFrontendRequestHeaders),
|
|
|
|
"getRequestHeaders": getFuncMapValue(label.TraefikFrontendRequestHeaders),
|
|
|
|
"hasResponseHeaders": hasFuncLabel(label.TraefikFrontendResponseHeaders),
|
|
|
|
"getResponseHeaders": getFuncMapValue(label.TraefikFrontendResponseHeaders),
|
|
|
|
"hasAllowedHostsHeaders": hasFuncLabel(label.TraefikFrontendAllowedHosts),
|
|
|
|
"getAllowedHostsHeaders": getFuncSliceString(label.TraefikFrontendAllowedHosts),
|
|
|
|
"hasHostsProxyHeaders": hasFuncLabel(label.TraefikFrontendHostsProxyHeaders),
|
|
|
|
"getHostsProxyHeaders": getFuncSliceString(label.TraefikFrontendHostsProxyHeaders),
|
|
|
|
"hasSSLRedirectHeaders": hasFuncLabel(label.TraefikFrontendSSLRedirect),
|
|
|
|
"getSSLRedirectHeaders": getFuncBoolValue(label.TraefikFrontendSSLRedirect, false),
|
|
|
|
"hasSSLTemporaryRedirectHeaders": hasFuncLabel(label.TraefikFrontendSSLTemporaryRedirect),
|
|
|
|
"getSSLTemporaryRedirectHeaders": getFuncBoolValue(label.TraefikFrontendSSLTemporaryRedirect, false),
|
|
|
|
"hasSSLHostHeaders": hasFuncLabel(label.TraefikFrontendSSLHost),
|
|
|
|
"getSSLHostHeaders": getFuncStringValue(label.TraefikFrontendSSLHost, ""),
|
|
|
|
"hasSSLProxyHeaders": hasFuncLabel(label.TraefikFrontendSSLProxyHeaders),
|
|
|
|
"getSSLProxyHeaders": getFuncMapValue(label.TraefikFrontendSSLProxyHeaders),
|
|
|
|
"hasSTSSecondsHeaders": hasFuncLabel(label.TraefikFrontendSTSSeconds),
|
|
|
|
"getSTSSecondsHeaders": getFuncInt64Value(label.TraefikFrontendSTSSeconds, 0),
|
|
|
|
"hasSTSIncludeSubdomainsHeaders": hasFuncLabel(label.TraefikFrontendSTSIncludeSubdomains),
|
|
|
|
"getSTSIncludeSubdomainsHeaders": getFuncBoolValue(label.TraefikFrontendSTSIncludeSubdomains, false),
|
|
|
|
"hasSTSPreloadHeaders": hasFuncLabel(label.TraefikFrontendSTSPreload),
|
|
|
|
"getSTSPreloadHeaders": getFuncBoolValue(label.TraefikFrontendSTSPreload, false),
|
|
|
|
"hasForceSTSHeaderHeaders": hasFuncLabel(label.TraefikFrontendForceSTSHeader),
|
|
|
|
"getForceSTSHeaderHeaders": getFuncBoolValue(label.TraefikFrontendForceSTSHeader, false),
|
|
|
|
"hasFrameDenyHeaders": hasFuncLabel(label.TraefikFrontendFrameDeny),
|
|
|
|
"getFrameDenyHeaders": getFuncBoolValue(label.TraefikFrontendFrameDeny, false),
|
|
|
|
"hasCustomFrameOptionsValueHeaders": hasFuncLabel(label.TraefikFrontendCustomFrameOptionsValue),
|
|
|
|
"getCustomFrameOptionsValueHeaders": getFuncStringValue(label.TraefikFrontendCustomFrameOptionsValue, ""),
|
|
|
|
"hasContentTypeNosniffHeaders": hasFuncLabel(label.TraefikFrontendContentTypeNosniff),
|
|
|
|
"getContentTypeNosniffHeaders": getFuncBoolValue(label.TraefikFrontendContentTypeNosniff, false),
|
|
|
|
"hasBrowserXSSFilterHeaders": hasFuncLabel(label.TraefikFrontendBrowserXSSFilter),
|
|
|
|
"getBrowserXSSFilterHeaders": getFuncBoolValue(label.TraefikFrontendBrowserXSSFilter, false),
|
|
|
|
"hasContentSecurityPolicyHeaders": hasFuncLabel(label.TraefikFrontendContentSecurityPolicy),
|
|
|
|
"getContentSecurityPolicyHeaders": getFuncStringValue(label.TraefikFrontendContentSecurityPolicy, ""),
|
|
|
|
"hasPublicKeyHeaders": hasFuncLabel(label.TraefikFrontendPublicKey),
|
|
|
|
"getPublicKeyHeaders": getFuncStringValue(label.TraefikFrontendPublicKey, ""),
|
|
|
|
"hasReferrerPolicyHeaders": hasFuncLabel(label.TraefikFrontendReferrerPolicy),
|
|
|
|
"getReferrerPolicyHeaders": getFuncStringValue(label.TraefikFrontendReferrerPolicy, ""),
|
|
|
|
"hasIsDevelopmentHeaders": hasFuncLabel(label.TraefikFrontendIsDevelopment),
|
|
|
|
"getIsDevelopmentHeaders": getFuncBoolValue(label.TraefikFrontendIsDevelopment, false),
|
2017-12-02 18:30:16 +00:00
|
|
|
}
|
|
|
|
return p.GetConfiguration("templates/ecs.tmpl", ecsFuncMap, struct {
|
|
|
|
Services map[string][]ecsInstance
|
|
|
|
}{
|
|
|
|
services,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provider) getFrontendRule(i ecsInstance) string {
|
|
|
|
defaultRule := "Host:" + strings.ToLower(strings.Replace(i.Name, "_", "-", -1)) + "." + p.Domain
|
|
|
|
return getStringValue(i, label.TraefikFrontendRule, defaultRule)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Deprecated
|
|
|
|
// Deprecated replaced by Stickiness
|
|
|
|
func getSticky(instances []ecsInstance) string {
|
|
|
|
if hasFirst(instances, label.TraefikBackendLoadBalancerSticky) {
|
|
|
|
log.Warnf("Deprecated configuration found: %s. Please use %s.", label.TraefikBackendLoadBalancerSticky, label.TraefikBackendLoadBalancerStickiness)
|
|
|
|
}
|
|
|
|
return getFirstStringValue(instances, label.TraefikBackendLoadBalancerSticky, "false")
|
|
|
|
}
|
|
|
|
|
|
|
|
func getHost(i ecsInstance) string {
|
|
|
|
return *i.machine.PrivateIpAddress
|
|
|
|
}
|
|
|
|
|
|
|
|
func getPort(i ecsInstance) string {
|
|
|
|
if value := getStringValue(i, label.TraefikPort, ""); len(value) > 0 {
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
return strconv.FormatInt(*i.container.NetworkBindings[0].HostPort, 10)
|
|
|
|
}
|
|
|
|
|
|
|
|
func filterFrontends(instances []ecsInstance) []ecsInstance {
|
|
|
|
byName := make(map[string]struct{})
|
|
|
|
|
|
|
|
return fun.Filter(func(i ecsInstance) bool {
|
|
|
|
_, found := byName[i.Name]
|
|
|
|
if !found {
|
|
|
|
byName[i.Name] = struct{}{}
|
|
|
|
}
|
|
|
|
return !found
|
|
|
|
}, instances).([]ecsInstance)
|
|
|
|
}
|
|
|
|
|
2017-12-16 18:38:12 +00:00
|
|
|
func hasLoadBalancerLabel(instances []ecsInstance) bool {
|
|
|
|
method := hasFirst(instances, label.TraefikBackendLoadBalancerMethod)
|
|
|
|
sticky := hasFirst(instances, label.TraefikBackendLoadBalancerSticky)
|
|
|
|
stickiness := hasFirst(instances, label.TraefikBackendLoadBalancerStickiness)
|
|
|
|
cookieName := hasFirst(instances, label.TraefikBackendLoadBalancerStickinessCookieName)
|
|
|
|
|
|
|
|
return method || sticky || stickiness || cookieName
|
|
|
|
}
|
|
|
|
|
2017-12-16 18:57:40 +00:00
|
|
|
func hasMaxConnLabels(instances []ecsInstance) bool {
|
|
|
|
mca := hasFirst(instances, label.TraefikBackendMaxConnAmount)
|
|
|
|
mcef := hasFirst(instances, label.TraefikBackendMaxConnExtractorFunc)
|
|
|
|
return mca && mcef
|
|
|
|
}
|
|
|
|
|
2017-12-16 19:12:44 +00:00
|
|
|
func hasRedirect(instance ecsInstance) bool {
|
|
|
|
return hasLabel(instance, label.TraefikFrontendRedirectEntryPoint) ||
|
|
|
|
hasLabel(instance, label.TraefikFrontendRedirectRegex) && hasLabel(instance, label.TraefikFrontendRedirectReplacement)
|
|
|
|
}
|
|
|
|
|
2017-12-02 18:30:16 +00:00
|
|
|
// Label functions
|
|
|
|
|
2017-12-16 19:24:30 +00:00
|
|
|
func hasFuncLabel(labelName string) func(i ecsInstance) bool {
|
|
|
|
return func(i ecsInstance) bool {
|
|
|
|
return hasLabel(i, labelName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-02 18:30:16 +00:00
|
|
|
func getFuncStringValue(labelName string, defaultValue string) func(i ecsInstance) string {
|
|
|
|
return func(i ecsInstance) string {
|
|
|
|
return getStringValue(i, labelName, defaultValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 19:00:36 +00:00
|
|
|
func getFuncBoolValue(labelName string, defaultValue bool) func(i ecsInstance) bool {
|
|
|
|
return func(i ecsInstance) bool {
|
|
|
|
return getBoolValue(i, labelName, defaultValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 19:24:30 +00:00
|
|
|
func getFuncInt64Value(labelName string, defaultValue int64) func(i ecsInstance) int64 {
|
|
|
|
return func(i ecsInstance) int64 {
|
|
|
|
return getInt64Value(i, labelName, defaultValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-02 18:30:16 +00:00
|
|
|
func getFuncSliceString(labelName string) func(i ecsInstance) []string {
|
|
|
|
return func(i ecsInstance) []string {
|
|
|
|
return getSliceString(i, labelName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 19:24:30 +00:00
|
|
|
func getFuncMapValue(labelName string) func(i ecsInstance) map[string]string {
|
|
|
|
return func(i ecsInstance) map[string]string {
|
|
|
|
return getMapString(i, labelName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-02 18:30:16 +00:00
|
|
|
func hasFuncFirst(labelName string) func(instances []ecsInstance) bool {
|
|
|
|
return func(instances []ecsInstance) bool {
|
|
|
|
return hasFirst(instances, labelName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func getFuncFirstStringValue(labelName string, defaultValue string) func(instances []ecsInstance) string {
|
|
|
|
return func(instances []ecsInstance) string {
|
|
|
|
return getFirstStringValue(instances, labelName, defaultValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 18:29:30 +00:00
|
|
|
func getFuncFirstIntValue(labelName string, defaultValue int) func(instances []ecsInstance) int {
|
|
|
|
return func(instances []ecsInstance) int {
|
|
|
|
if len(instances) < 0 {
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
return getIntValue(instances[0], labelName, defaultValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 18:57:40 +00:00
|
|
|
func getFuncFirstInt64Value(labelName string, defaultValue int64) func(instances []ecsInstance) int64 {
|
|
|
|
return func(instances []ecsInstance) int64 {
|
|
|
|
if len(instances) < 0 {
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
return getInt64Value(instances[0], labelName, defaultValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-02 18:30:16 +00:00
|
|
|
func getFuncFirstBoolValue(labelName string, defaultValue bool) func(instances []ecsInstance) bool {
|
|
|
|
return func(instances []ecsInstance) bool {
|
|
|
|
if len(instances) < 0 {
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
return getBoolValue(instances[0], labelName, defaultValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 19:12:44 +00:00
|
|
|
func hasLabel(i ecsInstance, labelName string) bool {
|
|
|
|
value, ok := i.containerDefinition.DockerLabels[labelName]
|
|
|
|
return ok && value != nil && len(*value) > 0
|
|
|
|
}
|
|
|
|
|
2017-12-02 18:30:16 +00:00
|
|
|
func getStringValue(i ecsInstance, labelName string, defaultValue string) string {
|
|
|
|
if v, ok := i.containerDefinition.DockerLabels[labelName]; ok {
|
|
|
|
if v == nil {
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
if len(*v) == 0 {
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
return *v
|
|
|
|
}
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
|
|
|
|
func getBoolValue(i ecsInstance, labelName string, defaultValue bool) bool {
|
|
|
|
rawValue, ok := i.containerDefinition.DockerLabels[labelName]
|
|
|
|
if ok {
|
|
|
|
if rawValue != nil {
|
|
|
|
v, err := strconv.ParseBool(*rawValue)
|
|
|
|
if err == nil {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
|
2017-12-16 18:29:30 +00:00
|
|
|
func getIntValue(i ecsInstance, labelName string, defaultValue int) int {
|
|
|
|
rawValue, ok := i.containerDefinition.DockerLabels[labelName]
|
|
|
|
if ok {
|
|
|
|
if rawValue != nil {
|
|
|
|
v, err := strconv.Atoi(*rawValue)
|
|
|
|
if err == nil {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
|
2017-12-16 18:57:40 +00:00
|
|
|
func getInt64Value(i ecsInstance, labelName string, defaultValue int64) int64 {
|
|
|
|
rawValue, ok := i.containerDefinition.DockerLabels[labelName]
|
|
|
|
if ok {
|
|
|
|
if rawValue != nil {
|
|
|
|
v, err := strconv.ParseInt(*rawValue, 10, 64)
|
|
|
|
if err == nil {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
|
2017-12-02 18:30:16 +00:00
|
|
|
func getSliceString(i ecsInstance, labelName string) []string {
|
|
|
|
if value, ok := i.containerDefinition.DockerLabels[labelName]; ok {
|
|
|
|
if value == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if len(*value) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return label.SplitAndTrimString(*value, ",")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-12-16 19:24:30 +00:00
|
|
|
func getMapString(i ecsInstance, labelName string) map[string]string {
|
|
|
|
if value, ok := i.containerDefinition.DockerLabels[labelName]; ok {
|
|
|
|
if value == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if len(*value) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return label.ParseMapValue(labelName, *value)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-12-02 18:30:16 +00:00
|
|
|
func hasFirst(instances []ecsInstance, labelName string) bool {
|
2017-12-16 19:24:30 +00:00
|
|
|
if len(instances) == 0 {
|
|
|
|
return false
|
2017-12-02 18:30:16 +00:00
|
|
|
}
|
2017-12-16 19:24:30 +00:00
|
|
|
return hasLabel(instances[0], labelName)
|
2017-12-02 18:30:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func getFirstStringValue(instances []ecsInstance, labelName string, defaultValue string) string {
|
|
|
|
if len(instances) == 0 {
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
return getStringValue(instances[0], labelName, defaultValue)
|
|
|
|
}
|
|
|
|
|
|
|
|
func isEnabled(i ecsInstance, exposedByDefault bool) bool {
|
|
|
|
return getBoolValue(i, label.TraefikEnable, exposedByDefault)
|
|
|
|
}
|