55 lines
1.5 KiB
Go
55 lines
1.5 KiB
Go
package controllers
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"git.rosy.net.cn/baseapi/platformapi/dadaapi"
|
|
"git.rosy.net.cn/baseapi/utils"
|
|
"git.rosy.net.cn/jx-callback/business/partner/delivery/dada"
|
|
"git.rosy.net.cn/jx-callback/globals"
|
|
"git.rosy.net.cn/jx-callback/globals/api"
|
|
"github.com/astaxie/beego/server/web"
|
|
)
|
|
|
|
// Operations about ELMOrder
|
|
type DadaDeliveryController struct {
|
|
web.Controller
|
|
}
|
|
|
|
func (c *DadaDeliveryController) Msg() {
|
|
if c.Ctx.Input.Method() == http.MethodPost {
|
|
obj, callbackResponse := api.DadaAPI.GetOrderCallbackMsg(c.Ctx.Input.RequestBody)
|
|
if callbackResponse == nil {
|
|
callbackResponse = dada.OnWaybillMsg(obj)
|
|
}
|
|
if callbackResponse != nil && callbackResponse.Code != 200 {
|
|
c.CustomAbort(callbackResponse.Code, string(utils.MustMarshal(callbackResponse)))
|
|
} else {
|
|
c.Data["json"] = callbackResponse
|
|
c.ServeJSON()
|
|
}
|
|
} else {
|
|
c.Abort("404")
|
|
}
|
|
}
|
|
|
|
func (c *DadaDeliveryController) Notify() {
|
|
if c.Ctx.Input.Method() == http.MethodPost {
|
|
obj, notifyResponse := api.DadaAPI.GetNotifyMsg(c.Ctx.Input.RequestBody)
|
|
if notifyResponse == nil && obj.MessageObj != nil {
|
|
err := api.DadaAPI.ConfirmRidderCancel(obj.MessageObj.OrderID, obj.MessageObj.DadaOrderID, true)
|
|
if err != nil {
|
|
notifyResponse = dadaapi.FailedNotifyResponse
|
|
}
|
|
globals.SugarLogger.Debugf("dada notify, obj:%s, err:%v", utils.Format4Output(obj, false), err)
|
|
}
|
|
if notifyResponse == nil {
|
|
notifyResponse = dadaapi.SuccessNotifyResponse
|
|
}
|
|
c.Data["json"] = notifyResponse
|
|
c.ServeJSON()
|
|
} else {
|
|
c.Abort("404")
|
|
}
|
|
}
|