-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapi.go
95 lines (80 loc) · 2.33 KB
/
api.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package api
import (
"context"
"encoding/json"
"fmt"
"net/http"
"os"
"os/signal"
"syscall"
"time"
"github.com/PatrickKoss/rest-simple/internal/adapter/api/middleware"
"github.com/PatrickKoss/rest-simple/internal/service"
swagger "github.com/arsmn/fiber-swagger/v2"
"github.com/gofiber/fiber/v2"
"github.com/gofiber/fiber/v2/middleware/helmet"
fiberlogger "github.com/gofiber/fiber/v2/middleware/logger"
"github.com/gofiber/fiber/v2/middleware/pprof"
fiberrecover "github.com/gofiber/fiber/v2/middleware/recover"
"go.uber.org/zap"
)
type Api interface {
Listen(port string) error
Test(req *http.Request, msTimeout ...int) (resp *http.Response, err error)
}
type api struct {
logger *zap.Logger
app *fiber.App
}
func (a api) Test(req *http.Request, msTimeout ...int) (resp *http.Response, err error) {
return a.app.Test(req, msTimeout...)
}
func (a api) Listen(port string) error {
go func() {
err := a.app.Listen(fmt.Sprintf(":%s", port))
if err != nil {
a.logger.Fatal("Error starting the server", zap.Error(err))
}
}()
sigCh := make(chan os.Signal, 1)
signal.Notify(sigCh, syscall.SIGHUP, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT)
sig := <-sigCh
a.logger.Info(
"shutting down server due to received signal",
zap.String("signal", sig.String()),
)
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
err := a.app.ShutdownWithContext(ctx)
if err != nil {
a.logger.Error("error shutting down server", zap.String("err", err.Error()))
}
cancel()
return err
}
// New gets new api
// @title Rest Simple
// @version 1.0
// @description This api is an example in golang how to build a simple rest api with database connection.
// @contact.name lecture
// @contact.email lecture@example.com
// @host localhost:8081
// swagger docu.
func New(logger *zap.Logger, studentService service.StudentService) Api {
app := fiber.New(fiber.Config{
DisableStartupMessage: true,
JSONEncoder: json.Marshal,
JSONDecoder: json.Unmarshal,
ErrorHandler: middleware.ErrorMappingMiddleware,
})
// set swagger route
app.Get("/swagger/*", swagger.HandlerDefault)
app.Get("/healthz", Health)
app.Use(fiberlogger.New())
app.Use(pprof.New(pprof.Config{Prefix: "/pprof"}))
app.Use(fiberrecover.New())
app.Use(helmet.New())
return &api{
logger: logger,
app: app,
}
}