-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathbase.go
62 lines (51 loc) · 1.03 KB
/
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
package models
import (
"time"
"github.com/google/uuid"
"gorm.io/gorm"
)
type Base struct {
UUID string `gorm:"primary_key" json:"uuid"`
CreatedAt time.Time
UpdatedAt time.Time
}
func (base *Base) BeforeCreate(db *gorm.DB) (err error) {
base.UUID = uuid.NewString()
return
}
func (base *Base) AfterFind(db *gorm.DB) error {
base.CreatedAt = base.CreatedAt.UTC()
base.UpdatedAt = base.UpdatedAt.UTC()
return nil
}
func (base *Base) AfterSave(db *gorm.DB) error {
return base.AfterFind(db)
}
type Error struct {
Message string
Validation bool
}
func (e Error) Error() string {
return e.Message
}
func (in *Base) DeepCopy() *Base {
out := &Base{}
in.DeepCopyInto(out)
return out
}
func (in *Base) DeepCopyInto(out *Base) {
if in == nil || out == nil || in == out {
return
}
out.UUID = in.UUID
out.CreatedAt = in.CreatedAt
out.UpdatedAt = in.UpdatedAt
}
func trimString(str *string, limit int) *string {
if str == nil || len(*str) < limit {
return str
}
error := *str
trimmed := error[0:limit]
return &trimmed
}