2015-09-09 23:39:08 +03:00
package main
2015-09-12 16:10:03 +03:00
2015-09-09 23:39:08 +03:00
import (
"bytes"
"github.com/BurntSushi/toml"
2015-09-10 23:54:37 +03:00
"github.com/BurntSushi/ty/fun"
2015-09-12 16:10:03 +03:00
"github.com/gambol99/go-marathon"
"github.com/leekchan/gtf"
"strconv"
"strings"
"text/template"
2015-09-09 23:39:08 +03:00
)
type MarathonProvider struct {
2015-09-10 16:13:35 +03:00
Watch bool
Endpoint string
marathonClient marathon . Marathon
Domain string
Filename string
NetworkInterface string
2015-09-09 23:39:08 +03:00
}
2015-09-11 20:32:23 +03:00
func NewMarathonProvider ( ) * MarathonProvider {
marathonProvider := new ( MarathonProvider )
// default values
marathonProvider . Watch = true
marathonProvider . Domain = "traefik"
marathonProvider . NetworkInterface = "eth0"
return marathonProvider
}
2015-09-09 23:39:08 +03:00
var MarathonFuncMap = template . FuncMap {
"getPort" : func ( task marathon . Task ) string {
for _ , port := range task . Ports {
return strconv . Itoa ( port )
}
return ""
} ,
"getHost" : func ( application marathon . Application ) string {
for key , value := range application . Labels {
2015-09-12 16:10:03 +03:00
if key == "traefik.host" {
2015-09-09 23:39:08 +03:00
return value
}
}
2015-09-10 01:22:01 +03:00
return strings . Replace ( application . ID , "/" , "" , 1 )
2015-09-09 23:39:08 +03:00
} ,
2015-09-10 17:14:08 +03:00
"getWeight" : func ( application marathon . Application ) string {
for key , value := range application . Labels {
2015-09-12 16:10:03 +03:00
if key == "traefik.weight" {
2015-09-10 17:14:08 +03:00
return value
}
}
return "0"
} ,
2015-09-09 23:39:08 +03:00
"replace" : func ( s1 string , s2 string , s3 string ) string {
return strings . Replace ( s3 , s1 , s2 , - 1 )
} ,
}
2015-09-11 17:37:13 +03:00
2015-09-12 16:10:03 +03:00
func ( provider * MarathonProvider ) Provide ( configurationChan chan <- * Configuration ) {
2015-09-09 23:39:08 +03:00
config := marathon . NewDefaultConfig ( )
config . URL = provider . Endpoint
2015-09-10 16:13:35 +03:00
config . EventsInterface = provider . NetworkInterface
2015-09-09 23:39:08 +03:00
if client , err := marathon . NewClient ( config ) ; err != nil {
2015-09-11 17:37:13 +03:00
log . Error ( "Failed to create a client for marathon, error: %s" , err )
2015-09-09 23:39:08 +03:00
return
} else {
provider . marathonClient = client
2015-09-10 10:06:37 +03:00
update := make ( marathon . EventsChannel , 5 )
2015-09-12 16:10:03 +03:00
if provider . Watch {
2015-09-10 10:06:37 +03:00
if err := client . AddEventsListener ( update , marathon . EVENTS_APPLICATIONS ) ; err != nil {
2015-09-11 17:37:13 +03:00
log . Error ( "Failed to register for subscriptions, %s" , err )
2015-09-10 10:06:37 +03:00
} else {
go func ( ) {
for {
event := <- update
2015-09-11 17:37:13 +03:00
log . Debug ( "Marathon event receveived" , event )
2015-09-10 10:06:37 +03:00
configuration := provider . loadMarathonConfig ( )
2015-09-12 16:10:03 +03:00
if configuration != nil {
2015-09-10 10:06:37 +03:00
configurationChan <- configuration
}
2015-09-10 00:09:16 +03:00
}
2015-09-10 10:06:37 +03:00
} ( )
}
2015-09-10 00:09:16 +03:00
}
2015-09-09 23:39:08 +03:00
configuration := provider . loadMarathonConfig ( )
configurationChan <- configuration
}
}
func ( provider * MarathonProvider ) loadMarathonConfig ( ) * Configuration {
configuration := new ( Configuration )
applications , err := provider . marathonClient . Applications ( nil )
2015-09-12 16:10:03 +03:00
if err != nil {
2015-09-11 17:37:13 +03:00
log . Error ( "Failed to create a client for marathon, error: %s" , err )
2015-09-09 23:39:08 +03:00
return nil
}
2015-09-10 23:54:37 +03:00
2015-09-09 23:39:08 +03:00
tasks , err := provider . marathonClient . AllTasks ( )
2015-09-12 16:10:03 +03:00
if err != nil {
2015-09-11 17:37:13 +03:00
log . Error ( "Failed to create a client for marathon, error: %s" , err )
2015-09-09 23:39:08 +03:00
return nil
}
2015-09-10 23:54:37 +03:00
//filter tasks
filteredTasks := fun . Filter ( func ( task marathon . Task ) bool {
2015-09-12 16:10:03 +03:00
if len ( task . Ports ) == 0 {
2015-09-11 17:37:13 +03:00
log . Debug ( "Filtering marathon task without port" , task . AppID )
2015-09-10 23:54:37 +03:00
return false
}
application := getApplication ( task , applications . Apps )
_ , err := strconv . Atoi ( application . Labels [ "traefik.port" ] )
2015-09-12 16:10:03 +03:00
if len ( application . Ports ) > 1 && err != nil {
2015-09-11 17:37:13 +03:00
log . Debug ( "Filtering marathon task with more than 1 port and no traefik.port label" , task . AppID )
2015-09-10 23:54:37 +03:00
return false
}
2015-09-12 16:10:03 +03:00
if application . Labels [ "traefik.enable" ] == "false" {
2015-09-11 17:37:13 +03:00
log . Debug ( "Filtering disabled marathon task" , task . AppID )
2015-09-10 23:54:37 +03:00
return false
}
return true
} , tasks . Tasks ) . ( [ ] marathon . Task )
//filter apps
filteredApps := fun . Filter ( func ( app marathon . Application ) bool {
//get ports from app tasks
2015-09-12 16:10:03 +03:00
if ! fun . Exists ( func ( task marathon . Task ) bool {
if task . AppID == app . ID {
2015-09-10 23:54:37 +03:00
return true
}
return false
2015-09-12 16:10:03 +03:00
} , filteredTasks ) {
2015-09-10 23:54:37 +03:00
return false
}
return true
} , applications . Apps ) . ( [ ] marathon . Application )
2015-09-09 23:39:08 +03:00
templateObjects := struct {
Applications [ ] marathon . Application
Tasks [ ] marathon . Task
Domain string
} {
2015-09-10 23:54:37 +03:00
filteredApps ,
filteredTasks ,
2015-09-09 23:39:08 +03:00
provider . Domain ,
}
gtf . Inject ( MarathonFuncMap )
2015-09-11 20:25:49 +03:00
tmpl := template . New ( provider . Filename ) . Funcs ( DockerFuncMap )
2015-09-12 16:10:03 +03:00
if len ( provider . Filename ) > 0 {
2015-09-11 20:25:49 +03:00
_ , err := tmpl . ParseFiles ( provider . Filename )
if err != nil {
log . Error ( "Error reading file" , err )
return nil
}
2015-09-12 16:10:03 +03:00
} else {
2015-09-11 20:25:49 +03:00
buf , err := Asset ( "providerTemplates/marathon.tmpl" )
if err != nil {
log . Error ( "Error reading file" , err )
}
_ , err = tmpl . Parse ( string ( buf ) )
if err != nil {
log . Error ( "Error reading file" , err )
return nil
}
2015-09-09 23:39:08 +03:00
}
var buffer bytes . Buffer
err = tmpl . Execute ( & buffer , templateObjects )
if err != nil {
2015-09-11 17:37:13 +03:00
log . Error ( "Error with docker template:" , err )
2015-09-09 23:39:08 +03:00
return nil
}
if _ , err := toml . Decode ( buffer . String ( ) , configuration ) ; err != nil {
2015-09-11 17:37:13 +03:00
log . Error ( "Error creating marathon configuration:" , err )
2015-09-09 23:39:08 +03:00
return nil
}
return configuration
2015-09-10 23:54:37 +03:00
}
func getApplication ( task marathon . Task , apps [ ] marathon . Application ) * marathon . Application {
for _ , application := range apps {
2015-09-12 16:10:03 +03:00
if application . ID == task . AppID {
2015-09-10 23:54:37 +03:00
return & application
}
}
return nil
2015-09-12 16:10:03 +03:00
}