-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_base.go
91 lines (69 loc) · 1.82 KB
/
model_base.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
package mongoutils
import (
"context"
"time"
"go.mongodb.org/mongo-driver/bson/primitive"
"go.mongodb.org/mongo-driver/mongo"
)
// BaseModel implementation with id and timestamp
type BaseModel struct {
ID primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
CreatedAt time.Time `bson:"created_at" json:"created_at"`
UpdatedAt *time.Time `bson:"updated_at" json:"updated_at"`
}
func (BaseModel) TypeName() string {
return "unspecified"
}
func (BaseModel) Collection(db *mongo.Database) *mongo.Collection {
panic("please override collection method")
}
func (BaseModel) Index(db *mongo.Database) error {
return nil
}
func (BaseModel) Seed(db *mongo.Database) error {
return nil
}
func (BaseModel) Pipeline() MongoPipeline {
return NewPipe()
}
func (model *BaseModel) FillCreatedAt() {
model.CreatedAt = time.Now()
}
func (model *BaseModel) FillUpdatedAt() {
now := time.Now()
model.UpdatedAt = &now
}
func (model *BaseModel) NewId() {
model.ID = primitive.NewObjectID()
}
func (model *BaseModel) SetID(id primitive.ObjectID) {
model.ID = id
}
func (model BaseModel) GetID() primitive.ObjectID {
return model.ID
}
func (BaseModel) IsEditable() bool {
return true
}
func (BaseModel) IsDeletable() bool {
return false
}
func (*BaseModel) Cleanup() {}
func (*BaseModel) OnInsert(ctx context.Context, opt ...MongoOption) error {
return nil
}
func (*BaseModel) OnUpdate(ctx context.Context, opt ...MongoOption) error {
return nil
}
func (*BaseModel) OnDelete(ctx context.Context, opt ...MongoOption) error {
return nil
}
func (BaseModel) OnInserted(ctx context.Context, opt ...MongoOption) error {
return nil
}
func (BaseModel) OnUpdated(old any, ctx context.Context, opt ...MongoOption) error {
return nil
}
func (BaseModel) OnDeleted(ctx context.Context, opt ...MongoOption) error {
return nil
}