-
Notifications
You must be signed in to change notification settings - Fork 0
/
collection.go
138 lines (109 loc) · 3.59 KB
/
collection.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package rest
import (
"fmt"
"github.com/maxmanuylov/go-rest/error"
"net/http"
"strings"
)
var (
ErrMethodNotAllowed = rest_error.NewByCode(http.StatusMethodNotAllowed)
)
type Request struct {
*http.Request
Level int
IDs []string
}
type Handler interface {
ServeHTTP(request *Request, response http.ResponseWriter)
}
type HandlerFunc func(*Request, http.ResponseWriter)
func (f HandlerFunc) ServeHTTP(request *Request, response http.ResponseWriter) {
f(request, response)
}
type Collection struct {
level int
handler Handler
subCollections map[string]*Collection
}
func newCollection(level int) *Collection {
return &Collection{
level: level,
subCollections: make(map[string]*Collection),
}
}
func (server *Server) Collection(name string) *Collection {
collection := newCollection(0)
if strings.Contains(name, "/") {
panic(fmt.Sprintf("Slash in collection name: %s", name))
}
if len(name) == 0 {
panic("Empty collection name")
}
collectionPath := server.path(fmt.Sprintf("/%s", name))
collectionIndex := len(splitPath(collectionPath)) - 1
handlerFunc := func(response http.ResponseWriter, httpRequest *http.Request) {
pathNames := splitPath(httpRequest.URL.Path)[collectionIndex:]
if len(pathNames) == 0 { // cannot happen
writeError(response, fmt.Errorf("Invalid URL path: %s", httpRequest.URL.Path))
return
}
ids := make([]string, 0)
actualCollection := collection
id := true
for i, pathName := range pathNames[1:] {
if id {
ids = append(ids, pathName)
id = false
} else {
actualCollection = actualCollection.subCollections[pathName]
if actualCollection == nil {
writeError(response, rest_error.New(http.StatusNotFound, fmt.Sprintf("Path is not found: /%s", strings.Join(pathNames[:i + 2], "/"))))
return
}
id = true
}
}
if actualCollection.handler == nil {
writeError(response, ErrMethodNotAllowed)
return
}
request := &Request{
Request: httpRequest,
Level: actualCollection.level,
IDs: ids,
}
actualCollection.handler.ServeHTTP(request, response)
}
server.mux.HandleFunc(collectionPath, handlerFunc)
server.mux.HandleFunc(fmt.Sprintf("%s/", collectionPath), handlerFunc)
return collection
}
func (collection *Collection) CustomHandler(handler Handler) *Collection {
collection.handler = handler
return collection
}
func (collection *Collection) CustomHandlerFunc(handlerFunc func(*Request, http.ResponseWriter)) *Collection {
return collection.CustomHandler(HandlerFunc(handlerFunc))
}
func (collection *Collection) SubCollection(name string) *Collection {
subCollection := newCollection(collection.level + 1)
collection.subCollections[name] = subCollection
return subCollection
}
func splitPath(path string) []string {
return strings.FieldsFunc(strings.TrimSpace(path), func(r rune) bool {
return r == '/'
})
}
func writeError(response http.ResponseWriter, err error) {
var code int
var message string
if restError, ok := err.(*rest_error.Error); ok {
code = restError.Code
message = restError.Message
} else {
code = http.StatusInternalServerError
message = err.Error()
}
http.Error(response, message, code)
}