-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
78 lines (65 loc) · 2.07 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package main
import (
"context"
"github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
pb "github.com/hashishaw/hc-intern/backend/backend/gen"
"github.com/hashishaw/hc-intern/backend/backend/service"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"
"log"
"net"
"net/http"
)
func main() {
// Create a listener on TCP port
lis, err := net.Listen("tcp", ":8080")
if err != nil {
log.Fatalln("Failed to listen:", err)
}
// Create a gRPC server object
server := grpc.NewServer()
// Register service
pb.RegisterInterviewServiceServer(server, &service.InterviewService{})
// Serve gRPC Server
log.Println("Serving gRPC on 0.0.0.0:8080")
// Splitting off the gRPC server into an anonymous function because it is blocking
// and we still need to create the gateway server below
go func() {
log.Fatalln(server.Serve(lis))
}()
// Create a client connection to the gRPC server we just started
// This is where the gRPC-Gateway proxies the requests
conn, err := grpc.DialContext(
context.Background(),
"0.0.0.0:8080",
grpc.WithBlock(),
grpc.WithTransportCredentials(insecure.NewCredentials()),
)
if err != nil {
log.Fatalln("Failed to dial server:", err)
}
mux := http.NewServeMux()
gwmux := runtime.NewServeMux()
// Register service handler
err = pb.RegisterInterviewServiceHandler(context.Background(), gwmux, conn)
if err != nil {
log.Fatalln("Failed to register gateway:", err)
}
// Handle custom paths
mux.Handle("/api/", gwmux)
mux.Handle("/dist/", http.StripPrefix("/dist/", http.FileServer(http.Dir("."))))
mux.HandleFunc("/", IndexHandler("./index.html"))
gwServer := &http.Server{
Addr: ":8090",
Handler: mux,
}
log.Println("Serving gRPC-Gateway on 0.0.0.0:8090")
log.Fatalln(gwServer.ListenAndServe())
}
// IndexHandler serves application's entrypoint, eg. index.html
func IndexHandler(entrypoint string) func(w http.ResponseWriter, r *http.Request) {
fn := func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, entrypoint)
}
return fn
}