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 {
|
2015-02-24 11:28:15 +03:00
|
|
|
scope.CallMethodWithErrorCheck("BeforeSave")
|
|
|
|
scope.CallMethodWithErrorCheck("BeforeUpdate")
|
2014-01-28 04:27:12 +04:00
|
|
|
}
|
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
|
|
|
|
2015-02-17 17:55:14 +03:00
|
|
|
if updateAttrs, ok := scope.InstanceGet("gorm:update_attrs"); ok {
|
2014-01-27 18:36:08 +04:00
|
|
|
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 {
|
2015-03-12 13:30:59 +03:00
|
|
|
fields := scope.Fields()
|
|
|
|
for _, field := range fields {
|
|
|
|
if scope.changeableField(field) && !field.IsPrimaryKey && field.IsNormal {
|
2015-02-18 05:19:34 +03:00
|
|
|
if !field.IsBlank || !field.HasDefaultValue {
|
2015-02-17 17:55:14 +03:00
|
|
|
sqls = append(sqls, fmt.Sprintf("%v = %v", scope.Quote(field.DBName), scope.AddToVars(field.Field.Interface())))
|
2014-11-15 20:32:35 +03:00
|
|
|
}
|
2015-03-12 13:30:59 +03:00
|
|
|
} else if relationship := field.Relationship; relationship != nil && relationship.Kind == "belongs_to" {
|
|
|
|
if relationField := fields[relationship.ForeignDBName]; !scope.changeableField(relationField) {
|
|
|
|
if !relationField.IsBlank {
|
|
|
|
sqls = append(sqls, fmt.Sprintf("%v = %v", scope.Quote(relationField.DBName), scope.AddToVars(relationField.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) {
|
2015-02-17 17:55:14 +03:00
|
|
|
if _, ok := scope.Get("gorm:update_column"); !ok {
|
2015-02-24 11:28:15 +03:00
|
|
|
scope.CallMethodWithErrorCheck("AfterUpdate")
|
|
|
|
scope.CallMethodWithErrorCheck("AfterSave")
|
2014-01-28 04:27:12 +04:00
|
|
|
}
|
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
|
|
|
}
|