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.
64 lines
1.9 KiB
Go
64 lines
1.9 KiB
Go
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 genDelete(table Table, withCache bool) (string, string, error) {
|
|
keySet := collection.NewSet()
|
|
keyVariableSet := collection.NewSet()
|
|
for fieldName, key := range table.CacheKey {
|
|
if fieldName == table.PrimaryKey.Name.Source() {
|
|
keySet.AddStr(key.KeyExpression)
|
|
} else {
|
|
keySet.AddStr(key.DataKeyExpression)
|
|
}
|
|
keyVariableSet.AddStr(key.Variable)
|
|
}
|
|
|
|
camel := table.Name.ToCamel()
|
|
text, err := util.LoadTemplate(category, deleteTemplateFile, template.Delete)
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
|
|
output, err := util.With("delete").
|
|
Parse(text).
|
|
Execute(map[string]interface{}{
|
|
"upperStartCamelObject": camel,
|
|
"withCache": withCache,
|
|
"containsIndexCache": table.ContainsUniqueKey,
|
|
"lowerStartCamelPrimaryKey": stringx.From(table.PrimaryKey.Name.ToCamel()).Untitle(),
|
|
"dataType": table.PrimaryKey.DataType,
|
|
"keys": strings.Join(keySet.KeysStr(), "\n"),
|
|
"originalPrimaryKey": wrapWithRawString(table.PrimaryKey.Name.Source()),
|
|
"keyValues": strings.Join(keyVariableSet.KeysStr(), ", "),
|
|
})
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
|
|
// interface method
|
|
text, err = util.LoadTemplate(category, deleteMethodTemplateFile, template.DeleteMethod)
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
|
|
deleteMethodOut, err := util.With("deleteMethod").
|
|
Parse(text).
|
|
Execute(map[string]interface{}{
|
|
"lowerStartCamelPrimaryKey": stringx.From(table.PrimaryKey.Name.ToCamel()).Untitle(),
|
|
"dataType": table.PrimaryKey.DataType,
|
|
})
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
|
|
return output.String(), deleteMethodOut.String(), nil
|
|
}
|