You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.8 KiB
Go
65 lines
1.8 KiB
Go
package gen
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
|
|
"github.com/tal-tech/go-zero/tools/goctl/util"
|
|
"github.com/tal-tech/go-zero/tools/goctl/util/stringx"
|
|
)
|
|
|
|
func genUpdate(table Table, withCache bool) (string, string, error) {
|
|
expressionValues := make([]string, 0)
|
|
for _, field := range table.Fields {
|
|
camel := field.Name.ToCamel()
|
|
if camel == "CreateTime" || camel == "UpdateTime" {
|
|
continue
|
|
}
|
|
|
|
if field.IsPrimaryKey {
|
|
continue
|
|
}
|
|
|
|
expressionValues = append(expressionValues, "data."+camel)
|
|
}
|
|
|
|
expressionValues = append(expressionValues, "data."+table.PrimaryKey.Name.ToCamel())
|
|
camelTableName := table.Name.ToCamel()
|
|
text, err := util.LoadTemplate(category, updateTemplateFile, template.Update)
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
|
|
output, err := util.With("update").
|
|
Parse(text).
|
|
Execute(map[string]interface{}{
|
|
"withCache": withCache,
|
|
"upperStartCamelObject": camelTableName,
|
|
"primaryCacheKey": table.CacheKey[table.PrimaryKey.Name.Source()].DataKeyExpression,
|
|
"primaryKeyVariable": table.CacheKey[table.PrimaryKey.Name.Source()].Variable,
|
|
"lowerStartCamelObject": stringx.From(camelTableName).Untitle(),
|
|
"originalPrimaryKey": wrapWithRawString(table.PrimaryKey.Name.Source()),
|
|
"expressionValues": strings.Join(expressionValues, ", "),
|
|
})
|
|
if err != nil {
|
|
return "", "", nil
|
|
}
|
|
|
|
// update interface method
|
|
text, err = util.LoadTemplate(category, updateMethodTemplateFile, template.UpdateMethod)
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
|
|
updateMethodOutput, err := util.With("updateMethod").
|
|
Parse(text).
|
|
Execute(map[string]interface{}{
|
|
"upperStartCamelObject": camelTableName,
|
|
})
|
|
if err != nil {
|
|
return "", "", nil
|
|
}
|
|
|
|
return output.String(), updateMethodOutput.String(), nil
|
|
}
|