traefik/docker.go

120 lines
3.1 KiB
Go
Raw Normal View History

2015-09-07 08:38:58 +00:00
package main
2015-09-07 22:15:14 +00:00
import (
2015-09-07 08:38:58 +00:00
"github.com/fsouza/go-dockerclient"
"github.com/leekchan/gtf"
"bytes"
"github.com/BurntSushi/toml"
"log"
"text/template"
"strings"
2015-09-07 08:38:58 +00:00
)
2015-09-09 20:39:08 +00:00
type DockerProvider struct {
Watch bool
Endpoint string
dockerClient *docker.Client
Filename string
Domain string
}
var DockerFuncMap = template.FuncMap{
"getBackend": func(container docker.Container) string {
for key, value := range container.Config.Labels {
if (key == "træfik.backend") {
return value
}
}
2015-09-10 13:12:28 +00:00
return getHost(container)
},
"getPort": func(container docker.Container) string {
for key, value := range container.Config.Labels {
if (key == "træfik.port") {
return value
}
}
for key, _ := range container.NetworkSettings.Ports {
return key.Port()
}
return ""
},
2015-09-10 13:12:28 +00:00
"replace": func(s1 string, s2 string, s3 string) string {
return strings.Replace(s3, s1, s2, -1)
},
"getHost": getHost,
}
2015-09-07 08:38:58 +00:00
2015-09-07 22:15:14 +00:00
func (provider *DockerProvider) Provide(configurationChan chan <- *Configuration) {
2015-09-09 20:39:08 +00:00
if client, err := docker.NewClient(provider.Endpoint); err != nil {
log.Fatalf("Failed to create a client for docker, error: %s", err)
} else {
provider.dockerClient = client
dockerEvents := make(chan *docker.APIEvents)
if (provider.Watch) {
provider.dockerClient.AddEventListener(dockerEvents)
2015-09-10 07:06:37 +00:00
go func() {
for {
event := <-dockerEvents
log.Println("Docker event receveived", event)
configuration := provider.loadDockerConfig()
if (configuration != nil) {
configurationChan <- configuration
}
2015-09-09 20:39:08 +00:00
}
2015-09-10 07:06:37 +00:00
}()
}
2015-09-07 08:38:58 +00:00
2015-09-09 20:39:08 +00:00
configuration := provider.loadDockerConfig()
configurationChan <- configuration
}
2015-09-07 08:38:58 +00:00
}
2015-09-07 22:15:14 +00:00
func (provider *DockerProvider) loadDockerConfig() *Configuration {
configuration := new(Configuration)
2015-09-07 08:38:58 +00:00
containerList, _ := provider.dockerClient.ListContainers(docker.ListContainersOptions{})
containersInspected := []docker.Container{}
hosts := map[string][]docker.Container{}
2015-09-07 08:38:58 +00:00
for _, container := range containerList {
containerInspected, _ := provider.dockerClient.InspectContainer(container.ID)
containersInspected = append(containersInspected, *containerInspected)
hosts[getHost(*containerInspected)] = append(hosts[getHost(*containerInspected)], *containerInspected)
2015-09-07 08:38:58 +00:00
}
templateObjects := struct {
2015-09-07 08:38:58 +00:00
Containers []docker.Container
2015-09-09 15:10:43 +00:00
Hosts map[string][]docker.Container
2015-09-09 15:50:02 +00:00
Domain string
2015-09-07 08:38:58 +00:00
}{
containersInspected,
hosts,
2015-09-09 15:10:43 +00:00
provider.Domain,
2015-09-07 08:38:58 +00:00
}
gtf.Inject(DockerFuncMap)
2015-09-09 15:50:02 +00:00
tmpl, err := template.New(provider.Filename).Funcs(DockerFuncMap).ParseFiles(provider.Filename)
2015-09-07 08:38:58 +00:00
if err != nil {
log.Println("Error reading file:", err)
return nil
2015-09-07 08:38:58 +00:00
}
var buffer bytes.Buffer
err = tmpl.Execute(&buffer, templateObjects)
2015-09-07 08:38:58 +00:00
if err != nil {
log.Println("Error with docker template:", err)
return nil
2015-09-07 08:38:58 +00:00
}
2015-09-07 22:15:14 +00:00
if _, err := toml.Decode(buffer.String(), configuration); err != nil {
log.Println("Error creating docker configuration:", err)
2015-09-07 08:38:58 +00:00
return nil
}
2015-09-07 22:15:14 +00:00
return configuration
}
func getHost(container docker.Container) string {
for key, value := range container.Config.Labels {
if (key == "træfik.host") {
return value
}
}
2015-09-10 13:12:28 +00:00
return strings.Replace(strings.Replace(container.Name, "/", "", -1), ".", "-", -1)
2015-09-07 08:38:58 +00:00
}