-
Notifications
You must be signed in to change notification settings - Fork 0
/
publisher_gen.go
95 lines (76 loc) · 1.67 KB
/
publisher_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
package atomx
import (
"encoding/json"
"strconv"
"strings"
)
func (this Publisher) path() string {
if this.ID > 0 {
return "publisher/" + strconv.FormatInt(this.ID, 10)
} else {
return "publisher"
}
}
type publisherResponse struct {
Success bool "json:\"success\""
Error string "json:\"error\""
Publisher *Publisher "json:\"publisher\""
}
func (this publisherResponse) err() error {
if !this.Success {
return &ApiError{Message: this.Error}
}
return nil
}
func (this *Publisher) response() response {
return &publisherResponse{
Publisher: this,
}
}
type PublishersList struct {
List
Publishers []Publisher "json:\"publishers\""
}
func (this PublishersList) path() string {
return "publishers?" + this.str()
}
type Publishers []Publisher
func (this Publishers) 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 Publishers) Has(id int64) bool {
for _, x := range this {
if x.ID == id {
return true
}
}
return false
}
func (this *Publishers) Add(y Publisher) {
*this = append(*this, y)
}
func (this *Publishers) Remove(id int64) {
for i, x := range *this {
if x.ID == id {
*this = append((*this)[:i], (*this)[i+1:]...)
return
}
}
}
type PublisherRelation struct {
Publisher
}
func (this *PublisherRelation) MarshalJSON() ([]byte, error) {
return []byte(strconv.FormatInt(this.ID, 10)), nil
}
func (this *PublisherRelation) UnmarshalJSON(data []byte) error {
if data[0] == '{' {
return json.Unmarshal(data, &this.Publisher)
} else {
return json.Unmarshal(data, &this.ID)
}
}