This repository was archived by the owner on Jan 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbase.mg.go
186 lines (139 loc) · 3.56 KB
/
base.mg.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
// Code generated by mgen.
// source:
// base.yaml
// DO NOT EDIT
package base
import (
"log"
"time"
mgo "gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
)
//go:generate goimports -w base.mg.go
var (
db *DB
)
type DB struct {
name string
session *mgo.Session
}
func NewDB(name string) *DB {
if db == nil {
db = &DB{
name: name,
}
}
return db
}
func (db *DB) InitDB(session *mgo.Session) {
if session == nil {
log.Fatalf("[FATAL] you must connect database\n")
}
db.session = session
log.Printf("[INFO] %v connection succeeded\n", db.name)
}
func GetSessionAndCollection(collection string) (*mgo.Session, *mgo.Collection) {
s := db.session.Copy()
c := s.DB(db.name).C(collection)
return s, c
}
func GetSessionAndGridFS(prefix string) (*mgo.Session, *mgo.GridFS) {
s := db.session.Copy()
f := s.DB(db.name).GridFS(prefix)
return s, f
}
const (
CollectionUser = "users"
)
type User struct {
ID bson.ObjectId `bson:"_id" json:"_id"`
UserName string `bson:"user_name" json:"user_name,omitempty"`
Email string `bson:"email" json:"email,omitempty"`
Password string `bson:"password" json:"password,omitempty"`
CreatedAt int64 `bson:"created_at" json:"created_at"`
UpdatedAt int64 `bson:"updated_at" json:"updated_at"`
}
func NewUser() *User {
return &User{}
}
func (user *User) Insert() error {
s, c := GetSessionAndCollection(CollectionUser)
defer s.Close()
user.ID = bson.NewObjectId()
user.CreatedAt = time.Now().UTC().Unix()
return c.Insert(user)
}
func UpdateUserByID(id string, user *User) error {
s, c := GetSessionAndCollection(CollectionUser)
defer s.Close()
user.UpdatedAt = time.Now().UTC().Unix()
return c.UpdateId(bson.ObjectIdHex(id), bson.M{
"$set": user,
})
}
func UpdateUser(selector interface{}, user *User) error {
s, c := GetSessionAndCollection(CollectionUser)
defer s.Close()
user.UpdatedAt = time.Now().UTC().Unix()
return c.Update(selector, bson.M{
"$set": user,
})
}
func UpdateUserAll(selector interface{}, user *User) (*mgo.ChangeInfo, error) {
s, c := GetSessionAndCollection(CollectionUser)
defer s.Close()
user.UpdatedAt = time.Now().UTC().Unix()
return c.UpdateAll(selector, bson.M{
"$set": user,
})
}
func FindUserByID(id string) (*User, error) {
s, c := GetSessionAndCollection(CollectionUser)
defer s.Close()
user := new(User)
if bson.IsObjectIdHex(id) {
return user, c.FindId(id).One(user)
}
return user, c.FindId(bson.ObjectIdHex(id)).One(user)
}
func FindUserByQuery(query interface{}) (*User, error) {
s, c := GetSessionAndCollection(CollectionUser)
defer s.Close()
user := new(User)
return user, c.Find(query).One(user)
}
func FindAllUserByQuery(query interface{}) ([]*User, error) {
s, c := GetSessionAndCollection(CollectionUser)
defer s.Close()
user := make([]*User, 0)
return user, c.Find(query).All(&user)
}
func ExistUserByID(id string) (bool, error) {
s, c := GetSessionAndCollection(CollectionUser)
defer s.Close()
user := new(User)
if err := c.FindId(bson.ObjectIdHex(id)).One(user); err != nil {
if err == mgo.ErrNotFound {
return false, nil
}
return false, err
}
return true, nil
}
func ExistUserByQuery(query interface{}) (bool, error) {
s, c := GetSessionAndCollection(CollectionUser)
defer s.Close()
user := new(User)
if err := c.Find(query).One(user); err != nil {
if err == mgo.ErrNotFound {
return false, nil
}
return false, err
}
return true, nil
}
func DeleteUserByID(id string) error {
s, c := GetSessionAndCollection(CollectionUser)
defer s.Close()
return c.RemoveId(bson.ObjectIdHex(id))
}