-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.go
94 lines (78 loc) · 2.38 KB
/
database.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
package gopeach
import (
"gorm.io/gorm"
)
// Database struct
type Database struct {
conn *gorm.DB
dialector gorm.Dialector
}
// NewDatabase creates a new database connection
func NewDatabase(dialector gorm.Dialector) (*Database, error) {
db := &Database{
dialector: dialector,
}
err := db.Init()
return db, err
}
// Conn returns the database connection
func (d *Database) Conn() *gorm.DB {
return d.conn
}
// Init initializes the database connection
func (d *Database) Init() error {
conn, err := gorm.Open(d.dialector, &gorm.Config{})
if err != nil {
return err
}
d.conn = conn
return nil
}
// Close closes the database connection
func (d *Database) Close() error {
db, err := d.conn.DB()
if err != nil {
return err
}
return db.Close()
}
// Migrate migrates the database
func (d *Database) Migrate(i ...interface{}) error {
return d.conn.AutoMigrate(i...)
}
// Save saves the model
func (d *Database) Save(i interface{}) error {
return d.conn.Save(i).Error
}
// Delete deletes the model (soft delete: set deleted_at field)
func (d *Database) Delete(i interface{}) error {
return d.conn.Delete(i).Error
}
// Destroy destroys the model (hard delete: delete entry from database)
func (d *Database) Destroy(i interface{}) error {
return d.conn.Unscoped().Delete(i).Error
}
// First finds the first model by custom cudition from the same structure (findOne)
func (d *Database) First(i, c interface{}) error {
return d.conn.First(i, c).Error
}
// FirstByQuery finds the first model by query (findOne)
func (d *Database) FirstByQuery(i interface{}, query interface{}, args ...interface{}) error {
return d.conn.Where(query, args...).First(i).Error
}
// Find finds the models
func (d *Database) Find(i interface{}) error {
return d.conn.Find(i).Error
}
// FindCond finds the models by custom condition from the same structure
func (d *Database) FindCond(i, c interface{}) error {
return d.conn.Find(i, c).Error
}
// FindByQuery finds the model by query
func (d *Database) FindByQuery(i interface{}, query interface{}, args ...interface{}) error {
return d.conn.Where(query, args...).Find(i).Error
}
// DeleteByQuery deletes the model by query
func (d *Database) DeleteByQuery(i interface{}, query interface{}, args ...interface{}) error {
return d.conn.Where(query, args...).Delete(i).Error
}