-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomment.go
123 lines (90 loc) · 2.41 KB
/
comment.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
package gaia
import (
"fmt"
"time"
"github.com/globalsign/mgo/bson"
"github.com/mitchellh/copystructure"
"go.aporeto.io/elemental"
)
// Comment represents the model of a comment
type Comment struct {
// The claims of the author.
Claims []string `json:"claims" msgpack:"claims" bson:"claims" mapstructure:"claims,omitempty"`
// The content of the comment.
Content string `json:"content" msgpack:"content" bson:"content" mapstructure:"content,omitempty"`
// The date of the comment.
Date time.Time `json:"date" msgpack:"date" bson:"date" mapstructure:"date,omitempty"`
ModelVersion int `json:"-" msgpack:"-" bson:"_modelversion"`
}
// NewComment returns a new *Comment
func NewComment() *Comment {
return &Comment{
ModelVersion: 1,
Claims: []string{},
}
}
// GetBSON implements the bson marshaling interface.
// This is used to transparently convert ID to MongoDBID as ObectID.
func (o *Comment) GetBSON() (interface{}, error) {
if o == nil {
return nil, nil
}
s := &mongoAttributesComment{}
s.Claims = o.Claims
s.Content = o.Content
s.Date = o.Date
return s, nil
}
// SetBSON implements the bson marshaling interface.
// This is used to transparently convert ID to MongoDBID as ObectID.
func (o *Comment) SetBSON(raw bson.Raw) error {
if o == nil {
return nil
}
s := &mongoAttributesComment{}
if err := raw.Unmarshal(s); err != nil {
return err
}
o.Claims = s.Claims
o.Content = s.Content
o.Date = s.Date
return nil
}
// BleveType implements the bleve.Classifier Interface.
func (o *Comment) BleveType() string {
return "comment"
}
// DeepCopy returns a deep copy if the Comment.
func (o *Comment) DeepCopy() *Comment {
if o == nil {
return nil
}
out := &Comment{}
o.DeepCopyInto(out)
return out
}
// DeepCopyInto copies the receiver into the given *Comment.
func (o *Comment) DeepCopyInto(out *Comment) {
target, err := copystructure.Copy(o)
if err != nil {
panic(fmt.Sprintf("Unable to deepcopy Comment: %s", err))
}
*out = *target.(*Comment)
}
// Validate valides the current information stored into the structure.
func (o *Comment) Validate() error {
errors := elemental.Errors{}
requiredErrors := elemental.Errors{}
if len(requiredErrors) > 0 {
return requiredErrors
}
if len(errors) > 0 {
return errors
}
return nil
}
type mongoAttributesComment struct {
Claims []string `bson:"claims"`
Content string `bson:"content"`
Date time.Time `bson:"date"`
}