gorm/association.go

594 lines
22 KiB
Go
Raw Normal View History

2020-01-29 14:22:44 +03:00
package gorm
import (
"fmt"
2020-05-19 21:03:43 +03:00
"reflect"
2020-06-01 17:31:50 +03:00
"strings"
2020-06-02 04:16:07 +03:00
"gorm.io/gorm/clause"
"gorm.io/gorm/schema"
"gorm.io/gorm/utils"
)
2020-01-29 14:22:44 +03:00
// Association Mode contains some helper methods to handle relationship things easily.
type Association struct {
DB *DB
Relationship *schema.Relationship
Unscope bool
Error error
2020-01-29 14:22:44 +03:00
}
2020-02-23 18:28:35 +03:00
func (db *DB) Association(column string) *Association {
association := &Association{DB: db}
2020-05-24 12:24:23 +03:00
table := db.Statement.Table
if err := db.Statement.Parse(db.Statement.Model); err == nil {
2020-05-24 12:24:23 +03:00
db.Statement.Table = table
association.Relationship = db.Statement.Schema.Relationships.Relations[column]
if association.Relationship == nil {
association.Error = fmt.Errorf("%w: %s", ErrUnsupportedRelation, column)
}
2020-05-23 06:57:28 +03:00
db.Statement.ReflectValue = reflect.ValueOf(db.Statement.Model)
for db.Statement.ReflectValue.Kind() == reflect.Ptr {
db.Statement.ReflectValue = db.Statement.ReflectValue.Elem()
}
} else {
association.Error = err
}
return association
}
func (association *Association) Unscoped() *Association {
return &Association{
DB: association.DB,
Relationship: association.Relationship,
Error: association.Error,
Unscope: true,
}
}
func (association *Association) Find(out interface{}, conds ...interface{}) error {
if association.Error == nil {
2020-08-28 07:25:25 +03:00
association.Error = association.buildCondition().Find(out, conds...).Error
}
return association.Error
}
func (association *Association) Append(values ...interface{}) error {
2020-05-20 18:44:50 +03:00
if association.Error == nil {
switch association.Relationship.Type {
case schema.HasOne, schema.BelongsTo:
if len(values) > 0 {
association.Error = association.Replace(values...)
}
default:
2020-08-28 07:25:25 +03:00
association.saveAssociation( /*clear*/ false, values...)
2020-05-20 18:44:50 +03:00
}
}
return association.Error
}
func (association *Association) Replace(values ...interface{}) error {
2020-05-20 18:44:50 +03:00
if association.Error == nil {
reflectValue := association.DB.Statement.ReflectValue
rel := association.Relationship
var oldBelongsToExpr clause.Expression
// we have to record the old BelongsTo value
if association.Unscope && rel.Type == schema.BelongsTo {
var foreignFields []*schema.Field
for _, ref := range rel.References {
if !ref.OwnPrimaryKey {
foreignFields = append(foreignFields, ref.ForeignKey)
}
}
if _, fvs := schema.GetIdentityFieldValuesMap(association.DB.Statement.Context, reflectValue, foreignFields); len(fvs) > 0 {
column, values := schema.ToQueryValues(rel.FieldSchema.Table, rel.FieldSchema.PrimaryFieldDBNames, fvs)
oldBelongsToExpr = clause.IN{Column: column, Values: values}
}
}
2020-05-26 04:48:12 +03:00
// save associations
if association.saveAssociation( /*clear*/ true, values...); association.Error != nil {
return association.Error
}
2020-05-26 04:48:12 +03:00
// set old associations's foreign key to null
2020-05-20 18:44:50 +03:00
switch rel.Type {
2020-05-24 12:24:23 +03:00
case schema.BelongsTo:
if len(values) == 0 {
updateMap := map[string]interface{}{}
2020-06-01 14:41:33 +03:00
switch reflectValue.Kind() {
case reflect.Slice, reflect.Array:
for i := 0; i < reflectValue.Len(); i++ {
association.Error = rel.Field.Set(association.DB.Statement.Context, reflectValue.Index(i), reflect.Zero(rel.Field.FieldType).Interface())
2020-06-01 14:41:33 +03:00
}
case reflect.Struct:
association.Error = rel.Field.Set(association.DB.Statement.Context, reflectValue, reflect.Zero(rel.Field.FieldType).Interface())
2020-06-01 14:41:33 +03:00
}
2020-05-24 12:24:23 +03:00
for _, ref := range rel.References {
updateMap[ref.ForeignKey.DBName] = nil
}
association.Error = association.DB.UpdateColumns(updateMap).Error
2020-05-24 12:24:23 +03:00
}
if association.Unscope && oldBelongsToExpr != nil {
association.Error = association.DB.Model(nil).Where(oldBelongsToExpr).Delete(reflect.New(rel.FieldSchema.ModelType).Interface()).Error
}
2020-05-20 18:44:50 +03:00
case schema.HasOne, schema.HasMany:
var (
2020-05-26 04:48:12 +03:00
primaryFields []*schema.Field
foreignKeys []string
updateMap = map[string]interface{}{}
relValues = schema.GetRelationsValues(association.DB.Statement.Context, reflectValue, []*schema.Relationship{rel})
2020-05-26 04:48:12 +03:00
modelValue = reflect.New(rel.FieldSchema.ModelType).Interface()
tx = association.DB.Model(modelValue)
2020-05-20 18:44:50 +03:00
)
2020-05-24 17:52:16 +03:00
if _, rvs := schema.GetIdentityFieldValuesMap(association.DB.Statement.Context, relValues, rel.FieldSchema.PrimaryFields); len(rvs) > 0 {
if column, values := schema.ToQueryValues(rel.FieldSchema.Table, rel.FieldSchema.PrimaryFieldDBNames, rvs); len(values) > 0 {
2020-05-26 04:48:12 +03:00
tx.Not(clause.IN{Column: column, Values: values})
2020-05-24 17:52:16 +03:00
}
2020-05-24 12:24:23 +03:00
}
2020-05-20 18:44:50 +03:00
for _, ref := range rel.References {
if ref.OwnPrimaryKey {
primaryFields = append(primaryFields, ref.PrimaryKey)
foreignKeys = append(foreignKeys, ref.ForeignKey.DBName)
updateMap[ref.ForeignKey.DBName] = nil
2020-05-26 04:48:12 +03:00
} else if ref.PrimaryValue != "" {
tx.Where(clause.Eq{Column: ref.ForeignKey.DBName, Value: ref.PrimaryValue})
2020-05-20 18:44:50 +03:00
}
}
2020-05-26 04:48:12 +03:00
if _, pvs := schema.GetIdentityFieldValuesMap(association.DB.Statement.Context, reflectValue, primaryFields); len(pvs) > 0 {
column, values := schema.ToQueryValues(rel.FieldSchema.Table, foreignKeys, pvs)
if association.Unscope {
association.Error = tx.Where(clause.IN{Column: column, Values: values}).Delete(modelValue).Error
} else {
association.Error = tx.Where(clause.IN{Column: column, Values: values}).UpdateColumns(updateMap).Error
}
2020-05-23 16:03:28 +03:00
}
2020-05-20 18:44:50 +03:00
case schema.Many2Many:
2020-05-26 04:48:12 +03:00
var (
primaryFields, relPrimaryFields []*schema.Field
joinPrimaryKeys, joinRelPrimaryKeys []string
modelValue = reflect.New(rel.JoinTable.ModelType).Interface()
tx = association.DB.Model(modelValue)
)
2020-05-20 18:44:50 +03:00
for _, ref := range rel.References {
2020-05-25 19:16:41 +03:00
if ref.PrimaryValue == "" {
if ref.OwnPrimaryKey {
primaryFields = append(primaryFields, ref.PrimaryKey)
joinPrimaryKeys = append(joinPrimaryKeys, ref.ForeignKey.DBName)
} else {
relPrimaryFields = append(relPrimaryFields, ref.PrimaryKey)
joinRelPrimaryKeys = append(joinRelPrimaryKeys, ref.ForeignKey.DBName)
}
2020-05-20 18:44:50 +03:00
} else {
2020-05-26 04:48:12 +03:00
tx.Clauses(clause.Eq{Column: ref.ForeignKey.DBName, Value: ref.PrimaryValue})
2020-05-20 18:44:50 +03:00
}
}
_, pvs := schema.GetIdentityFieldValuesMap(association.DB.Statement.Context, reflectValue, primaryFields)
if column, values := schema.ToQueryValues(rel.JoinTable.Table, joinPrimaryKeys, pvs); len(values) > 0 {
2020-05-26 04:48:12 +03:00
tx.Where(clause.IN{Column: column, Values: values})
2020-05-25 19:16:41 +03:00
} else {
return ErrPrimaryKeyRequired
2020-05-20 18:44:50 +03:00
}
_, rvs := schema.GetIdentityFieldValuesMapFromValues(association.DB.Statement.Context, values, relPrimaryFields)
if relColumn, relValues := schema.ToQueryValues(rel.JoinTable.Table, joinRelPrimaryKeys, rvs); len(relValues) > 0 {
2020-05-26 04:48:12 +03:00
tx.Where(clause.Not(clause.IN{Column: relColumn, Values: relValues}))
2020-05-20 18:44:50 +03:00
}
association.Error = tx.Delete(modelValue).Error
2020-05-20 18:44:50 +03:00
}
}
return association.Error
}
func (association *Association) Delete(values ...interface{}) error {
2020-05-19 21:03:43 +03:00
if association.Error == nil {
var (
2020-07-16 06:27:04 +03:00
reflectValue = association.DB.Statement.ReflectValue
rel = association.Relationship
primaryFields []*schema.Field
foreignKeys []string
updateAttrs = map[string]interface{}{}
conds []clause.Expression
2020-05-19 21:03:43 +03:00
)
for _, ref := range rel.References {
if ref.PrimaryValue == "" {
2020-05-25 06:11:09 +03:00
primaryFields = append(primaryFields, ref.PrimaryKey)
foreignKeys = append(foreignKeys, ref.ForeignKey.DBName)
updateAttrs[ref.ForeignKey.DBName] = nil
2020-05-25 06:49:02 +03:00
} else {
conds = append(conds, clause.Eq{Column: ref.ForeignKey.DBName, Value: ref.PrimaryValue})
2020-05-19 21:03:43 +03:00
}
}
2020-05-20 18:44:50 +03:00
switch rel.Type {
2020-05-26 04:48:12 +03:00
case schema.BelongsTo:
associationDB := association.DB.Session(&Session{})
tx := associationDB.Model(reflect.New(rel.Schema.ModelType).Interface())
2020-05-26 04:48:12 +03:00
_, pvs := schema.GetIdentityFieldValuesMap(association.DB.Statement.Context, reflectValue, rel.Schema.PrimaryFields)
if pcolumn, pvalues := schema.ToQueryValues(rel.Schema.Table, rel.Schema.PrimaryFieldDBNames, pvs); len(pvalues) > 0 {
conds = append(conds, clause.IN{Column: pcolumn, Values: pvalues})
} else {
return ErrPrimaryKeyRequired
}
2020-05-25 06:11:09 +03:00
_, rvs := schema.GetIdentityFieldValuesMapFromValues(association.DB.Statement.Context, values, primaryFields)
relColumn, relValues := schema.ToQueryValues(rel.Schema.Table, foreignKeys, rvs)
2020-05-25 06:49:02 +03:00
conds = append(conds, clause.IN{Column: relColumn, Values: relValues})
2020-05-25 06:11:09 +03:00
2020-05-26 04:48:12 +03:00
association.Error = tx.Clauses(conds...).UpdateColumns(updateAttrs).Error
if association.Unscope {
var foreignFields []*schema.Field
for _, ref := range rel.References {
if !ref.OwnPrimaryKey {
foreignFields = append(foreignFields, ref.ForeignKey)
}
}
if _, fvs := schema.GetIdentityFieldValuesMap(association.DB.Statement.Context, reflectValue, foreignFields); len(fvs) > 0 {
column, values := schema.ToQueryValues(rel.FieldSchema.Table, rel.FieldSchema.PrimaryFieldDBNames, fvs)
association.Error = associationDB.Model(nil).Where(clause.IN{Column: column, Values: values}).Delete(reflect.New(rel.FieldSchema.ModelType).Interface()).Error
}
}
2020-05-26 04:48:12 +03:00
case schema.HasOne, schema.HasMany:
model := reflect.New(rel.FieldSchema.ModelType).Interface()
tx := association.DB.Model(model)
2020-05-26 04:48:12 +03:00
_, pvs := schema.GetIdentityFieldValuesMap(association.DB.Statement.Context, reflectValue, primaryFields)
if pcolumn, pvalues := schema.ToQueryValues(rel.FieldSchema.Table, foreignKeys, pvs); len(pvalues) > 0 {
conds = append(conds, clause.IN{Column: pcolumn, Values: pvalues})
} else {
return ErrPrimaryKeyRequired
}
2020-05-24 16:46:33 +03:00
_, rvs := schema.GetIdentityFieldValuesMapFromValues(association.DB.Statement.Context, values, rel.FieldSchema.PrimaryFields)
relColumn, relValues := schema.ToQueryValues(rel.FieldSchema.Table, rel.FieldSchema.PrimaryFieldDBNames, rvs)
2020-05-25 06:49:02 +03:00
conds = append(conds, clause.IN{Column: relColumn, Values: relValues})
2020-05-25 06:11:09 +03:00
if association.Unscope {
association.Error = tx.Clauses(conds...).Delete(model).Error
} else {
association.Error = tx.Clauses(conds...).UpdateColumns(updateAttrs).Error
}
2020-05-19 21:03:43 +03:00
case schema.Many2Many:
2020-05-26 04:48:12 +03:00
var (
primaryFields, relPrimaryFields []*schema.Field
joinPrimaryKeys, joinRelPrimaryKeys []string
2020-08-28 07:25:25 +03:00
joinValue = reflect.New(rel.JoinTable.ModelType).Interface()
2020-05-26 04:48:12 +03:00
)
2020-05-25 19:16:41 +03:00
for _, ref := range rel.References {
if ref.PrimaryValue == "" {
if ref.OwnPrimaryKey {
primaryFields = append(primaryFields, ref.PrimaryKey)
joinPrimaryKeys = append(joinPrimaryKeys, ref.ForeignKey.DBName)
} else {
relPrimaryFields = append(relPrimaryFields, ref.PrimaryKey)
joinRelPrimaryKeys = append(joinRelPrimaryKeys, ref.ForeignKey.DBName)
}
} else {
conds = append(conds, clause.Eq{Column: ref.ForeignKey.DBName, Value: ref.PrimaryValue})
}
}
_, pvs := schema.GetIdentityFieldValuesMap(association.DB.Statement.Context, reflectValue, primaryFields)
if pcolumn, pvalues := schema.ToQueryValues(rel.JoinTable.Table, joinPrimaryKeys, pvs); len(pvalues) > 0 {
conds = append(conds, clause.IN{Column: pcolumn, Values: pvalues})
} else {
return ErrPrimaryKeyRequired
}
2020-05-25 19:16:41 +03:00
_, rvs := schema.GetIdentityFieldValuesMapFromValues(association.DB.Statement.Context, values, relPrimaryFields)
relColumn, relValues := schema.ToQueryValues(rel.JoinTable.Table, joinRelPrimaryKeys, rvs)
2020-05-25 19:16:41 +03:00
conds = append(conds, clause.IN{Column: relColumn, Values: relValues})
2020-08-28 07:25:25 +03:00
association.Error = association.DB.Where(clause.Where{Exprs: conds}).Model(nil).Delete(joinValue).Error
2020-05-19 21:03:43 +03:00
}
2020-05-26 04:48:12 +03:00
if association.Error == nil {
2020-08-28 07:25:25 +03:00
// clean up deleted values's foreign key
relValuesMap, _ := schema.GetIdentityFieldValuesMapFromValues(association.DB.Statement.Context, values, rel.FieldSchema.PrimaryFields)
2020-05-25 06:11:09 +03:00
2020-05-19 21:03:43 +03:00
cleanUpDeletedRelations := func(data reflect.Value) {
if _, zero := rel.Field.ValueOf(association.DB.Statement.Context, data); !zero {
fieldValue := reflect.Indirect(rel.Field.ReflectValueOf(association.DB.Statement.Context, data))
2020-05-26 04:48:12 +03:00
primaryValues := make([]interface{}, len(rel.FieldSchema.PrimaryFields))
2020-05-19 21:03:43 +03:00
switch fieldValue.Kind() {
case reflect.Slice, reflect.Array:
2020-05-26 04:48:12 +03:00
validFieldValues := reflect.Zero(rel.Field.IndirectFieldType)
2020-05-19 21:03:43 +03:00
for i := 0; i < fieldValue.Len(); i++ {
2020-05-25 06:11:09 +03:00
for idx, field := range rel.FieldSchema.PrimaryFields {
primaryValues[idx], _ = field.ValueOf(association.DB.Statement.Context, fieldValue.Index(i))
2020-05-19 21:03:43 +03:00
}
2020-05-26 04:48:12 +03:00
if _, ok := relValuesMap[utils.ToStringKey(primaryValues...)]; !ok {
2020-05-19 21:03:43 +03:00
validFieldValues = reflect.Append(validFieldValues, fieldValue.Index(i))
}
}
association.Error = rel.Field.Set(association.DB.Statement.Context, data, validFieldValues.Interface())
2020-05-19 21:03:43 +03:00
case reflect.Struct:
2020-05-25 06:11:09 +03:00
for idx, field := range rel.FieldSchema.PrimaryFields {
primaryValues[idx], _ = field.ValueOf(association.DB.Statement.Context, fieldValue)
2020-05-19 21:03:43 +03:00
}
2020-05-26 04:48:12 +03:00
if _, ok := relValuesMap[utils.ToStringKey(primaryValues...)]; ok {
if association.Error = rel.Field.Set(association.DB.Statement.Context, data, reflect.Zero(rel.FieldSchema.ModelType).Interface()); association.Error != nil {
2020-07-16 06:27:04 +03:00
break
}
2020-05-26 04:48:12 +03:00
if rel.JoinTable == nil {
for _, ref := range rel.References {
if ref.OwnPrimaryKey || ref.PrimaryValue != "" {
association.Error = ref.ForeignKey.Set(association.DB.Statement.Context, fieldValue, reflect.Zero(ref.ForeignKey.FieldType).Interface())
2020-05-26 04:48:12 +03:00
} else {
association.Error = ref.ForeignKey.Set(association.DB.Statement.Context, data, reflect.Zero(ref.ForeignKey.FieldType).Interface())
2020-05-26 04:48:12 +03:00
}
2020-05-25 06:11:09 +03:00
}
2020-05-24 12:24:23 +03:00
}
2020-05-19 21:03:43 +03:00
}
}
}
}
switch reflectValue.Kind() {
case reflect.Slice, reflect.Array:
for i := 0; i < reflectValue.Len(); i++ {
cleanUpDeletedRelations(reflect.Indirect(reflectValue.Index(i)))
}
case reflect.Struct:
cleanUpDeletedRelations(reflectValue)
}
}
}
2020-05-26 04:48:12 +03:00
return association.Error
}
func (association *Association) Clear() error {
2020-05-19 16:50:06 +03:00
return association.Replace()
}
2020-05-24 06:32:59 +03:00
func (association *Association) Count() (count int64) {
2020-05-19 16:50:06 +03:00
if association.Error == nil {
2020-08-28 07:25:25 +03:00
association.Error = association.buildCondition().Count(&count).Error
2020-05-19 16:50:06 +03:00
}
return
2020-02-23 18:28:35 +03:00
}
2020-05-20 18:44:50 +03:00
2020-05-25 20:21:15 +03:00
type assignBack struct {
Source reflect.Value
Index int
Dest reflect.Value
}
2020-05-20 18:44:50 +03:00
func (association *Association) saveAssociation(clear bool, values ...interface{}) {
2020-05-24 12:24:23 +03:00
var (
reflectValue = association.DB.Statement.ReflectValue
2020-05-26 04:48:12 +03:00
assignBacks []assignBack // assign association values back to arguments after save
2020-05-24 12:24:23 +03:00
)
2020-05-20 18:44:50 +03:00
appendToRelations := func(source, rv reflect.Value, clear bool) {
switch association.Relationship.Type {
case schema.HasOne, schema.BelongsTo:
switch rv.Kind() {
case reflect.Slice, reflect.Array:
if rv.Len() > 0 {
association.Error = association.Relationship.Field.Set(association.DB.Statement.Context, source, rv.Index(0).Addr().Interface())
2020-05-26 04:48:12 +03:00
2020-05-25 20:21:15 +03:00
if association.Relationship.Field.FieldType.Kind() == reflect.Struct {
assignBacks = append(assignBacks, assignBack{Source: source, Dest: rv.Index(0)})
2020-05-24 12:24:23 +03:00
}
2020-05-20 18:44:50 +03:00
}
case reflect.Struct:
if !rv.CanAddr() {
association.Error = ErrInvalidValue
return
}
association.Error = association.Relationship.Field.Set(association.DB.Statement.Context, source, rv.Addr().Interface())
2020-05-26 04:48:12 +03:00
2020-05-25 20:21:15 +03:00
if association.Relationship.Field.FieldType.Kind() == reflect.Struct {
assignBacks = append(assignBacks, assignBack{Source: source, Dest: rv})
2020-05-24 12:24:23 +03:00
}
2020-05-20 18:44:50 +03:00
}
case schema.HasMany, schema.Many2Many:
elemType := association.Relationship.Field.IndirectFieldType.Elem()
oldFieldValue := reflect.Indirect(association.Relationship.Field.ReflectValueOf(association.DB.Statement.Context, source))
var fieldValue reflect.Value
2020-05-20 18:44:50 +03:00
if clear {
fieldValue = reflect.MakeSlice(oldFieldValue.Type(), 0, oldFieldValue.Cap())
} else {
fieldValue = reflect.MakeSlice(oldFieldValue.Type(), oldFieldValue.Len(), oldFieldValue.Cap())
reflect.Copy(fieldValue, oldFieldValue)
2020-05-20 18:44:50 +03:00
}
appendToFieldValues := func(ev reflect.Value) {
if ev.Type().AssignableTo(elemType) {
fieldValue = reflect.Append(fieldValue, ev)
} else if ev.Type().Elem().AssignableTo(elemType) {
fieldValue = reflect.Append(fieldValue, ev.Elem())
} else {
association.Error = fmt.Errorf("unsupported data type: %v for relation %s", ev.Type(), association.Relationship.Name)
2020-05-20 18:44:50 +03:00
}
2020-05-25 20:21:15 +03:00
2020-05-26 04:48:12 +03:00
if elemType.Kind() == reflect.Struct {
assignBacks = append(assignBacks, assignBack{Source: source, Dest: ev, Index: fieldValue.Len()})
2020-05-25 20:21:15 +03:00
}
2020-05-20 18:44:50 +03:00
}
switch rv.Kind() {
case reflect.Slice, reflect.Array:
for i := 0; i < rv.Len(); i++ {
2020-05-25 06:11:09 +03:00
appendToFieldValues(reflect.Indirect(rv.Index(i)).Addr())
2020-05-20 18:44:50 +03:00
}
case reflect.Struct:
if !rv.CanAddr() {
association.Error = ErrInvalidValue
return
}
2020-05-25 06:11:09 +03:00
appendToFieldValues(rv.Addr())
2020-05-20 18:44:50 +03:00
}
if association.Error == nil {
association.Error = association.Relationship.Field.Set(association.DB.Statement.Context, source, fieldValue.Interface())
2020-05-20 18:44:50 +03:00
}
}
}
2020-05-26 04:48:12 +03:00
selectedSaveColumns := []string{association.Relationship.Name}
omitColumns := []string{}
selectColumns, _ := association.DB.Statement.SelectAndOmitColumns(true, false)
for name, ok := range selectColumns {
columnName := ""
if strings.HasPrefix(name, association.Relationship.Name) {
if columnName = strings.TrimPrefix(name, association.Relationship.Name); columnName == ".*" {
columnName = name
}
} else if strings.HasPrefix(name, clause.Associations) {
columnName = name
}
if columnName != "" {
if ok {
selectedSaveColumns = append(selectedSaveColumns, columnName)
} else {
omitColumns = append(omitColumns, columnName)
}
}
}
2020-05-20 18:44:50 +03:00
for _, ref := range association.Relationship.References {
if !ref.OwnPrimaryKey {
2020-05-26 04:48:12 +03:00
selectedSaveColumns = append(selectedSaveColumns, ref.ForeignKey.Name)
2020-05-20 18:44:50 +03:00
}
}
associationDB := association.DB.Session(&Session{}).Model(nil)
if !association.DB.FullSaveAssociations {
associationDB.Select(selectedSaveColumns)
}
if len(omitColumns) > 0 {
associationDB.Omit(omitColumns...)
}
associationDB = associationDB.Session(&Session{})
2020-05-20 18:44:50 +03:00
switch reflectValue.Kind() {
case reflect.Slice, reflect.Array:
if len(values) != reflectValue.Len() {
2020-08-28 07:25:25 +03:00
// clear old data
2020-05-20 18:44:50 +03:00
if clear && len(values) == 0 {
for i := 0; i < reflectValue.Len(); i++ {
if err := association.Relationship.Field.Set(association.DB.Statement.Context, reflectValue.Index(i), reflect.New(association.Relationship.Field.IndirectFieldType).Interface()); err != nil {
2020-07-16 06:27:04 +03:00
association.Error = err
break
}
2020-05-26 04:48:12 +03:00
if association.Relationship.JoinTable == nil {
for _, ref := range association.Relationship.References {
if !ref.OwnPrimaryKey && ref.PrimaryValue == "" {
if err := ref.ForeignKey.Set(association.DB.Statement.Context, reflectValue.Index(i), reflect.Zero(ref.ForeignKey.FieldType).Interface()); err != nil {
2020-07-16 06:27:04 +03:00
association.Error = err
break
}
}
2020-05-24 15:44:37 +03:00
}
}
2020-05-20 18:44:50 +03:00
}
break
}
2020-05-26 04:48:12 +03:00
association.Error = ErrInvalidValueOfLength
2020-05-24 16:46:33 +03:00
return
2020-05-20 18:44:50 +03:00
}
for i := 0; i < reflectValue.Len(); i++ {
appendToRelations(reflectValue.Index(i), reflect.Indirect(reflect.ValueOf(values[i])), clear)
if association.Error != nil {
return
}
2020-05-20 18:44:50 +03:00
2020-05-26 04:48:12 +03:00
// TODO support save slice data, sql with case?
association.Error = associationDB.Updates(reflectValue.Index(i).Addr().Interface()).Error
2020-05-20 18:44:50 +03:00
}
case reflect.Struct:
2020-08-28 07:25:25 +03:00
// clear old data
2020-05-20 18:44:50 +03:00
if clear && len(values) == 0 {
association.Error = association.Relationship.Field.Set(association.DB.Statement.Context, reflectValue, reflect.New(association.Relationship.Field.IndirectFieldType).Interface())
2020-05-26 04:48:12 +03:00
2020-07-16 06:27:04 +03:00
if association.Relationship.JoinTable == nil && association.Error == nil {
for _, ref := range association.Relationship.References {
if !ref.OwnPrimaryKey && ref.PrimaryValue == "" {
association.Error = ref.ForeignKey.Set(association.DB.Statement.Context, reflectValue, reflect.Zero(ref.ForeignKey.FieldType).Interface())
}
2020-05-24 15:44:37 +03:00
}
}
2020-05-20 18:44:50 +03:00
}
for idx, value := range values {
2020-05-24 12:24:23 +03:00
rv := reflect.Indirect(reflect.ValueOf(value))
appendToRelations(reflectValue, rv, clear && idx == 0)
if association.Error != nil {
return
}
2020-05-20 18:44:50 +03:00
}
2020-05-24 16:46:33 +03:00
if len(values) > 0 {
association.Error = associationDB.Updates(reflectValue.Addr().Interface()).Error
2020-05-24 15:44:37 +03:00
}
2020-05-24 12:24:23 +03:00
}
for _, assignBack := range assignBacks {
fieldValue := reflect.Indirect(association.Relationship.Field.ReflectValueOf(association.DB.Statement.Context, assignBack.Source))
2020-05-25 20:21:15 +03:00
if assignBack.Index > 0 {
reflect.Indirect(assignBack.Dest).Set(fieldValue.Index(assignBack.Index - 1))
} else {
reflect.Indirect(assignBack.Dest).Set(fieldValue)
}
2020-05-20 18:44:50 +03:00
}
}
2020-08-28 07:25:25 +03:00
func (association *Association) buildCondition() *DB {
var (
queryConds = association.Relationship.ToQueryConditions(association.DB.Statement.Context, association.DB.Statement.ReflectValue)
2020-08-28 07:25:25 +03:00
modelValue = reflect.New(association.Relationship.FieldSchema.ModelType).Interface()
tx = association.DB.Model(modelValue)
)
if association.Relationship.JoinTable != nil {
if !tx.Statement.Unscoped && len(association.Relationship.JoinTable.QueryClauses) > 0 {
joinStmt := Statement{DB: tx, Context: tx.Statement.Context, Schema: association.Relationship.JoinTable, Table: association.Relationship.JoinTable.Table, Clauses: map[string]clause.Clause{}}
2020-08-28 07:25:25 +03:00
for _, queryClause := range association.Relationship.JoinTable.QueryClauses {
joinStmt.AddClause(queryClause)
}
joinStmt.Build("WHERE")
if len(joinStmt.SQL.String()) > 0 {
tx.Clauses(clause.Expr{SQL: strings.Replace(joinStmt.SQL.String(), "WHERE ", "", 1), Vars: joinStmt.Vars})
}
2020-08-28 07:25:25 +03:00
}
tx = tx.Session(&Session{QueryFields: true}).Clauses(clause.From{Joins: []clause.Join{{
2020-08-28 07:25:25 +03:00
Table: clause.Table{Name: association.Relationship.JoinTable.Table},
ON: clause.Where{Exprs: queryConds},
}}})
} else {
tx.Clauses(clause.Where{Exprs: queryConds})
}
return tx
}