Some checks failed
Build docker and publish / build (20.15.1) (push) Failing after 8m1s
62 lines
2.6 KiB
Go
62 lines
2.6 KiB
Go
package payment
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
|
|
"github.com/perfect-panel/server/internal/svc"
|
|
"github.com/perfect-panel/server/internal/types"
|
|
"github.com/perfect-panel/server/pkg/logger"
|
|
"github.com/perfect-panel/server/pkg/payment"
|
|
"github.com/perfect-panel/server/pkg/tool"
|
|
"github.com/perfect-panel/server/pkg/xerr"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type UpdatePaymentMethodLogic struct {
|
|
logger.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
// NewUpdatePaymentMethodLogic Update Payment Method
|
|
func NewUpdatePaymentMethodLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UpdatePaymentMethodLogic {
|
|
return &UpdatePaymentMethodLogic{
|
|
Logger: logger.WithContext(ctx),
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
}
|
|
}
|
|
|
|
func (l *UpdatePaymentMethodLogic) UpdatePaymentMethod(req *types.UpdatePaymentMethodRequest) (resp *types.PaymentConfig, err error) {
|
|
platformType := payment.ParsePlatform(req.Platform)
|
|
if platformType == payment.UNSUPPORTED {
|
|
l.Errorw("unsupported payment platform", logger.Field("mark", req.Platform))
|
|
return nil, errors.Wrapf(xerr.NewErrCodeMsg(400, "UNSUPPORTED_PAYMENT_PLATFORM"), "unsupported payment platform: %s", req.Platform)
|
|
}
|
|
method, err := l.svcCtx.PaymentModel.FindOne(l.ctx, req.Id)
|
|
if err != nil {
|
|
l.Errorw("find payment method error", logger.Field("id", req.Id), logger.Field("error", err.Error()))
|
|
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DatabaseQueryError), "find payment method error: %s", err.Error())
|
|
}
|
|
existingPlatformType := payment.ParsePlatform(method.Platform)
|
|
if existingPlatformType != payment.UNSUPPORTED && existingPlatformType != platformType {
|
|
l.Errorw("payment platform mismatch", logger.Field("id", req.Id), logger.Field("current", method.Platform), logger.Field("request", req.Platform))
|
|
return nil, errors.Wrapf(xerr.NewErrCodeMsg(xerr.InvalidParams, "payment platform mismatch"), "payment platform mismatch: %s -> %s", method.Platform, req.Platform)
|
|
}
|
|
req.Platform = platformType.String()
|
|
config := parsePaymentPlatformConfig(l.ctx, platformType, req.Config)
|
|
tool.DeepCopy(method, req, tool.CopyWithIgnoreEmpty(false))
|
|
method.Config = config
|
|
if err := l.svcCtx.PaymentModel.Update(l.ctx, method); err != nil {
|
|
l.Errorw("update payment method error", logger.Field("id", req.Id), logger.Field("error", err.Error()))
|
|
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DatabaseUpdateError), "update payment method error: %s", err.Error())
|
|
}
|
|
resp = &types.PaymentConfig{}
|
|
tool.DeepCopy(resp, method)
|
|
var configMap map[string]interface{}
|
|
_ = json.Unmarshal([]byte(method.Config), &configMap)
|
|
resp.Config = configMap
|
|
return
|
|
}
|