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.
84 lines
2.3 KiB
Go
84 lines
2.3 KiB
Go
package gen
|
|
|
|
import (
|
|
"fmt"
|
|
"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 genInsert(table Table, withCache, postgreSql bool) (string, string, error) {
|
|
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)
|
|
}
|
|
|
|
expressions := make([]string, 0)
|
|
expressionValues := make([]string, 0)
|
|
var count int
|
|
for _, field := range table.Fields {
|
|
camel := field.Name.ToCamel()
|
|
if camel == "CreateTime" || camel == "UpdateTime" {
|
|
continue
|
|
}
|
|
|
|
if field.Name.Source() == table.PrimaryKey.Name.Source() {
|
|
if table.PrimaryKey.AutoIncrement {
|
|
continue
|
|
}
|
|
}
|
|
|
|
count += 1
|
|
if postgreSql {
|
|
expressions = append(expressions, fmt.Sprintf("$%d", count))
|
|
} else {
|
|
expressions = append(expressions, "?")
|
|
}
|
|
expressionValues = append(expressionValues, "data."+camel)
|
|
}
|
|
|
|
camel := table.Name.ToCamel()
|
|
text, err := util.LoadTemplate(category, insertTemplateFile, template.Insert)
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
|
|
output, err := util.With("insert").
|
|
Parse(text).
|
|
Execute(map[string]interface{}{
|
|
"withCache": withCache,
|
|
"containsIndexCache": table.ContainsUniqueCacheKey,
|
|
"upperStartCamelObject": camel,
|
|
"lowerStartCamelObject": stringx.From(camel).Untitle(),
|
|
"expression": strings.Join(expressions, ", "),
|
|
"expressionValues": strings.Join(expressionValues, ", "),
|
|
"keys": strings.Join(keySet.KeysStr(), "\n"),
|
|
"keyValues": strings.Join(keyVariableSet.KeysStr(), ", "),
|
|
})
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
|
|
// interface method
|
|
text, err = util.LoadTemplate(category, insertTemplateMethodFile, template.InsertMethod)
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
|
|
insertMethodOutput, err := util.With("insertMethod").Parse(text).Execute(map[string]interface{}{
|
|
"upperStartCamelObject": camel,
|
|
})
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
|
|
return output.String(), insertMethodOutput.String(), nil
|
|
}
|