-
Notifications
You must be signed in to change notification settings - Fork 174
/
batch.go
166 lines (129 loc) · 6.05 KB
/
batch.go
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
package transfer
import (
"fmt"
"github.com/ArtisanCloud/PowerLibs/v2/object"
"github.com/ArtisanCloud/PowerWeChat/v2/src/kernel/power"
payment "github.com/ArtisanCloud/PowerWeChat/v2/src/payment/kernel"
"github.com/ArtisanCloud/PowerWeChat/v2/src/payment/transfer/request"
"github.com/ArtisanCloud/PowerWeChat/v2/src/payment/transfer/response"
)
type BatchClient struct {
*payment.BaseClient
Version string
}
func NewBatchClient(app *payment.ApplicationPaymentInterface) (*BatchClient, error) {
baseClient, err := payment.NewBaseClient(app)
if err != nil {
return nil, err
}
return &BatchClient{
BaseClient: baseClient,
Version: "v3",
}, nil
}
// 发起商家转账API
// https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_1.shtml
func (comp *BatchClient) Batch(param *request.RequestTransferBatch) (*response.ResponseTrasferBatch, error) {
result := &response.ResponseTrasferBatch{}
options, err := object.StructToHashMap(param)
if err != nil {
return nil, err
}
endpoint := fmt.Sprintf("/%s/transfer/batches", comp.Version)
_, err = comp.Request(comp.Wrap(endpoint), nil, "POST", options, false, nil, result)
return result, err
}
// 微信批次单号查询批次单AP
// https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_2.shtml
func (comp *BatchClient) QueryBatch(batchID string, needQueryDetail bool, offset int, limit int, detailStatus string) (*response.ResponseTrasferQueryBatch, error) {
result := &response.ResponseTrasferQueryBatch{}
query := &object.StringMap{
"need_query_detail": fmt.Sprintf("%t", needQueryDetail),
"offset": fmt.Sprintf("%d", offset),
"limit": fmt.Sprintf("%d", limit),
"detail_status": detailStatus,
}
endpoint := fmt.Sprintf("/%s/transfer/batches/batch-id/%s", comp.Version, batchID)
_, err := comp.Request(comp.Wrap(endpoint), query, "GET", nil, false, nil, result)
return result, err
}
// 微信明细单号查询明细单API
// https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_3.shtml
func (comp *BatchClient) QueryBatchDetail(batchID string, detailID string) (*response.TransferBatch, error) {
result := &response.TransferBatch{}
endpoint := fmt.Sprintf("/%s/transfer/batches/batch-id/%s/details/detail-id/%s", comp.Version, batchID, detailID)
_, err := comp.Request(comp.Wrap(endpoint), nil, "GET", nil, false, nil, result)
return result, err
}
// 商家批次单号查询批次单API
// https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_5.shtml
func (comp *BatchClient) QueryOutBatchNO(outBatchNO string, needQueryDetail bool, offset int, limit int, detailStatus string) (*response.ResponseTrasferQueryOutBatchNO, error) {
result := &response.ResponseTrasferQueryOutBatchNO{}
query := &object.StringMap{
"need_query_detail": fmt.Sprintf("%t", needQueryDetail),
"offset": fmt.Sprintf("%d", offset),
"limit": fmt.Sprintf("%d", limit),
"detail_status": detailStatus,
}
endpoint := fmt.Sprintf("/%s/transfer/batches/out_batch_no/%s", comp.Version, outBatchNO)
_, err := comp.Request(comp.Wrap(endpoint), query, "GET", nil, false, nil, result)
return result, err
}
// 商家明细单号查询明细单API
// https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_6.shtml
func (comp *BatchClient) QueryOutBatchNoDetail(outBatchNO string, outDetailNO string) (*response.ResponseOutBatchNODetail, error) {
result := &response.ResponseOutBatchNODetail{}
endpoint := fmt.Sprintf("/%s/transfer/batches/out-batch-no/%s/details/out-detail-no/%s", comp.Version, outBatchNO, outDetailNO)
_, err := comp.Request(comp.Wrap(endpoint), nil, "GET", nil, false, nil, result)
return result, err
}
// 转账电子回单申请受理API
// https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_7.shtml
func (comp *BatchClient) BillReceipt(outBatchNO string) (*response.ResponseTrasferBillReceipt, error) {
result := &response.ResponseTrasferBillReceipt{}
options := &object.HashMap{
"out_batch_no": outBatchNO,
}
endpoint := fmt.Sprintf("/%s/transfer/bill-receipt", comp.Version)
_, err := comp.Request(comp.Wrap(endpoint), nil, "POST", options, false, nil, result)
return result, err
}
// 查询转账电子回单API
// https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_8.shtml
func (comp *BatchClient) QueryBillReceipt(outBatchNO string) (*response.ResponseTrasferBillReceipt, error) {
result := &response.ResponseTrasferBillReceipt{}
endpoint := fmt.Sprintf("/%s/transfer/bill-receipt/%s", comp.Version, outBatchNO)
_, err := comp.Request(comp.Wrap(endpoint), nil, "GET", nil, false, nil, result)
return result, err
}
// 转账明细电子回单受理API
// https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_9.shtml
func (comp *BatchClient) ElectronicReceipts(acceptType string, outBatchNO string, outDetailNO string) (*response.ResponseTrasferElectronicReceipts, error) {
result := &response.ResponseTrasferElectronicReceipts{}
options := &object.HashMap{
"accept_type": acceptType,
"out_batch_no": outBatchNO,
"out_detail_no": outDetailNO,
}
endpoint := fmt.Sprintf("/%s/transfer-detail/electronic-receipts", comp.Version)
_, err := comp.Request(comp.Wrap(endpoint), nil, "POST", options, false, nil, result)
return result, err
}
// 查询转账明细电子回单受理结果API
// https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_10.shtml
func (comp *BatchClient) QueryElectronicReceipts(acceptType string, outBatchNO string, outDetailNO string) (*response.ResponseTrasferElectronicReceipts, error) {
result := &response.ResponseTrasferElectronicReceipts{}
query := &object.StringMap{
"accept_type": acceptType,
"out_batch_no": outBatchNO,
"out_detail_no": outDetailNO,
}
endpoint := fmt.Sprintf("/%s/transfer-detail/electronic-receipts", comp.Version)
_, err := comp.Request(comp.Wrap(endpoint), query, "GET", nil, false, nil, result)
return result, err
}
// 下载电子回单API
// https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_11.shtml
func (comp *Client) DownloadSignFile(requestDownload *power.RequestDownload, filePath string) (int64, error) {
return comp.StreamDownload(requestDownload, filePath)
}