func (self *Surfer) Download(cReq *context.Request) *context.Response { cResp := context.NewResponse(nil) resp, err := self.download.Download(cReq.GetMethod(), cReq.GetUrl(), cReq.GetReferer(), cReq.GetPostData(), cReq.GetHeader(), cReq.GetCookies()) cResp.SetRequest(cReq) cResp.SetResponse(resp) if err != nil { logs.Log.Error(" * %v", err) // cResp.SetStatus(false, err.Error()) // return cResp } cResp.SetStatus(true, "") return cResp }
func (self *Surfer) Download(cReq *context.Request) *context.Response { cResp := context.NewResponse(nil) resp, err := self.download.Download(cReq.GetMethod(), cReq.GetUrl(), cReq.GetReferer(), cReq.GetPostData(), cReq.GetHeader(), cReq.GetCookies()) cResp.SetRequest(cReq) cResp.SetResponse(resp) cResp.SetError(err) return cResp }