pg_money_incentives_rule_repository.go
8.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
package repository
import (
"fmt"
"github.com/go-pg/pg/v10"
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation/pkg/infrastructure/utils"
"github.com/linmadan/egglib-go/persistent/pg/sqlbuilder"
pgTransaction "github.com/linmadan/egglib-go/transaction/pg"
"github.com/linmadan/egglib-go/utils/snowflake"
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation/pkg/domain"
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation/pkg/infrastructure/pg/models"
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation/pkg/infrastructure/pg/transform"
)
type MoneyIncentivesRuleRepository struct {
transactionContext *pgTransaction.TransactionContext
}
func (repository *MoneyIncentivesRuleRepository) nextIdentify() (int64, error) {
IdWorker, err := snowflake.NewIdWorker(1)
if err != nil {
return 0, err
}
id, err := IdWorker.NextId()
return id, err
}
func (repository *MoneyIncentivesRuleRepository) Save(moneyIncentivesRule *domain.MoneyIncentivesRule) (*domain.MoneyIncentivesRule, error) {
sqlBuildFields := []string{
"money_incentives_rule_id",
"cooperation_contract_number",
"money_incentives_amount",
"money_incentives_stage",
"money_incentives_stage_end",
"money_incentives_stage_start",
"money_incentives_time",
"referrer_percentage",
"salesman_percentage",
"org",
"company",
"updated_at",
"deleted_at",
"created_at",
}
insertFieldsSnippet := sqlbuilder.SqlFieldsSnippet(sqlBuildFields)
insertPlaceHoldersSnippet := sqlbuilder.SqlPlaceHoldersSnippet(sqlBuildFields)
returningFieldsSnippet := sqlbuilder.SqlFieldsSnippet(sqlBuildFields)
updateFields := sqlbuilder.RemoveSqlFields(sqlBuildFields, "moneyIncentivesRule_id")
updateFieldsSnippet := sqlbuilder.SqlUpdateFieldsSnippet(updateFields)
tx := repository.transactionContext.PgTx
if moneyIncentivesRule.Identify() == nil {
moneyIncentivesRuleId, err := repository.nextIdentify()
if err != nil {
return moneyIncentivesRule, err
} else {
moneyIncentivesRule.MoneyIncentivesRuleId = moneyIncentivesRuleId
}
if _, err := tx.QueryOne(
pg.Scan(
&moneyIncentivesRule.MoneyIncentivesRuleId,
&moneyIncentivesRule.CooperationContractNumber,
&moneyIncentivesRule.MoneyIncentivesAmount,
&moneyIncentivesRule.MoneyIncentivesStage,
&moneyIncentivesRule.MoneyIncentivesStageEnd,
&moneyIncentivesRule.MoneyIncentivesStageStart,
&moneyIncentivesRule.MoneyIncentivesTime,
&moneyIncentivesRule.ReferrerPercentage,
&moneyIncentivesRule.SalesmanPercentage,
&moneyIncentivesRule.Org,
&moneyIncentivesRule.Company,
&moneyIncentivesRule.UpdatedAt,
&moneyIncentivesRule.DeletedAt,
&moneyIncentivesRule.CreatedAt,
),
fmt.Sprintf("INSERT INTO money_incentives_rules (%s) VALUES (%s) RETURNING %s", insertFieldsSnippet, insertPlaceHoldersSnippet, returningFieldsSnippet),
moneyIncentivesRule.MoneyIncentivesRuleId,
moneyIncentivesRule.CooperationContractNumber,
moneyIncentivesRule.MoneyIncentivesAmount,
moneyIncentivesRule.MoneyIncentivesStage,
moneyIncentivesRule.MoneyIncentivesStageEnd,
moneyIncentivesRule.MoneyIncentivesStageStart,
moneyIncentivesRule.MoneyIncentivesTime,
moneyIncentivesRule.ReferrerPercentage,
moneyIncentivesRule.SalesmanPercentage,
moneyIncentivesRule.Org,
moneyIncentivesRule.Company,
moneyIncentivesRule.UpdatedAt,
moneyIncentivesRule.DeletedAt,
moneyIncentivesRule.CreatedAt,
); err != nil {
return moneyIncentivesRule, err
}
} else {
if _, err := tx.QueryOne(
pg.Scan(
&moneyIncentivesRule.MoneyIncentivesRuleId,
&moneyIncentivesRule.CooperationContractNumber,
&moneyIncentivesRule.MoneyIncentivesAmount,
&moneyIncentivesRule.MoneyIncentivesStage,
&moneyIncentivesRule.MoneyIncentivesStageEnd,
&moneyIncentivesRule.MoneyIncentivesStageStart,
&moneyIncentivesRule.MoneyIncentivesTime,
&moneyIncentivesRule.ReferrerPercentage,
&moneyIncentivesRule.SalesmanPercentage,
&moneyIncentivesRule.Org,
&moneyIncentivesRule.Company,
&moneyIncentivesRule.UpdatedAt,
&moneyIncentivesRule.DeletedAt,
&moneyIncentivesRule.CreatedAt,
),
fmt.Sprintf("UPDATE money_incentives_rules SET %s WHERE money_incentives_rule_id=? RETURNING %s", updateFieldsSnippet, returningFieldsSnippet),
moneyIncentivesRule.MoneyIncentivesRuleId,
moneyIncentivesRule.CooperationContractNumber,
moneyIncentivesRule.MoneyIncentivesAmount,
moneyIncentivesRule.MoneyIncentivesStage,
moneyIncentivesRule.MoneyIncentivesStageEnd,
moneyIncentivesRule.MoneyIncentivesStageStart,
moneyIncentivesRule.MoneyIncentivesTime,
moneyIncentivesRule.ReferrerPercentage,
moneyIncentivesRule.SalesmanPercentage,
moneyIncentivesRule.Org,
moneyIncentivesRule.Company,
moneyIncentivesRule.UpdatedAt,
moneyIncentivesRule.DeletedAt,
moneyIncentivesRule.CreatedAt,
moneyIncentivesRule.Identify(),
); err != nil {
return moneyIncentivesRule, err
}
}
return moneyIncentivesRule, nil
}
func (repository *MoneyIncentivesRuleRepository) Remove(moneyIncentivesRule *domain.MoneyIncentivesRule) (*domain.MoneyIncentivesRule, error) {
tx := repository.transactionContext.PgTx
moneyIncentivesRuleModel := new(models.MoneyIncentivesRule)
moneyIncentivesRuleModel.MoneyIncentivesRuleId = moneyIncentivesRule.Identify().(int64)
if _, err := tx.Model(moneyIncentivesRuleModel).WherePK().Delete(); err != nil {
return moneyIncentivesRule, err
}
return moneyIncentivesRule, nil
}
func (repository *MoneyIncentivesRuleRepository) FindOne(queryOptions map[string]interface{}) (*domain.MoneyIncentivesRule, error) {
tx := repository.transactionContext.PgTx
moneyIncentivesRuleModel := new(models.MoneyIncentivesRule)
query := sqlbuilder.BuildQuery(tx.Model(moneyIncentivesRuleModel), queryOptions)
query.SetWhereByQueryOption("money_incentives_rule.money_incentives_rule_id = ?", "moneyIncentivesRuleId")
if err := query.First(); err != nil {
if err.Error() == "pg: no rows in result set" {
return nil, fmt.Errorf("没有此资源")
} else {
return nil, err
}
}
if moneyIncentivesRuleModel.MoneyIncentivesRuleId == 0 {
return nil, nil
} else {
return transform.TransformToMoneyIncentivesRuleDomainModelFromPgModels(moneyIncentivesRuleModel)
}
}
func (repository *MoneyIncentivesRuleRepository) Find(queryOptions map[string]interface{}) (int64, []*domain.MoneyIncentivesRule, error) {
tx := repository.transactionContext.PgTx
var moneyIncentivesRuleModels []*models.MoneyIncentivesRule
moneyIncentivesRules := make([]*domain.MoneyIncentivesRule, 0)
query := sqlbuilder.BuildQuery(tx.Model(&moneyIncentivesRuleModels), queryOptions)
if companyId, ok := queryOptions["companyId"]; ok && companyId.(int64) != 0 {
query.Where("company->>'companyId' = '?'", companyId)
}
if orgId, ok := queryOptions["orgId"]; ok && orgId.(int64) != 0 {
query.Where("org->>'orgId' = '?'", orgId)
}
if orgIds, ok := queryOptions["orgIds"]; ok && len(orgIds.([]int64)) > 0 {
newOrgIds := utils.SliceItoa(orgIds.([]int64))
query.Where("org->>'orgId' in (?)", pg.In(newOrgIds))
}
offsetLimitFlag := true
if offsetLimit, ok := queryOptions["offsetLimit"]; ok {
offsetLimitFlag = offsetLimit.(bool)
}
if offsetLimitFlag {
query.SetOffsetAndLimit(20)
}
query.SetOrderDirect("money_incentives_rule_id", "DESC")
if count, err := query.SelectAndCount(); err != nil {
return 0, moneyIncentivesRules, err
} else {
for _, moneyIncentivesRuleModel := range moneyIncentivesRuleModels {
if moneyIncentivesRule, err := transform.TransformToMoneyIncentivesRuleDomainModelFromPgModels(moneyIncentivesRuleModel); err != nil {
return 0, moneyIncentivesRules, err
} else {
moneyIncentivesRules = append(moneyIncentivesRules, moneyIncentivesRule)
}
}
return int64(count), moneyIncentivesRules, nil
}
}
func NewMoneyIncentivesRuleRepository(transactionContext *pgTransaction.TransactionContext) (*MoneyIncentivesRuleRepository, error) {
if transactionContext == nil {
return nil, fmt.Errorf("transactionContext参数不能为nil")
} else {
return &MoneyIncentivesRuleRepository{
transactionContext: transactionContext,
}, nil
}
}