2014-01-26 08:46:04 +04:00
|
|
|
package gorm
|
|
|
|
|
2014-01-27 07:06:13 +04:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2014-01-27 18:36:08 +04:00
|
|
|
func AssignUpdateAttributes(scope *Scope) {
|
2014-08-20 13:05:02 +04:00
|
|
|
if attrs, ok := scope.InstanceGet("gorm:update_interface"); ok {
|
2014-01-27 18:36:08 +04:00
|
|
|
if maps := convertInterfaceToMap(attrs); len(maps) > 0 {
|
|
|
|
protected, ok := scope.Get("gorm:ignore_protected_attrs")
|
2014-01-28 04:27:12 +04:00
|
|
|
_, updateColumn := scope.Get("gorm:update_column")
|
2014-01-27 18:36:08 +04:00
|
|
|
updateAttrs, hasUpdate := scope.updatedAttrsWithValues(maps, ok && protected.(bool))
|
2014-01-28 04:27:12 +04:00
|
|
|
|
|
|
|
if updateColumn {
|
2014-08-20 13:05:02 +04:00
|
|
|
scope.InstanceSet("gorm:update_attrs", maps)
|
2014-01-28 04:27:12 +04:00
|
|
|
} else if len(updateAttrs) > 0 {
|
2014-08-20 13:05:02 +04:00
|
|
|
scope.InstanceSet("gorm:update_attrs", updateAttrs)
|
2014-01-27 18:36:08 +04:00
|
|
|
} else if !hasUpdate {
|
|
|
|
scope.SkipLeft()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-26 08:46:04 +04:00
|
|
|
func BeforeUpdate(scope *Scope) {
|
2014-08-30 18:39:28 +04:00
|
|
|
if _, ok := scope.Get("gorm:update_column"); !ok {
|
2014-01-28 04:27:12 +04:00
|
|
|
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) {
|
2014-08-30 18:39:28 +04:00
|
|
|
if _, ok := scope.Get("gorm:update_column"); !ok {
|
2014-08-23 12:00:04 +04:00
|
|
|
scope.SetColumn("UpdatedAt", NowFunc())
|
2014-01-27 07:06:13 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-26 08:46:04 +04:00
|
|
|
func Update(scope *Scope) {
|
|
|
|
if !scope.HasError() {
|
2014-01-27 07:06:13 +04:00
|
|
|
var sqls []string
|
2014-01-27 18:36:08 +04:00
|
|
|
|
2014-08-20 13:05:02 +04:00
|
|
|
updateAttrs, ok := scope.InstanceGet("gorm:update_attrs")
|
2014-01-27 18:36:08 +04:00
|
|
|
if ok {
|
|
|
|
for key, value := range updateAttrs.(map[string]interface{}) {
|
2014-01-28 12:22:41 +04:00
|
|
|
sqls = append(sqls, fmt.Sprintf("%v = %v", scope.Quote(key), scope.AddToVars(value)))
|
2014-01-27 18:36:08 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for _, field := range scope.Fields() {
|
2014-08-30 18:39:28 +04:00
|
|
|
if !field.IsPrimaryKey && field.IsNormal && !field.IsIgnored {
|
2014-11-17 12:38:32 +03:00
|
|
|
if field.DefaultValue != nil && field.IsBlank {
|
2014-11-15 20:32:35 +03:00
|
|
|
continue
|
|
|
|
}
|
2014-09-02 15:03:01 +04:00
|
|
|
sqls = append(sqls, fmt.Sprintf("%v = %v", scope.Quote(field.DBName), scope.AddToVars(field.Field.Interface())))
|
2014-01-27 18:36:08 +04:00
|
|
|
}
|
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",
|
2014-06-03 13:15:05 +04:00
|
|
|
scope.QuotedTableName(),
|
2014-01-27 07:06:13 +04:00
|
|
|
strings.Join(sqls, ", "),
|
|
|
|
scope.CombinedConditionSql(),
|
|
|
|
))
|
|
|
|
scope.Exec()
|
2014-01-26 08:46:04 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func AfterUpdate(scope *Scope) {
|
2014-01-28 04:27:12 +04:00
|
|
|
_, 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-29 06:28:20 +04:00
|
|
|
DefaultCallback.Update().Register("gorm:assign_update_attributes", AssignUpdateAttributes)
|
|
|
|
DefaultCallback.Update().Register("gorm:begin_transaction", BeginTransaction)
|
|
|
|
DefaultCallback.Update().Register("gorm:before_update", BeforeUpdate)
|
|
|
|
DefaultCallback.Update().Register("gorm:save_before_associations", SaveBeforeAssociations)
|
|
|
|
DefaultCallback.Update().Register("gorm:update_time_stamp_when_update", UpdateTimeStampWhenUpdate)
|
|
|
|
DefaultCallback.Update().Register("gorm:update", Update)
|
|
|
|
DefaultCallback.Update().Register("gorm:save_after_associations", SaveAfterAssociations)
|
|
|
|
DefaultCallback.Update().Register("gorm:after_update", AfterUpdate)
|
|
|
|
DefaultCallback.Update().Register("gorm:commit_or_rollback_transaction", CommitOrRollbackTransaction)
|
2014-01-26 08:46:04 +04:00
|
|
|
}
|