service/app/mix/dao/mongo_vas.go

540 lines
12 KiB
Go
Raw Normal View History

2023-12-21 22:17:40 +08:00
package dao
import (
2024-12-09 16:08:19 +08:00
"context"
2024-12-16 17:01:53 +08:00
"errors"
2023-12-21 22:17:40 +08:00
"github.com/gin-gonic/gin"
"github.com/qiniu/qmgo"
"github.com/qiniu/qmgo/operator"
2024-12-09 16:08:19 +08:00
qoptions "github.com/qiniu/qmgo/options"
"go.mongodb.org/mongo-driver/mongo/options"
2023-12-21 22:17:40 +08:00
vasproto "service/api/proto/vas/proto"
"service/dbstruct"
"time"
)
// 订单操作历史
func (m *Mongo) AddOplogOrder(ctx *gin.Context, doc *dbstruct.OplogOrder) error {
col := m.getColOplogOrder(doc.OrderId)
_, err := col.InsertOne(ctx, doc)
return err
}
// 金币订单操作历史
func (m *Mongo) AddOplogCoinOrder(ctx *gin.Context, doc *dbstruct.OplogCoinOrder) error {
col := m.getColOplogCoinOrder(doc.OrderId)
_, err := col.InsertOne(ctx, doc)
return err
}
// 用户增值信息
func (m *Mongo) GetUserVasInfoByMid(ctx *gin.Context, mid int64) (*dbstruct.UserVasInfo, error) {
doc := new(dbstruct.UserVasInfo)
col := m.getColUserVasInfo()
query := qmgo.M{
"_id": mid,
}
err := col.Find(ctx, query).One(&doc)
if err == qmgo.ErrNoSuchDocuments {
err = nil
return nil, nil
}
2024-04-12 10:01:49 +08:00
if err != nil {
return nil, err
}
2023-12-21 22:17:40 +08:00
return doc, nil
}
func (m *Mongo) UpdateUserVasInfo(ctx *gin.Context, req *vasproto.UpdateWechatReq) error {
col := m.getColUserVasInfo()
_, err := col.Bulk().UpsertOne(
qmgo.M{
"_id": req.Mid,
},
qmgo.M{
operator.SetOnInsert: qmgo.M{
"ct": time.Now().Unix(),
},
operator.Set: qmgo.M{
"wechat_lock_type": req.WechatLockType,
"wechat_contact": req.WechatContact,
"wechat_coin_price": req.WechatCoinPrice,
"wechat_ut": time.Now().Unix(),
},
},
).Run(ctx)
if err != nil {
return err
}
return err
}
2024-04-12 10:01:49 +08:00
2024-04-15 15:17:30 +08:00
// 空间价格信息
func (m *Mongo) GetZoneVasById(ctx *gin.Context, zid int64) (*dbstruct.ZoneVas, error) {
2024-04-12 10:01:49 +08:00
doc := new(dbstruct.ZoneVas)
col := m.getColZoneVas()
query := qmgo.M{
2024-04-15 15:17:30 +08:00
"_id": zid,
2024-04-12 10:01:49 +08:00
}
err := col.Find(ctx, query).One(&doc)
if err == qmgo.ErrNoSuchDocuments {
err = nil
return nil, nil
}
if err != nil {
return nil, err
}
return doc, nil
}
2024-04-15 15:17:30 +08:00
// 批量空间价格信息
func (m *Mongo) GetZoneVasByIds(ctx *gin.Context, zids []int64) ([]*dbstruct.ZoneVas, error) {
list := make([]*dbstruct.ZoneVas, 0)
col := m.getColZoneVas()
query := qmgo.M{
"_id": qmgo.M{
"$in": zids,
},
}
err := col.Find(ctx, query).All(&list)
if err == qmgo.ErrNoSuchDocuments {
err = nil
return make([]*dbstruct.ZoneVas, 0), nil
}
if err != nil {
return make([]*dbstruct.ZoneVas, 0), err
}
return list, nil
}
2024-04-12 10:01:49 +08:00
func (m *Mongo) UpsertZoneVas(ctx *gin.Context, req *dbstruct.ZoneVas) error {
col := m.getColZoneVas()
_, err := col.Bulk().UpsertOne(
qmgo.M{
"_id": req.Zid,
},
qmgo.M{
operator.SetOnInsert: qmgo.M{
"ct": time.Now().Unix(),
"mid": req.Mid,
},
operator.Set: qmgo.M{
"ut": time.Now().Unix(),
"admission_price": req.AdmissionPrice,
"ironfanship_price": req.IronfanshipPrice,
"is_superfanship_enabled": req.IsSuperfanshipEnabled,
"superfanship_price": req.SuperfanshipPrice,
"superfanship_valid_period": req.SuperfanshipValidPeriod,
"is_superfanship_give_wechat": req.IsSuperfanshipGiveWechat,
2024-10-09 21:06:26 +08:00
"superfan_price_list": req.SuperfanPriceList,
2024-04-12 10:01:49 +08:00
},
},
).Run(ctx)
if err != nil {
return err
}
return err
}
// 空间动态价格
func (m *Mongo) GetZoneMomentPriceById(ctx *gin.Context, id int64) (*dbstruct.ZoneMomentPrice, error) {
doc := new(dbstruct.ZoneMomentPrice)
col := m.getColZoneMomentPrice()
query := qmgo.M{
"_id": id,
}
err := col.Find(ctx, query).One(&doc)
if err == qmgo.ErrNoSuchDocuments {
err = nil
return nil, nil
}
if err != nil {
return nil, err
}
return doc, nil
}
2024-04-15 15:17:30 +08:00
// 批量空间动态价格
func (m *Mongo) GetZoneMomentPriceByIds(ctx *gin.Context, ids []int64) ([]*dbstruct.ZoneMomentPrice, error) {
list := make([]*dbstruct.ZoneMomentPrice, 0)
col := m.getColZoneMomentPrice()
query := qmgo.M{
"_id": qmgo.M{
"$in": ids,
},
}
err := col.Find(ctx, query).All(&list)
if err == qmgo.ErrNoSuchDocuments {
err = nil
return make([]*dbstruct.ZoneMomentPrice, 0), nil
}
if err != nil {
return make([]*dbstruct.ZoneMomentPrice, 0), err
}
return list, nil
}
2024-04-12 10:01:49 +08:00
func (m *Mongo) UpsertZoneMomentPrice(ctx *gin.Context, req *dbstruct.ZoneMomentPrice) error {
col := m.getColZoneMomentPrice()
_, err := col.Bulk().UpsertOne(
qmgo.M{
"_id": req.MomentId,
},
qmgo.M{
operator.SetOnInsert: qmgo.M{
"ct": time.Now().Unix(),
"mid": req.Mid,
},
operator.Set: qmgo.M{
"ut": time.Now().Unix(),
"price": req.Price,
},
},
).Run(ctx)
if err != nil {
return err
}
return err
}
2024-04-15 15:17:30 +08:00
// 增加动态购买人数
func (m *Mongo) IncZoneMomentBuyerCnt(ctx *gin.Context, zid, momentId int64) error {
col := m.getColZoneMomentStat()
_, err := col.Bulk().UpsertOne(
qmgo.M{
"_id": momentId,
},
qmgo.M{
operator.SetOnInsert: qmgo.M{
"ct": time.Now().Unix(),
"zid": zid,
},
operator.Set: qmgo.M{
"ut": time.Now().Unix(),
},
operator.Inc: qmgo.M{
"buyer_cnt": 1,
},
},
).Run(ctx)
if err != nil {
return err
}
return err
}
// 减少动态购买人数
func (m *Mongo) DecZoneMomentBuyerCnt(ctx *gin.Context, zid, momentId int64) error {
col := m.getColZoneMomentStat()
_, err := col.Bulk().UpsertOne(
qmgo.M{
"_id": momentId,
},
qmgo.M{
operator.SetOnInsert: qmgo.M{
"ct": time.Now().Unix(),
"zid": zid,
},
operator.Set: qmgo.M{
"ut": time.Now().Unix(),
},
operator.Inc: qmgo.M{
"buyer_cnt": -1,
},
},
).Run(ctx)
if err != nil {
return err
}
return err
}
// 获取动态的数据
func (m *Mongo) GetZoneMomentStatByIds(ctx *gin.Context, momentIds []int64) ([]*dbstruct.ZoneMomentStat, error) {
list := make([]*dbstruct.ZoneMomentStat, 0)
col := m.getColZoneMomentStat()
query := qmgo.M{
"_id": qmgo.M{
"$in": momentIds,
},
}
err := col.Find(ctx, query).All(&list)
if err == qmgo.ErrNoSuchDocuments {
err = nil
return make([]*dbstruct.ZoneMomentStat, 0), nil
}
if err != nil {
return make([]*dbstruct.ZoneMomentStat, 0), err
}
return list, nil
}
2024-07-01 15:59:42 +08:00
// 获取收入看板
func (m *Mongo) GetZoneUserIncome(ctx *gin.Context, mid int64) (*dbstruct.UserIncome, error) {
doc := new(dbstruct.UserIncome)
col := m.getColUserIncome()
query := qmgo.M{
"_id": mid,
}
err := col.Find(ctx, query).One(&doc)
if err == qmgo.ErrNoSuchDocuments {
err = nil
return nil, nil
}
if err != nil {
return nil, err
}
return doc, nil
}
2024-07-04 14:11:57 +08:00
// 收入历史
func (m *Mongo) AddWithdrawHis(ctx *gin.Context, doc *dbstruct.WithdrawHis) error {
col := m.getColWithdrawHis()
_, err := col.InsertOne(ctx, doc)
return err
}
2024-10-10 08:59:27 +08:00
// 提现冻结
func (m *Mongo) AddWithdrawFreeze(ctx *gin.Context, doc *dbstruct.WithdrawFreeze) error {
col := m.getColWithdrawFreeze()
_, err := col.InsertOne(ctx, doc)
return err
}
func (m *Mongo) DelWithdrawFreeze(ctx *gin.Context, userId int64) error {
col := m.getColWithdrawFreeze()
err := col.RemoveId(ctx, userId)
return err
}
func (m *Mongo) GetWithdrawFreezeList(ctx *gin.Context) ([]*dbstruct.WithdrawFreeze, error) {
list := make([]*dbstruct.WithdrawFreeze, 0)
col := m.getColWithdrawFreeze()
query := qmgo.M{}
err := col.Find(ctx, query).All(&list)
if err == qmgo.ErrNoSuchDocuments {
err = nil
return make([]*dbstruct.WithdrawFreeze, 0), nil
}
if err != nil {
return make([]*dbstruct.WithdrawFreeze, 0), err
}
return list, nil
}
func (m *Mongo) GetWithdrawFreezeByUserId(ctx *gin.Context, userId int64) (*dbstruct.WithdrawFreeze, error) {
doc := new(dbstruct.WithdrawFreeze)
col := m.getColWithdrawFreeze()
query := qmgo.M{
"_id": userId,
}
err := col.Find(ctx, query).One(&doc)
if err == qmgo.ErrNoSuchDocuments {
err = nil
return nil, nil
}
if err != nil {
return nil, err
}
return doc, nil
}
2024-10-10 09:17:07 +08:00
func (m *Mongo) GetWithdrawFreezeByMid(ctx *gin.Context, mid int64) (*dbstruct.WithdrawFreeze, error) {
doc := new(dbstruct.WithdrawFreeze)
col := m.getColWithdrawFreeze()
query := qmgo.M{
"mid": mid,
}
err := col.Find(ctx, query).One(&doc)
if err == qmgo.ErrNoSuchDocuments {
err = nil
return nil, nil
}
if err != nil {
return nil, err
}
return doc, nil
}
// 用户退款表:查询主播审核列表
2024-12-09 15:01:37 +08:00
func (m *Mongo) GetZoneRefundList(ctx *gin.Context, bMid int64, refundsStatusList []int64, offset int, limit int) ([]*dbstruct.RefundInfo, error) {
list := make([]*dbstruct.RefundInfo, 0)
doc := m.GetZoneRefund()
query := qmgo.M{
2024-12-23 16:58:05 +08:00
"streamer_mid": bMid,
2024-12-05 14:44:39 +08:00
"refunds_status": qmgo.M{
"$in": refundsStatusList,
},
}
2024-12-09 15:01:37 +08:00
err := doc.Find(ctx, query).Limit(int64(limit)).Skip(int64(offset)).All(&list)
if errors.Is(err, qmgo.ErrNoSuchDocuments) {
err = nil
return nil, err
}
if err != nil {
return nil, err
}
return list, nil
}
// 用户退款表:查询主播审核详情页
func (m *Mongo) GetZoneRefundInfo(ctx *gin.Context, auditId string) (*dbstruct.RefundInfo, error) {
doc := new(dbstruct.RefundInfo)
col := m.GetZoneRefund()
query := qmgo.M{
"_id": auditId,
}
err := col.Find(ctx, query).One(&doc)
if errors.Is(err, qmgo.ErrNoSuchDocuments) {
err = nil
2024-12-05 15:54:24 +08:00
return nil, err
}
if err != nil {
return nil, err
}
return doc, nil
}
// 用户退款表:主播审核
2024-12-05 15:54:24 +08:00
func (m *Mongo) SetZoneRefundAuditInfo(ctx *gin.Context, auditId string, refundsStatus int64) error {
col := m.GetZoneRefund()
_, err := col.Bulk().UpdateOne(
qmgo.M{
"_id": auditId,
},
qmgo.M{
operator.Set: qmgo.M{
"refunds_status": refundsStatus,
"ut": time.Now().Unix(),
},
},
).Run(ctx)
if errors.Is(err, qmgo.ErrNoSuchDocuments) {
err = nil
return err
}
if err != nil {
return err
}
return nil
}
// 用户退款表2小时内自动通过
func (m *Mongo) AddZoneRefundAutomatic(ctx *gin.Context, doc *dbstruct.RefundInfo) error {
col := m.GetZoneRefund()
_, err := col.InsertOne(ctx, doc)
if err != nil {
return err
}
return nil
}
// 用户退款表:主播超过 24 小时未审核列表
func (m *Mongo) GetRefundAudit(ctx *gin.Context) ([]*dbstruct.RefundInfo, error) {
list := make([]*dbstruct.RefundInfo, 0)
col := m.GetZoneRefund()
2024-12-16 17:01:53 +08:00
//at := time.Now().Unix() - 24*3600
// TODO:wxy, 测试,主播超过 10分钟未审核自动通过
at := time.Now().Unix() - 600
query := qmgo.M{
"ct": qmgo.M{
"$gte": at - 5*60, // >=
"$lte": at, // <=
},
2024-12-24 11:18:34 +08:00
"refunds_status": dbstruct.RefundsApproved,
}
err := col.Find(ctx, query).All(&list)
if errors.Is(err, qmgo.ErrNoSuchDocuments) {
err = nil
return nil, err
}
if err != nil {
return nil, err
}
return list, nil
}
func (m *Mongo) SetRefundAudit(ctx *gin.Context, ids []string) error {
col := m.GetZoneRefund()
query := qmgo.M{
"_id": qmgo.M{
"$in": ids,
},
}
_, err := col.Bulk().UpdateAll(
query,
qmgo.M{
operator.Set: qmgo.M{
"refunds_status": dbstruct.RefundsOvertime,
"ut": time.Now().Unix(),
},
},
).Run(ctx)
if errors.Is(err, qmgo.ErrNoSuchDocuments) {
err = nil
return err
}
if err != nil {
return err
}
return nil
}
2024-12-09 16:08:19 +08:00
// 更新支付宝余额
func (m *Mongo) UpsertAlipayBalance(ctx context.Context, id string, balance int64) error {
col := m.getColAlipayBalance()
up := qmgo.M{
operator.SetOnInsert: qmgo.M{
2024-12-09 17:11:34 +08:00
"ct": time.Now().Unix(),
"withdraw_ut": 0,
2024-12-09 16:08:19 +08:00
},
operator.Set: qmgo.M{
2024-12-09 17:11:34 +08:00
"balance": balance,
2024-12-09 16:08:19 +08:00
},
}
err := col.UpdateId(ctx, id, up, qoptions.UpdateOptions{
UpdateHook: nil,
UpdateOptions: options.Update().SetUpsert(true),
})
return err
}
// 更新ut
func (m *Mongo) UpdateAlipayAccountWithdrawUt(ctx *gin.Context, id string) error {
col := m.getColAlipayBalance()
up := qmgo.M{
operator.Set: qmgo.M{
"withdraw_ut": time.Now().Unix(),
},
}
err := col.UpdateId(ctx, id, up)
return err
}
// 获取提现支付宝
func (m *Mongo) GetAvailableWithdrawAlipayAccount(ctx *gin.Context, withdrawAmount int64) (*dbstruct.AlipayAccount, error) {
doc := new(dbstruct.AlipayAccount)
col := m.getColAlipayBalance()
query := qmgo.M{
"balance": qmgo.M{
operator.Gte: withdrawAmount + 100000,
},
}
err := col.Find(ctx, query).Sort("withdraw_ut").One(&doc)
if err != nil {
return nil, err
}
return doc, err
}