-
Notifications
You must be signed in to change notification settings - Fork 7
/
meta.go
133 lines (105 loc) · 3.79 KB
/
meta.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
// Copyright 2019 Aporeto Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package bahamut
import (
"fmt"
"sort"
"strings"
"go.aporeto.io/elemental"
)
// A RouteInfo contains basic information about an api route.
type RouteInfo struct {
Identity string `msgpack:"identity" json:"identity"`
URL string `msgpack:"url" json:"url"`
Verbs []string `msgpack:"verbs,omitempty" json:"verbs,omitempty"`
Private bool `msgpack:"private,omitempty" json:"private,omitempty"`
}
func (r RouteInfo) String() string {
return fmt.Sprintf("%s -> %s", r.URL, strings.Join(r.Verbs, ", "))
}
type routeBuilder struct {
verbs map[string]struct{}
identity elemental.Identity
private bool
}
func buildVersionedRoutes(modelManagers map[int]elemental.ModelManager, processorFinder processorFinderFunc) map[int][]RouteInfo {
addRoute := func(routes map[string]routeBuilder, identity elemental.Identity, url string, verb string, private bool) {
rb, ok := routes[url]
if !ok {
rb = routeBuilder{
verbs: map[string]struct{}{},
private: private,
identity: identity,
}
routes[url] = rb
}
rb.verbs[verb] = struct{}{}
}
versionedRoutes := map[int][]RouteInfo{}
for version, modelManager := range modelManagers {
versionedRoutes[version] = []RouteInfo{}
routes := map[string]routeBuilder{}
for identity, relationship := range modelManager.Relationships() {
// If we don't have a processor registered for the given model, we skip.
if _, err := processorFinder(identity); err != nil {
continue
}
if len(relationship.Create) > 0 {
addRoute(routes, identity, fmt.Sprintf("/%s", identity.Category), "POST", identity.Private)
}
if len(relationship.Retrieve) > 0 {
addRoute(routes, identity, fmt.Sprintf("/%s/:id", identity.Category), "GET", identity.Private)
}
if len(relationship.Delete) > 0 {
addRoute(routes, identity, fmt.Sprintf("/%s/:id", identity.Category), "DELETE", identity.Private)
}
if len(relationship.Update) > 0 {
addRoute(routes, identity, fmt.Sprintf("/%s/:id", identity.Category), "PUT", identity.Private)
}
for parent := range relationship.RetrieveMany {
if parent == "root" {
addRoute(routes, identity, fmt.Sprintf("/%s", identity.Category), "GET", identity.Private)
} else {
addRoute(routes, identity, fmt.Sprintf("/%s/:id/%s", modelManager.IdentityFromName(parent).Category, identity.Category), "GET", identity.Private)
}
}
for parent := range relationship.Create {
if parent == "root" {
addRoute(routes, identity, fmt.Sprintf("/%s", identity.Category), "POST", identity.Private)
} else {
addRoute(routes, identity, fmt.Sprintf("/%s/:id/%s", modelManager.IdentityFromName(parent).Category, identity.Category), "POST", identity.Private)
}
}
}
for url, rb := range routes {
var flatVerbs []string
for v := range rb.verbs {
flatVerbs = append(flatVerbs, v)
}
sort.Strings(flatVerbs)
versionedRoutes[version] = append(
versionedRoutes[version],
RouteInfo{
URL: url,
Verbs: flatVerbs,
Private: rb.private,
Identity: rb.identity.Category,
},
)
}
}
for _, ri := range versionedRoutes {
sort.Slice(ri, func(i int, j int) bool {
return strings.Compare(ri[i].URL, ri[j].URL) == -1
})
}
return versionedRoutes
}