You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kashangwl/api.buy.go

52 lines
1.8 KiB

2 years ago
package kashangwl
import (
2 years ago
"context"
2 years ago
"encoding/json"
"go.dtapp.net/gorequest"
)
type ApiBuyResponse struct {
Code string `json:"code"`
Message string `json:"message"`
Data struct {
2 years ago
OrderId string `json:"order_id"` // 订单号
2 years ago
ProductPrice string `json:"product_price"` // 商品价格
TotalPrice string `json:"total_price"` // 总支付价格
RechargeUrl string `json:"recharge_url"` // 卡密充值网址
State int `json:"state"` // 订单状态100等待发货101正在充值200交易成功500交易失败501未知状态
Cards []struct {
CardNo string `json:"card_no"`
CardPassword string `json:"card_password"`
} `json:"cards,omitempty"` // 卡密(仅当订单成功并且商品类型为卡密时返回此数据)
Tickets []struct {
No string `json:"no"`
Ticket string `json:"ticket"`
} `json:"tickets,omitempty"` // 卡券(仅当订单成功并且商品类型为卡券时返回此数据)
} `json:"data"`
}
type ApiBuyResult struct {
Result ApiBuyResponse // 结果
Body []byte // 内容
Http gorequest.Response // 请求
Err error // 错误
}
func newApiBuyResult(result ApiBuyResponse, body []byte, http gorequest.Response, err error) *ApiBuyResult {
return &ApiBuyResult{Result: result, Body: body, Http: http, Err: err}
}
// ApiBuy 购买商品
// http://doc.cqmeihu.cn/sales/buy.html
2 years ago
func (c *Client) ApiBuy(ctx context.Context, notMustParams ...gorequest.Params) *ApiBuyResult {
2 years ago
// 参数
params := gorequest.NewParamsWith(notMustParams...)
// 请求
2 years ago
request, err := c.request(ctx, apiUrl+"/api/buy", params)
2 years ago
// 定义
var response ApiBuyResponse
err = json.Unmarshal(request.ResponseBody, &response)
return newApiBuyResult(response, request.ResponseBody, request, err)
}