Code re-organization
Some checks failed
Go Tests / build (1.22.x) (push) Failing after 1m27s

This commit is contained in:
2025-01-26 18:20:45 -05:00
parent b93d1c29b8
commit 85938a2def
21 changed files with 685 additions and 348 deletions

53
commands/grpc.go Normal file
View File

@@ -0,0 +1,53 @@
package commands
import (
"fmt"
"github.com/siteworxpro/img-proxy-url-generator/config"
proto "github.com/siteworxpro/img-proxy-url-generator/grpc"
"github.com/urfave/cli/v2"
"google.golang.org/grpc"
"log"
"net"
)
func GrpcCommand() *cli.Command {
return &cli.Command{
Name: "grpc",
Usage: "Start a grpc service",
Flags: []cli.Flag{
&cli.IntFlag{
Name: "port",
Aliases: []string{"p"},
Usage: "Port to listen on",
Required: false,
Value: 9000,
},
},
Action: func(c *cli.Context) error {
cfg, err := config.NewConfig(c.String("config"))
if err != nil {
return err
}
s := grpc.NewServer()
addr := fmt.Sprintf(":%d", c.Int("port"))
println("listening on", addr)
lis, err := net.Listen("tcp", addr)
if err != nil {
log.Fatalf("failed to listen: %v", err)
}
svc, err := proto.NewService(cfg)
if err != nil {
log.Fatalf("failed to serve: %v", err)
}
proto.RegisterGeneratorServer(s, svc)
err = s.Serve(lis)
if err != nil {
log.Fatalf("failed to serve: %v", err)
}
return nil
},
}
}