-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathendpoints.go
58 lines (47 loc) · 1.2 KB
/
endpoints.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
package rest
import (
"net/http"
"github.com/julienschmidt/httprouter"
"github.com/sokool/rest/docs"
)
type Endpoint[S Session] func(*Request[S]) (any, error)
type Endpoints[S Session] struct {
path string
http *httprouter.Router
sessions Sessions[S]
middleware []Middleware
docs *docs.OpenAPI
}
func NewEndpoints[S Session](s Sessions[S], m ...Middleware) *Endpoints[S] {
return &Endpoints[S]{
http: httprouter.New(),
sessions: s,
middleware: m,
docs: docs.NewOpenAPI("example"),
}
}
func (s *Endpoints[S]) Path(name string, m ...Middleware) *Endpoints[S] {
return &Endpoints[S]{
path: s.path + name,
http: s.http,
sessions: s.sessions,
docs: s.docs,
middleware: append(s.middleware, m...),
}
}
func (s *Endpoints[S]) Handle(n, method string, e Endpoint[S], m ...Middleware) *Endpoints[S] {
m = append(s.middleware, m...)
n = s.path + n
d := s.docs.Path(method, n)
h := NewHandler[S](s.sessions, e).
Doc(d).
Apply(m...)
s.http.Handler(method, n, h)
return s
}
func (s *Endpoints[S]) ServeHTTP(w http.ResponseWriter, r *http.Request) {
s.http.ServeHTTP(w, r)
}
func (s *Endpoints[S]) String() string {
return s.docs.String()
}