61ab7e254a
- Fix #87
146 lines
5.7 KiB
Smarty
146 lines
5.7 KiB
Smarty
{{- if .Table.IsJoinTable -}}
|
|
{{- else -}}
|
|
{{- $dot := . -}}
|
|
{{- range .Table.ToOneRelationships -}}
|
|
{{- $txt := txtsFromOneToOne $dot.Tables $dot.Table . -}}
|
|
{{- $varNameSingular := .Table | singular | camelCase -}}
|
|
{{- $foreignVarNameSingular := .ForeignTable | singular | camelCase -}}
|
|
{{- $foreignPKeyCols := (getTable $dot.Tables .ForeignTable).PKey.Columns -}}
|
|
{{- $foreignSchemaTable := .ForeignTable | $dot.SchemaTable}}
|
|
// Set{{$txt.Function.Name}}G of the {{.Table | singular}} to the related item.
|
|
// Sets o.R.{{$txt.Function.Name}} to related.
|
|
// Adds o to related.R.{{$txt.Function.ForeignName}}.
|
|
// Uses the global database handle.
|
|
func (o *{{$txt.LocalTable.NameGo}}) Set{{$txt.Function.Name}}G(insert bool, related *{{$txt.ForeignTable.NameGo}}) error {
|
|
return o.Set{{$txt.Function.Name}}(boil.GetDB(), insert, related)
|
|
}
|
|
|
|
// Set{{$txt.Function.Name}}P of the {{.Table | singular}} to the related item.
|
|
// Sets o.R.{{$txt.Function.Name}} to related.
|
|
// Adds o to related.R.{{$txt.Function.ForeignName}}.
|
|
// Panics on error.
|
|
func (o *{{$txt.LocalTable.NameGo}}) Set{{$txt.Function.Name}}P(exec boil.Executor, insert bool, related *{{$txt.ForeignTable.NameGo}}) {
|
|
if err := o.Set{{$txt.Function.Name}}(exec, insert, related); err != nil {
|
|
panic(boil.WrapErr(err))
|
|
}
|
|
}
|
|
|
|
// Set{{$txt.Function.Name}}GP of the {{.Table | singular}} to the related item.
|
|
// Sets o.R.{{$txt.Function.Name}} to related.
|
|
// Adds o to related.R.{{$txt.Function.ForeignName}}.
|
|
// Uses the global database handle and panics on error.
|
|
func (o *{{$txt.LocalTable.NameGo}}) Set{{$txt.Function.Name}}GP(insert bool, related *{{$txt.ForeignTable.NameGo}}) {
|
|
if err := o.Set{{$txt.Function.Name}}(boil.GetDB(), insert, related); err != nil {
|
|
panic(boil.WrapErr(err))
|
|
}
|
|
}
|
|
|
|
// Set{{$txt.Function.Name}} of the {{.Table | singular}} to the related item.
|
|
// Sets o.R.{{$txt.Function.Name}} to related.
|
|
// Adds o to related.R.{{$txt.Function.ForeignName}}.
|
|
func (o *{{$txt.LocalTable.NameGo}}) Set{{$txt.Function.Name}}(exec boil.Executor, insert bool, related *{{$txt.ForeignTable.NameGo}}) error {
|
|
var err error
|
|
|
|
if insert {
|
|
related.{{$txt.Function.ForeignAssignment}} = o.{{$txt.Function.LocalAssignment}}
|
|
{{if .ForeignColumnNullable -}}
|
|
related.{{$txt.ForeignTable.ColumnNameGo}}.Valid = true
|
|
{{- end}}
|
|
|
|
if err = related.Insert(exec); err != nil {
|
|
return errors.Wrap(err, "failed to insert into foreign table")
|
|
}
|
|
} else {
|
|
updateQuery := fmt.Sprintf(
|
|
"UPDATE {{$foreignSchemaTable}} SET %s WHERE %s",
|
|
strmangle.SetParamNames("{{$dot.LQ}}", "{{$dot.RQ}}", {{if $dot.Dialect.IndexPlaceholders}}1{{else}}0{{end}}, []string{{"{"}}"{{.ForeignColumn}}"{{"}"}}),
|
|
strmangle.WhereClause("{{$dot.LQ}}", "{{$dot.RQ}}", {{if $dot.Dialect.IndexPlaceholders}}2{{else}}0{{end}}, {{$foreignVarNameSingular}}PrimaryKeyColumns),
|
|
)
|
|
values := []interface{}{o.{{$txt.LocalTable.ColumnNameGo}}, related.{{$foreignPKeyCols | stringMap $dot.StringFuncs.titleCase | join ", related."}}{{"}"}}
|
|
|
|
if boil.DebugMode {
|
|
fmt.Fprintln(boil.DebugWriter, updateQuery)
|
|
fmt.Fprintln(boil.DebugWriter, values)
|
|
}
|
|
|
|
if _, err = exec.Exec(updateQuery, values...); err != nil {
|
|
return errors.Wrap(err, "failed to update foreign table")
|
|
}
|
|
|
|
related.{{$txt.Function.ForeignAssignment}} = o.{{$txt.Function.LocalAssignment}}
|
|
{{if .ForeignColumnNullable -}}
|
|
related.{{$txt.ForeignTable.ColumnNameGo}}.Valid = true
|
|
{{- end}}
|
|
}
|
|
|
|
|
|
if o.R == nil {
|
|
o.R = &{{$varNameSingular}}R{
|
|
{{$txt.Function.Name}}: related,
|
|
}
|
|
} else {
|
|
o.R.{{$txt.Function.Name}} = related
|
|
}
|
|
|
|
if related.R == nil {
|
|
related.R = &{{$foreignVarNameSingular}}R{
|
|
{{$txt.Function.ForeignName}}: o,
|
|
}
|
|
} else {
|
|
related.R.{{$txt.Function.ForeignName}} = o
|
|
}
|
|
return nil
|
|
}
|
|
|
|
{{- if .ForeignColumnNullable}}
|
|
// Remove{{$txt.Function.Name}}G relationship.
|
|
// Sets o.R.{{$txt.Function.Name}} to nil.
|
|
// Removes o from all passed in related items' relationships struct (Optional).
|
|
// Uses the global database handle.
|
|
func (o *{{$txt.LocalTable.NameGo}}) Remove{{$txt.Function.Name}}G(related *{{$txt.ForeignTable.NameGo}}) error {
|
|
return o.Remove{{$txt.Function.Name}}(boil.GetDB(), related)
|
|
}
|
|
|
|
// Remove{{$txt.Function.Name}}P relationship.
|
|
// Sets o.R.{{$txt.Function.Name}} to nil.
|
|
// Removes o from all passed in related items' relationships struct (Optional).
|
|
// Panics on error.
|
|
func (o *{{$txt.LocalTable.NameGo}}) Remove{{$txt.Function.Name}}P(exec boil.Executor, related *{{$txt.ForeignTable.NameGo}}) {
|
|
if err := o.Remove{{$txt.Function.Name}}(exec, related); err != nil {
|
|
panic(boil.WrapErr(err))
|
|
}
|
|
}
|
|
|
|
// Remove{{$txt.Function.Name}}GP relationship.
|
|
// Sets o.R.{{$txt.Function.Name}} to nil.
|
|
// Removes o from all passed in related items' relationships struct (Optional).
|
|
// Uses the global database handle and panics on error.
|
|
func (o *{{$txt.LocalTable.NameGo}}) Remove{{$txt.Function.Name}}GP(related *{{$txt.ForeignTable.NameGo}}) {
|
|
if err := o.Remove{{$txt.Function.Name}}(boil.GetDB(), related); err != nil {
|
|
panic(boil.WrapErr(err))
|
|
}
|
|
}
|
|
|
|
// Remove{{$txt.Function.Name}} relationship.
|
|
// Sets o.R.{{$txt.Function.Name}} to nil.
|
|
// Removes o from all passed in related items' relationships struct (Optional).
|
|
func (o *{{$txt.LocalTable.NameGo}}) Remove{{$txt.Function.Name}}(exec boil.Executor, related *{{$txt.ForeignTable.NameGo}}) error {
|
|
var err error
|
|
|
|
related.{{$txt.ForeignTable.ColumnNameGo}}.Valid = false
|
|
if err = related.Update(exec, "{{.ForeignColumn}}"); err != nil {
|
|
related.{{$txt.ForeignTable.ColumnNameGo}}.Valid = true
|
|
return errors.Wrap(err, "failed to update local table")
|
|
}
|
|
|
|
o.R.{{$txt.Function.Name}} = nil
|
|
if related == nil || related.R == nil {
|
|
return nil
|
|
}
|
|
|
|
related.R.{{$txt.Function.ForeignName}} = nil
|
|
return nil
|
|
}
|
|
{{end -}}{{/* if foreignkey nullable */}}
|
|
{{- end -}}{{/* range */}}
|
|
{{- end -}}{{/* join table */}}
|