-
Notifications
You must be signed in to change notification settings - Fork 0
/
domain_gen.go
95 lines (76 loc) · 1.58 KB
/
domain_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 Domain) path() string {
if this.ID > 0 {
return "domain/" + strconv.FormatInt(this.ID, 10)
} else {
return "domain"
}
}
type domainResponse struct {
Success bool "json:\"success\""
Error string "json:\"error\""
Domain *Domain "json:\"domain\""
}
func (this domainResponse) err() error {
if !this.Success {
return &ApiError{Message: this.Error}
}
return nil
}
func (this *Domain) response() response {
return &domainResponse{
Domain: this,
}
}
type DomainsList struct {
List
Domains []Domain "json:\"domains\""
}
func (this DomainsList) path() string {
return "domains?" + this.str()
}
type Domains []Domain
func (this Domains) 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 Domains) Has(id int64) bool {
for _, x := range this {
if x.ID == id {
return true
}
}
return false
}
func (this *Domains) Add(y Domain) {
*this = append(*this, y)
}
func (this *Domains) Remove(id int64) {
for i, x := range *this {
if x.ID == id {
*this = append((*this)[:i], (*this)[i+1:]...)
return
}
}
}
type DomainRelation struct {
Domain
}
func (this *DomainRelation) MarshalJSON() ([]byte, error) {
return []byte(strconv.FormatInt(this.ID, 10)), nil
}
func (this *DomainRelation) UnmarshalJSON(data []byte) error {
if data[0] == '{' {
return json.Unmarshal(data, &this.Domain)
} else {
return json.Unmarshal(data, &this.ID)
}
}