-
Notifications
You must be signed in to change notification settings - Fork 0
/
gen.go
159 lines (132 loc) · 3.25 KB
/
gen.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
// +build ignore
package main
import (
"bytes"
"go/format"
"os"
"strings"
"text/template"
)
type names struct {
Name string
NameUpper string
Plural string
PluralUpper string
}
var code = template.Must(template.New("code").Parse(`package atomx
import (
"encoding/json"
"strconv"
"strings"
)
func (this {{.NameUpper}}) path() string {
if this.ID > 0 {
return "{{.Name}}/" + strconv.FormatInt(this.ID, 10)
} else {
return "{{.Name}}"
}
}
type {{.Name}}Response struct {
Success bool "json:\"success\""
Error string "json:\"error\""
{{.NameUpper}} *{{.NameUpper}} "json:\"{{.Name}}\""
}
func (this {{.Name}}Response) err() error {
if !this.Success {
return &ApiError{Message: this.Error}
}
return nil
}
func (this *{{.NameUpper}}) response() response {
return &{{.Name}}Response{
{{.NameUpper}}: this,
}
}
type {{.PluralUpper}}List struct {
List
{{.PluralUpper}} []{{.NameUpper}} "json:\"{{.Plural}}\""
}
func (this {{.PluralUpper}}List) path() string {
return "{{.Plural}}?" + this.str()
}
type {{.PluralUpper}} []{{.NameUpper}}
func (this {{.PluralUpper}}) MarshalJSON() ([]byte, error) {
var ids []string
for _, x := range this {
ids = append(ids, strconv.FormatInt(x.ID, 10))
}
return []byte("[" + strings.Join(ids, ",") + "]"), nil
}
func (this {{.PluralUpper}}) Has(id int64) bool {
for _, x := range this {
if x.ID == id {
return true
}
}
return false
}
func (this *{{.PluralUpper}}) Add(y {{.NameUpper}}) {
*this = append(*this, y)
}
func (this *{{.PluralUpper}}) Remove(id int64) {
for i, x := range *this {
if x.ID == id {
*this = append((*this)[:i], (*this)[i+1:]...)
return
}
}
}
type {{.NameUpper}}Relation struct {
{{.NameUpper}}
}
func (this *{{.NameUpper}}Relation) MarshalJSON() ([]byte, error) {
return []byte(strconv.FormatInt(this.ID, 10)), nil
}
func (this *{{.NameUpper}}Relation) UnmarshalJSON(data []byte) error {
if data[0] == '{' {
return json.Unmarshal(data, &this.{{.NameUpper}})
} else {
return json.Unmarshal(data, &this.ID)
}
}
`))
func title(name string) string {
return strings.Replace(strings.Title(strings.Replace(name, "_", " ", -1)), " ", "", -1)
}
func main() {
for name, plural := range map[string]string{
"advertiser": "advertisers",
"creative": "creatives",
"creative_attribute": "creative_attributes",
"creative_ban_reason": "creative_ban_reasons",
"domain": "domains",
"domain_attribute": "domain_attributes",
"network": "networks",
"placement": "placements",
"publisher": "publishers",
"seller_profile": "seller_profiles",
"site": "sites",
"size": "sizes",
"ssp": "ssps",
"user": "users",
} {
var buffer bytes.Buffer
if err := code.Execute(&buffer, names{
Name: name,
NameUpper: title(name),
Plural: plural,
PluralUpper: title(plural),
}); err != nil {
panic(err)
}
if formatted, err := format.Source(buffer.Bytes()); err != nil {
panic(err)
} else if f, err := os.Create(name + "_gen.go"); err != nil {
panic(err)
} else if _, err := f.Write(formatted); err != nil {
panic(err)
} else if err := f.Close(); err != nil {
panic(err)
}
}
}