|
|
|
package gen
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/tal-tech/go-zero/core/collection"
|
|
|
|
"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, postgreSql 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.Name.Source() == table.PrimaryKey.Name.Source() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
expressionValues = append(expressionValues, "data."+camel)
|
|
|
|
}
|
|
|
|
|
|
|
|
keySet := collection.NewSet()
|
|
|
|
keyVariableSet := collection.NewSet()
|
|
|
|
keySet.AddStr(table.PrimaryCacheKey.DataKeyExpression)
|
|
|
|
keyVariableSet.AddStr(table.PrimaryCacheKey.KeyLeft)
|
|
|
|
for _, key := range table.UniqueCacheKey {
|
|
|
|
keySet.AddStr(key.DataKeyExpression)
|
|
|
|
keyVariableSet.AddStr(key.KeyLeft)
|
|
|
|
}
|
|
|
|
|
|
|
|
if postgreSql {
|
|
|
|
expressionValues = append([]string{"data." + table.PrimaryKey.Name.ToCamel()}, expressionValues...)
|
|
|
|
} else {
|
|
|
|
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,
|
|
|
|
"keys": strings.Join(keySet.KeysStr(), "\n"),
|
|
|
|
"keyValues": strings.Join(keyVariableSet.KeysStr(), ", "),
|
|
|
|
"primaryCacheKey": table.PrimaryCacheKey.DataKeyExpression,
|
|
|
|
"primaryKeyVariable": table.PrimaryCacheKey.KeyLeft,
|
|
|
|
"lowerStartCamelObject": stringx.From(camelTableName).Untitle(),
|
|
|
|
"originalPrimaryKey": wrapWithRawString(table.PrimaryKey.Name.Source(), postgreSql),
|
|
|
|
"expressionValues": strings.Join(expressionValues, ", "),
|
|
|
|
"postgreSql": postgreSql,
|
|
|
|
})
|
|
|
|
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
|
|
|
|
}
|