diff --git a/app/http/controllers/backend/app.go b/app/http/controllers/backend/app.go index 3ce31a6..bae6f99 100644 --- a/app/http/controllers/backend/app.go +++ b/app/http/controllers/backend/app.go @@ -34,7 +34,11 @@ func AppList(c *gin.Context) { func AppCreate(c *gin.Context) { req, _ := controllers.GetRequest(c).(*backend.AppCreateRequest) - payChannel := req.RequestToDb() + payChannel, err := req.RequestToDb() + if err != nil { + controllers.Error(c, errorcode.ParamError, err.Error()) + return + } code := services.AppCreate(&payChannel) data := backend.AppResponse{} @@ -44,7 +48,11 @@ func AppCreate(c *gin.Context) { func AppUpdate(c *gin.Context) { req, _ := controllers.GetRequest(c).(*backend.AppUpdateRequest) - payChannel := req.RequestToDb() + payChannel, err := req.RequestToDb() + if err != nil { + controllers.Error(c, errorcode.ParamError, err.Error()) + return + } code := services.AppUpdate(&payChannel) data := backend.AppResponse{} diff --git a/app/http/entities/backend/app.go b/app/http/entities/backend/app.go index 06f9f45..5728d8e 100644 --- a/app/http/entities/backend/app.go +++ b/app/http/entities/backend/app.go @@ -3,6 +3,8 @@ package backend import ( "PaymentCenter/app/http/entities" "PaymentCenter/app/models/appmodel" + "errors" + "strings" ) type AppListRequest struct { @@ -54,17 +56,24 @@ type AppCreateRequest struct { NotifyUrl string `json:"notify_url" validate:"required" label:"通知地址"` } -func (a *AppCreateRequest) RequestToDb() (db appmodel.App) { - db.MerchantId = a.MerchantId - db.AppName = a.AppName - db.AppRemark = a.AppRemark - db.Status = a.Status - db.KeyType = a.KeyType - db.PublicKey = a.PublicKey - db.PrivateKey = a.PrivateKey - db.MerchantPublicKey = a.MerchantPublicKey - db.WhiteIp = a.WhiteIp - db.NotifyUrl = a.NotifyUrl +func (a *AppCreateRequest) RequestToDb() (db appmodel.App, err error) { + // 判断通知地址url是否合法 + if a.NotifyUrl == "" || strings.HasPrefix(a.NotifyUrl, "http://") || strings.HasPrefix(a.NotifyUrl, "https://") { + db.MerchantId = a.MerchantId + db.AppName = a.AppName + db.AppRemark = a.AppRemark + db.Status = a.Status + db.KeyType = a.KeyType + db.PublicKey = a.PublicKey + db.PrivateKey = a.PrivateKey + db.MerchantPublicKey = a.MerchantPublicKey + db.WhiteIp = a.WhiteIp + db.NotifyUrl = a.NotifyUrl + } else { + err = errors.New("通知地址格式不正确") + return + } + return } @@ -81,17 +90,23 @@ type AppUpdateRequest struct { NotifyUrl string `json:"notify_url"` } -func (a *AppUpdateRequest) RequestToDb() (db appmodel.App) { - db.Id = a.Id - db.AppName = a.AppName - db.AppRemark = a.AppRemark - db.Status = a.Status - db.KeyType = a.KeyType - db.PublicKey = a.PublicKey - db.PrivateKey = a.PrivateKey - db.MerchantPublicKey = a.MerchantPublicKey - db.WhiteIp = a.WhiteIp - db.NotifyUrl = a.NotifyUrl +func (a *AppUpdateRequest) RequestToDb() (db appmodel.App, err error) { + // 判断通知地址url是否合法 + if a.NotifyUrl == "" || strings.HasPrefix(a.NotifyUrl, "http://") || strings.HasPrefix(a.NotifyUrl, "https://") { + db.Id = a.Id + db.AppName = a.AppName + db.AppRemark = a.AppRemark + db.Status = a.Status + db.KeyType = a.KeyType + db.PublicKey = a.PublicKey + db.PrivateKey = a.PrivateKey + db.MerchantPublicKey = a.MerchantPublicKey + db.WhiteIp = a.WhiteIp + db.NotifyUrl = a.NotifyUrl + } else { + err = errors.New("通知地址格式不正确") + return + } return } diff --git a/app/services/app.go b/app/services/app.go index 983c6a8..47e0d4f 100644 --- a/app/services/app.go +++ b/app/services/app.go @@ -61,7 +61,7 @@ func AppUpdate(app *appmodel.App) (code int) { conn = conn.And(builder.Eq{"Id": app.Id}) if app.AppName != "" { // 编辑页面更新,备注和白名单IP可更新为空 - _, err = repo.AppUpdate(app, conn, "app_remark", "white_ip") + _, err = repo.AppUpdate(app, conn, "app_remark", "white_ip", "notify_url") } else { _, err = repo.AppUpdate(app, conn) } diff --git a/app/services/thirdpay/thirdpay_notify/notify.go b/app/services/thirdpay/thirdpay_notify/notify.go index 0a8e752..1cf9510 100644 --- a/app/services/thirdpay/thirdpay_notify/notify.go +++ b/app/services/thirdpay/thirdpay_notify/notify.go @@ -96,6 +96,9 @@ func (o *OrderNotify) Handle() (res *OrderNotifyResp) { // 发送下游回调通知 func (o *OrderNotify) sendNotify(body *OrderNotifySendContent) { + if o.app.NotifyUrl == "" { + return + } var callbackStatus = common.STATUS_ENABLE var response string