From 95a050d64e4db49add58b2252e4ebd47da199ef9 Mon Sep 17 00:00:00 2001 From: wolter Date: Thu, 1 Aug 2024 14:43:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=95=86=E6=88=B7=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/constants/common/common.go | 13 +++- app/data/app.go | 39 ++++++++++ app/data/merchat.go | 39 ++++++++++ app/data/order_log.go | 39 ++++++++++ app/data/orders.go | 39 ++++++++++ app/data/pay_channel.go | 39 ++++++++++ app/http/controllers/backend/merchant.go | 54 ++++++++++++++ app/http/controllers/base.go | 30 +++++++- app/http/entities/backend/merchant.go | 63 ++++++++++++++++ app/http/entities/backend/pay_channel.go | 87 +++++++++++++++++++++++ app/http/entities/common.go | 19 +++-- app/http/middlewares/base.go | 3 +- app/http/requestmapping/backend.go | 14 +++- app/http/routes/admin.go | 14 ++-- app/models/appmodel/app.go | 8 +-- app/models/merchantmodel/merchant.go | 8 +-- app/models/orderlogmodel/order_log.go | 4 +- app/models/ordersmodel/orders.go | 8 +-- app/models/paychannelmodel/pay_channel.go | 8 +-- app/services/common.go | 15 ++++ app/services/merchant.go | 63 ++++++++++++++++ go.mod | 1 + go.sum | 2 + 23 files changed, 576 insertions(+), 33 deletions(-) create mode 100644 app/data/app.go create mode 100644 app/data/merchat.go create mode 100644 app/data/order_log.go create mode 100644 app/data/orders.go create mode 100644 app/data/pay_channel.go create mode 100644 app/http/controllers/backend/merchant.go create mode 100644 app/http/entities/backend/merchant.go create mode 100644 app/http/entities/backend/pay_channel.go create mode 100644 app/services/common.go create mode 100644 app/services/merchant.go diff --git a/app/constants/common/common.go b/app/constants/common/common.go index a3a296b..5ddaf65 100644 --- a/app/constants/common/common.go +++ b/app/constants/common/common.go @@ -3,5 +3,16 @@ package common const ( TOKEN_PRE = "player_token_" TOKEN_Admin = "Admin_token_" - ADMIN_V1 = "/admin/api/v1" + ADMIN_V1 = "/admin/pay/api/v1" + + // 支付渠道枚举,1微信JSAPI,2微信H5,3微信app,4微信Native,5微信小程序,6支付宝网页&移动应用,7支付宝小程序,8支付宝JSAPI + PAY_CHANNEL_UNKNOWN = 0 + PAY_CHANNEL_WECHAT_JSAPI = 1 + PAY_CHANNEL_WECHAT_H5 = 2 + PAY_CHANNEL_WECHAT_APP = 3 + PAY_CHANNEL_WECHAT_NATIVE = 4 + PAY_CHANNEL_WECHAT_MINI = 5 + PAY_CHANNEL_ALIPAY_WEB = 6 + PAY_CHANNEL_ALIPAY_MINI = 7 + PAY_CHANNEL_ALIPAY_JSAPI = 8 ) diff --git a/app/data/app.go b/app/data/app.go new file mode 100644 index 0000000..ff8c0fa --- /dev/null +++ b/app/data/app.go @@ -0,0 +1,39 @@ +package data + +import ( + "PaymentCenter/app/http/entities" + "PaymentCenter/app/models/appmodel" + "xorm.io/builder" + "xorm.io/xorm" +) + +type AppRepo struct { + repo xorm.Interface +} + +func NewAppRepo(repo xorm.Interface) *AppRepo { + return &AppRepo{ + repo: repo, + } +} + +func (m *AppRepo) AppList(conn builder.Cond, pageFilter entities.PageRequest, appList *[]appmodel.App) (int64, error) { + repo := m.repo.Where(conn) + if pageFilter.Page > 0 { + repo = repo.Limit(pageFilter.PageSize, pageFilter.PageSize*(pageFilter.Page-1)) + } + return repo.Desc("create_time").FindAndCount(appList) +} + +func (m *AppRepo) AppInsertOne(app *appmodel.App) (int64, error) { + return m.repo.InsertOne(app) +} + +func (m *AppRepo) AppDelete(app *appmodel.App, conn builder.Cond) (int64, error) { + return m.repo.Where(conn).Delete(app) +} + +// columns 参数为要更新的字段 +func (m *AppRepo) AppUpdate(app *appmodel.App, conn builder.Cond, columns ...string) (int64, error) { + return m.repo.Where(conn).MustCols(columns...).Update(app) +} diff --git a/app/data/merchat.go b/app/data/merchat.go new file mode 100644 index 0000000..17ae5f7 --- /dev/null +++ b/app/data/merchat.go @@ -0,0 +1,39 @@ +package data + +import ( + "PaymentCenter/app/http/entities" + "PaymentCenter/app/models/merchantmodel" + "xorm.io/builder" + "xorm.io/xorm" +) + +type MerchantRepo struct { + repo xorm.Interface +} + +func NewMerchantRepo(repo xorm.Interface) *MerchantRepo { + return &MerchantRepo{ + repo: repo, + } +} + +func (m *MerchantRepo) MerchantList(conn builder.Cond, pageFilter entities.PageRequest, merchantList *[]merchantmodel.Merchant) (int64, error) { + repo := m.repo.Where(conn) + if pageFilter.Page > 0 { + repo = repo.Limit(pageFilter.PageSize, pageFilter.PageSize*(pageFilter.Page-1)) + } + return repo.Desc("create_time").FindAndCount(merchantList) +} + +func (m *MerchantRepo) MerchantInsertOne(merchant *merchantmodel.Merchant) (int64, error) { + return m.repo.InsertOne(merchant) +} + +func (m *MerchantRepo) MerchantDelete(merchant *merchantmodel.Merchant, conn builder.Cond) (int64, error) { + return m.repo.Where(conn).Delete(merchant) +} + +// columns 参数为要更新的字段 +func (m *MerchantRepo) MerchantUpdate(merchant *merchantmodel.Merchant, conn builder.Cond, columns ...string) (int64, error) { + return m.repo.Where(conn).MustCols(columns...).Update(merchant) +} diff --git a/app/data/order_log.go b/app/data/order_log.go new file mode 100644 index 0000000..42298d3 --- /dev/null +++ b/app/data/order_log.go @@ -0,0 +1,39 @@ +package data + +import ( + "PaymentCenter/app/http/entities" + "PaymentCenter/app/models/orderlogmodel" + "xorm.io/builder" + "xorm.io/xorm" +) + +type OrderLogRepo struct { + repo xorm.Interface +} + +func NewOrderLogRepo(repo xorm.Interface) *OrderLogRepo { + return &OrderLogRepo{ + repo: repo, + } +} + +func (m *OrderLogRepo) MerchantList(conn builder.Cond, pageFilter entities.PageRequest, orderLogList *[]orderlogmodel.OrderLogModel) (int64, error) { + repo := m.repo.Where(conn) + if pageFilter.Page > 0 { + repo = repo.Limit(pageFilter.PageSize, pageFilter.PageSize*(pageFilter.Page-1)) + } + return repo.Desc("create_time").FindAndCount(orderLogList) +} + +func (m *OrderLogRepo) MerchantInsertOne(orderLog *orderlogmodel.OrderLogModel) (int64, error) { + return m.repo.InsertOne(orderLog) +} + +func (m *OrderLogRepo) MerchantDelete(orderLog *orderlogmodel.OrderLogModel, conn builder.Cond) (int64, error) { + return m.repo.Where(conn).Delete(orderLog) +} + +// columns 参数为要更新的字段 +func (m *OrderLogRepo) MerchantUpdate(orderLog *orderlogmodel.OrderLogModel, conn builder.Cond, columns ...string) (int64, error) { + return m.repo.Where(conn).MustCols(columns...).Update(orderLog) +} diff --git a/app/data/orders.go b/app/data/orders.go new file mode 100644 index 0000000..c04d4ee --- /dev/null +++ b/app/data/orders.go @@ -0,0 +1,39 @@ +package data + +import ( + "PaymentCenter/app/http/entities" + "PaymentCenter/app/models/ordersmodel" + "xorm.io/builder" + "xorm.io/xorm" +) + +type OrderRepo struct { + repo xorm.Interface +} + +func NewOrderRepo(repo xorm.Interface) *OrderRepo { + return &OrderRepo{ + repo: repo, + } +} + +func (m *OrderRepo) MerchantList(conn builder.Cond, pageFilter entities.PageRequest, orderList *[]ordersmodel.Orders) (int64, error) { + repo := m.repo.Where(conn) + if pageFilter.Page > 0 { + repo = repo.Limit(pageFilter.PageSize, pageFilter.PageSize*(pageFilter.Page-1)) + } + return repo.Desc("create_time").FindAndCount(orderList) +} + +func (m *OrderRepo) MerchantInsertOne(order *ordersmodel.Orders) (int64, error) { + return m.repo.InsertOne(order) +} + +func (m *OrderRepo) MerchantDelete(order *ordersmodel.Orders, conn builder.Cond) (int64, error) { + return m.repo.Where(conn).Delete(order) +} + +// columns 参数为要更新的字段 +func (m *OrderRepo) MerchantUpdate(order *ordersmodel.Orders, conn builder.Cond, columns ...string) (int64, error) { + return m.repo.Where(conn).MustCols(columns...).Update(order) +} diff --git a/app/data/pay_channel.go b/app/data/pay_channel.go new file mode 100644 index 0000000..883d3c1 --- /dev/null +++ b/app/data/pay_channel.go @@ -0,0 +1,39 @@ +package data + +import ( + "PaymentCenter/app/http/entities" + "PaymentCenter/app/models/paychannelmodel" + "xorm.io/builder" + "xorm.io/xorm" +) + +type PayChannelRepo struct { + repo xorm.Interface +} + +func NewPayChannelRepo(repo xorm.Interface) *PayChannelRepo { + return &PayChannelRepo{ + repo: repo, + } +} + +func (m *PayChannelRepo) PayChannelList(conn builder.Cond, pageFilter entities.PageRequest, payChannelList *[]paychannelmodel.PayChannel) (int64, error) { + repo := m.repo.Where(conn) + if pageFilter.Page > 0 { + repo = repo.Limit(pageFilter.PageSize, pageFilter.PageSize*(pageFilter.Page-1)) + } + return repo.Desc("create_time").FindAndCount(payChannelList) +} + +func (m *PayChannelRepo) PayChannelInsertOne(merchant *paychannelmodel.PayChannel) (int64, error) { + return m.repo.InsertOne(merchant) +} + +func (m *PayChannelRepo) PayChannelDelete(merchant *paychannelmodel.PayChannel, conn builder.Cond) (int64, error) { + return m.repo.Where(conn).Delete(merchant) +} + +// columns 参数为要更新的字段 +func (m *PayChannelRepo) PayChannelUpdate(merchant *paychannelmodel.PayChannel, conn builder.Cond, columns ...string) (int64, error) { + return m.repo.Where(conn).MustCols(columns...).Update(merchant) +} diff --git a/app/http/controllers/backend/merchant.go b/app/http/controllers/backend/merchant.go new file mode 100644 index 0000000..4f1e3cb --- /dev/null +++ b/app/http/controllers/backend/merchant.go @@ -0,0 +1,54 @@ +package backend + +import ( + "PaymentCenter/app/http/controllers" + "PaymentCenter/app/http/entities" + "PaymentCenter/app/http/entities/backend" + "PaymentCenter/app/models/merchantmodel" + "PaymentCenter/app/services" + "github.com/ahmetb/go-linq/v3" + "github.com/gin-gonic/gin" +) + +func MerchantList(c *gin.Context) { + req, _ := controllers.GetRequest(c).(*backend.MerchantListRequest) + req.SetDefault() + merchantList, total, code := services.MerchantList(*req) + + result := make([]backend.MerchantResponse, 0, len(merchantList)) + linq.From(merchantList).SelectT(func(in merchantmodel.Merchant) (out backend.MerchantResponse) { + out.ResponseFromDb(in) + return + }).ToSlice(&result) + data := entities.PageRsp{ + Total: total, + Data: result, + } + controllers.HandCodeRes(c, data, code) +} + +func MerchantCreate(c *gin.Context) { + req, _ := controllers.GetRequest(c).(*backend.MerchantCreateRequest) + merchant := req.RequestToDb() + code := services.MerchantCreate(&merchant) + + data := backend.MerchantResponse{} + data.ResponseFromDb(merchant) + controllers.HandCodeRes(c, data, code) +} + +func MerchantUpdate(c *gin.Context) { + req, _ := controllers.GetRequest(c).(*backend.MerchantUpdateRequest) + merchant := req.RequestToDb() + code := services.MerchantUpdate(&merchant) + + data := backend.MerchantResponse{} + data.ResponseFromDb(merchant) + controllers.HandCodeRes(c, data, code) +} + +func MerchantDelete(c *gin.Context) { + req, _ := controllers.GetRequest(c).(*entities.IdRequest) + code := services.MerchantDelete(*req) + controllers.HandCodeRes(c, nil, code) +} diff --git a/app/http/controllers/base.go b/app/http/controllers/base.go index d8dedea..1e08b5e 100644 --- a/app/http/controllers/base.go +++ b/app/http/controllers/base.go @@ -15,6 +15,8 @@ import ( zh_translations "gopkg.in/go-playground/validator.v9/translations/zh" "io/ioutil" "net/http" + "reflect" + "regexp" "PaymentCenter/app/constants/errorcode" @@ -108,12 +110,26 @@ func GenRequest(c *gin.Context, request interface{}) (msgs []string, err error) if err == nil { validate := validator.New() + _ = validate.RegisterValidation("phoneValidation", phoneValidation) zh_ch := zh.New() uni := ut.New(zh_ch) trans, _ := uni.GetTranslator("zh") + _ = validate.RegisterTranslation("phoneValidation", trans, func(ut ut.Translator) error { + return ut.Add("phoneValidation", "手机号不合法", true) // 添加翻译 + }, func(ut ut.Translator, fe validator.FieldError) string { + t, _ := ut.T("phoneValidation", fe.Field()) // 获取翻译 + return t + }, + ) + + //注册一个函数,获取struct tag里自定义的label作为字段名 + validate.RegisterTagNameFunc(func(fld reflect.StructField) string { + name := fld.Tag.Get("label") + return name + }) //验证器注册翻译器 - zh_translations.RegisterDefaultTranslations(validate, trans) + _ = zh_translations.RegisterDefaultTranslations(validate, trans) errValidate := validate.Struct(request) if errValidate != nil { @@ -175,3 +191,15 @@ func Frequence(key string) bool { return true } } + +// 自定义验证器 +func phoneValidation(fl validator.FieldLevel) bool { + phone := fl.Field().String() + if phone == "" { + return true + } + // 使用正则表达式验证手机号 + phoneRegex := `^1[3-9]\d{9}$` + reg := regexp.MustCompile(phoneRegex) + return reg.MatchString(phone) +} diff --git a/app/http/entities/backend/merchant.go b/app/http/entities/backend/merchant.go new file mode 100644 index 0000000..1aaaedf --- /dev/null +++ b/app/http/entities/backend/merchant.go @@ -0,0 +1,63 @@ +package backend + +import ( + "PaymentCenter/app/http/entities" + "PaymentCenter/app/models/merchantmodel" +) + +type MerchantListRequest struct { + entities.PageRequest + Name string `form:"name"` + Contact string `form:"contact"` + Phone string `form:"phone"` +} + +type MerchantResponse struct { + Id int64 `json:"id"` + Name string `json:"name"` + Contact string `json:"contact"` + Phone string `json:"phone"` + Remark string `json:"remark"` + CreateTime string `json:"create_time"` +} + +func (m *MerchantResponse) ResponseFromDb(db merchantmodel.Merchant) { + m.Id = db.Id + m.Name = db.Name + m.Contact = db.Contact + m.Phone = db.Phone + m.Remark = db.Remark + m.CreateTime = db.CreateTime.Format("2006-01-02 15:04:05") +} + +type MerchantCreateRequest struct { + Name string `json:"name" validate:"required" label:"商户名称"` + Contact string `json:"contact" validate:"required" label:"联系人"` + Phone string `json:"phone" validate:"required,phoneValidation" label:"联系电话"` + Remark string `json:"remark" label:"备注"` +} + +func (m *MerchantCreateRequest) RequestToDb() (db merchantmodel.Merchant) { + db.Name = m.Name + db.Contact = m.Contact + db.Phone = m.Phone + db.Remark = m.Remark + return db +} + +type MerchantUpdateRequest struct { + Id int64 `json:"id" validate:"required" label:"商户ID"` + Name string `json:"name"` + Contact string `json:"contact"` + Phone string `json:"phone" validate:"phoneValidation" label:"联系电话"` + Remark string `json:"remark"` +} + +func (m *MerchantUpdateRequest) RequestToDb() (db merchantmodel.Merchant) { + db.Id = m.Id + db.Name = m.Name + db.Contact = m.Contact + db.Phone = m.Phone + db.Remark = m.Remark + return db +} diff --git a/app/http/entities/backend/pay_channel.go b/app/http/entities/backend/pay_channel.go new file mode 100644 index 0000000..558090b --- /dev/null +++ b/app/http/entities/backend/pay_channel.go @@ -0,0 +1,87 @@ +package backend + +import ( + "PaymentCenter/app/constants/common" + "PaymentCenter/app/models/paychannelmodel" + "PaymentCenter/app/utils" + "encoding/json" + "github.com/pkg/errors" +) + +type PayChannelResponse struct { + Id int64 `json:"id"` + PayName string `json:"pay_name"` + MerchantId int64 `json:"merchant_id"` + ChannelType int `json:"channel_type"` + WhiteIp string `json:"white_ip"` + AppId string `json:"app_id"` + ExpireTime string `json:"expire_time"` + CreateTime string `json:"create_time"` + AliPayPayChannel AliPayPayChannel `json:"ali_pay_pay_channel,omitempty"` + WechatPayChannel WechatPayChannel `json:"wechat_pay_channel,omitempty"` +} + +func (p *PayChannelResponse) ResponseFromDb(db paychannelmodel.PayChannel) { + p.Id = db.Id + p.PayName = db.PayName + p.MerchantId = db.MerchantId + p.ChannelType = db.ChannelType + p.WhiteIp = db.WhiteIp + p.AppId = db.AppId + p.ExpireTime = db.ExpireTime.Format("2006-01-02 15:04:05") + p.CreateTime = db.CreateTime.Format("2006-01-02 15:04:05") + + switch p.ChannelType { + case common.PAY_CHANNEL_WECHAT_H5 | common.PAY_CHANNEL_WECHAT_JSAPI | common.PAY_CHANNEL_WECHAT_NATIVE | common.PAY_CHANNEL_WECHAT_APP | common.PAY_CHANNEL_WECHAT_MINI: + _ = json.Unmarshal([]byte(db.ExtJson), &p.WechatPayChannel) + case common.PAY_CHANNEL_ALIPAY_JSAPI | common.PAY_CHANNEL_ALIPAY_WEB | common.PAY_CHANNEL_ALIPAY_MINI: + _ = json.Unmarshal([]byte(db.ExtJson), &p.AliPayPayChannel) + } +} + +type PayChannelCreateRequest struct { + PayName string `json:"pay_name"` + MerchantId int64 `json:"merchant_id"` + ChannelType int `json:"channel_type"` //支付渠道枚举,1微信JSAPI,2微信H5,3微信app,4微信Native,5微信小程序,6支付宝网页&移动应用,7支付宝小程序,8支付宝JSAPI + WhiteIp string `json:"white_ip"` + AppId string `json:"app_id"` + ExpireTime string `json:"expire_time"` + AliPayPayChannel AliPayPayChannel `json:"ali_pay_pay_channel,omitempty"` + WechatPayChannel WechatPayChannel `json:"wechat_pay_channel,omitempty"` +} + +type WechatPayChannel struct { + MchId int `json:"mch_id"` //直连商户号 + MchCertificateSerialNumber string `json:"mch_certificate_serial_number"` //商户证书序列号 + MchAPIv3Key string `json:"mch_APIv3_key"` //商户APIv3密钥 + PrivateKeyPath string `json:"private_key_path"` //商户私钥文件路径 +} + +type AliPayPayChannel struct { + AliPublicKey string `json:"ali_public_key"` //支付宝公钥 + PrivateKeyPath string `json:"private_key_path"` //应用私钥 + SignType string `json:"sign_type"` //商户生成签名字符串所使用的签名算法类型,目前支持RSA2和RSA,推荐使用RSA2 +} + +func (p *PayChannelCreateRequest) RequestToDb() (db paychannelmodel.PayChannel, err error) { + db.PayName = p.PayName + db.MerchantId = p.MerchantId + db.ChannelType = p.ChannelType + db.WhiteIp = p.WhiteIp + db.AppId = p.AppId + if p.ExpireTime != "" { + db.ExpireTime, err = utils.StrToTimeShanghai(p.ExpireTime) + if err != nil { + err = errors.Wrap(err, "时间格式错误") + } + } + switch p.ChannelType { + case common.PAY_CHANNEL_WECHAT_H5 | common.PAY_CHANNEL_WECHAT_JSAPI | common.PAY_CHANNEL_WECHAT_NATIVE | common.PAY_CHANNEL_WECHAT_APP | common.PAY_CHANNEL_WECHAT_MINI: + b, _ := json.Marshal(p.WechatPayChannel) + db.ExtJson = string(b) + case common.PAY_CHANNEL_ALIPAY_JSAPI | common.PAY_CHANNEL_ALIPAY_WEB | common.PAY_CHANNEL_ALIPAY_MINI: + b, _ := json.Marshal(p.AliPayPayChannel) + db.ExtJson = string(b) + } + return +} diff --git a/app/http/entities/common.go b/app/http/entities/common.go index e34775a..25d8733 100644 --- a/app/http/entities/common.go +++ b/app/http/entities/common.go @@ -1,15 +1,24 @@ package entities type IdRequest struct { - Id int64 `json:"id"` + Id int64 `json:"id" form:"id" valid:"Required"` } type PageRequest struct { - Page int64 `json:"page"` - PageSize int64 `json:"pageSize"` + Page int `json:"page" form:"page"` + PageSize int `json:"page_size" form:"page_size"` +} + +func (p *PageRequest) SetDefault() { + if p.Page == 0 { + p.Page = 1 + } + if p.PageSize == 0 { + p.PageSize = 10 + } } type PageRsp struct { - Total int64 `json:"total"` - Data []interface{} `json:"data"` + Total int64 `json:"total"` + Data interface{} `json:"data"` } diff --git a/app/http/middlewares/base.go b/app/http/middlewares/base.go index e9ff544..c13dedd 100644 --- a/app/http/middlewares/base.go +++ b/app/http/middlewares/base.go @@ -93,8 +93,9 @@ func ValidateRequest() gin.HandlerFunc { v := handler() msg, err := controllers.GenRequest(c, v) if err != nil { - utils.Log(c, "path", path) + utils.Log(c, "参数错误", "path=", path, "err=", err.Error(), "msg=", msg) controllers.Error(c, errorcode.ParamError, msg...) + c.Abort() } else { c.Set("request", v) c.Next() diff --git a/app/http/requestmapping/backend.go b/app/http/requestmapping/backend.go index 6d05180..61af681 100644 --- a/app/http/requestmapping/backend.go +++ b/app/http/requestmapping/backend.go @@ -1,8 +1,16 @@ package requestmapping +import ( + "PaymentCenter/app/constants/common" + "PaymentCenter/app/http/entities" + "PaymentCenter/app/http/entities/backend" +) + var BackendRequestMap = map[string]func() interface{}{ - //common.ADMIN_V1 + "/product/create": func() interface{} { - // return new(backend.ProductCreateRequest) - //}, + // 商户 + common.ADMIN_V1 + "/merchant/create": func() interface{} { return new(backend.MerchantCreateRequest) }, + common.ADMIN_V1 + "/merchant/update": func() interface{} { return new(backend.MerchantUpdateRequest) }, + common.ADMIN_V1 + "/merchant/list": func() interface{} { return new(backend.MerchantListRequest) }, + common.ADMIN_V1 + "/merchant/delete": func() interface{} { return new(entities.IdRequest) }, } diff --git a/app/http/routes/admin.go b/app/http/routes/admin.go index 414b1ce..168744a 100644 --- a/app/http/routes/admin.go +++ b/app/http/routes/admin.go @@ -2,6 +2,7 @@ package routes import ( "PaymentCenter/app/http/controllers" + "PaymentCenter/app/http/controllers/backend" "PaymentCenter/app/http/middlewares" "PaymentCenter/app/http/trace" "PaymentCenter/app/utils" @@ -22,9 +23,14 @@ func RegisterAdminRoute(router *gin.Engine) { } } - //v1 := router.Group("/admin/api/v1") - //{ - // - //} + v1 := router.Group("/admin/pay/api/v1", middlewares.ValidateRequest()) + { + // 商户管理 + merchant := v1.Group("/merchant") + merchant.GET("/list", backend.MerchantList) // 商户列表 + merchant.POST("/create", backend.MerchantCreate) // 商户创建 + merchant.PUT("/update", backend.MerchantUpdate) // 商户更新 + merchant.DELETE("/delete", backend.MerchantDelete) // 商户删除 + } } diff --git a/app/models/appmodel/app.go b/app/models/appmodel/app.go index cb5fc87..cabff21 100644 --- a/app/models/appmodel/app.go +++ b/app/models/appmodel/app.go @@ -13,7 +13,7 @@ var ( // 实体 type App struct { - Id int64 `xorm:"'Id' bigint(20)"` + Id int64 `xorm:"pk autoincr AUTO_RANDOM"` MerchantId int64 `xorm:"'merchant_id' bigint(20)"` AppName string `xorm:"'app_name' varchar(128)"` AppRemark string `xorm:"'app_remark' varchar(255)"` @@ -22,9 +22,9 @@ type App struct { PublicKey string `xorm:"'public_key' varchar(1024)"` PrivateKey string `xorm:"'private_key' varchar(1024)"` MerchantPublicKey string `xorm:"'merchant_public_key' varchar(1024)"` - CreateTime time.Time `xorm:"'create_time' datetime updated"` - UpdateTime time.Time `xorm:"'update_time' timestamp"` - DeleteTime time.Time `xorm:"'delete_time' timestamp"` + CreateTime time.Time `xorm:"'create_time' datetime created"` + UpdateTime time.Time `xorm:"'update_time' timestamp updated"` + DeleteTime time.Time `xorm:"'delete_time' timestamp deleted"` } // 表名 diff --git a/app/models/merchantmodel/merchant.go b/app/models/merchantmodel/merchant.go index 3df66ce..f66ae6e 100644 --- a/app/models/merchantmodel/merchant.go +++ b/app/models/merchantmodel/merchant.go @@ -13,14 +13,14 @@ var ( // 实体 type Merchant struct { - Id int64 `xorm:"'Id' bigint(20)"` + Id int64 Name string `xorm:"'name' varchar(128)"` Contact string `xorm:"'contact' varchar(128)"` Phone string `xorm:"'phone' varchar(11)"` Remark string `xorm:"'remark' varchar(1024)"` - CreateTime time.Time `xorm:"'create_time' datetime"` - UpdateTime time.Time `xorm:"'update_time' timestamp"` - DeleteTime time.Time `xorm:"'delete_time' timestamp"` + CreateTime time.Time `xorm:"'create_time' datetime created"` + UpdateTime time.Time `xorm:"'update_time' timestamp updated"` + DeleteTime time.Time `xorm:"'delete_time' timestamp deleted"` } // 表名 diff --git a/app/models/orderlogmodel/order_log.go b/app/models/orderlogmodel/order_log.go index 70b6543..1a370b8 100644 --- a/app/models/orderlogmodel/order_log.go +++ b/app/models/orderlogmodel/order_log.go @@ -13,13 +13,13 @@ var ( // 实体 type OrderLog struct { - Id int64 `xorm:"'Id' bigint(20)"` + Id int64 OrderId int64 `xorm:"'order_id' bigint(20)"` PayCallback string `xorm:"'pay_callback' varchar(255)"` Status int `xorm:"'status' int(11)"` MerchantParam string `xorm:"'merchant_param' varchar(255)"` MerchantCallback string `xorm:"'merchant_callback' varchar(255)"` - CreateTime time.Time `xorm:"'create_time' datetime"` + CreateTime time.Time `xorm:"'create_time' datetime created"` } // 表名 diff --git a/app/models/ordersmodel/orders.go b/app/models/ordersmodel/orders.go index 6b37bbe..182d7dc 100644 --- a/app/models/ordersmodel/orders.go +++ b/app/models/ordersmodel/orders.go @@ -13,7 +13,7 @@ var ( // 实体 type Orders struct { - Id int64 `xorm:"'Id' bigint(20)"` + Id int64 MerchantId int64 `xorm:"'merchant_id' bigint(20)"` PayId int64 `xorm:"'pay_id' bigint(20)"` MerchantOrderId string `xorm:"'merchant_order_id' varchar(128)"` @@ -26,9 +26,9 @@ type Orders struct { MerchantResponse string `xorm:"'merchant_response' varchar(255)"` OrderResponse string `xorm:"'order_response' varchar(255)"` ExtJson string `xorm:"'ext_json' varchar(1024)"` - CreateTime time.Time `xorm:"'create_time' datetime"` - UpdateTime time.Time `xorm:"'update_time' timestamp"` - DeleteTime time.Time `xorm:"'delete_time' timestamp"` + CreateTime time.Time `xorm:"'create_time' datetime created"` + UpdateTime time.Time `xorm:"'update_time' timestamp updated"` + DeleteTime time.Time `xorm:"'delete_time' timestamp deleted"` } // 表名 diff --git a/app/models/paychannelmodel/pay_channel.go b/app/models/paychannelmodel/pay_channel.go index 5db7b3c..48f9873 100644 --- a/app/models/paychannelmodel/pay_channel.go +++ b/app/models/paychannelmodel/pay_channel.go @@ -13,7 +13,7 @@ var ( // 实体 type PayChannel struct { - Id int64 `xorm:"'Id' bigint(20)"` + Id int64 PayName string `xorm:"'pay_name' varchar(128)"` MerchantId int64 `xorm:"'merchant_id' bigint(20)"` ChannelType int `xorm:"'channel_type' int(11)"` @@ -21,9 +21,9 @@ type PayChannel struct { AppId string `xorm:"'app_id' varchar(255)"` ExtJson string `xorm:"'ext_json' JSON"` ExpireTime time.Time `xorm:"'expire_time' datetime"` - CreateTime time.Time `xorm:"'create_time' datetime"` - UpdateTime time.Time `xorm:"'update_time' timestamp"` - DeleteTime time.Time `xorm:"'delete_time' timestamp"` + CreateTime time.Time `xorm:"'create_time' datetime created"` + UpdateTime time.Time `xorm:"'update_time' timestamp updated"` + DeleteTime time.Time `xorm:"'delete_time' timestamp deleted"` } // 表名 diff --git a/app/services/common.go b/app/services/common.go new file mode 100644 index 0000000..ed282d7 --- /dev/null +++ b/app/services/common.go @@ -0,0 +1,15 @@ +package services + +import ( + "PaymentCenter/app/constants/errorcode" + "PaymentCenter/app/utils" +) + +func handErr(err error) int { + if err != nil { + utils.Log(nil, "sys err", err.Error()) + return errorcode.SystemError + } else { + return errorcode.Success + } +} diff --git a/app/services/merchant.go b/app/services/merchant.go new file mode 100644 index 0000000..9b31931 --- /dev/null +++ b/app/services/merchant.go @@ -0,0 +1,63 @@ +package services + +import ( + "PaymentCenter/app/data" + "PaymentCenter/app/http/entities" + "PaymentCenter/app/http/entities/backend" + "PaymentCenter/app/models/merchantmodel" + "xorm.io/builder" +) + +// MerchantList 商户列表 +func MerchantList(req backend.MerchantListRequest) (result []merchantmodel.Merchant, total int64, code int) { + repo := data.NewMerchantRepo(merchantmodel.GetInstance().GetDb()) + // 拼接查询条件 + conn := builder.NewCond() + if req.Name != "" { + conn = conn.And(builder.Like{"name", req.Name}) + } + if req.Contact != "" { + conn = conn.And(builder.Like{"contact", req.Contact}) + } + if req.Phone != "" { + conn = conn.And(builder.Like{"phone", req.Phone}) + } + + // 调用repo + merchantList := make([]merchantmodel.Merchant, 0) + count, err := repo.MerchantList(conn, req.PageRequest, &merchantList) + code = handErr(err) + return merchantList, count, code +} + +func MerchantCreate(merchant *merchantmodel.Merchant) (code int) { + repo := data.NewMerchantRepo(merchantmodel.GetInstance().GetDb()) + _, err := repo.MerchantInsertOne(merchant) + + code = handErr(err) + return +} + +func MerchantUpdate(merchant *merchantmodel.Merchant) (code int) { + repo := data.NewMerchantRepo(merchantmodel.GetInstance().GetDb()) + // 拼接查询条件 + conn := builder.NewCond() + conn = conn.And(builder.Eq{"Id": merchant.Id}) + _, err := repo.MerchantUpdate(merchant, conn, "remark") + + code = handErr(err) + return +} + +func MerchantDelete(req entities.IdRequest) (code int) { + repo := data.NewMerchantRepo(merchantmodel.GetInstance().GetDb()) + + // 拼接查询条件 + conn := builder.NewCond() + conn = conn.And(builder.Eq{"Id": req.Id}) + m := merchantmodel.Merchant{Id: req.Id} + _, err := repo.MerchantDelete(&m, conn) + + code = handErr(err) + return +} diff --git a/go.mod b/go.mod index 21c4a1f..cec9675 100644 --- a/go.mod +++ b/go.mod @@ -35,6 +35,7 @@ require ( github.com/KyleBanks/depth v1.2.1 // indirect github.com/PuerkitoBio/purell v1.1.1 // indirect github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect + github.com/ahmetb/go-linq/v3 v3.2.0 // indirect github.com/alibabacloud-go/debug v0.0.0-20190504072949-9472017b5c68 // indirect github.com/alibabacloud-go/tea v1.1.17 // indirect github.com/alibabacloud-go/tea-utils v1.4.4 // indirect diff --git a/go.sum b/go.sum index a3fda71..5020055 100644 --- a/go.sum +++ b/go.sum @@ -61,6 +61,8 @@ github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/ github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5/go.mod h1:SkGFH1ia65gfNATL8TAiHDNxPzPdmEL5uirI2Uyuz6c= github.com/agiledragon/gomonkey/v2 v2.3.1 h1:k+UnUY0EMNYUFUAQVETGY9uUTxjMdnUkP0ARyJS1zzs= github.com/agiledragon/gomonkey/v2 v2.3.1/go.mod h1:ap1AmDzcVOAz1YpeJ3TCzIgstoaWLA6jbbgxfB4w2iY= +github.com/ahmetb/go-linq/v3 v3.2.0 h1:BEuMfp+b59io8g5wYzNoFe9pWPalRklhlhbiU3hYZDE= +github.com/ahmetb/go-linq/v3 v3.2.0/go.mod h1:haQ3JfOeWK8HpVxMtHHEMPVgBKiYyQ+f1/kLZh/cj9U= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=