155 lines
5.6 KiB
Go
155 lines
5.6 KiB
Go
package alipay
|
||
|
||
import (
|
||
"fmt"
|
||
"log"
|
||
"time"
|
||
|
||
"github.com/go-pay/gopay/pkg/util"
|
||
)
|
||
|
||
// AppId string `json:"app_id"` //支付宝分配给开发者的应用ID
|
||
// Method string `json:"method"` //接口名称
|
||
// Format string `json:"format"` //仅支持 JSON
|
||
// ReturnUrl string `json:"return_url"` //HTTP/HTTPS开头字符串
|
||
// Charset string `json:"charset"` //请求使用的编码格式,如utf-8,gbk,gb2312等,推荐使用 utf-8
|
||
// SignType string `json:"sign_type"` //商户生成签名字符串所使用的签名算法类型,目前支持RSA2和RSA,推荐使用 RSA2
|
||
// Sign string `json:"sign"` //商户请求参数的签名串
|
||
// Timestamp string `json:"timestamp"` //发送请求的时间,格式"yyyy-MM-dd HH:mm:ss"
|
||
// Version string `json:"version"` //调用的接口版本,固定为:1.0
|
||
// NotifyUrl string `json:"notify_url"` //支付宝服务器主动通知商户服务器里指定的页面http/https路径。
|
||
// BizContent string `json:"biz_content"` //业务请求参数的集合,最大长度不限,除公共参数外所有请求参数都必须放在这个参数中传递,具体参照各产品快速接入文档
|
||
|
||
type RoyaltyDetailInfoPojo struct {
|
||
RoyaltyType string `json:"royalty_type,omitempty"`
|
||
TransOut string `json:"trans_out,omitempty"`
|
||
TransOutType string `json:"trans_out_type,omitempty"`
|
||
TransInType string `json:"trans_in_type,omitempty"`
|
||
TransIn string `json:"trans_in"`
|
||
Amount string `json:"amount,omitempty"`
|
||
Desc string `json:"desc,omitempty"`
|
||
}
|
||
|
||
// Deprecated
|
||
func (a *Client) SetPrivateKeyType(t PKCSType) (client *Client) {
|
||
return a
|
||
}
|
||
|
||
// 设置 时区,不设置或出错均为默认服务器时间
|
||
func (a *Client) SetLocation(name string) (client *Client) {
|
||
location, err := time.LoadLocation(name)
|
||
if err != nil {
|
||
log.Println("set Location err")
|
||
return a
|
||
}
|
||
a.location = location
|
||
return a
|
||
}
|
||
|
||
// Deprecated
|
||
// 推荐使用 client.SetCertSnByContent() 或 client.SetCertSnByPath()
|
||
// 设置 应用公钥证书SN
|
||
// appCertSN:应用公钥证书SN,通过 alipay.GetCertSN() 获取
|
||
func (a *Client) SetAppCertSN(appCertSN string) (client *Client) {
|
||
a.AppCertSN = appCertSN
|
||
return a
|
||
}
|
||
|
||
// Deprecated
|
||
// 推荐使用 client.SetCertSnByContent() 或 client.SetCertSnByPath()
|
||
// 设置 支付宝公钥证书SN
|
||
// aliPayPublicCertSN:支付宝公钥证书SN,通过 alipay.GetCertSN() 获取
|
||
func (a *Client) SetAliPayPublicCertSN(aliPayPublicCertSN string) (client *Client) {
|
||
a.AliPayPublicCertSN = aliPayPublicCertSN
|
||
return a
|
||
}
|
||
|
||
// Deprecated
|
||
// 推荐使用 client.SetCertSnByContent() 或 client.SetCertSnByPath()
|
||
// 设置 支付宝CA根证书SN
|
||
// aliPayRootCertSN:支付宝CA根证书SN,通过 alipay.GetRootCertSN() 获取
|
||
func (a *Client) SetAliPayRootCertSN(aliPayRootCertSN string) (client *Client) {
|
||
a.AliPayRootCertSN = aliPayRootCertSN
|
||
return a
|
||
}
|
||
|
||
// 通过应用公钥证书路径设置 app_cert_sn、alipay_root_cert_sn、alipay_cert_sn
|
||
// appCertPath:应用公钥证书路径
|
||
// aliPayRootCertPath:支付宝根证书文件路径
|
||
// aliPayPublicCertPath:支付宝公钥证书文件路径
|
||
func (a *Client) SetCertSnByPath(appCertPath, aliPayRootCertPath, aliPayPublicCertPath string) (err error) {
|
||
appCertSn, err := GetCertSN(appCertPath)
|
||
if err != nil {
|
||
return fmt.Errorf("get app_cert_sn return err, but alse return alipay client. err: %w", err)
|
||
}
|
||
rootCertSn, err := GetRootCertSN(aliPayRootCertPath)
|
||
if err != nil {
|
||
return fmt.Errorf("get alipay_root_cert_sn return err, but alse return alipay client. err: %w", err)
|
||
}
|
||
publicCertSn, err := GetCertSN(aliPayPublicCertPath)
|
||
if err != nil {
|
||
return fmt.Errorf("get alipay_cert_sn return err, but alse return alipay client. err: %w", err)
|
||
}
|
||
a.AppCertSN = appCertSn
|
||
a.AliPayRootCertSN = rootCertSn
|
||
a.AliPayPublicCertSN = publicCertSn
|
||
return nil
|
||
}
|
||
|
||
// 通过应用公钥证书内容设置 app_cert_sn、alipay_root_cert_sn、alipay_cert_sn
|
||
// appCertContent:应用公钥证书文件内容
|
||
// aliPayRootCertContent:支付宝根证书文件内容
|
||
// aliPayPublicCertContent:支付宝公钥证书文件内容
|
||
func (a *Client) SetCertSnByContent(appCertContent, aliPayRootCertContent, aliPayPublicCertContent []byte) (err error) {
|
||
appCertSn, err := GetCertSN(appCertContent)
|
||
if err != nil {
|
||
return fmt.Errorf("get app_cert_sn return err, but alse return alipay client. err: %w", err)
|
||
}
|
||
rootCertSn, err := GetRootCertSN(aliPayRootCertContent)
|
||
if err != nil {
|
||
return fmt.Errorf("get alipay_root_cert_sn return err, but alse return alipay client. err: %w", err)
|
||
}
|
||
publicCertSn, err := GetCertSN(aliPayPublicCertContent)
|
||
if err != nil {
|
||
return fmt.Errorf("get alipay_cert_sn return err, but alse return alipay client. err: %w", err)
|
||
}
|
||
a.AppCertSN = appCertSn
|
||
a.AliPayRootCertSN = rootCertSn
|
||
a.AliPayPublicCertSN = publicCertSn
|
||
return nil
|
||
}
|
||
|
||
// 设置支付后的ReturnUrl
|
||
func (a *Client) SetReturnUrl(url string) (client *Client) {
|
||
a.ReturnUrl = url
|
||
return a
|
||
}
|
||
|
||
// 设置支付宝服务器主动通知商户服务器里指定的页面http/https路径。
|
||
func (a *Client) SetNotifyUrl(url string) (client *Client) {
|
||
a.NotifyUrl = url
|
||
return a
|
||
}
|
||
|
||
// 设置编码格式,如utf-8,gbk,gb2312等,默认推荐使用 utf-8
|
||
func (a *Client) SetCharset(charset string) (client *Client) {
|
||
if charset != util.NULL {
|
||
a.Charset = charset
|
||
}
|
||
return a
|
||
}
|
||
|
||
// 设置签名算法类型,目前支持RSA2和RSA,默认推荐使用 RSA2
|
||
func (a *Client) SetSignType(signType string) (client *Client) {
|
||
if signType != util.NULL {
|
||
a.SignType = signType
|
||
}
|
||
return a
|
||
}
|
||
|
||
// 设置应用授权
|
||
func (a *Client) SetAppAuthToken(appAuthToken string) (client *Client) {
|
||
a.AppAuthToken = appAuthToken
|
||
return a
|
||
}
|