pg_customer_value_repository.go
4.8 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
package repository
import (
"fmt"
"github.com/go-pg/pg"
pgTransaction "github.com/linmadan/egglib-go/transaction/pg"
"gitlab.fjmaimaimai.com/linmadan/mmm-worth/pkg/domain"
"gitlab.fjmaimaimai.com/linmadan/mmm-worth/pkg/infrastructure/pg/models"
)
type CustomerValueRepository struct {
transactionContext *pgTransaction.TransactionContext
}
func (repository *CustomerValueRepository) Save(customerValue *domain.CustomerValue) (*domain.CustomerValue, error) {
tx := repository.transactionContext.PgTx
if customerValue.Identify() == nil {
if _, err := tx.QueryOne(
pg.Scan(&customerValue.CustomerValueId, &customerValue.CustomerValueName, &customerValue.CompanyId),
"INSERT INTO customer_values (customer_value_name, company_id) VALUES (?, ?) RETURNING id, customer_value_name, company_id",
customerValue.CustomerValueName, customerValue.CompanyId); err != nil {
return customerValue, err
}
} else {
if _, err := tx.QueryOne(
pg.Scan(&customerValue.CustomerValueId, &customerValue.CustomerValueName, &customerValue.CompanyId),
"UPDATE customer_values SET customer_value_name=?, company_id=? WHERE id=? RETURNING id, customer_value_name, company_id",
customerValue.CustomerValueName, customerValue.CompanyId, customerValue.Identify()); err != nil {
return customerValue, err
}
}
return customerValue, nil
}
func (repository *CustomerValueRepository) Remove(customerValue *domain.CustomerValue) (*domain.CustomerValue, error) {
tx := repository.transactionContext.PgTx
customerValueModel := new(models.CustomerValue)
customerValueModel.Id = customerValue.CustomerValueId
if _, err := tx.Model(customerValueModel).WherePK().Delete(); err != nil {
return customerValue, err
}
return customerValue, nil
}
func (repository *CustomerValueRepository) FindOne(queryOptions map[string]interface{}) (*domain.CustomerValue, error) {
tx := repository.transactionContext.PgTx
customerValueModel := new(models.CustomerValue)
query := tx.Model(customerValueModel)
if customerValueId, ok := queryOptions["customerValueId"]; ok {
query = query.Where("customer_value.id = ?", customerValueId)
}
if err := query.First(); err != nil {
if err.Error() == "pg: no rows in result set" {
return nil, fmt.Errorf("没有此资源")
} else {
return nil, err
}
}
if customerValueModel.Id == 0 {
return nil, nil
} else {
return repository.transformPgModelToDomainModel(customerValueModel)
}
}
func (repository *CustomerValueRepository) Find(queryOptions map[string]interface{}) (int64, []*domain.CustomerValue, error) {
tx := repository.transactionContext.PgTx
var customerValueModels []*models.CustomerValue
customerValues := make([]*domain.CustomerValue, 0)
query := tx.Model(&customerValueModels)
if companyId, ok := queryOptions["companyId"]; ok {
query = query.Where("customer_value.company_id = ?", companyId)
}
if customerValueName, ok := queryOptions["customerValueName"]; ok && (customerValueName != "") {
query = query.Where(`customer_value.customer_value_name = ?`, customerValueName)
}
if customerValueNameMatch, ok := queryOptions["customerValueNameMatch"]; ok && (customerValueNameMatch != "") {
query = query.Where(`customer_value.customer_value_name LIKE ?`, fmt.Sprintf("%%%s%%", customerValueNameMatch.(string)))
}
if customerValueIds, ok := queryOptions["customerValueIds"]; ok {
query = query.Where(`customer_value.id IN (?)`, pg.In(customerValueIds.([]int)))
}
if offset, ok := queryOptions["offset"]; ok {
offset := offset.(int)
if offset > -1 {
query = query.Offset(offset)
}
} else {
query = query.Offset(0)
}
if limit, ok := queryOptions["limit"]; ok {
limit := limit.(int)
if limit > -1 {
query = query.Limit(limit)
}
} else {
query = query.Limit(20)
}
if count, err := query.Order("id DESC").SelectAndCount(); err != nil {
return 0, customerValues, err
} else {
for _, customerValueModel := range customerValueModels {
if customerValue, err := repository.transformPgModelToDomainModel(customerValueModel); err != nil {
return 0, customerValues, err
} else {
customerValues = append(customerValues, customerValue)
}
}
return int64(count), customerValues, nil
}
}
func (repository *CustomerValueRepository) transformPgModelToDomainModel(customerValueModel *models.CustomerValue) (*domain.CustomerValue, error) {
return &domain.CustomerValue{
CustomerValueId: customerValueModel.Id,
CustomerValueName: customerValueModel.CustomerValueName,
CompanyId: customerValueModel.CompanyId,
}, nil
}
func NewCustomerValueRepository(transactionContext *pgTransaction.TransactionContext) (*CustomerValueRepository, error) {
if transactionContext == nil {
return nil, fmt.Errorf("transactionContext参数不能为nil")
} else {
return &CustomerValueRepository{
transactionContext: transactionContext,
}, nil
}
}