2020-02-02 14:32:27 +03:00
|
|
|
package callbacks
|
|
|
|
|
2020-02-23 16:22:35 +03:00
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
|
2020-06-02 04:16:07 +03:00
|
|
|
"gorm.io/gorm"
|
|
|
|
"gorm.io/gorm/clause"
|
|
|
|
"gorm.io/gorm/schema"
|
2020-02-23 16:22:35 +03:00
|
|
|
)
|
2020-02-02 14:32:27 +03:00
|
|
|
|
|
|
|
func BeforeDelete(db *gorm.DB) {
|
2020-05-31 18:55:56 +03:00
|
|
|
if db.Error == nil && db.Statement.Schema != nil && db.Statement.Schema.BeforeDelete {
|
2020-06-05 16:23:20 +03:00
|
|
|
callMethod(db, func(value interface{}, tx *gorm.DB) bool {
|
|
|
|
if i, ok := value.(gorm.BeforeDeleteInterface); ok {
|
|
|
|
db.AddError(i.BeforeDelete(tx))
|
|
|
|
return true
|
2020-02-23 16:22:35 +03:00
|
|
|
}
|
|
|
|
|
2020-06-05 16:23:20 +03:00
|
|
|
return false
|
|
|
|
})
|
2020-02-23 16:22:35 +03:00
|
|
|
}
|
2020-02-02 14:32:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func Delete(db *gorm.DB) {
|
2020-05-31 18:55:56 +03:00
|
|
|
if db.Error == nil {
|
|
|
|
if db.Statement.Schema != nil && !db.Statement.Unscoped {
|
|
|
|
for _, c := range db.Statement.Schema.DeleteClauses {
|
|
|
|
db.Statement.AddClause(c)
|
|
|
|
}
|
2020-05-29 02:35:45 +03:00
|
|
|
}
|
|
|
|
|
2020-05-31 18:55:56 +03:00
|
|
|
if db.Statement.SQL.String() == "" {
|
2020-06-08 15:23:47 +03:00
|
|
|
db.Statement.SQL.Grow(100)
|
2020-05-31 18:55:56 +03:00
|
|
|
db.Statement.AddClauseIfNotExists(clause.Delete{})
|
2020-03-08 09:51:52 +03:00
|
|
|
|
2020-05-31 18:55:56 +03:00
|
|
|
if db.Statement.Schema != nil {
|
|
|
|
_, queryValues := schema.GetIdentityFieldValuesMap(db.Statement.ReflectValue, db.Statement.Schema.PrimaryFields)
|
2020-07-10 08:08:15 +03:00
|
|
|
column, values := schema.ToQueryValues(db.Statement.Table, db.Statement.Schema.PrimaryFieldDBNames, queryValues)
|
2020-05-25 19:16:41 +03:00
|
|
|
|
|
|
|
if len(values) > 0 {
|
2020-05-29 02:35:45 +03:00
|
|
|
db.Statement.AddClause(clause.Where{Exprs: []clause.Expression{clause.IN{Column: column, Values: values}}})
|
2020-03-08 09:51:52 +03:00
|
|
|
}
|
2020-05-31 18:55:56 +03:00
|
|
|
|
2020-08-25 12:27:28 +03:00
|
|
|
if db.Statement.ReflectValue.CanAddr() && db.Statement.Dest != db.Statement.Model && db.Statement.Model != nil {
|
2020-05-31 18:55:56 +03:00
|
|
|
_, queryValues = schema.GetIdentityFieldValuesMap(reflect.ValueOf(db.Statement.Model), db.Statement.Schema.PrimaryFields)
|
2020-07-10 08:08:15 +03:00
|
|
|
column, values = schema.ToQueryValues(db.Statement.Table, db.Statement.Schema.PrimaryFieldDBNames, queryValues)
|
2020-05-31 18:55:56 +03:00
|
|
|
|
|
|
|
if len(values) > 0 {
|
|
|
|
db.Statement.AddClause(clause.Where{Exprs: []clause.Expression{clause.IN{Column: column, Values: values}}})
|
|
|
|
}
|
|
|
|
}
|
2020-03-08 09:51:52 +03:00
|
|
|
}
|
|
|
|
|
2020-05-31 18:55:56 +03:00
|
|
|
db.Statement.AddClauseIfNotExists(clause.From{})
|
|
|
|
db.Statement.Build("DELETE", "FROM", "WHERE")
|
|
|
|
}
|
2020-03-08 09:51:52 +03:00
|
|
|
|
2020-08-25 12:27:28 +03:00
|
|
|
if _, ok := db.Statement.Clauses["WHERE"]; !db.AllowGlobalUpdate && !ok {
|
|
|
|
db.AddError(gorm.ErrMissingWhereClause)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-07-24 03:32:50 +03:00
|
|
|
if !db.DryRun && db.Error == nil {
|
2020-06-01 16:26:23 +03:00
|
|
|
result, err := db.Statement.ConnPool.ExecContext(db.Statement.Context, db.Statement.SQL.String(), db.Statement.Vars...)
|
2020-03-08 09:51:52 +03:00
|
|
|
|
2020-06-01 16:26:23 +03:00
|
|
|
if err == nil {
|
|
|
|
db.RowsAffected, _ = result.RowsAffected()
|
|
|
|
} else {
|
|
|
|
db.AddError(err)
|
|
|
|
}
|
2020-05-31 18:55:56 +03:00
|
|
|
}
|
2020-03-08 09:51:52 +03:00
|
|
|
}
|
2020-02-02 14:32:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func AfterDelete(db *gorm.DB) {
|
2020-05-31 18:55:56 +03:00
|
|
|
if db.Error == nil && db.Statement.Schema != nil && db.Statement.Schema.AfterDelete {
|
2020-06-05 16:23:20 +03:00
|
|
|
callMethod(db, func(value interface{}, tx *gorm.DB) bool {
|
|
|
|
if i, ok := value.(gorm.AfterDeleteInterface); ok {
|
|
|
|
db.AddError(i.AfterDelete(tx))
|
|
|
|
return true
|
2020-02-23 16:22:35 +03:00
|
|
|
}
|
|
|
|
return false
|
2020-06-05 16:23:20 +03:00
|
|
|
})
|
2020-02-23 16:22:35 +03:00
|
|
|
}
|
2020-02-02 14:32:27 +03:00
|
|
|
}
|