本文整理汇总了Golang中github.com/jixiuf/go_spider/core/common/request.Request类的典型用法代码示例。如果您正苦于以下问题:Golang Request类的具体用法?Golang Request怎么用?Golang Request使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Request类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: downloadJson
func (this *HttpDownloader) downloadJson(p *page.Page, req *request.Request) *page.Page {
var err error
p, destbody := this.downloadFile(p, req)
if !p.IsSucc() {
return p
}
var body []byte
body = []byte(destbody)
mtype := req.GetResponceType()
if mtype == "jsonp" {
tmpstr := util.JsonpToJson(destbody)
body = []byte(tmpstr)
}
var r *simplejson.Json
if r, err = simplejson.NewJson(body); err != nil {
mlog.LogInst().LogError(string(body) + "\t" + err.Error())
p.SetStatus(true, err.Error())
return p
}
// json result
p.SetBodyStr(string(body)).SetJson(r).SetStatus(false, "")
return p
}
开发者ID:jixiuf,项目名称:go_spider,代码行数:27,代码来源:downloader_http.go
示例2: Push
func (this *RedisScheduler) Push(requ *request.Request) {
this.locker.Lock()
defer this.locker.Unlock()
requJson, err := json.Marshal(requ)
if err != nil {
mlog.LogInst().LogError("RedisScheduler Push Error: " + err.Error())
return
}
conn := this.redisPool.Get()
defer conn.Close()
if err != nil {
mlog.LogInst().LogError("RedisScheduler Push Error: " + err.Error())
return
}
if this.forbiddenDuplicateUrl {
urlExist, err := conn.Do("HGET", this.urlList, requ.GetUrl())
if err != nil {
mlog.LogInst().LogError("RedisScheduler Push Error: " + err.Error())
return
}
if urlExist != nil {
return
}
conn.Do("MULTI")
_, err = conn.Do("HSET", this.urlList, requ.GetUrl(), 1)
if err != nil {
mlog.LogInst().LogError("RedisScheduler Push Error: " + err.Error())
conn.Do("DISCARD")
return
}
}
_, err = conn.Do("RPUSH", this.requestList, requJson)
if err != nil {
mlog.LogInst().LogError("RedisScheduler Push Error: " + err.Error())
if this.forbiddenDuplicateUrl {
conn.Do("DISCARD")
}
return
}
if this.forbiddenDuplicateUrl {
conn.Do("EXEC")
}
}
开发者ID:jixiuf,项目名称:go_spider,代码行数:48,代码来源:redis_scheduler.go
示例3: Push
func (this *QueueScheduler) Push(requ *request.Request) {
this.locker.Lock()
var key [md5.Size]byte
if this.rm {
key = md5.Sum([]byte(requ.GetUrl()))
if _, ok := this.rmKey[key]; ok {
this.locker.Unlock()
return
}
}
e := this.queue.PushBack(requ)
if this.rm {
this.rmKey[key] = e
}
this.locker.Unlock()
}
开发者ID:jixiuf,项目名称:go_spider,代码行数:16,代码来源:scheduler_queue.go
示例4: Download
func (this *HttpDownloader) Download(req *request.Request) *page.Page {
var mtype string
var p = page.NewPage(req)
mtype = req.GetResponceType()
switch mtype {
case "html":
return this.downloadHtml(p, req)
case "json":
fallthrough
case "jsonp":
return this.downloadJson(p, req)
case "text":
return this.downloadText(p, req)
default:
mlog.LogInst().LogError("error request type:" + mtype)
}
return p
}
开发者ID:jixiuf,项目名称:go_spider,代码行数:18,代码来源:downloader_http.go
示例5: connectByHttpProxy
// choose a proxy server to excute http GET/method to download
func connectByHttpProxy(p *page.Page, in_req *request.Request) (*http.Response, error) {
request, _ := http.NewRequest("GET", in_req.GetUrl(), nil)
proxy, err := url.Parse(in_req.GetProxyHost())
if err != nil {
return nil, err
}
client := &http.Client{
Transport: &http.Transport{
Proxy: http.ProxyURL(proxy),
},
}
resp, err := client.Do(request)
if err != nil {
return nil, err
}
return resp, nil
}
开发者ID:jixiuf,项目名称:go_spider,代码行数:19,代码来源:downloader_http.go
示例6: downloadFile
// Download file and change the charset of page charset.
func (this *HttpDownloader) downloadFile(p *page.Page, req *request.Request) (*page.Page, string) {
var err error
var urlstr string
if urlstr = req.GetUrl(); len(urlstr) == 0 {
mlog.LogInst().LogError("url is empty")
p.SetStatus(true, "url is empty")
return p, ""
}
var resp *http.Response
if proxystr := req.GetProxyHost(); len(proxystr) != 0 {
//using http proxy
//fmt.Print("HttpProxy Enter ",proxystr,"\n")
resp, err = connectByHttpProxy(p, req)
} else {
//normal http download
//fmt.Print("Http Normal Enter \n",proxystr,"\n")
resp, err = connectByHttp(p, req)
}
if err != nil {
return p, ""
}
//b, _ := ioutil.ReadAll(resp.Body)
//fmt.Printf("Resp body %v \r\n", string(b))
p.SetHeader(resp.Header)
p.SetCookies(resp.Cookies())
// get converter to utf-8
var bodyStr string
if resp.Header.Get("Content-Encoding") == "gzip" {
bodyStr = this.changeCharsetEncodingAutoGzipSupport(resp.Header.Get("Content-Type"), resp.Body)
} else {
bodyStr = this.changeCharsetEncodingAuto(resp.Header.Get("Content-Type"), resp.Body)
}
//fmt.Printf("utf-8 body %v \r\n", bodyStr)
defer resp.Body.Close()
return p, bodyStr
}
开发者ID:jixiuf,项目名称:go_spider,代码行数:43,代码来源:downloader_http.go
示例7: connectByHttp
// choose http GET/method to download
func connectByHttp(p *page.Page, req *request.Request) (*http.Response, error) {
client := &http.Client{
CheckRedirect: req.GetRedirectFunc(),
}
httpreq, err := http.NewRequest(req.GetMethod(), req.GetUrl(), strings.NewReader(req.GetPostdata()))
if header := req.GetHeader(); header != nil {
httpreq.Header = req.GetHeader()
}
if cookies := req.GetCookies(); cookies != nil {
for i := range cookies {
httpreq.AddCookie(cookies[i])
}
}
var resp *http.Response
if resp, err = client.Do(httpreq); err != nil {
if e, ok := err.(*url.Error); ok && e.Err != nil && e.Err.Error() == "normal" {
// normal
} else {
mlog.LogInst().LogError(err.Error())
p.SetStatus(true, err.Error())
//fmt.Printf("client do error %v \r\n", err)
return nil, err
}
}
return resp, nil
}
开发者ID:jixiuf,项目名称:go_spider,代码行数:31,代码来源:downloader_http.go
注:本文中的github.com/jixiuf/go_spider/core/common/request.Request类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论