12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package handler
- import (
- "fmt"
- "github.com/gin-gonic/gin"
- "github.com/sirupsen/logrus"
- "youngee_b_api/consts"
- "youngee_b_api/db"
- "youngee_b_api/middleware"
- "youngee_b_api/model/http_model"
- "youngee_b_api/util"
- )
- func WrapTransferToPublicHandler(ctx *gin.Context) {
- handler := newTransferToPublicHandler(ctx)
- baseRun(handler)
- }
- type TransferToPublicHandler struct {
- ctx *gin.Context
- req *http_model.TransferToPublicRequest
- resp *http_model.CommonResponse
- }
- func (t TransferToPublicHandler) getContext() *gin.Context {
- return t.ctx
- }
- func (t TransferToPublicHandler) getResponse() interface{} {
- return t.resp
- }
- func (t TransferToPublicHandler) getRequest() interface{} {
- return t.req
- }
- func (t TransferToPublicHandler) run() {
- enterpriseID := middleware.GetSessionAuth(t.ctx).EnterpriseID
- phone := middleware.GetSessionAuth(t.ctx).Phone
- fmt.Println("Amount:", t.req.Amount)
- err := db.TransferToPublic(t.ctx, t.req.Amount, phone, enterpriseID, t.req.TransferVoucherUrl)
- if err != nil {
- logrus.Errorf("[TransferToPublicHandler] call TransferToPublic err:%+v\n", err)
- util.HandlerPackErrorResp(t.resp, consts.ErrorInternal, "")
- logrus.Info("TransferToPublic fail,req:%+v", t.req)
- return
- }
- t.resp.Message = "转账成功,请等待管理确认"
- }
- func (t TransferToPublicHandler) checkParam() error {
- return nil
- }
- func newTransferToPublicHandler(ctx *gin.Context) *TransferToPublicHandler {
- return &TransferToPublicHandler{
- ctx: ctx,
- req: http_model.NewTransferToPublicRequest(),
- resp: http_model.NewTransferToPubliceResponse(),
- }
- }
|