增加华为支付模块

This commit is contained in:
ayflying
2025-08-05 18:19:42 +08:00
parent d54de73e11
commit 039acea0af
5 changed files with 351 additions and 1 deletions

View File

@@ -0,0 +1,49 @@
package huawei
type CallbackType struct {
Version string `json:"version"`
NotifyTime int64 `json:"notifyTime"`
EventType string `json:"eventType"`
ApplicationId string `json:"applicationId"`
OrderNotification *OrderNotification `json:"orderNotification"`
SubNotification *SubNotification `json:"subNotification"`
}
type OrderNotification struct {
Version string `json:"version" dc:"通知版本v2"`
NotificationType int `json:"notificationType" dc:"通知事件的类型取值如下1支付成功 2退款成功"`
PurchaseToken string `json:"purchaseToken" dc:"待下发商品的购买Token"`
ProductId string `json:"productId" dc:"商品ID"`
}
type SubNotification struct {
StatusUpdateNotification *StatusUpdateNotification `json:"statusUpdateNotification" dc:"通知消息"`
NotificationSignature string `json:"notificationSignature" dc:"对statusUpdateNotification字段的签名字符串签名算法为signatureAlgorithm表示的签名算法。"`
Version string `json:"version" dc:"通知版本v2"`
SignatureAlgorithm string `json:"signatureAlgorithm" dc:"签名算法。"`
}
// StatusUpdateNotification 订阅状态更新通知
type StatusUpdateNotification struct {
Environment string `json:"environment" dc:"发送通知的环境。PROD正式环境Sandbox沙盒测试"`
NotificationType int `json:"notificationType" dc:"通知事件的类型,具体定义需参考相关文档说明"`
SubscriptionID string `json:"subscriptionId" dc:"订阅ID"`
CancellationDate int64 `json:"cancellationDate" dc:"撤销订阅时间或退款时间UTC时间戳以毫秒为单位仅在notificationType取值为CANCEL的场景下会传入"`
OrderID string `json:"orderId" dc:"订单ID唯一标识一笔需要收费的收据由华为应用内支付服务器在创建订单以及订阅型商品续费时生成。每一笔新的收据都会使用不同的orderId。通知类型为NEW_RENEWAL_PREF时不存在"`
LatestReceipt string `json:"latestReceipt" dc:"最近的一笔收据的token仅在notificationType取值为INITIAL_BUY 、RENEWAL或INTERACTIVE_RENEWAL并且续期成功情况下传入"`
LatestReceiptInfo string `json:"latestReceiptInfo" dc:"最近的一笔收据JSON字符串格式包含的参数请参见InappPurchaseDetails在notificationType取值为CANCEL时无值"`
LatestReceiptInfoSignature string `json:"latestReceiptInfoSignature" dc:"对latestReceiptInfo的签名字符串签名算法为statusUpdateNotification中的signatureAlgorithm。服务器在收到签名字符串后需要参见对返回结果验签使用IAP公钥对latestReceiptInfo的JSON字符串进行验签。公钥获取请参见查询支付服务信息"`
LatestExpiredReceipt string `json:"latestExpiredReceipt" dc:"最近的一笔过期收据的token"`
LatestExpiredReceiptInfo string `json:"latestExpiredReceiptInfo" dc:"最近的一笔过期收据JSON字符串格式在notificationType取值为RENEWAL或INTERACTIVE_RENEWAL时有值"`
LatestExpiredReceiptInfoSignature string `json:"latestExpiredReceiptInfoSignature" dc:"对latestExpiredReceiptInfo的签名字符串签名算法为statusUpdateNotification中的signatureAlgorithm。服务器在收到签名字符串后需要参见对返回结果验签使用IAP公钥对latestExpiredReceiptInfo的JSON字符串进行验签。公钥获取请参见查询支付服务信息"`
AutoRenewStatus int `json:"autoRenewStatus" dc:"续期状态。取值说明1当前周期到期后正常续期0用户已终止续期"`
RefundPayOrderId string `json:"refundPayOrderId" dc:"退款交易号在notificationType取值为CANCEL时有值"`
ProductID string `json:"productId" dc:"订阅型商品ID"`
ApplicationID string `json:"applicationId" dc:"应用ID"`
ExpirationIntent int `json:"expirationIntent" dc:"超期原因仅在notificationType为RENEWAL或INTERACTIVE_RENEWAL时并且续期失败情况下有值"`
PurchaseToken string `json:"purchaseToken" dc:"订阅token与上述订阅ID字段subscriptionId对应。"`
}
type AtResponse struct {
AccessToken string `json:"access_token"`
}