40 lines
911 B
Go
40 lines
911 B
Go
|
package structs
|
||
|
|
||
|
// ServiceDefinition is used to JSON decode the Service definitions
|
||
|
type ServiceDefinition struct {
|
||
|
ID string
|
||
|
Name string
|
||
|
Tags []string
|
||
|
Address string
|
||
|
Port int
|
||
|
Check CheckType
|
||
|
Checks CheckTypes
|
||
|
Token string
|
||
|
EnableTagOverride bool
|
||
|
}
|
||
|
|
||
|
func (s *ServiceDefinition) NodeService() *NodeService {
|
||
|
ns := &NodeService{
|
||
|
ID: s.ID,
|
||
|
Service: s.Name,
|
||
|
Tags: s.Tags,
|
||
|
Address: s.Address,
|
||
|
Port: s.Port,
|
||
|
EnableTagOverride: s.EnableTagOverride,
|
||
|
}
|
||
|
if ns.ID == "" && ns.Service != "" {
|
||
|
ns.ID = ns.Service
|
||
|
}
|
||
|
return ns
|
||
|
}
|
||
|
|
||
|
func (s *ServiceDefinition) CheckTypes() (checks CheckTypes) {
|
||
|
s.Checks = append(s.Checks, &s.Check)
|
||
|
for _, check := range s.Checks {
|
||
|
if check.Valid() {
|
||
|
checks = append(checks, check)
|
||
|
}
|
||
|
}
|
||
|
return
|
||
|
}
|