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.
go-library/service/ejiaofei/txchongzhi.go

57 lines
2.1 KiB

3 years ago
package ejiaofei
import (
"encoding/json"
"encoding/xml"
"fmt"
"net/http"
)
type TxChOngZhiParams struct {
OrderID string `json:"orderid"` // 用户提交的订单号 用户提交的订单号最长32位用户保证其唯一性
Account string `json:"account"` // QQ号 需要充值的QQ号
ProductID int `json:"productid"` // 产品id
Amount int `json:"amount"` // 购买数量
Ip string `json:"ip"` // 充值QQ号ip
Times string `json:"times"` // 时间戳 格式yyyyMMddhhmmss
}
type TxChOngZhiResponse struct {
3 years ago
XMLName xml.Name `xml:"response"`
UserID string `xml:"userid"` // 用户编号
PorderID string `xml:"Porderid"` // 鼎信平台订单号
OrderID string `xml:"orderid"` // 用户订单号
Account string `xml:"account"` // 需要充值的QQ号
ProductID int `xml:"productid"` // 充值产品id
Amount int `xml:"amount"` // 购买数量
State int `xml:"state"` // 订单状态
StartTime string `xml:"starttime"` // 开始时间
EndTime string `xml:"endtime"` // 结束时间
Error string `xml:"error"` // 错误提示
}
type TxChOngZhiResult struct {
Result TxChOngZhiResponse // 结果
Body []byte // 内容
Err error // 错误
}
func NewTxChOngZhiResult(result TxChOngZhiResponse, body []byte, err error) *TxChOngZhiResult {
return &TxChOngZhiResult{Result: result, Body: body, Err: err}
}
3 years ago
// TxChOngZhi 流量充值接口
func (app *App) TxChOngZhi(param TxChOngZhiParams) *TxChOngZhiResult {
3 years ago
// 签名
app.signStr = fmt.Sprintf("userid%vpwd%vorderid%vaccount%vproductid%vamount%vip%vtimes%v", app.UserID, app.Pwd, param.OrderID, param.Account, param.ProductID, param.Amount, param.Ip, param.Times)
// 请求
b, _ := json.Marshal(&param)
var params map[string]interface{}
_ = json.Unmarshal(b, &params)
body, err := app.request("http://api.ejiaofei.net:11140/txchongzhi.do", params, http.MethodGet)
// 定义
var response TxChOngZhiResponse
err = xml.Unmarshal(body, &response)
return NewTxChOngZhiResult(response, body, err)
3 years ago
}