123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532 |
- package wechat
- import (
- "crypto/aes"
- "crypto/cipher"
- "crypto/hmac"
- "crypto/md5"
- "crypto/sha256"
- "crypto/tls"
- "encoding/base64"
- "encoding/hex"
- "encoding/json"
- "encoding/xml"
- "errors"
- "fmt"
- "hash"
- "io"
- "io/ioutil"
- "net/http"
- "reflect"
- "strings"
- "github.com/iGoogle-ink/gopay"
- )
- // 向微信发送Post请求,对于本库未提供的微信API,可自行实现,通过此方法发送请求
- // bm:请求参数的BodyMap
- // path:接口地址去掉baseURL的path,例如:url为https://api.mch.weixin.qq.com/pay/micropay,只需传 pay/micropay
- // tlsConfig:tls配置,如无需证书请求,传nil
- func (w *Client) PostRequest(bm gopay.BodyMap, path string, tlsConfig *tls.Config) (bs []byte, err error) {
- return w.doProdPost(bm, path, tlsConfig)
- }
- // 获取微信支付所需参数里的Sign值(通过支付参数计算Sign值)
- // 注意:BodyMap中如无 sign_type 参数,默认赋值 sign_type 为 MD5
- // appId:应用ID
- // mchId:商户ID
- // ApiKey:API秘钥值
- // 返回参数 sign:通过Appid、MchId、ApiKey和BodyMap中的参数计算出的Sign值
- func GetParamSign(appId, mchId, apiKey string, bm gopay.BodyMap) (sign string) {
- bm.Set("appid", appId)
- bm.Set("mch_id", mchId)
- var (
- signType string
- h hash.Hash
- )
- signType = bm.Get("sign_type")
- if signType == gopay.NULL {
- bm.Set("sign_type", SignType_MD5)
- }
- if signType == SignType_HMAC_SHA256 {
- h = hmac.New(sha256.New, []byte(apiKey))
- } else {
- h = md5.New()
- }
- h.Write([]byte(bm.EncodeWeChatSignParams(apiKey)))
- sign = strings.ToUpper(hex.EncodeToString(h.Sum(nil)))
- return
- }
- // 获取微信支付沙箱环境所需参数里的Sign值(通过支付参数计算Sign值)
- // 注意:沙箱环境默认 sign_type 为 MD5
- // appId:应用ID
- // mchId:商户ID
- // ApiKey:API秘钥值
- // 返回参数 sign:通过Appid、MchId、ApiKey和BodyMap中的参数计算出的Sign值
- func GetSanBoxParamSign(appId, mchId, apiKey string, bm gopay.BodyMap) (sign string, err error) {
- bm.Set("appid", appId)
- bm.Set("mch_id", mchId)
- bm.Set("sign_type", SignType_MD5)
- bm.Set("total_fee", 101)
- var (
- sandBoxApiKey string
- hashMd5 hash.Hash
- )
- if sandBoxApiKey, err = getSanBoxKey(mchId, gopay.GetRandomString(32), apiKey, SignType_MD5); err != nil {
- return
- }
- hashMd5 = md5.New()
- hashMd5.Write([]byte(bm.EncodeWeChatSignParams(sandBoxApiKey)))
- sign = strings.ToUpper(hex.EncodeToString(hashMd5.Sum(nil)))
- return
- }
- // 解析微信支付异步通知的结果到BodyMap(推荐)
- // req:*http.Request
- // 返回参数bm:Notify请求的参数
- // 返回参数err:错误信息
- func ParseNotifyToBodyMap(req *http.Request) (bm gopay.BodyMap, err error) {
- bs, err := ioutil.ReadAll(io.LimitReader(req.Body, int64(2<<20))) // default 2MB change the size you want;
- if err != nil {
- return nil, fmt.Errorf("ioutil.ReadAll:%w", err)
- }
- bm = make(gopay.BodyMap)
- if err = xml.Unmarshal(bs, &bm); err != nil {
- return nil, fmt.Errorf("xml.Unmarshal(%s):%w", string(bs), err)
- }
- return
- }
- // 解析微信支付异步通知的参数
- // req:*http.Request
- // 返回参数notifyReq:Notify请求的参数
- // 返回参数err:错误信息
- func ParseNotify(req *http.Request) (notifyReq *NotifyRequest, err error) {
- notifyReq = new(NotifyRequest)
- if err = xml.NewDecoder(req.Body).Decode(notifyReq); err != nil {
- return nil, fmt.Errorf("xml.NewDecoder.Decode:%w", err)
- }
- return
- }
- // 解析微信退款异步通知的参数
- // req:*http.Request
- // 返回参数notifyReq:Notify请求的参数
- // 返回参数err:错误信息
- func ParseRefundNotify(req *http.Request) (notifyReq *RefundNotifyRequest, err error) {
- notifyReq = new(RefundNotifyRequest)
- if err = xml.NewDecoder(req.Body).Decode(notifyReq); err != nil {
- return nil, fmt.Errorf("xml.NewDecoder.Decode:%w", err)
- }
- return
- }
- // 解密微信退款异步通知的加密数据
- // reqInfo:gopay.ParseRefundNotify() 方法获取的加密数据 req_info
- // apiKey:API秘钥值
- // 返回参数refundNotify:RefundNotify请求的加密数据
- // 返回参数err:错误信息
- // 文档:https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=9_16&index=10
- func DecryptRefundNotifyReqInfo(reqInfo, apiKey string) (refundNotify *RefundNotify, err error) {
- if reqInfo == gopay.NULL || apiKey == gopay.NULL {
- return nil, errors.New("reqInfo or apiKey is null")
- }
- var (
- encryptionB, bs []byte
- block cipher.Block
- blockSize int
- )
- if encryptionB, err = base64.StdEncoding.DecodeString(reqInfo); err != nil {
- return nil, err
- }
- h := md5.New()
- h.Write([]byte(apiKey))
- key := strings.ToLower(hex.EncodeToString(h.Sum(nil)))
- if len(encryptionB)%aes.BlockSize != 0 {
- return nil, errors.New("encryptedData is error")
- }
- if block, err = aes.NewCipher([]byte(key)); err != nil {
- return nil, err
- }
- blockSize = block.BlockSize()
- func(dst, src []byte) {
- if len(src)%blockSize != 0 {
- panic("crypto/cipher: input not full blocks")
- }
- if len(dst) < len(src) {
- panic("crypto/cipher: output smaller than input")
- }
- for len(src) > 0 {
- block.Decrypt(dst, src[:blockSize])
- src = src[blockSize:]
- dst = dst[blockSize:]
- }
- }(encryptionB, encryptionB)
- bs = gopay.PKCS7UnPadding(encryptionB)
- refundNotify = new(RefundNotify)
- if err = xml.Unmarshal(bs, refundNotify); err != nil {
- return nil, fmt.Errorf("xml.Unmarshal(%s):%w", string(bs), err)
- }
- return
- }
- // 微信同步返回参数验签或异步通知参数验签
- // ApiKey:API秘钥值
- // signType:签名类型(调用API方法时填写的类型)
- // bean:微信同步返回的结构体 wxRsp 或 异步通知解析的结构体 notifyReq,推荐通 BodyMap 验签
- // 返回参数ok:是否验签通过
- // 返回参数err:错误信息
- func VerifySign(apiKey, signType string, bean interface{}) (ok bool, err error) {
- if bean == nil {
- return false, errors.New("bean is nil")
- }
- kind := reflect.ValueOf(bean).Kind()
- if kind == reflect.Map {
- bm := bean.(gopay.BodyMap)
- bodySign := bm.Get("sign")
- bm.Remove("sign")
- sign := getReleaseSign(apiKey, signType, bm)
- return sign == bodySign, nil
- }
- bs, err := json.Marshal(bean)
- if err != nil {
- return false, fmt.Errorf("json.Marshal(%s):%w", string(bs), err)
- }
- bm := make(gopay.BodyMap)
- if err = json.Unmarshal(bs, &bm); err != nil {
- return false, fmt.Errorf("json.Marshal(%s):%w", string(bs), err)
- }
- bodySign := bm.Get("sign")
- bm.Remove("sign")
- sign := getReleaseSign(apiKey, signType, bm)
- return sign == bodySign, nil
- }
- type NotifyResponse struct {
- ReturnCode string `xml:"return_code"`
- ReturnMsg string `xml:"return_msg"`
- }
- // 返回数据给微信
- func (w *NotifyResponse) ToXmlString() (xmlStr string) {
- var buffer strings.Builder
- buffer.WriteString("<xml><return_code><![CDATA[")
- buffer.WriteString(w.ReturnCode)
- buffer.WriteString("]]></return_code>")
- buffer.WriteString("<return_msg><![CDATA[")
- buffer.WriteString(w.ReturnMsg)
- buffer.WriteString("]]></return_msg></xml>")
- xmlStr = buffer.String()
- return
- }
- // JSAPI支付,统一下单获取支付参数后,再次计算出小程序用的paySign
- // appId:APPID
- // nonceStr:随即字符串
- // prepayId:统一下单成功后得到的值
- // signType:签名类型
- // timeStamp:时间
- // ApiKey:API秘钥值
- // 微信小程序支付API:https://developers.weixin.qq.com/miniprogram/dev/api/open-api/payment/wx.requestPayment.html
- // 微信小程序支付PaySign计算文档:https://pay.weixin.qq.com/wiki/doc/api/wxa/wxa_api.php?chapter=7_7&index=3
- func GetMiniPaySign(appId, nonceStr, prepayId, signType, timeStamp, apiKey string) (paySign string) {
- var (
- buffer strings.Builder
- h hash.Hash
- )
- buffer.WriteString("appId=")
- buffer.WriteString(appId)
- buffer.WriteString("&nonceStr=")
- buffer.WriteString(nonceStr)
- buffer.WriteString("&package=")
- buffer.WriteString(prepayId)
- buffer.WriteString("&signType=")
- buffer.WriteString(signType)
- buffer.WriteString("&timeStamp=")
- buffer.WriteString(timeStamp)
- buffer.WriteString("&key=")
- buffer.WriteString(apiKey)
- if signType == SignType_HMAC_SHA256 {
- h = hmac.New(sha256.New, []byte(apiKey))
- } else {
- h = md5.New()
- }
- h.Write([]byte(buffer.String()))
- return strings.ToUpper(hex.EncodeToString(h.Sum(nil)))
- }
- // 微信内H5支付,统一下单获取支付参数后,再次计算出微信内H5支付需要用的paySign
- // appId:APPID
- // nonceStr:随即字符串
- // packages:统一下单成功后拼接得到的值
- // signType:签名类型
- // timeStamp:时间
- // ApiKey:API秘钥值
- // 微信内H5支付官方文档:https://pay.weixin.qq.com/wiki/doc/api/external/jsapi.php?chapter=7_7&index=6
- func GetH5PaySign(appId, nonceStr, packages, signType, timeStamp, apiKey string) (paySign string) {
- var (
- buffer strings.Builder
- h hash.Hash
- )
- buffer.WriteString("appId=")
- buffer.WriteString(appId)
- buffer.WriteString("&nonceStr=")
- buffer.WriteString(nonceStr)
- buffer.WriteString("&package=")
- buffer.WriteString(packages)
- buffer.WriteString("&signType=")
- buffer.WriteString(signType)
- buffer.WriteString("&timeStamp=")
- buffer.WriteString(timeStamp)
- buffer.WriteString("&key=")
- buffer.WriteString(apiKey)
- if signType == SignType_HMAC_SHA256 {
- h = hmac.New(sha256.New, []byte(apiKey))
- } else {
- h = md5.New()
- }
- h.Write([]byte(buffer.String()))
- paySign = strings.ToUpper(hex.EncodeToString(h.Sum(nil)))
- return
- }
- // APP支付,统一下单获取支付参数后,再次计算APP支付所需要的的sign
- // appId:APPID
- // partnerid:partnerid
- // nonceStr:随即字符串
- // prepayId:统一下单成功后得到的值
- // signType:此处签名方式,务必与统一下单时用的签名方式一致
- // timeStamp:时间
- // ApiKey:API秘钥值
- // APP支付官方文档:https://pay.weixin.qq.com/wiki/doc/api/app/app.php?chapter=9_12
- func GetAppPaySign(appid, partnerid, noncestr, prepayid, signType, timestamp, apiKey string) (paySign string) {
- var (
- buffer strings.Builder
- h hash.Hash
- )
- buffer.WriteString("appid=")
- buffer.WriteString(appid)
- buffer.WriteString("&noncestr=")
- buffer.WriteString(noncestr)
- buffer.WriteString("&package=Sign=WXPay")
- buffer.WriteString("&partnerid=")
- buffer.WriteString(partnerid)
- buffer.WriteString("&prepayid=")
- buffer.WriteString(prepayid)
- buffer.WriteString("×tamp=")
- buffer.WriteString(timestamp)
- buffer.WriteString("&key=")
- buffer.WriteString(apiKey)
- if signType == SignType_HMAC_SHA256 {
- h = hmac.New(sha256.New, []byte(apiKey))
- } else {
- h = md5.New()
- }
- h.Write([]byte(buffer.String()))
- paySign = strings.ToUpper(hex.EncodeToString(h.Sum(nil)))
- return
- }
- // 解密开放数据到结构体
- // encryptedData:包括敏感数据在内的完整用户信息的加密数据,小程序获取到
- // iv:加密算法的初始向量,小程序获取到
- // sessionKey:会话密钥,通过 gopay.Code2Session() 方法获取到
- // beanPtr:需要解析到的结构体指针,操作完后,声明的结构体会被赋值
- // 文档:https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/signature.html
- func DecryptOpenDataToStruct(encryptedData, iv, sessionKey string, beanPtr interface{}) (err error) {
- if encryptedData == gopay.NULL || iv == gopay.NULL || sessionKey == gopay.NULL {
- return errors.New("input params can not null")
- }
- var (
- cipherText, aesKey, ivKey, plainText []byte
- block cipher.Block
- blockMode cipher.BlockMode
- )
- beanValue := reflect.ValueOf(beanPtr)
- if beanValue.Kind() != reflect.Ptr {
- return errors.New("传入beanPtr类型必须是以指针形式")
- }
- if beanValue.Elem().Kind() != reflect.Struct {
- return errors.New("传入interface{}必须是结构体")
- }
- cipherText, _ = base64.StdEncoding.DecodeString(encryptedData)
- aesKey, _ = base64.StdEncoding.DecodeString(sessionKey)
- ivKey, _ = base64.StdEncoding.DecodeString(iv)
- if len(cipherText)%len(aesKey) != 0 {
- return errors.New("encryptedData is error")
- }
- if block, err = aes.NewCipher(aesKey); err != nil {
- return fmt.Errorf("aes.NewCipher:%w", err)
- }
- blockMode = cipher.NewCBCDecrypter(block, ivKey)
- plainText = make([]byte, len(cipherText))
- blockMode.CryptBlocks(plainText, cipherText)
- if len(plainText) > 0 {
- plainText = gopay.PKCS7UnPadding(plainText)
- }
- if err = json.Unmarshal(plainText, beanPtr); err != nil {
- return fmt.Errorf("json.Marshal(%s):%w", string(plainText), err)
- }
- return
- }
- // 解密开放数据到 BodyMap
- // encryptedData:包括敏感数据在内的完整用户信息的加密数据,小程序获取到
- // iv:加密算法的初始向量,小程序获取到
- // sessionKey:会话密钥,通过 gopay.Code2Session() 方法获取到
- // 文档:https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/signature.html
- func DecryptOpenDataToBodyMap(encryptedData, iv, sessionKey string) (bm gopay.BodyMap, err error) {
- if encryptedData == gopay.NULL || iv == gopay.NULL || sessionKey == gopay.NULL {
- return nil, errors.New("input params can not null")
- }
- var (
- cipherText, aesKey, ivKey, plainText []byte
- block cipher.Block
- blockMode cipher.BlockMode
- )
- cipherText, _ = base64.StdEncoding.DecodeString(encryptedData)
- aesKey, _ = base64.StdEncoding.DecodeString(sessionKey)
- ivKey, _ = base64.StdEncoding.DecodeString(iv)
- if len(cipherText)%len(aesKey) != 0 {
- return nil, errors.New("encryptedData is error")
- }
- if block, err = aes.NewCipher(aesKey); err != nil {
- return nil, fmt.Errorf("aes.NewCipher:%w", err)
- } else {
- blockMode = cipher.NewCBCDecrypter(block, ivKey)
- plainText = make([]byte, len(cipherText))
- blockMode.CryptBlocks(plainText, cipherText)
- if len(plainText) > 0 {
- plainText = gopay.PKCS7UnPadding(plainText)
- }
- bm = make(gopay.BodyMap)
- if err = json.Unmarshal(plainText, &bm); err != nil {
- return nil, fmt.Errorf("json.Marshal(%s):%w", string(plainText), err)
- }
- return
- }
- }
- // App应用微信第三方登录,code换取access_token
- // appId:应用唯一标识,在微信开放平台提交应用审核通过后获得
- // appSecret:应用密钥AppSecret,在微信开放平台提交应用审核通过后获得
- // code:App用户换取access_token的code
- // 文档:https://developers.weixin.qq.com/doc/oplatform/Website_App/WeChat_Login/Wechat_Login.html
- func GetAppLoginAccessToken(appId, appSecret, code string) (accessToken *AppLoginAccessToken, err error) {
- accessToken = new(AppLoginAccessToken)
- url := "https://api.weixin.qq.com/sns/oauth2/access_token?appid=" + appId + "&secret=" + appSecret + "&code=" + code + "&grant_type=authorization_code"
- _, errs := gopay.NewHttpClient().Get(url).EndStruct(accessToken)
- if len(errs) > 0 {
- return nil, errs[0]
- }
- return accessToken, nil
- }
- // 刷新App应用微信第三方登录后,获取的 access_token
- // appId:应用唯一标识,在微信开放平台提交应用审核通过后获得
- // appSecret:应用密钥AppSecret,在微信开放平台提交应用审核通过后获得
- // code:App用户换取access_token的code
- // 文档:https://developers.weixin.qq.com/doc/oplatform/Website_App/WeChat_Login/Wechat_Login.html
- func RefreshAppLoginAccessToken(appId, refreshToken string) (accessToken *RefreshAppLoginAccessTokenRsp, err error) {
- accessToken = new(RefreshAppLoginAccessTokenRsp)
- url := "https://api.weixin.qq.com/sns/oauth2/refresh_token?appid=" + appId + "&grant_type=refresh_token&refresh_token=" + refreshToken
- _, errs := gopay.NewHttpClient().Get(url).EndStruct(accessToken)
- if len(errs) > 0 {
- return nil, errs[0]
- }
- return accessToken, nil
- }
- // 获取微信小程序用户的OpenId、SessionKey、UnionId
- // appId:APPID
- // appSecret:AppSecret
- // wxCode:小程序调用wx.login 获取的code
- // 文档:https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/login/auth.code2Session.html
- func Code2Session(appId, appSecret, wxCode string) (sessionRsp *Code2SessionRsp, err error) {
- sessionRsp = new(Code2SessionRsp)
- url := "https://api.weixin.qq.com/sns/jscode2session?appid=" + appId + "&secret=" + appSecret + "&js_code=" + wxCode + "&grant_type=authorization_code"
- _, errs := gopay.NewHttpClient().Get(url).EndStruct(sessionRsp)
- if len(errs) > 0 {
- return nil, errs[0]
- }
- return sessionRsp, nil
- }
- // 获取微信小程序全局唯一后台接口调用凭据(AccessToken:157字符)
- // appId:APPID
- // appSecret:AppSecret
- // 获取access_token文档:https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/access-token/auth.getAccessToken.html
- func GetAppletAccessToken(appId, appSecret string) (accessToken *AccessToken, err error) {
- accessToken = new(AccessToken)
- url := "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" + appId + "&secret=" + appSecret
- _, errs := gopay.NewHttpClient().Get(url).EndStruct(accessToken)
- if len(errs) > 0 {
- return nil, errs[0]
- }
- return accessToken, nil
- }
- // 授权码查询openid(AccessToken:157字符)
- // appId:APPID
- // mchId:商户号
- // ApiKey:apiKey
- // authCode:用户授权码
- // nonceStr:随即字符串
- // 文档:https://pay.weixin.qq.com/wiki/doc/api/micropay.php?chapter=9_13&index=9
- func GetOpenIdByAuthCode(appId, mchId, apiKey, authCode, nonceStr string) (openIdRsp *OpenIdByAuthCodeRsp, err error) {
- var (
- url string
- bm gopay.BodyMap
- )
- url = "https://api.mch.weixin.qq.com/tools/authcodetoopenid"
- bm = make(gopay.BodyMap)
- bm.Set("appid", appId)
- bm.Set("mch_id", mchId)
- bm.Set("auth_code", authCode)
- bm.Set("nonce_str", nonceStr)
- bm.Set("sign", getReleaseSign(apiKey, SignType_MD5, bm))
- openIdRsp = new(OpenIdByAuthCodeRsp)
- _, errs := gopay.NewHttpClient().Type(gopay.TypeXML).Post(url).SendString(generateXml(bm)).EndStruct(openIdRsp)
- if len(errs) > 0 {
- return nil, errs[0]
- }
- return openIdRsp, nil
- }
- // 微信小程序用户支付完成后,获取该用户的 UnionId,无需用户授权。
- // accessToken:接口调用凭据
- // openId:用户的OpenID
- // transactionId:微信支付订单号
- // 文档:https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/user-info/auth.getPaidUnionId.html
- func GetAppletPaidUnionId(accessToken, openId, transactionId string) (unionId *PaidUnionId, err error) {
- unionId = new(PaidUnionId)
- url := "https://api.weixin.qq.com/wxa/getpaidunionid?access_token=" + accessToken + "&openid=" + openId + "&transaction_id=" + transactionId
- _, errs := gopay.NewHttpClient().Get(url).EndStruct(unionId)
- if len(errs) > 0 {
- return nil, errs[0]
- }
- return unionId, nil
- }
- // 获取用户基本信息(UnionID机制)
- // accessToken:接口调用凭据
- // openId:用户的OpenID
- // lang:默认为 zh_CN ,可选填 zh_CN 简体,zh_TW 繁体,en 英语
- // 获取用户基本信息(UnionID机制)文档:https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140839
- func GetUserInfo(accessToken, openId string, lang ...string) (userInfo *UserInfo, err error) {
- userInfo = new(UserInfo)
- url := "https://api.weixin.qq.com/cgi-bin/user/info?access_token=" + accessToken + "&openid=" + openId + "&lang=zh_CN"
- if len(lang) > 0 {
- url = "https://api.weixin.qq.com/cgi-bin/user/info?access_token=" + accessToken + "&openid=" + openId + "&lang=" + lang[0]
- }
- _, errs := gopay.NewHttpClient().Get(url).EndStruct(userInfo)
- if len(errs) > 0 {
- return nil, errs[0]
- }
- return userInfo, nil
- }
|