gorm/callback_update.go

91 lines
2.5 KiB
Go
Raw Normal View History

2014-01-26 08:46:04 +04:00
package gorm
2014-01-27 07:06:13 +04:00
import (
"fmt"
"strings"
"time"
)
2014-01-27 18:36:08 +04:00
func AssignUpdateAttributes(scope *Scope) {
if attrs, ok := scope.Get("gorm:update_interface"); ok {
if maps := convertInterfaceToMap(attrs); len(maps) > 0 {
protected, ok := scope.Get("gorm:ignore_protected_attrs")
_, updateColumn := scope.Get("gorm:update_column")
2014-01-27 18:36:08 +04:00
updateAttrs, hasUpdate := scope.updatedAttrsWithValues(maps, ok && protected.(bool))
if updateColumn {
scope.Set("gorm:update_attrs", maps)
} else if len(updateAttrs) > 0 {
2014-01-27 18:36:08 +04:00
scope.Set("gorm:update_attrs", updateAttrs)
} else if !hasUpdate {
scope.SkipLeft()
return
}
}
}
}
2014-01-26 08:46:04 +04:00
func BeforeUpdate(scope *Scope) {
_, ok := scope.Get("gorm:update_column")
if !ok {
scope.CallMethod("BeforeSave")
scope.CallMethod("BeforeUpdate")
}
2014-01-26 08:46:04 +04:00
}
2014-01-27 07:06:13 +04:00
func UpdateTimeStampWhenUpdate(scope *Scope) {
_, ok := scope.Get("gorm:update_column")
if !ok {
2014-01-27 07:06:13 +04:00
scope.SetColumn("UpdatedAt", time.Now())
}
}
2014-01-26 08:46:04 +04:00
func Update(scope *Scope) {
2014-01-27 18:36:08 +04:00
defer scope.Trace(time.Now())
2014-01-26 08:46:04 +04:00
if !scope.HasError() {
2014-01-27 07:06:13 +04:00
var sqls []string
2014-01-27 18:36:08 +04:00
updateAttrs, ok := scope.Get("gorm:update_attrs")
if ok {
for key, value := range updateAttrs.(map[string]interface{}) {
sqls = append(sqls, fmt.Sprintf("%v = %v", scope.quote(key), scope.AddToVars(value)))
}
} else {
for _, field := range scope.Fields() {
if field.DBName != scope.PrimaryKey() && len(field.SqlTag) > 0 && !field.IsIgnored {
sqls = append(sqls, fmt.Sprintf("%v = %v", scope.quote(field.DBName), scope.AddToVars(field.Value)))
}
2014-01-26 08:46:04 +04:00
}
}
2014-01-27 07:06:13 +04:00
scope.Raw(fmt.Sprintf(
"UPDATE %v SET %v %v",
scope.TableName(),
strings.Join(sqls, ", "),
scope.CombinedConditionSql(),
))
scope.Exec()
2014-01-26 08:46:04 +04:00
}
}
func AfterUpdate(scope *Scope) {
_, ok := scope.Get("gorm:update_column")
if !ok {
scope.CallMethod("AfterUpdate")
scope.CallMethod("AfterSave")
}
2014-01-26 08:46:04 +04:00
}
func init() {
2014-01-27 18:36:08 +04:00
DefaultCallback.Update().Register("assign_update_attributes", AssignUpdateAttributes)
2014-01-27 07:06:13 +04:00
DefaultCallback.Update().Register("begin_transaction", BeginTransaction)
2014-01-26 08:46:04 +04:00
DefaultCallback.Update().Register("before_update", BeforeUpdate)
DefaultCallback.Update().Register("save_before_associations", SaveBeforeAssociations)
2014-01-27 07:06:13 +04:00
DefaultCallback.Update().Register("update_time_stamp_when_update", UpdateTimeStampWhenUpdate)
2014-01-26 08:46:04 +04:00
DefaultCallback.Update().Register("update", Update)
DefaultCallback.Update().Register("save_after_associations", SaveAfterAssociations)
DefaultCallback.Update().Register("after_update", AfterUpdate)
2014-01-27 07:06:13 +04:00
DefaultCallback.Update().Register("commit_or_rollback_transaction", CommitOrRollbackTransaction)
2014-01-26 08:46:04 +04:00
}