2014-01-30 23:35:38 +00:00
|
|
|
package agent
|
|
|
|
|
2014-02-03 23:15:35 +00:00
|
|
|
import (
|
|
|
|
"github.com/hashicorp/consul/consul/structs"
|
|
|
|
)
|
|
|
|
|
2014-01-30 23:35:38 +00:00
|
|
|
// ServiceDefinition is used to JSON decode the Service definitions
|
|
|
|
type ServiceDefinition struct {
|
2015-01-02 21:10:05 +00:00
|
|
|
ID string
|
|
|
|
Name string
|
|
|
|
Tags []string
|
|
|
|
Address string
|
|
|
|
Port int
|
|
|
|
Check CheckType
|
2015-01-14 01:52:17 +00:00
|
|
|
Checks CheckTypes
|
2015-04-28 01:26:23 +00:00
|
|
|
Token string
|
2014-02-03 23:15:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *ServiceDefinition) NodeService() *structs.NodeService {
|
|
|
|
ns := &structs.NodeService{
|
|
|
|
ID: s.ID,
|
|
|
|
Service: s.Name,
|
2014-04-03 19:12:23 +00:00
|
|
|
Tags: s.Tags,
|
2015-01-02 21:10:05 +00:00
|
|
|
Address: s.Address,
|
2014-02-03 23:15:35 +00:00
|
|
|
Port: s.Port,
|
|
|
|
}
|
|
|
|
if ns.ID == "" && ns.Service != "" {
|
|
|
|
ns.ID = ns.Service
|
|
|
|
}
|
|
|
|
return ns
|
|
|
|
}
|
|
|
|
|
2015-01-14 01:52:17 +00:00
|
|
|
func (s *ServiceDefinition) CheckTypes() (checks CheckTypes) {
|
|
|
|
s.Checks = append(s.Checks, &s.Check)
|
|
|
|
for _, check := range s.Checks {
|
2015-01-29 20:11:42 +00:00
|
|
|
if check.Valid() {
|
2015-01-14 01:52:17 +00:00
|
|
|
checks = append(checks, check)
|
|
|
|
}
|
2014-02-03 23:15:35 +00:00
|
|
|
}
|
2015-01-14 01:52:17 +00:00
|
|
|
return
|
2014-01-30 23:35:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ChecKDefinition is used to JSON decode the Check definitions
|
|
|
|
type CheckDefinition struct {
|
2014-02-03 23:15:35 +00:00
|
|
|
ID string
|
|
|
|
Name string
|
|
|
|
Notes string
|
2015-01-14 01:52:17 +00:00
|
|
|
ServiceID string
|
2014-02-03 23:15:35 +00:00
|
|
|
CheckType `mapstructure:",squash"`
|
2014-01-30 23:35:38 +00:00
|
|
|
}
|
|
|
|
|
2014-02-03 23:15:35 +00:00
|
|
|
func (c *CheckDefinition) HealthCheck(node string) *structs.HealthCheck {
|
|
|
|
health := &structs.HealthCheck{
|
2015-01-14 01:52:17 +00:00
|
|
|
Node: node,
|
|
|
|
CheckID: c.ID,
|
|
|
|
Name: c.Name,
|
|
|
|
Status: structs.HealthCritical,
|
|
|
|
Notes: c.Notes,
|
|
|
|
ServiceID: c.ServiceID,
|
2014-02-03 23:15:35 +00:00
|
|
|
}
|
|
|
|
if health.CheckID == "" && health.Name != "" {
|
|
|
|
health.CheckID = health.Name
|
|
|
|
}
|
|
|
|
return health
|
2014-01-30 23:35:38 +00:00
|
|
|
}
|
2015-04-28 02:01:02 +00:00
|
|
|
|
|
|
|
// persistedService is used to wrap a service definition and bundle it
|
|
|
|
// with an ACL token so we can restore both at a later agent start.
|
|
|
|
type persistedService struct {
|
|
|
|
Token string
|
|
|
|
Service *structs.NodeService
|
|
|
|
}
|