sqlboiler/templates/23_merge.tpl

107 lines
3 KiB
Smarty
Raw Permalink Normal View History

2017-05-10 21:29:02 +02:00
{{- $tableNamePlural := .Table.Name | plural | titleCase -}}
{{- $tableNameSingular := .Table.Name | singular | titleCase -}}
{{- if .Table.IsJoinTable -}}
{{- else -}}
{{- $dot := . }}
// Merge combines two {{$tableNamePlural}} into one. The primary record will be kept, and the secondary will be deleted.
func Merge{{$tableNamePlural}}(exec boil.Executor, primaryID uint64, secondaryID uint64) (err error) {
tx, ok := exec.(boil.Transactor)
2017-05-10 21:29:02 +02:00
if !ok {
txdb, ok := exec.(boil.Beginner)
if !ok {
2018-02-07 15:35:46 +01:00
return errors.Err("database does not support transactions")
}
2017-05-10 21:29:02 +02:00
tx, err = txdb.Begin()
if err != nil {
2018-02-07 15:35:46 +01:00
return errors.Err(err)
}
defer func() {
if p := recover(); p != nil {
tx.Rollback()
panic(p) // Rollback, then propagate panic
} else if err != nil {
tx.Rollback()
} else {
err = tx.Commit()
}
}()
2017-05-10 21:29:02 +02:00
}
primary, err := Find{{$tableNameSingular}}(tx, primaryID)
if err != nil {
2018-02-07 15:35:46 +01:00
return errors.Err(err)
} else if primary == nil {
2018-02-07 15:35:46 +01:00
return errors.Err("primary {{$tableNameSingular}} not found")
2017-05-10 21:29:02 +02:00
}
secondary, err := Find{{$tableNameSingular}}(tx, secondaryID)
if err != nil {
2018-02-07 15:35:46 +01:00
return errors.Err(err)
} else if secondary == nil {
2018-02-07 15:35:46 +01:00
return errors.Err("secondary {{$tableNameSingular}} not found")
2017-05-10 21:29:02 +02:00
}
foreignKeys := []foreignKey{
2017-05-10 21:29:02 +02:00
{{- range .Tables -}}
{{- range .FKeys -}}
{{- if eq $dot.Table.Name .ForeignTable }}
{foreignTable: "{{.Table}}", foreignColumn: "{{.Column}}"},
2017-05-10 21:29:02 +02:00
{{- end -}}
{{- end -}}
{{- end }}
}
conflictingKeys := []conflictingUniqueKey{
{{- range .Tables -}}
{{- $table := . -}}
{{- range .FKeys -}}
{{- $fk := . -}}
{{- if eq $dot.Table.Name .ForeignTable -}}
{{- range $table.UKeys -}}
{{- if setInclude $fk.Column .Columns }}
{table: "{{$fk.Table}}", objectIdColumn: "{{$fk.Column}}", columns: []string{`{{ .Columns | join "`,`" }}`}},
{{- end -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{- end }}
}
2017-08-24 17:58:13 +02:00
err = mergeModels(tx, primaryID, secondaryID, foreignKeys, conflictingKeys)
2017-05-10 21:29:02 +02:00
if err != nil {
return err
}
pr := reflect.ValueOf(primary)
sr := reflect.ValueOf(secondary)
// for any column thats null on the primary and not null on the secondary, copy from secondary to primary
for i := 0; i < sr.Elem().NumField(); i++ {
pf := pr.Elem().Field(i)
sf := sr.Elem().Field(i)
if sf.IsValid() {
if nullable, ok := sf.Interface().(null.Nullable); ok && !nullable.IsNull() && pf.Interface().(null.Nullable).IsNull() {
2017-05-10 21:29:02 +02:00
pf.Set(sf)
}
}
}
err = primary.Update(tx)
if err != nil {
2018-02-07 15:35:46 +01:00
return err
2017-05-10 21:29:02 +02:00
}
err = secondary.Delete(tx)
if err != nil {
2018-02-07 15:35:46 +01:00
return err
2017-05-10 21:29:02 +02:00
}
return nil
}
// Merge combines two {{$tableNamePlural}} into one. The primary record will be kept, and the secondary will be deleted.
func Merge{{$tableNamePlural}}G(primaryID uint64, secondaryID uint64) error {
return Merge{{$tableNamePlural}}(boil.GetDB(), primaryID, secondaryID)
}
{{- end -}}{{/* join table */}}