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.
71 lines
2.2 KiB
Go
71 lines
2.2 KiB
Go
package gen
|
|
|
|
import (
|
|
"sort"
|
|
"strings"
|
|
|
|
"github.com/zeromicro/go-zero/core/collection"
|
|
"github.com/zeromicro/go-zero/tools/goctl/model/sql/template"
|
|
"github.com/zeromicro/go-zero/tools/goctl/util"
|
|
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
|
"github.com/zeromicro/go-zero/tools/goctl/util/stringx"
|
|
)
|
|
|
|
func genDelete(table Table, withCache, postgreSql bool) (string, string, error) {
|
|
keySet := collection.NewSet()
|
|
keyVariableSet := collection.NewSet()
|
|
keySet.AddStr(table.PrimaryCacheKey.KeyExpression)
|
|
keyVariableSet.AddStr(table.PrimaryCacheKey.KeyLeft)
|
|
for _, key := range table.UniqueCacheKey {
|
|
keySet.AddStr(key.DataKeyExpression)
|
|
keyVariableSet.AddStr(key.KeyLeft)
|
|
}
|
|
keys := keySet.KeysStr()
|
|
sort.Strings(keys)
|
|
keyVars := keyVariableSet.KeysStr()
|
|
sort.Strings(keyVars)
|
|
|
|
camel := table.Name.ToCamel()
|
|
text, err := pathx.LoadTemplate(category, deleteTemplateFile, template.Delete)
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
|
|
output, err := util.With("delete").
|
|
Parse(text).
|
|
Execute(map[string]any{
|
|
"upperStartCamelObject": camel,
|
|
"withCache": withCache,
|
|
"containsIndexCache": table.ContainsUniqueCacheKey,
|
|
"lowerStartCamelPrimaryKey": util.EscapeGolangKeyword(stringx.From(table.PrimaryKey.Name.ToCamel()).Untitle()),
|
|
"dataType": table.PrimaryKey.DataType,
|
|
"keys": strings.Join(keys, "\n"),
|
|
"originalPrimaryKey": wrapWithRawString(table.PrimaryKey.Name.Source(), postgreSql),
|
|
"keyValues": strings.Join(keyVars, ", "),
|
|
"postgreSql": postgreSql,
|
|
"data": table,
|
|
})
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
|
|
// interface method
|
|
text, err = pathx.LoadTemplate(category, deleteMethodTemplateFile, template.DeleteMethod)
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
|
|
deleteMethodOut, err := util.With("deleteMethod").
|
|
Parse(text).
|
|
Execute(map[string]any{
|
|
"lowerStartCamelPrimaryKey": util.EscapeGolangKeyword(stringx.From(table.PrimaryKey.Name.ToCamel()).Untitle()),
|
|
"dataType": table.PrimaryKey.DataType,
|
|
"data": table,
|
|
})
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
|
|
return output.String(), deleteMethodOut.String(), nil
|
|
}
|