mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-04 20:57:38 +08:00
55 lines
1.2 KiB
Go
55 lines
1.2 KiB
Go
package dao
|
|
|
|
import (
|
|
"github.com/jinzhu/gorm"
|
|
"github.com/goodrain/rainbond/db/model"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type AppDaoImpl struct {
|
|
DB *gorm.DB
|
|
}
|
|
|
|
func (a *AppDaoImpl) AddModel(mo model.Interface) error {
|
|
app, ok := mo.(*model.AppStatus)
|
|
if !ok {
|
|
return errors.New("Failed to convert interface to AppStatus")
|
|
}
|
|
|
|
var old model.AppStatus
|
|
if ok := a.DB.Where("event_id = ?", app.EventID).Find(&old).RecordNotFound(); ok {
|
|
if err := a.DB.Create(app).Error; err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (a *AppDaoImpl) UpdateModel(mo model.Interface) error {
|
|
app, ok := mo.(*model.AppStatus)
|
|
if !ok {
|
|
return errors.New("Failed to convert interface to AppStatus")
|
|
}
|
|
|
|
return a.DB.Table(app.TableName()).
|
|
Where("event_id = ?", app.EventID).
|
|
Update(app).Error
|
|
}
|
|
|
|
func (a *AppDaoImpl) DeleteModelByEventId(eventID string) error {
|
|
var app model.AppStatus
|
|
if ok := a.DB.Where("event_id = ?", eventID).Find(&app).RecordNotFound(); ok {
|
|
return nil
|
|
}
|
|
|
|
return a.DB.Where("event_id = ?", eventID).Delete(&app).Error
|
|
}
|
|
|
|
func (a *AppDaoImpl) GetByEventId(eventID string) (*model.AppStatus, error) {
|
|
var app model.AppStatus
|
|
err := a.DB.Where("event_id = ?", eventID).First(&app).Error
|
|
|
|
return &app, err
|
|
}
|