forked from s-mang/test2doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresource.go
56 lines (45 loc) · 1.05 KB
/
resource.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
package doc
import "text/template"
var (
resourceTmpl *template.Template
resourceFmt = `## {{.URL.ParameterizedPath}}
{{.Description}}{{if .URL.Parameters}}
+ Parameters
{{range .URL.Parameters}}{{.Render}}
{{end}}{{end}}{{range .Actions}}
{{.Render}}{{end}}
`
)
func init() {
resourceTmpl = template.Must(template.New("resource").Parse(resourceFmt))
}
type HTTPMethod string
type Resource struct {
Title string
Description string
//Model *Model
URL *URL
Actions map[HTTPMethod]*Action
// TODO:
// Attributes
}
// NewResource returns a new Resource object
func NewResource(u *URL) *Resource {
resource := &Resource{}
resource.Actions = map[HTTPMethod]*Action{}
resource.URL = u
return resource
}
func (r *Resource) AddAction(action *Action) {
if r.Actions == nil {
r.Actions = map[HTTPMethod]*Action{}
}
r.Actions[action.Method] = action
}
func (r *Resource) FindAction(httpMethod string) *Action {
method := HTTPMethod(httpMethod)
return r.Actions[method]
}
func (r *Resource) Render() string {
return render(resourceTmpl, r)
}