Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
50fe34e1c1 | ||
|
|
25c00d5072 | ||
|
|
ee32c8b83d | ||
|
|
12a193fdee | ||
|
|
ca55880beb |
@@ -124,9 +124,9 @@ var (
|
||||
FileUrl: url[v.S3],
|
||||
})
|
||||
if err != nil {
|
||||
Proxy := g.Cfg().MustGet(ctx, "update_proxy", "http://192.168.50.170:10808").String()
|
||||
g.Log().Debugf(ctx, "切换代理进行上传:err=%v", err)
|
||||
get, err = client.Proxy("http://192.168.50.114:10808").
|
||||
Post(ctx, address+"/callback/update", &UpdateReq{
|
||||
get, err = client.Proxy(Proxy).Post(ctx, address+"/callback/update", &UpdateReq{
|
||||
FileUrl: url[v.S3],
|
||||
})
|
||||
}
|
||||
|
||||
@@ -134,7 +134,8 @@ func (s *sGameAct) Save(ctx context.Context, actId int) (err error) {
|
||||
|
||||
//循环获取缓存数据
|
||||
err = tools.Redis.RedisScanV2(cacheKey, func(keys []string) (err error) {
|
||||
var add []interface{}
|
||||
var add = make([]*entity.GameAct, 0)
|
||||
var update = make([]*entity.GameAct, 0)
|
||||
var delKey []string
|
||||
for _, cacheKey = range keys {
|
||||
result := strings.Split(cacheKey, ":")
|
||||
@@ -176,25 +177,51 @@ func (s *sGameAct) Save(ctx context.Context, actId int) (err error) {
|
||||
}
|
||||
actionData := cacheGet.String()
|
||||
if data == nil {
|
||||
//data =
|
||||
add = append(add, &do.GameAct{
|
||||
add = append(add, &entity.GameAct{
|
||||
ActId: actId,
|
||||
Uid: uid,
|
||||
Action: actionData,
|
||||
})
|
||||
} else {
|
||||
//覆盖数据
|
||||
data.ActId = actId
|
||||
data.Uid = uid
|
||||
data.Action = actionData
|
||||
add = append(add, data)
|
||||
update = append(update, data)
|
||||
}
|
||||
//最后删除key
|
||||
delKey = append(delKey, cacheKey)
|
||||
}
|
||||
|
||||
//批量写入数据库
|
||||
if len(add) > 0 {
|
||||
dbRes, err2 := g.Model(Name).Batch(30).Data(add).Save()
|
||||
add = make([]interface{}, 0)
|
||||
if len(delKey) > 0 {
|
||||
for _, v := range update {
|
||||
v.UpdatedAt = gtime.Now()
|
||||
_, err2 := g.Model(Name).Where(do.GameAct{
|
||||
Uid: v.Uid,
|
||||
ActId: v.ActId,
|
||||
UpdatedAt: v.UpdatedAt,
|
||||
}).Data(v).Update()
|
||||
if err2 != nil {
|
||||
g.Log().Error(ctx, err2)
|
||||
return
|
||||
}
|
||||
////获取多少个数据,删除不是当前修改的数据
|
||||
//count, _ := g.Model(Name).Where(do.GameAct{
|
||||
// Uid: v.Uid,
|
||||
// ActId: v.ActId,
|
||||
//}).Count()
|
||||
//if count > 1 {
|
||||
// g.Model(Name).Where(do.GameAct{
|
||||
// Uid: v.Uid,
|
||||
// ActId: v.ActId,
|
||||
// }).WhereNot("updated_at", v.UpdatedAt).Delete()
|
||||
//}
|
||||
}
|
||||
//dbRes, err2 := g.Model(Name).Batch(50).Data(add).Update()
|
||||
update = make([]*entity.GameAct, 0)
|
||||
dbRes, err2 := g.Model(Name).Batch(50).Data(add).Save()
|
||||
add = make([]*entity.GameAct, 0)
|
||||
if err2 != nil {
|
||||
g.Log().Error(ctx, err2)
|
||||
return
|
||||
|
||||
13
package/pay/oppo/model.go
Normal file
13
package/pay/oppo/model.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package oppo
|
||||
|
||||
// OPPO支付回调参数结构体
|
||||
type PayCallback struct {
|
||||
NotifyId string `json:"notifyId" dc:"回调通知单号,以GC开头,必填,示例:GC20230314657000"`
|
||||
PartnerOrder string `json:"partnerOrder" dc:"开发者订单号,必填,示例:123456"`
|
||||
ProductName string `json:"productName" dc:"商品名称,必填,示例:10元宝"`
|
||||
ProductDesc string `json:"productDesc" dc:"商品描述,必填,示例:10元宝等于1元"`
|
||||
Price int64 `json:"price" dc:"商品价格,单位为分,需要游戏服务端做验证,必填,示例:100"`
|
||||
Count int `json:"count" dc:"商品数量(一般为1),必填,示例:1"`
|
||||
Attach string `json:"attach" dc:"请求支付时上传的附加参数,可能为空,选填"`
|
||||
Sign string `json:"sign" dc:"OPPO服务端签名,需要游戏服务端做验证,必填"`
|
||||
}
|
||||
119
package/pay/oppo/oppo.go
Normal file
119
package/pay/oppo/oppo.go
Normal file
@@ -0,0 +1,119 @@
|
||||
package oppo
|
||||
|
||||
import (
|
||||
"context"
|
||||
"crypto"
|
||||
"crypto/rsa"
|
||||
"crypto/sha1"
|
||||
"crypto/x509"
|
||||
"encoding/base64"
|
||||
"encoding/pem"
|
||||
"fmt"
|
||||
"github.com/gogf/gf/v2/errors/gerror"
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"net/http"
|
||||
"strings"
|
||||
)
|
||||
|
||||
// 跟充值平台通信的加密key
|
||||
//const PUBLIC_KEY = `dfsdfs`
|
||||
|
||||
type OppoType struct {
|
||||
PublicKey string `json:"public_key"`
|
||||
}
|
||||
|
||||
func New(PublicKey string) *OppoType {
|
||||
|
||||
return &OppoType{
|
||||
PublicKey: PublicKey,
|
||||
}
|
||||
}
|
||||
|
||||
func (p *OppoType) Verify(ctx context.Context, data map[string]string) error {
|
||||
// 解析请求参数
|
||||
for k, v := range data {
|
||||
if v == "" || v == "0" {
|
||||
delete(data, k)
|
||||
}
|
||||
}
|
||||
|
||||
//data["notifyId"] = getParam(r, "notifyId")
|
||||
//data["partnerOrder"] = getParam(r, "partnerOrder")
|
||||
//data["productName"] = getParam(r, "productName")
|
||||
//data["productDesc"] = getParam(r, "productDesc")
|
||||
//data["price"] = getParam(r, "price")
|
||||
//data["count"] = getParam(r, "count")
|
||||
//data["attach"] = getParam(r, "attach")
|
||||
//data["sign"] = getParam(r, "sign")
|
||||
|
||||
// 验证签名
|
||||
result, err := p.rsaVerify(data)
|
||||
if err != nil {
|
||||
//http.Error(w, "Verification error: "+err.Error(), http.StatusInternalServerError)
|
||||
g.Log().Errorf(ctx, "Verification error: %v", err.Error())
|
||||
return err
|
||||
}
|
||||
|
||||
if result {
|
||||
// TODO::验证成功,处理后续逻辑
|
||||
//fmt.Fprint(w, "Verification successful")
|
||||
//g.Log().Errorf(ctx, "Verification error: %v", err.Error())
|
||||
} else {
|
||||
// TODO::验证失败,处理后续逻辑
|
||||
//http.Error(w, "Verification failed", http.StatusBadRequest)
|
||||
g.Log().Error(ctx, "Verification failed")
|
||||
err = gerror.New("Verification failed")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (p *OppoType) getParam(r *http.Request, paramName string) string {
|
||||
r.ParseForm()
|
||||
if value := r.FormValue(paramName); value != "" {
|
||||
return strings.TrimSpace(value)
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (p *OppoType) rsaVerify(contents map[string]string) (bool, error) {
|
||||
// 构建待签名字符串
|
||||
strContents := fmt.Sprintf("notifyId=%s&partnerOrder=%s&productName=%s&productDesc=%s&price=%s&count=%s&attach=%s",
|
||||
contents["notifyId"], contents["partnerOrder"], contents["productName"],
|
||||
contents["productDesc"], contents["price"], contents["count"], contents["attach"])
|
||||
|
||||
// 解析公钥
|
||||
publicKey := p.PublicKey
|
||||
pemData := []byte("-----BEGIN PUBLIC KEY-----\n" +
|
||||
strings.ReplaceAll(publicKey, " ", "\n") +
|
||||
"\n-----END PUBLIC KEY-----")
|
||||
|
||||
block, _ := pem.Decode(pemData)
|
||||
if block == nil {
|
||||
return false, fmt.Errorf("failed to decode PEM block")
|
||||
}
|
||||
|
||||
pubInterface, err := x509.ParsePKIXPublicKey(block.Bytes)
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
|
||||
pubKey, ok := pubInterface.(*rsa.PublicKey)
|
||||
if !ok {
|
||||
return false, fmt.Errorf("public key is not an RSA public key")
|
||||
}
|
||||
|
||||
// 解码签名
|
||||
signature, err := base64.StdEncoding.DecodeString(contents["sign"])
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
|
||||
// 计算内容的哈希值
|
||||
hash := sha1.New()
|
||||
hash.Write([]byte(strContents))
|
||||
hashed := hash.Sum(nil)
|
||||
|
||||
// 验证签名
|
||||
err = rsa.VerifyPKCS1v15(pubKey, crypto.SHA1, hashed, signature)
|
||||
return err == nil, err
|
||||
}
|
||||
20
package/pay/xiaomi/model.go
Normal file
20
package/pay/xiaomi/model.go
Normal file
@@ -0,0 +1,20 @@
|
||||
package xiaomi
|
||||
|
||||
import "github.com/gogf/gf/v2/os/gtime"
|
||||
|
||||
type PayCallback struct {
|
||||
AppID string `json:"appId" dc:"游戏ID" required:"true"`
|
||||
CPOrderID string `json:"cpOrderId" dc:"开发商订单ID" required:"true"`
|
||||
CPUserInfo string `json:"cpUserInfo" dc:"开发商透传信息" required:"false"`
|
||||
OrderConsumeType int `json:"orderConsumeType" dc:"订单类型:10:普通订单 11:直充直消订单" required:"false"`
|
||||
OrderID string `json:"orderId" dc:"游戏平台订单ID" required:"true"`
|
||||
OrderStatus string `json:"orderStatus" dc:"订单状态,TRADE_SUCCESS代表成功" required:"true"`
|
||||
PayFee int `json:"payFee" dc:"支付金额,单位为分,即0.01米币。(请务必使用payFee字段值与游戏发起订单金额做校验,确保订单金额一致性)" required:"true"`
|
||||
PayTime *gtime.Time `json:"payTime" dc:"支付时间,格式yyyy-MM-dd HH:mm:ss" required:"true"`
|
||||
ProductCode string `json:"productCode" dc:"商品代码" required:"true"`
|
||||
ProductCount int `json:"productCount" dc:"商品数量" required:"true"`
|
||||
ProductName string `json:"productName" dc:"商品名称" required:"true"`
|
||||
UID string `json:"uid" dc:"用户ID" required:"true"`
|
||||
PartnerGiftConsume int64 `json:"partnerGiftConsume" dc:"使用游戏券金额(如果订单使用游戏券则有,long型),如果有则参与签名" required:"false"`
|
||||
Signature string `json:"signature" dc:"签名,签名方法见后面说明" required:"true"`
|
||||
}
|
||||
@@ -270,7 +270,7 @@ func (s *Mod) GetPath(url string) (filePath string) {
|
||||
return url[len(get+bucketName)+1:]
|
||||
}
|
||||
|
||||
// 复制文件
|
||||
// CopyObject 复制文件
|
||||
func (s *Mod) CopyObject(bucketName string, dstStr string, srcStr string) (err error) {
|
||||
|
||||
// 原始文件
|
||||
@@ -288,3 +288,15 @@ func (s *Mod) CopyObject(bucketName string, dstStr string, srcStr string) (err e
|
||||
_, err = s.client.CopyObject(ctx, dst, src)
|
||||
return
|
||||
}
|
||||
|
||||
// Rename 重命名文件
|
||||
func (s *Mod) Rename(bucketName string, name string, newName string) (err error) {
|
||||
// 复制文件到新的名称
|
||||
err = s.CopyObject(bucketName, name, newName)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
// 删除原始文件
|
||||
err = s.RemoveObject(bucketName, name)
|
||||
return
|
||||
}
|
||||
|
||||
43
pkg/s3/s3.go
43
pkg/s3/s3.go
@@ -150,6 +150,7 @@ func (s *Mod) PutObject(f io.Reader, name string, bucketName string, _size ...in
|
||||
}
|
||||
|
||||
// RemoveObject 从指定存储桶中删除指定名称的文件
|
||||
// Deprecation: to新方法 RemoveObjectV2
|
||||
func (s *Mod) RemoveObject(name string, bucketName string) (err error) {
|
||||
opts := minio.RemoveObjectOptions{
|
||||
ForceDelete: true,
|
||||
@@ -161,6 +162,18 @@ func (s *Mod) RemoveObject(name string, bucketName string) (err error) {
|
||||
return
|
||||
}
|
||||
|
||||
// RemoveObjectV2 从指定存储桶中删除指定名称的文件
|
||||
func (s *Mod) RemoveObjectV2(bucketName string, name string) (err error) {
|
||||
opts := minio.RemoveObjectOptions{
|
||||
ForceDelete: true,
|
||||
//GovernanceBypass: true,
|
||||
//VersionID: "myversionid",
|
||||
}
|
||||
// 调用 S3 客户端删除文件
|
||||
err = s.client.RemoveObject(ctx, bucketName, name, opts)
|
||||
return
|
||||
}
|
||||
|
||||
// ListObjects 获取指定存储桶中指定前缀的文件列表
|
||||
// 返回一个包含文件信息的通道
|
||||
func (s *Mod) ListObjects(bucketName string, prefix string) (res <-chan minio.ObjectInfo, err error) {
|
||||
@@ -216,21 +229,43 @@ func (s *Mod) GetPath(url string) (filePath string) {
|
||||
}
|
||||
|
||||
// CopyObject 在指定存储桶内复制文件
|
||||
// 支持指定源文件和目标文件路径
|
||||
// bucketName 存储桶名称
|
||||
// dstStr 目标文件路径
|
||||
// srcStr 源文件路径
|
||||
// 返回操作过程中可能出现的错误
|
||||
func (s *Mod) CopyObject(bucketName string, dstStr string, srcStr string) (err error) {
|
||||
// 定义目标文件选项
|
||||
// 定义目标文件的复制选项,包含存储桶名称和目标文件路径
|
||||
var dst = minio.CopyDestOptions{
|
||||
Bucket: bucketName,
|
||||
Object: dstStr,
|
||||
}
|
||||
|
||||
// 定义源文件选项
|
||||
// 定义源文件的复制选项,包含存储桶名称和源文件路径
|
||||
var src = minio.CopySrcOptions{
|
||||
Bucket: bucketName,
|
||||
Object: srcStr,
|
||||
}
|
||||
|
||||
// 调用 S3 客户端复制文件
|
||||
// 调用 S3 客户端的 CopyObject 方法,将源文件复制到目标位置
|
||||
// 忽略返回的复制信息,仅关注是否发生错误
|
||||
_, err = s.client.CopyObject(ctx, dst, src)
|
||||
return
|
||||
}
|
||||
|
||||
// Rename 重命名文件
|
||||
func (s *Mod) Rename(bucketName string, oldName string, newName string) (err error) {
|
||||
// 复制文件到新的名称
|
||||
g.Log().Debugf(nil, "仓库=%v,rename %s to %s", bucketName, oldName, newName)
|
||||
err = s.CopyObject(bucketName, newName, oldName)
|
||||
if err != nil {
|
||||
g.Log().Error(ctx, err)
|
||||
return
|
||||
}
|
||||
// 删除原始文件
|
||||
err = s.RemoveObjectV2(bucketName, oldName)
|
||||
if err != nil {
|
||||
g.Log().Error(ctx, err)
|
||||
return
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user