sqlboiler/templates/11_relationship_one_to_one_setops.tpl

103 lines
3.8 KiB
Smarty
Raw Normal View History

2016-09-18 20:13:11 +02:00
{{- if .Table.IsJoinTable -}}
{{- else -}}
{{- $dot := . -}}
2016-09-19 01:49:18 +02:00
{{- range .Table.ToOneRelationships -}}
{{- $txt := txtsFromOneToOne $dot.Tables $dot.Table . -}}
2016-09-19 01:02:08 +02:00
{{- $varNameSingular := .ForeignTable | singular | camelCase -}}
{{- $localNameSingular := .Table | singular | camelCase}}
// Set{{$txt.Function.Name}} of the {{.Table | singular}} to the related item.
2016-09-18 20:13:11 +02:00
// Sets {{$txt.Function.Receiver}}.R.{{$txt.Function.Name}} to related.
// Adds {{$txt.Function.Receiver}} to related.R.{{$txt.Function.ForeignName}}.
func ({{$txt.Function.Receiver}} *{{$txt.LocalTable.NameGo}}) Set{{$txt.Function.Name}}(exec boil.Executor, insert bool, related *{{$txt.ForeignTable.NameGo}}) error {
var err error
if insert {
if err = related.Insert(exec); err != nil {
return errors.Wrap(err, "failed to insert into foreign table")
}
}
2016-09-18 20:13:11 +02:00
oldVal := {{$txt.Function.Receiver}}.{{$txt.Function.LocalAssignment}}
related.{{$txt.Function.ForeignAssignment}} = {{$txt.Function.Receiver}}.{{$txt.Function.LocalAssignment}}
{{$txt.Function.Receiver}}.{{$txt.Function.LocalAssignment}} = related.{{$txt.Function.ForeignAssignment}}
2016-09-19 01:02:08 +02:00
if err = {{$txt.Function.Receiver}}.Update(exec, "{{.Column}}"); err != nil {
2016-09-18 20:13:11 +02:00
{{$txt.Function.Receiver}}.{{$txt.Function.LocalAssignment}} = oldVal
return errors.Wrap(err, "failed to update local table")
}
2016-08-27 07:43:50 +02:00
2016-09-18 20:13:11 +02:00
if {{$txt.Function.Receiver}}.R == nil {
{{$txt.Function.Receiver}}.R = &{{$localNameSingular}}R{
{{$txt.Function.Name}}: related,
}
} else {
2016-09-18 20:13:11 +02:00
{{$txt.Function.Receiver}}.R.{{$txt.Function.Name}} = related
}
2016-08-27 07:43:50 +02:00
2016-09-19 01:02:08 +02:00
{{if .Unique -}}
if related.R == nil {
related.R = &{{$varNameSingular}}R{
2016-09-18 20:13:11 +02:00
{{$txt.Function.ForeignName}}: {{$txt.Function.Receiver}},
}
} else {
2016-09-18 20:13:11 +02:00
related.R.{{$txt.Function.ForeignName}} = {{$txt.Function.Receiver}}
}
{{else -}}
if related.R == nil {
related.R = &{{$varNameSingular}}R{
2016-09-18 20:13:11 +02:00
{{$txt.Function.ForeignName}}: {{$txt.LocalTable.NameGo}}Slice{{"{"}}{{$txt.Function.Receiver}}{{"}"}},
}
} else {
2016-09-18 20:13:11 +02:00
related.R.{{$txt.Function.ForeignName}} = append(related.R.{{$txt.Function.ForeignName}}, {{$txt.Function.Receiver}})
}
{{end -}}
2016-09-19 01:02:08 +02:00
{{if .Nullable}}
2016-09-18 20:13:11 +02:00
{{$txt.Function.Receiver}}.{{$txt.LocalTable.ColumnNameGo}}.Valid = true
{{end -}}
return nil
2016-08-26 08:50:45 +02:00
}
2016-09-19 01:02:08 +02:00
{{- if .Nullable}}
2016-09-18 20:13:11 +02:00
// Remove{{$txt.Function.Name}} relationship.
// Sets {{$txt.Function.Receiver}}.R.{{$txt.Function.Name}} to nil.
// Removes {{$txt.Function.Receiver}} from all passed in related items' relationships struct (Optional).
func ({{$txt.Function.Receiver}} *{{$txt.LocalTable.NameGo}}) Remove{{$txt.Function.Name}}(exec boil.Executor, related *{{$txt.ForeignTable.NameGo}}) error {
var err error
2016-09-18 20:13:11 +02:00
{{$txt.Function.Receiver}}.{{$txt.LocalTable.ColumnNameGo}}.Valid = false
2016-09-19 01:02:08 +02:00
if err = {{$txt.Function.Receiver}}.Update(exec, "{{.Column}}"); err != nil {
2016-09-18 20:13:11 +02:00
{{$txt.Function.Receiver}}.{{$txt.LocalTable.ColumnNameGo}}.Valid = true
return errors.Wrap(err, "failed to update local table")
}
2016-09-18 20:13:11 +02:00
{{$txt.Function.Receiver}}.R.{{$txt.Function.Name}} = nil
if related == nil || related.R == nil {
return nil
}
2016-09-01 06:38:25 +02:00
2016-09-19 01:02:08 +02:00
{{if .Unique -}}
2016-09-18 20:13:11 +02:00
related.R.{{$txt.Function.ForeignName}} = nil
{{else -}}
2016-09-18 20:13:11 +02:00
for i, ri := range related.R.{{$txt.Function.ForeignName}} {
{{if $txt.Function.UsesBytes -}}
if 0 != bytes.Compare({{$txt.Function.Receiver}}.{{$txt.Function.LocalAssignment}}, ri.{{$txt.Function.LocalAssignment}}) {
{{else -}}
2016-09-18 20:13:11 +02:00
if {{$txt.Function.Receiver}}.{{$txt.Function.LocalAssignment}} != ri.{{$txt.Function.LocalAssignment}} {
{{end -}}
continue
}
2016-08-29 00:01:37 +02:00
2016-09-18 20:13:11 +02:00
ln := len(related.R.{{$txt.Function.ForeignName}})
if ln > 1 && i < ln-1 {
2016-09-18 20:13:11 +02:00
related.R.{{$txt.Function.ForeignName}}[i] = related.R.{{$txt.Function.ForeignName}}[ln-1]
}
2016-09-18 20:13:11 +02:00
related.R.{{$txt.Function.ForeignName}} = related.R.{{$txt.Function.ForeignName}}[:ln-1]
break
}
{{end -}}
2016-08-29 00:01:37 +02:00
return nil
2016-08-26 08:50:45 +02:00
}
{{end -}}{{/* if foreignkey nullable */}}
2016-09-18 20:13:11 +02:00
{{- end -}}{{/* range */}}
{{- end -}}{{/* join table */}}