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"
|
2015-09-07 13:25:13 +00:00
|
|
|
"log"
|
2015-09-07 08:38:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type DockerProvider struct {
|
2015-09-07 22:15:14 +00:00
|
|
|
Watch bool
|
|
|
|
Endpoint string
|
2015-09-07 08:38:58 +00:00
|
|
|
dockerClient *docker.Client
|
|
|
|
}
|
|
|
|
|
2015-09-07 22:15:14 +00:00
|
|
|
func (provider *DockerProvider) Provide(configurationChan chan <- *Configuration) {
|
2015-09-07 15:39:22 +00:00
|
|
|
provider.dockerClient, _ = docker.NewClient(provider.Endpoint)
|
2015-09-07 08:38:58 +00:00
|
|
|
dockerEvents := make(chan *docker.APIEvents)
|
2015-09-07 22:15:14 +00:00
|
|
|
if (provider.Watch) {
|
2015-09-07 16:10:33 +00:00
|
|
|
provider.dockerClient.AddEventListener(dockerEvents)
|
|
|
|
}
|
2015-09-07 08:38:58 +00:00
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
event := <-dockerEvents
|
2015-09-07 13:25:13 +00:00
|
|
|
log.Println("Event receveived", event)
|
2015-09-07 22:15:14 +00:00
|
|
|
configuration := provider.loadDockerConfig()
|
|
|
|
if (configuration != nil) {
|
|
|
|
configurationChan <- configuration
|
|
|
|
}
|
2015-09-07 08:38:58 +00:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2015-09-07 22:15:14 +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{}
|
|
|
|
for _, container := range containerList {
|
|
|
|
containerInspected, _ := provider.dockerClient.InspectContainer(container.ID)
|
|
|
|
containersInspected = append(containersInspected, *containerInspected)
|
|
|
|
}
|
|
|
|
containers := struct {
|
|
|
|
Containers []docker.Container
|
|
|
|
}{
|
|
|
|
containersInspected,
|
|
|
|
}
|
|
|
|
tmpl, err := gtf.New("docker.tmpl").ParseFiles("docker.tmpl")
|
|
|
|
if err != nil {
|
2015-09-07 13:25:13 +00:00
|
|
|
log.Println("Error reading file:", err)
|
|
|
|
return nil
|
2015-09-07 08:38:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var buffer bytes.Buffer
|
|
|
|
|
|
|
|
err = tmpl.Execute(&buffer, containers)
|
|
|
|
if err != nil {
|
2015-09-07 13:25:13 +00:00
|
|
|
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
|
2015-09-07 08:38:58 +00:00
|
|
|
}
|