|
@@ -1,7 +1,6 @@
|
|
|
package query_rule
|
|
|
|
|
|
import (
|
|
|
- "encoding/json"
|
|
|
"git.sxidc.com/go-framework/baize/convenient/domain/query_rule/definition"
|
|
|
"git.sxidc.com/go-framework/baize/convenient/domain/query_rule/rule"
|
|
|
"git.sxidc.com/go-framework/baize/framework/binding"
|
|
@@ -16,6 +15,7 @@ import (
|
|
|
"git.sxidc.com/go-framework/baize/framework/core/infrastructure/database/clause"
|
|
|
"git.sxidc.com/go-framework/baize/framework/core/infrastructure/database/sql"
|
|
|
"git.sxidc.com/go-tools/utils/strutils"
|
|
|
+ "github.com/goccy/go-json"
|
|
|
"github.com/pkg/errors"
|
|
|
)
|
|
|
|
|
@@ -41,20 +41,19 @@ func Bind(app *application.App, simple *Simple) {
|
|
|
}
|
|
|
|
|
|
type AdvanceQueryParams interface {
|
|
|
- GetRuleConditions() (string, []any)
|
|
|
+ GetRule() string
|
|
|
GetPageNo() int
|
|
|
GetPageSize() int
|
|
|
}
|
|
|
|
|
|
type BaseAdvanceQueryParams struct {
|
|
|
- RuleClause string `json:"ruleClause" assign:"-"`
|
|
|
- RuleClauseArgs []any `json:"ruleClauseArgs" assign:"-"`
|
|
|
- PageNo int `json:"pageNo" assign:"-"`
|
|
|
- PageSize int `json:"pageSize" assign:"-"`
|
|
|
+ Rule string `json:"rule" assign:"-"`
|
|
|
+ PageNo int `json:"pageNo" assign:"-"`
|
|
|
+ PageSize int `json:"pageSize" assign:"-"`
|
|
|
}
|
|
|
|
|
|
-func (queryParams *BaseAdvanceQueryParams) GetRuleConditions() (string, []any) {
|
|
|
- return queryParams.RuleClause, queryParams.RuleClauseArgs
|
|
|
+func (queryParams *BaseAdvanceQueryParams) GetRule() string {
|
|
|
+ return queryParams.Rule
|
|
|
}
|
|
|
|
|
|
func (queryParams *BaseAdvanceQueryParams) GetPageNo() int {
|
|
@@ -69,38 +68,19 @@ type FormAdditionalSelectClausesFunc func(queryParams AdvanceQueryParams) ([]str
|
|
|
type FormAdditionalFromFunc func(queryParams AdvanceQueryParams) ([]clause.Clause, error)
|
|
|
type FormAdditionalConditionsFunc func(queryParams AdvanceQueryParams) (clause.Clause, error)
|
|
|
type FormOtherClausesFunc func(queryParams AdvanceQueryParams) ([]clause.Clause, error)
|
|
|
-type PostQueryFunc[O any] func(queryParams AdvanceQueryParams, results []sql.Result, i *infrastructure.Infrastructure) ([]O, int64, error)
|
|
|
|
|
|
-type AddUseQueryRuleQueryRouteParams[O any] struct {
|
|
|
+type AddUseQueryRuleQueryRouteParams struct {
|
|
|
DBSchema string
|
|
|
QueryParams AdvanceQueryParams
|
|
|
FormAdditionalSelectClausesFunc FormAdditionalSelectClausesFunc
|
|
|
FormAdditionalFromFunc FormAdditionalFromFunc
|
|
|
FormAdditionalConditionsFunc FormAdditionalConditionsFunc
|
|
|
FormOtherClausesFunc FormOtherClausesFunc
|
|
|
- PostQueryFunc PostQueryFunc[O]
|
|
|
Object domain.Object
|
|
|
QueryMiddlewares []binding.Middleware
|
|
|
}
|
|
|
|
|
|
-func (params *AddUseQueryRuleQueryRouteParams[O]) check() error {
|
|
|
- if params.DBSchema == "" {
|
|
|
- return errors.New("没有传递DBSchema")
|
|
|
- }
|
|
|
-
|
|
|
- if params.Object == nil {
|
|
|
- return errors.New("没有传递Object")
|
|
|
- }
|
|
|
-
|
|
|
- return nil
|
|
|
-}
|
|
|
-
|
|
|
-func AddUseQueryRuleQueryRoute[O any](binder *binding.Binder, addParams *AddUseQueryRuleQueryRouteParams[O]) error {
|
|
|
- err := addParams.check()
|
|
|
- if err != nil {
|
|
|
- return err
|
|
|
- }
|
|
|
-
|
|
|
+func AddUseQueryRuleQueryRoute[O any](binder *binding.Binder, addParams *AddUseQueryRuleQueryRouteParams) {
|
|
|
domainPath := domain.RelativeDomainPath(addParams.Object)
|
|
|
|
|
|
var queryParams AdvanceQueryParams
|
|
@@ -178,9 +158,7 @@ func AddUseQueryRuleQueryRoute[O any](binder *binding.Binder, addParams *AddUseQ
|
|
|
additionalConditions = conditions
|
|
|
}
|
|
|
|
|
|
- ruleClause, ruleClauseArgs := advanceQueryParams.GetRuleConditions()
|
|
|
-
|
|
|
- if strutils.IsStringEmpty(ruleClause) {
|
|
|
+ if strutils.IsStringEmpty(advanceQueryParams.GetRule()) {
|
|
|
if additionalConditions != nil {
|
|
|
selectOtherClauses = append(selectOtherClauses, clause.NewWhere(additionalConditions), limitClause)
|
|
|
countOtherClauses = append(countOtherClauses, clause.NewWhere(additionalConditions))
|
|
@@ -188,8 +166,16 @@ func AddUseQueryRuleQueryRoute[O any](binder *binding.Binder, addParams *AddUseQ
|
|
|
selectOtherClauses = append(selectOtherClauses, limitClause)
|
|
|
}
|
|
|
} else {
|
|
|
- var conditionClause clause.Clause
|
|
|
- conditionClause = clause.NewConditions().AddCondition(ruleClause, ruleClauseArgs...).And()
|
|
|
+ queryRule := new(rule.Rule)
|
|
|
+ err := json.Unmarshal([]byte(advanceQueryParams.GetRule()), queryRule)
|
|
|
+ if err != nil {
|
|
|
+ return errResponse, err
|
|
|
+ }
|
|
|
+
|
|
|
+ conditionClause, err := rule.FormConditionClauseByRule(e.DomainCamelName(), *queryRule, nil)
|
|
|
+ if err != nil {
|
|
|
+ return errResponse, err
|
|
|
+ }
|
|
|
|
|
|
if additionalConditions != nil {
|
|
|
conditionClause = clause.NewConditionJoin(conditionClause, additionalConditions).And()
|
|
@@ -233,18 +219,6 @@ func AddUseQueryRuleQueryRoute[O any](binder *binding.Binder, addParams *AddUseQ
|
|
|
}
|
|
|
|
|
|
infos := make([]O, 0)
|
|
|
- totalCount := countResults[0].ColumnValueInt64("total")
|
|
|
-
|
|
|
- if addParams.PostQueryFunc != nil {
|
|
|
- innerInfos, innerTotalCount, err := addParams.PostQueryFunc(queryParams, results, i)
|
|
|
- if err != nil {
|
|
|
- return errResponse, err
|
|
|
- }
|
|
|
-
|
|
|
- infos = innerInfos
|
|
|
- totalCount = innerTotalCount
|
|
|
- }
|
|
|
-
|
|
|
err = sql.ParseSqlResult(results, &infos)
|
|
|
if err != nil {
|
|
|
return errResponse, err
|
|
@@ -252,76 +226,9 @@ func AddUseQueryRuleQueryRoute[O any](binder *binding.Binder, addParams *AddUseQ
|
|
|
|
|
|
return response.InfosData[O]{
|
|
|
Infos: infos,
|
|
|
- TotalCount: totalCount,
|
|
|
+ TotalCount: countResults[0].ColumnValueInt64("total"),
|
|
|
PageNo: advanceQueryParams.GetPageNo(),
|
|
|
}, nil
|
|
|
},
|
|
|
}, addParams.QueryMiddlewares...)
|
|
|
-
|
|
|
- return nil
|
|
|
-}
|
|
|
-
|
|
|
-type QueryRuleParseJsonBody struct {
|
|
|
- Rule string `json:"rule" assign:"-"`
|
|
|
-}
|
|
|
-
|
|
|
-type AddUseQueryRuleParseRouteParams struct {
|
|
|
- Object domain.Object
|
|
|
-}
|
|
|
-
|
|
|
-func (params *AddUseQueryRuleParseRouteParams) check() error {
|
|
|
- if params.Object == nil {
|
|
|
- return errors.New("没有传递Object")
|
|
|
- }
|
|
|
-
|
|
|
- return nil
|
|
|
-}
|
|
|
-
|
|
|
-func AddUseQueryRuleParseRoute(binder *binding.Binder, addParams *AddUseQueryRuleParseRouteParams) error {
|
|
|
- err := addParams.check()
|
|
|
- if err != nil {
|
|
|
- return err
|
|
|
- }
|
|
|
-
|
|
|
- domainPath := domain.RelativeDomainPath(addParams.Object)
|
|
|
-
|
|
|
- binding.PostBind(binder, &binding.SimpleBindItem[map[string]any]{
|
|
|
- Path: domainPath + "/queryRule/parse",
|
|
|
- SendResponseFunc: response.SendMapResponse,
|
|
|
- RequestParams: &QueryRuleParseJsonBody{},
|
|
|
- ServiceFunc: func(c *api.Context, params request.Params, objects []domain.Object, i *infrastructure.Infrastructure) (map[string]any, error) {
|
|
|
- errResponse := map[string]any{
|
|
|
- "ruleClause": "",
|
|
|
- "ruleClauseArgs": make([]any, 0),
|
|
|
- }
|
|
|
-
|
|
|
- jsonBody, err := request.ToConcrete[*QueryRuleParseJsonBody](params)
|
|
|
- if err != nil {
|
|
|
- return errResponse, err
|
|
|
- }
|
|
|
-
|
|
|
- r := new(rule.Rule)
|
|
|
- err = json.Unmarshal([]byte(jsonBody.Rule), r)
|
|
|
- if err != nil {
|
|
|
- return errResponse, err
|
|
|
- }
|
|
|
-
|
|
|
- ruleConditionClause, err := rule.FormConditionClauseByRule(addParams.Object.DomainCamelName(), *r, nil)
|
|
|
- if err != nil {
|
|
|
- return errResponse, err
|
|
|
- }
|
|
|
-
|
|
|
- ruleConditionClauseStr, err := ruleConditionClause.Clause()
|
|
|
- if err != nil {
|
|
|
- return errResponse, err
|
|
|
- }
|
|
|
-
|
|
|
- return map[string]any{
|
|
|
- "ruleClause": ruleConditionClauseStr,
|
|
|
- "ruleClauseArgs": ruleConditionClause.Args(),
|
|
|
- }, nil
|
|
|
- },
|
|
|
- })
|
|
|
-
|
|
|
- return nil
|
|
|
}
|