2024-02-20 13:46:15 +00:00
|
|
|
package grpc
|
|
|
|
|
|
|
|
import (
|
2024-06-17 14:21:34 +00:00
|
|
|
"google.golang.org/grpc/reflection"
|
2024-03-20 12:56:07 +00:00
|
|
|
"net"
|
|
|
|
|
2024-06-17 14:21:34 +00:00
|
|
|
"git.solsynth.dev/hydrogen/passport/pkg/proto"
|
2024-02-20 13:46:15 +00:00
|
|
|
"github.com/spf13/viper"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
)
|
|
|
|
|
2024-06-17 14:21:34 +00:00
|
|
|
import health "google.golang.org/grpc/health/grpc_health_v1"
|
|
|
|
|
2024-02-20 13:46:15 +00:00
|
|
|
type Server struct {
|
|
|
|
proto.UnimplementedAuthServer
|
|
|
|
proto.UnimplementedNotifyServer
|
2024-04-05 17:07:36 +00:00
|
|
|
proto.UnimplementedFriendshipsServer
|
2024-05-03 17:47:44 +00:00
|
|
|
proto.UnimplementedRealmsServer
|
2024-06-17 14:21:34 +00:00
|
|
|
health.UnimplementedHealthServer
|
2024-02-20 13:46:15 +00:00
|
|
|
}
|
|
|
|
|
2024-06-17 14:21:34 +00:00
|
|
|
var S *grpc.Server
|
|
|
|
|
|
|
|
func NewGRPC() {
|
|
|
|
S = grpc.NewServer()
|
|
|
|
|
|
|
|
proto.RegisterAuthServer(S, &Server{})
|
|
|
|
proto.RegisterNotifyServer(S, &Server{})
|
|
|
|
proto.RegisterFriendshipsServer(S, &Server{})
|
|
|
|
proto.RegisterRealmsServer(S, &Server{})
|
|
|
|
health.RegisterHealthServer(S, &Server{})
|
|
|
|
|
|
|
|
reflection.Register(S)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ListenGRPC() error {
|
2024-06-19 15:25:40 +00:00
|
|
|
listener, err := net.Listen("tcp", viper.GetString("grpc_bind"))
|
2024-02-20 13:46:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-06-19 15:25:40 +00:00
|
|
|
return S.Serve(listener)
|
2024-02-20 13:46:15 +00:00
|
|
|
}
|