go-zero/tools/goctl/model/sql/gen/delete.go

48 lines
1.4 KiB
Go
Raw Normal View History

2020-07-29 17:11:41 +08:00
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/stringx"
"github.com/tal-tech/go-zero/tools/goctl/util/templatex"
2020-07-29 17:11:41 +08:00
)
func genDelete(table Table, withCache bool) (string, error) {
keySet := collection.NewSet()
keyVariableSet := collection.NewSet()
for fieldName, key := range table.CacheKey {
if fieldName == table.PrimaryKey.Name.Source() {
keySet.AddStr(key.KeyExpression)
2020-07-29 17:11:41 +08:00
} else {
keySet.AddStr(key.DataKeyExpression)
2020-07-29 17:11:41 +08:00
}
keyVariableSet.AddStr(key.Variable)
2020-07-29 17:11:41 +08:00
}
var containsIndexCache = false
2020-07-29 17:11:41 +08:00
for _, item := range table.Fields {
if item.IsKey {
containsIndexCache = true
2020-07-29 17:11:41 +08:00
break
}
}
camel := table.Name.ToCamel()
output, err := templatex.With("delete").
Parse(template.Delete).
Execute(map[string]interface{}{
"upperStartCamelObject": camel,
"withCache": withCache,
"containsIndexCache": containsIndexCache,
"lowerStartCamelPrimaryKey": stringx.From(table.PrimaryKey.Name.ToCamel()).UnTitle(),
"dataType": table.PrimaryKey.DataType,
"keys": strings.Join(keySet.KeysStr(), "\n"),
"originalPrimaryKey": table.PrimaryKey.Name.Source(),
"keyValues": strings.Join(keyVariableSet.KeysStr(), ", "),
})
2020-07-29 17:11:41 +08:00
if err != nil {
return "", err
}
return output.String(), nil
2020-07-29 17:11:41 +08:00
}