1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 03:05:05 +08:00
gf/contrib/registry/nacos/nacos_register.go

76 lines
2.0 KiB
Go

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package nacos
import (
"context"
"github.com/nacos-group/nacos-sdk-go/v2/vo"
"github.com/gogf/gf/v2/net/gsvc"
"github.com/gogf/gf/v2/util/gconv"
)
// Register registers `service` to Registry.
// Note that it returns a new Service if it changes the input Service with custom one.
func (reg *Registry) Register(ctx context.Context, service gsvc.Service) (registered gsvc.Service, err error) {
metadata := map[string]string{}
endpoints := service.GetEndpoints()
p := vo.BatchRegisterInstanceParam{
ServiceName: service.GetName(),
GroupName: reg.groupName,
Instances: make([]vo.RegisterInstanceParam, 0, len(endpoints)),
}
for k, v := range service.GetMetadata() {
metadata[k] = gconv.String(v)
}
for _, endpoint := range endpoints {
p.Instances = append(p.Instances, vo.RegisterInstanceParam{
Ip: endpoint.Host(),
Port: uint64(endpoint.Port()),
ServiceName: service.GetName(),
Metadata: metadata,
Weight: 100,
Enable: true,
Healthy: true,
Ephemeral: true,
ClusterName: reg.clusterName,
GroupName: reg.groupName,
})
}
if _, err = reg.client.BatchRegisterInstance(p); err != nil {
return
}
registered = service
return
}
// Deregister off-lines and removes `service` from the Registry.
func (reg *Registry) Deregister(ctx context.Context, service gsvc.Service) (err error) {
c := reg.client
for _, endpoint := range service.GetEndpoints() {
if _, err = c.DeregisterInstance(vo.DeregisterInstanceParam{
Ip: endpoint.Host(),
Port: uint64(endpoint.Port()),
ServiceName: service.GetName(),
Ephemeral: true,
Cluster: reg.clusterName,
GroupName: reg.groupName,
}); err != nil {
return
}
}
return
}