generated from PenaSide/GolangTemplate
added logic for CartPurchaseEvent todo need resolve coflict with accesToken
This commit is contained in:
parent
2350d16cba
commit
3d7763ba3b
@ -60,6 +60,11 @@ func NewServices(deps ServicesDeps) *Services {
|
|||||||
Notifier: deps.Notifier,
|
Notifier: deps.Notifier,
|
||||||
NotifyChannel: deps.NotificationChannel,
|
NotifyChannel: deps.NotificationChannel,
|
||||||
AdminURL: deps.AdminURL,
|
AdminURL: deps.AdminURL,
|
||||||
|
HistoryRepo: deps.Repositories.HistoryRepository,
|
||||||
|
HubAdminClient: deps.Clients.HubadminClient,
|
||||||
|
DiscountClient: deps.Clients.DiscountClient,
|
||||||
|
CurrencyClient: deps.Clients.CurrencyClient,
|
||||||
|
Producer: deps.Brokers.TariffProducer,
|
||||||
}),
|
}),
|
||||||
TariffBrokerService: tariffBrokerService,
|
TariffBrokerService: tariffBrokerService,
|
||||||
}
|
}
|
||||||
|
@ -5,12 +5,12 @@ import (
|
|||||||
"github.com/themakers/hlog"
|
"github.com/themakers/hlog"
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"go.uber.org/zap"
|
|
||||||
"google.golang.org/protobuf/types/known/emptypb"
|
|
||||||
"gitea.pena/PenaSide/customer/internal/errors"
|
"gitea.pena/PenaSide/customer/internal/errors"
|
||||||
"gitea.pena/PenaSide/customer/internal/models"
|
"gitea.pena/PenaSide/customer/internal/models"
|
||||||
"gitea.pena/PenaSide/customer/internal/proto/payment_callback"
|
"gitea.pena/PenaSide/customer/internal/proto/payment_callback"
|
||||||
"gitea.pena/PenaSide/customer/internal/service/callback"
|
"gitea.pena/PenaSide/customer/internal/service/callback"
|
||||||
|
"go.uber.org/zap"
|
||||||
|
"google.golang.org/protobuf/types/known/emptypb"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Deps struct {
|
type Deps struct {
|
||||||
@ -23,6 +23,7 @@ type Controller struct {
|
|||||||
logger *zap.Logger
|
logger *zap.Logger
|
||||||
paymentCallbackService *callback.PaymentCallbackService
|
paymentCallbackService *callback.PaymentCallbackService
|
||||||
hLogger hlog.Logger
|
hLogger hlog.Logger
|
||||||
|
payment_callback.UnimplementedPaymentCallbackServiceServer
|
||||||
}
|
}
|
||||||
|
|
||||||
func New(deps Deps) *Controller {
|
func New(deps Deps) *Controller {
|
||||||
@ -81,3 +82,19 @@ func (receiver *Controller) OnFailure(ctx context.Context, in *payment_callback.
|
|||||||
|
|
||||||
return &emptypb.Empty{}, nil
|
return &emptypb.Empty{}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (receiver *Controller) OnCartPurchase(ctx context.Context, in *payment_callback.Event) (*emptypb.Empty, error) {
|
||||||
|
if err := receiver.paymentCallbackService.CartPurchaseEvent(ctx, &models.PaymentEvent{
|
||||||
|
Key: in.Key,
|
||||||
|
Message: in.Message,
|
||||||
|
PaymentID: in.Payment.PaymentID,
|
||||||
|
Currency: in.Payment.Currency,
|
||||||
|
Amount: in.Payment.Amount,
|
||||||
|
UserID: in.Payment.UserID,
|
||||||
|
}); err != nil {
|
||||||
|
receiver.logger.Error("failed to send failure event on <OnCartPurchase> of <PaymentController>", zap.Error(err))
|
||||||
|
return nil, errors.GRPC("failed to send cart purchase event", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return &emptypb.Empty{}, nil
|
||||||
|
}
|
||||||
|
@ -2,12 +2,22 @@ package callback
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"log"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"gitea.pena/PenaSide/customer/internal/interface/broker/tariff"
|
||||||
|
"gitea.pena/PenaSide/customer/internal/interface/client"
|
||||||
|
"gitea.pena/PenaSide/customer/internal/interface/repository"
|
||||||
|
"gitea.pena/PenaSide/customer/internal/proto/discount"
|
||||||
|
"gitea.pena/PenaSide/customer/internal/utils"
|
||||||
|
"gitea.pena/PenaSide/customer/internal/utils/transfer"
|
||||||
|
"gitea.pena/PenaSide/customer/pkg/validate"
|
||||||
|
"google.golang.org/protobuf/types/known/timestamppb"
|
||||||
|
"log"
|
||||||
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
"go.uber.org/zap"
|
|
||||||
"gitea.pena/PenaSide/customer/internal/errors"
|
"gitea.pena/PenaSide/customer/internal/errors"
|
||||||
"gitea.pena/PenaSide/customer/internal/models"
|
"gitea.pena/PenaSide/customer/internal/models"
|
||||||
|
"go.uber.org/zap"
|
||||||
tb "gopkg.in/tucnak/telebot.v2"
|
tb "gopkg.in/tucnak/telebot.v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -25,22 +35,32 @@ type walletService interface {
|
|||||||
|
|
||||||
type PaymentCallbackServiceDeps struct {
|
type PaymentCallbackServiceDeps struct {
|
||||||
Logger *zap.Logger
|
Logger *zap.Logger
|
||||||
AccountRepository accountRepository
|
AccountRepository *repository.AccountRepository
|
||||||
WalletService walletService
|
WalletService walletService
|
||||||
HistoryService historyService
|
HistoryService historyService
|
||||||
Notifier *tb.Bot
|
Notifier *tb.Bot
|
||||||
NotifyChannel int64
|
NotifyChannel int64
|
||||||
AdminURL string
|
AdminURL string
|
||||||
|
HistoryRepo *repository.HistoryRepository
|
||||||
|
HubAdminClient *client.HubadminClient
|
||||||
|
DiscountClient *client.DiscountClient
|
||||||
|
CurrencyClient *client.CurrencyClient
|
||||||
|
Producer *tariff.Producer
|
||||||
}
|
}
|
||||||
|
|
||||||
type PaymentCallbackService struct {
|
type PaymentCallbackService struct {
|
||||||
logger *zap.Logger
|
logger *zap.Logger
|
||||||
accountRepository accountRepository
|
accountRepository *repository.AccountRepository
|
||||||
walletService walletService
|
walletService walletService
|
||||||
historyService historyService
|
historyService historyService
|
||||||
notifier *tb.Bot
|
notifier *tb.Bot
|
||||||
notifyChannel int64
|
notifyChannel int64
|
||||||
adminURL string
|
adminURL string
|
||||||
|
historyRepo *repository.HistoryRepository
|
||||||
|
hubAdminClient *client.HubadminClient
|
||||||
|
discountClient *client.DiscountClient
|
||||||
|
currencyClient *client.CurrencyClient
|
||||||
|
producer *tariff.Producer
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewPaymentCallbackService(deps PaymentCallbackServiceDeps) *PaymentCallbackService {
|
func NewPaymentCallbackService(deps PaymentCallbackServiceDeps) *PaymentCallbackService {
|
||||||
@ -65,9 +85,9 @@ func NewPaymentCallbackService(deps PaymentCallbackServiceDeps) *PaymentCallback
|
|||||||
accountRepository: deps.AccountRepository,
|
accountRepository: deps.AccountRepository,
|
||||||
walletService: deps.WalletService,
|
walletService: deps.WalletService,
|
||||||
historyService: deps.HistoryService,
|
historyService: deps.HistoryService,
|
||||||
notifier: deps.Notifier,
|
notifier: deps.Notifier,
|
||||||
notifyChannel: deps.NotifyChannel,
|
notifyChannel: deps.NotifyChannel,
|
||||||
adminURL: deps.AdminURL,
|
adminURL: deps.AdminURL,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -107,11 +127,11 @@ func (receiver *PaymentCallbackService) SuccessEvent(ctx context.Context, event
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
//}()
|
//}()
|
||||||
go func () {
|
go func() {
|
||||||
if _, err := receiver.notifier.Send(tb.ChatID(receiver.notifyChannel), fmt.Sprintf(`Внесены деньги %.2f, пользователем %s`,float64(event.Amount/100), receiver.adminURL + "/users/" + account.UserID)); err != nil {
|
if _, err := receiver.notifier.Send(tb.ChatID(receiver.notifyChannel), fmt.Sprintf(`Внесены деньги %.2f, пользователем %s`, float64(event.Amount/100), receiver.adminURL+"/users/"+account.UserID)); err != nil {
|
||||||
fmt.Println("TBOER", err)
|
fmt.Println("TBOER", err)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -128,3 +148,142 @@ func (receiver *PaymentCallbackService) FailureEvent(ctx context.Context, event
|
|||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (receiver *PaymentCallbackService) CartPurchaseEvent(ctx context.Context, event *models.PaymentEvent) errors.Error {
|
||||||
|
account, err := receiver.accountRepository.FindByUserID(ctx, event.UserID)
|
||||||
|
if err != nil {
|
||||||
|
receiver.logger.Error("failed to get account on <CartPurchaseEvent> of <PaymentCallbackService>", zap.Error(err))
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(account.Cart) == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
tariffs, err := receiver.hubAdminClient.GetTariffs(ctx, accesToken, account.Cart)
|
||||||
|
if err != nil {
|
||||||
|
receiver.logger.Error("failed to get tariffs on <CartPurchaseEvent> of <PaymentCallbackService>", zap.Error(err))
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
tariffsAmount := utils.CalculateCartPurchasesAmount(tariffs)
|
||||||
|
|
||||||
|
discountResponse, err := receiver.discountClient.Apply(ctx, &discount.ApplyDiscountRequest{
|
||||||
|
UserInformation: &discount.UserInformation{
|
||||||
|
ID: account.UserID,
|
||||||
|
Type: string(account.Status),
|
||||||
|
PurchasesAmount: uint64(account.Wallet.Spent),
|
||||||
|
CartPurchasesAmount: tariffsAmount,
|
||||||
|
},
|
||||||
|
Products: transfer.TariffsToProductInformations(tariffs),
|
||||||
|
Date: timestamppb.New(time.Now()),
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
receiver.logger.Error("failed to apply discount on <CartPurchaseEvent> of <PaymentCallbackService>", zap.Error(err))
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, applied := range discountResponse.AppliedDiscounts {
|
||||||
|
if applied.Condition.User != nil && *applied.Condition.User != "" {
|
||||||
|
_, err := receiver.discountClient.DeleteDiscount(ctx, &discount.GetDiscountByIDRequest{
|
||||||
|
ID: applied.ID,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
receiver.logger.Error("failed to delete discount on <CartPurchaseEvent> of <PaymentCallbackService>", zap.Error(err))
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
request := models.WithdrawAccountWallet{
|
||||||
|
Money: int64(discountResponse.Price),
|
||||||
|
Account: account,
|
||||||
|
}
|
||||||
|
|
||||||
|
if validate.IsStringEmpty(request.Account.Wallet.Currency) {
|
||||||
|
request.Account.Wallet.Currency = models.InternalCurrencyKey
|
||||||
|
}
|
||||||
|
|
||||||
|
if request.Account.Wallet.Currency == models.InternalCurrencyKey {
|
||||||
|
_, err = receiver.accountRepository.ChangeWallet(ctx, request.Account.UserID, &models.Wallet{
|
||||||
|
Cash: request.Account.Wallet.Cash - request.Money,
|
||||||
|
Money: request.Account.Wallet.Money - request.Money,
|
||||||
|
Spent: request.Account.Wallet.Spent + request.Money,
|
||||||
|
PurchasesAmount: request.Account.Wallet.PurchasesAmount,
|
||||||
|
Currency: request.Account.Wallet.Currency,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
receiver.logger.Error("failed to change wallet on <CartPurchaseEvent> of <PaymentCallbackService>", zap.Error(err))
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
cash, err := receiver.currencyClient.Translate(ctx, &models.TranslateCurrency{
|
||||||
|
Money: request.Money,
|
||||||
|
From: models.InternalCurrencyKey,
|
||||||
|
To: request.Account.Wallet.Currency,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
receiver.logger.Error("failed to translate currency on <CartPurchaseEvent> of <PaymentCallbackService>", zap.Error(err))
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = receiver.accountRepository.ChangeWallet(ctx, request.Account.UserID, &models.Wallet{
|
||||||
|
Cash: request.Account.Wallet.Cash - cash,
|
||||||
|
Money: request.Account.Wallet.Money - request.Money,
|
||||||
|
Spent: request.Account.Wallet.Spent + request.Money,
|
||||||
|
PurchasesAmount: request.Account.Wallet.PurchasesAmount,
|
||||||
|
Currency: request.Account.Wallet.Currency,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
receiver.logger.Error("failed to change wallet (non-internal currency) on <CartPurchaseEvent> of <PaymentCallbackService>", zap.Error(err))
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if _, err := receiver.historyRepo.Insert(ctx, &models.History{
|
||||||
|
Key: models.CustomerHistoryKeyPayCart,
|
||||||
|
UserID: account.UserID,
|
||||||
|
Comment: "Успешная оплата корзины",
|
||||||
|
RawDetails: models.RawDetails{
|
||||||
|
Tariffs: tariffs,
|
||||||
|
Price: int64(discountResponse.Price),
|
||||||
|
},
|
||||||
|
}); err != nil {
|
||||||
|
receiver.logger.Error("failed to insert history on <CartPurchaseEvent> of <PaymentCallbackService>", zap.Error(err))
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
sendErrors := make([]errors.Error, 0)
|
||||||
|
waitGroup := sync.WaitGroup{}
|
||||||
|
mutex := sync.Mutex{}
|
||||||
|
|
||||||
|
for _, tariff := range tariffs {
|
||||||
|
waitGroup.Add(1)
|
||||||
|
|
||||||
|
go func(currentTariff models.Tariff) {
|
||||||
|
defer waitGroup.Done()
|
||||||
|
|
||||||
|
if err := receiver.producer.Send(ctx, account.UserID, ¤tTariff); err != nil {
|
||||||
|
mutex.Lock()
|
||||||
|
defer mutex.Unlock()
|
||||||
|
sendErrors = append(sendErrors, err)
|
||||||
|
}
|
||||||
|
}(tariff)
|
||||||
|
}
|
||||||
|
|
||||||
|
waitGroup.Wait()
|
||||||
|
|
||||||
|
if len(sendErrors) > 0 {
|
||||||
|
for _, err := range sendErrors {
|
||||||
|
receiver.logger.Error("failed to send tariffs to broker on <CartPurchaseEvent> of <PaymentCallbackService>", zap.Error(err))
|
||||||
|
}
|
||||||
|
return errors.New(fmt.Errorf("failed to send tariffs to broker"), errors.ErrInternalError)
|
||||||
|
}
|
||||||
|
|
||||||
|
if _, err := receiver.accountRepository.ClearCart(ctx, account.UserID); err != nil {
|
||||||
|
receiver.logger.Error("failed to clear cart on <CartPurchaseEvent> of <PaymentCallbackService>", zap.Error(err))
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user