forked from ernesto-jimenez/scraperboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp.go
26 lines (23 loc) · 785 Bytes
/
http.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package scraperboard
import (
"encoding/json"
"net/http"
)
// NewHTTPHandlerFunc constructs an http.HandlerFunc function to expose a JSON API from the scraper. It takes a getURL function which will take each request and return the URL that should be scrapped.
// e.g.: http.Request could contain a Query Parameter with the ID to be scrapped.
func (s *Scraper) NewHTTPHandlerFunc(getURL func(*http.Request) string) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
res, err := s.ScrapeFromURL(getURL(req))
if err != nil {
http.Error(w, err.Error(), 500)
return
}
out, err := json.Marshal(res)
if err != nil {
http.Error(w, err.Error(), 500)
return
}
w.Header().Set("Content-Type", "text/json; charset=UTF-8")
w.Write(out)
}
}