forked from royalrick/weapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
express_provider.go
180 lines (145 loc) · 5.73 KB
/
express_provider.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
package weapp
import "github.com/medivhzhan/weapp/v3/request"
const (
apiGetContact = "/cgi-bin/express/delivery/contact/get"
apiPreviewTemplate = "/cgi-bin/express/delivery/template/preview"
apiUpdateBusiness = "/cgi-bin/express/delivery/service/business/update"
apiUpdatePath = "/cgi-bin/express/delivery/path/update"
)
// GetContactResponse 获取面单联系人信息返回数据
type GetContactResponse struct {
request.CommonError
WaybillID string `json:"waybill_id"` // 运单 ID
Sender ContactUser `json:"sender"` // 发件人信息
Receiver ContactUser `json:"receiver"` // 收件人信息
}
// ContactUser 联系人
type ContactUser struct {
Address string `json:"address"` //地址,已经将省市区信息合并
Name string `json:"name"` //用户姓名
Tel string `json:"tel"` //座机号码
Mobile string `json:"mobile"` //手机号码
}
// GetContact 获取面单联系人信息
// token, watBillID 接口调用凭证
func (cli *Client) GetContact(token, watBillID string) (*GetContactResponse, error) {
api := baseURL + apiGetContact
accessToken, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.getContact(api, accessToken, token, watBillID)
}
func (cli *Client) getContact(api, accessToken, token, watBillID string) (*GetContactResponse, error) {
url, err := tokenAPI(api, accessToken)
if err != nil {
return nil, err
}
params := requestParams{
"token": token,
"waybill_id": watBillID,
}
res := new(GetContactResponse)
if err := cli.request.Post(url, params, res); err != nil {
return nil, err
}
return res, nil
}
// ExpressTemplatePreviewer 面单模板预览器
type ExpressTemplatePreviewer struct {
WaybillID string `json:"waybill_id"` // 运单 ID
WaybillTemplate string `json:"waybill_template"` // 面单 HTML 模板内容(需经 Base64 编码)
WaybillData string `json:"waybill_data"` // 面单数据。详情参考下单事件返回值中的 WaybillData
Custom ExpressOrder `json:"custom"` // 商户下单数据,格式是商户侧下单 API 中的请求体
}
// PreviewTemplateResponse 预览面单模板返回数据
type PreviewTemplateResponse struct {
request.CommonError
WaybillID string `json:"waybill_id"` // 运单 ID
RenderedWaybillTemplate string `json:"rendered_waybill_template"` // 渲染后的面单 HTML 文件(已经过 Base64 编码)
}
// Preview 预览面单模板。用于调试面单模板使用。
// token 接口调用凭证
func (cli *Client) PreviewLogisticsTemplate(previewer *ExpressTemplatePreviewer) (*PreviewTemplateResponse, error) {
api := baseURL + apiPreviewTemplate
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.previewLogisticsTemplate(api, token, previewer)
}
func (cli *Client) previewLogisticsTemplate(api, token string, previewer *ExpressTemplatePreviewer) (*PreviewTemplateResponse, error) {
url, err := tokenAPI(api, token)
if err != nil {
return nil, err
}
res := new(PreviewTemplateResponse)
if err := cli.request.Post(url, previewer, res); err != nil {
return nil, err
}
return res, nil
}
// BusinessResultCode 商户审核结果状态码
type BusinessResultCode = int8
// 所有商户审核结果状态码
const (
ResultSuccess BusinessResultCode = 0 // 审核通过
ResultFailed = 1 // 审核失败
)
// BusinessUpdater 商户审核结果更新器
type BusinessUpdater struct {
ShopAppID string `json:"shop_app_id"` // 商户的小程序AppID,即审核商户事件中的 ShopAppID
BizID string `json:"biz_id"` // 商户账户
ResultCode BusinessResultCode `json:"result_code"` // 审核结果,0 表示审核通过,其他表示审核失败
ResultMsg string `json:"result_msg,omitempty"` // 审核错误原因,仅 result_code 不等于 0 时需要设置
}
// Update 更新商户审核结果
// token 接口调用凭证
func (cli *Client) UpdateLogisticsBusiness(updater *BusinessUpdater) (*request.CommonError, error) {
api := baseURL + apiUpdateBusiness
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.updateLogisticsBusiness(api, token, updater)
}
func (cli *Client) updateLogisticsBusiness(api, token string, updater *BusinessUpdater) (*request.CommonError, error) {
url, err := tokenAPI(api, token)
if err != nil {
return nil, err
}
res := new(request.CommonError)
if err := cli.request.Post(url, updater, res); err != nil {
return nil, err
}
return res, nil
}
// ExpressPathUpdater 运单轨迹更新器
type ExpressPathUpdater struct {
Token string `json:"token"` // 商户侧下单事件中推送的 Token 字段
WaybillID string `json:"waybill_id"` // 运单 ID
ActionTime uint `json:"action_time"` // 轨迹变化 Unix 时间戳
ActionType uint `json:"action_type"` // 轨迹变化类型
ActionMsg string `json:"action_msg"` // 轨迹变化具体信息说明,展示在快递轨迹详情页中。若有手机号码,则直接写11位手机号码。使用UTF-8编码。
}
// Update 更新运单轨迹
// token 接口调用凭证
func (cli *Client) UpdateLogisticsPath(updater *ExpressPathUpdater) (*request.CommonError, error) {
api := baseURL + apiUpdatePath
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.updateLogisticsPath(api, token, updater)
}
func (cli *Client) updateLogisticsPath(api, token string, updater *ExpressPathUpdater) (*request.CommonError, error) {
url, err := tokenAPI(api, token)
if err != nil {
return nil, err
}
res := new(request.CommonError)
if err := cli.request.Post(url, updater, res); err != nil {
return nil, err
}
return res, nil
}