123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- package callbacks
- import (
- "reflect"
- "strings"
- "gorm.io/gorm"
- "gorm.io/gorm/clause"
- "gorm.io/gorm/schema"
- )
- func BeforeDelete(db *gorm.DB) {
- if db.Error == nil && db.Statement.Schema != nil && !db.Statement.SkipHooks && db.Statement.Schema.BeforeDelete {
- callMethod(db, func(value interface{}, tx *gorm.DB) bool {
- if i, ok := value.(BeforeDeleteInterface); ok {
- db.AddError(i.BeforeDelete(tx))
- return true
- }
- return false
- })
- }
- }
- func DeleteBeforeAssociations(db *gorm.DB) {
- if db.Error == nil && db.Statement.Schema != nil {
- selectColumns, restricted := db.Statement.SelectAndOmitColumns(true, false)
- if restricted {
- for column, v := range selectColumns {
- if v {
- if rel, ok := db.Statement.Schema.Relationships.Relations[column]; ok {
- switch rel.Type {
- case schema.HasOne, schema.HasMany:
- queryConds := rel.ToQueryConditions(db.Statement.ReflectValue)
- modelValue := reflect.New(rel.FieldSchema.ModelType).Interface()
- tx := db.Session(&gorm.Session{NewDB: true}).Model(modelValue)
- withoutConditions := false
- if len(db.Statement.Selects) > 0 {
- var selects []string
- for _, s := range db.Statement.Selects {
- if s == clause.Associations {
- selects = append(selects, s)
- } else if strings.HasPrefix(s, column+".") {
- selects = append(selects, strings.TrimPrefix(s, column+"."))
- }
- }
- if len(selects) > 0 {
- tx = tx.Select(selects)
- }
- }
- for _, cond := range queryConds {
- if c, ok := cond.(clause.IN); ok && len(c.Values) == 0 {
- withoutConditions = true
- break
- }
- }
- if !withoutConditions {
- if db.AddError(tx.Clauses(clause.Where{Exprs: queryConds}).Delete(modelValue).Error) != nil {
- return
- }
- }
- case schema.Many2Many:
- var (
- queryConds []clause.Expression
- foreignFields []*schema.Field
- relForeignKeys []string
- modelValue = reflect.New(rel.JoinTable.ModelType).Interface()
- table = rel.JoinTable.Table
- tx = db.Session(&gorm.Session{NewDB: true}).Model(modelValue).Table(table)
- )
- for _, ref := range rel.References {
- if ref.OwnPrimaryKey {
- foreignFields = append(foreignFields, ref.PrimaryKey)
- relForeignKeys = append(relForeignKeys, ref.ForeignKey.DBName)
- } else if ref.PrimaryValue != "" {
- queryConds = append(queryConds, clause.Eq{
- Column: clause.Column{Table: rel.JoinTable.Table, Name: ref.ForeignKey.DBName},
- Value: ref.PrimaryValue,
- })
- }
- }
- _, foreignValues := schema.GetIdentityFieldValuesMap(db.Statement.ReflectValue, foreignFields)
- column, values := schema.ToQueryValues(table, relForeignKeys, foreignValues)
- queryConds = append(queryConds, clause.IN{Column: column, Values: values})
- if db.AddError(tx.Clauses(clause.Where{Exprs: queryConds}).Delete(modelValue).Error) != nil {
- return
- }
- }
- }
- }
- }
- }
- }
- }
- func Delete(db *gorm.DB) {
- if db.Error == nil {
- if db.Statement.Schema != nil && !db.Statement.Unscoped {
- for _, c := range db.Statement.Schema.DeleteClauses {
- db.Statement.AddClause(c)
- }
- }
- if db.Statement.SQL.String() == "" {
- db.Statement.SQL.Grow(100)
- db.Statement.AddClauseIfNotExists(clause.Delete{})
- if db.Statement.Schema != nil {
- _, queryValues := schema.GetIdentityFieldValuesMap(db.Statement.ReflectValue, db.Statement.Schema.PrimaryFields)
- column, values := schema.ToQueryValues(db.Statement.Table, db.Statement.Schema.PrimaryFieldDBNames, queryValues)
- if len(values) > 0 {
- db.Statement.AddClause(clause.Where{Exprs: []clause.Expression{clause.IN{Column: column, Values: values}}})
- }
- if db.Statement.ReflectValue.CanAddr() && db.Statement.Dest != db.Statement.Model && db.Statement.Model != nil {
- _, queryValues = schema.GetIdentityFieldValuesMap(reflect.ValueOf(db.Statement.Model), db.Statement.Schema.PrimaryFields)
- column, values = schema.ToQueryValues(db.Statement.Table, db.Statement.Schema.PrimaryFieldDBNames, queryValues)
- if len(values) > 0 {
- db.Statement.AddClause(clause.Where{Exprs: []clause.Expression{clause.IN{Column: column, Values: values}}})
- }
- }
- }
- db.Statement.AddClauseIfNotExists(clause.From{})
- db.Statement.Build("DELETE", "FROM", "WHERE")
- }
- if _, ok := db.Statement.Clauses["WHERE"]; !db.AllowGlobalUpdate && !ok && db.Error == nil {
- db.AddError(gorm.ErrMissingWhereClause)
- return
- }
- if !db.DryRun && db.Error == nil {
- result, err := db.Statement.ConnPool.ExecContext(db.Statement.Context, db.Statement.SQL.String(), db.Statement.Vars...)
- if err == nil {
- db.RowsAffected, _ = result.RowsAffected()
- } else {
- db.AddError(err)
- }
- }
- }
- }
- func AfterDelete(db *gorm.DB) {
- if db.Error == nil && db.Statement.Schema != nil && !db.Statement.SkipHooks && db.Statement.Schema.AfterDelete {
- callMethod(db, func(value interface{}, tx *gorm.DB) bool {
- if i, ok := value.(AfterDeleteInterface); ok {
- db.AddError(i.AfterDelete(tx))
- return true
- }
- return false
- })
- }
- }
|