-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgol.go
60 lines (52 loc) · 1.22 KB
/
gol.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
package gol
import (
"embed"
"log/slog"
"net/http"
"github.com/kevincobain2000/gol/pkg"
"github.com/labstack/echo/v4"
)
//go:embed all:frontend/dist/*
var publicDir embed.FS
type GolOptions struct { // nolint: revive
Every int64
FilePaths []string
LogLevel slog.Leveler
}
type GolOption func(*GolOptions) error // nolint: revive
type Gol struct {
Options *GolOptions
}
func NewGol(opts ...GolOption) *Gol {
options := &GolOptions{
Every: 1000,
LogLevel: slog.LevelInfo,
FilePaths: []string{},
}
for _, opt := range opts {
err := opt(options)
if err != nil {
return nil
}
}
return &Gol{
Options: options,
}
}
func (g *Gol) NewAPIHandler() *pkg.APIHandler {
pkg.UpdateGlobalFilePaths(g.Options.FilePaths, nil, nil, 1000)
go pkg.WatchFilePaths(g.Options.Every, g.Options.FilePaths, nil, nil, 1000)
return pkg.NewAPIHandler()
}
func (*Gol) NewAssetsHandler() *pkg.AssetsHandler {
return pkg.NewAssetsHandler(&publicDir, "frontend/dist", "index.html")
}
func (*Gol) Adapter(echoHandler echo.HandlerFunc) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
e := echo.New()
c := e.NewContext(r, w)
if err := echoHandler(c); err != nil {
e.HTTPErrorHandler(err, c)
}
}
}