Paperclip/pkg/internal/gap/server.go

52 lines
1.4 KiB
Go
Raw Normal View History

2024-06-16 15:32:52 +00:00
package gap
import (
"fmt"
"strconv"
"strings"
2024-06-22 04:18:54 +00:00
"github.com/hashicorp/consul/api"
"github.com/spf13/viper"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"
2024-06-16 15:32:52 +00:00
)
func Register() error {
cfg := api.DefaultConfig()
cfg.Address = viper.GetString("consul.addr")
client, err := api.NewClient(cfg)
if err != nil {
return err
}
2024-06-22 04:18:54 +00:00
httpBind := strings.SplitN(viper.GetString("bind"), ":", 2)
grpcBind := strings.SplitN(viper.GetString("grpc_bind"), ":", 2)
2024-06-16 15:32:52 +00:00
2024-06-22 04:18:54 +00:00
outboundIp, _ := GetOutboundIP()
port, _ := strconv.Atoi(httpBind[1])
2024-06-16 15:32:52 +00:00
registration := new(api.AgentServiceRegistration)
registration.ID = viper.GetString("id")
registration.Name = "Hydrogen.Paperclip"
2024-06-22 04:18:54 +00:00
registration.Address = outboundIp.String()
2024-06-16 15:32:52 +00:00
registration.Port = port
registration.Check = &api.AgentServiceCheck{
2024-06-22 04:18:54 +00:00
GRPC: fmt.Sprintf("%s:%s", outboundIp, grpcBind[1]),
2024-06-16 15:32:52 +00:00
Timeout: "5s",
2024-06-22 04:18:54 +00:00
Interval: "1m",
DeregisterCriticalServiceAfter: "3m",
2024-06-16 15:32:52 +00:00
}
return client.Agent().ServiceRegister(registration)
}
2024-06-22 04:18:54 +00:00
func DiscoverPassport() (*grpc.ClientConn, error) {
target := fmt.Sprintf("consul://%s/Hydrogen.Passport", viper.GetString("consul.addr"))
return grpc.NewClient(
target,
grpc.WithTransportCredentials(insecure.NewCredentials()),
grpc.WithDefaultServiceConfig(`{"loadBalancingPolicy": "round_robin"}`),
)
}