1
restaurant-search/build/scrape.go

158 lines
3.7 KiB
Go
Raw Normal View History

2015-08-11 11:30:42 +00:00
/*
* Copyright (c) 2015 Alex Yatskov <alex@foosoft.net>
* Author: Alex Yatskov <alex@foosoft.net>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package main
2015-08-21 09:21:52 +00:00
import (
2015-08-23 08:52:21 +00:00
"log"
2015-08-21 09:21:52 +00:00
"net/url"
2015-08-23 08:52:21 +00:00
"sync"
2015-08-23 06:16:01 +00:00
2015-08-23 08:52:21 +00:00
"github.com/PuerkitoBio/goquery"
2015-08-21 09:21:52 +00:00
)
2015-08-16 10:12:16 +00:00
2015-08-23 08:52:21 +00:00
type restaurant struct {
name string
address string
url string
2015-08-21 09:21:52 +00:00
2015-08-23 08:52:21 +00:00
features map[string]float64
2015-08-21 09:21:52 +00:00
2015-08-23 08:52:21 +00:00
latitude float64
longitude float64
2015-08-21 09:21:52 +00:00
2015-08-23 08:52:21 +00:00
closestStnName string
closestStnDist float64
2015-08-17 05:23:03 +00:00
}
2015-08-23 08:52:21 +00:00
type scraper interface {
index(doc *goquery.Document) (string, []string)
review(doc *goquery.Document) (string, string, map[string]float64, error)
}
2015-08-16 10:12:16 +00:00
2015-08-23 08:52:21 +00:00
func makeAbsUrl(ref, base string) (string, error) {
b, err := url.Parse(base)
2015-08-16 10:12:16 +00:00
if err != nil {
2015-08-23 08:52:21 +00:00
return "", err
2015-08-16 10:12:16 +00:00
}
2015-08-23 08:52:21 +00:00
r, err := url.Parse(ref)
2015-08-22 08:54:46 +00:00
if err != nil {
2015-08-23 08:52:21 +00:00
return "", err
2015-08-22 09:14:42 +00:00
}
2015-08-23 08:52:21 +00:00
return b.ResolveReference(r).String(), nil
2015-08-22 09:14:42 +00:00
}
2015-08-23 08:52:21 +00:00
func decodeReviews(in chan restaurant, out chan restaurant, gc *geoCache) {
for {
if res, ok := <-in; ok {
pos, err := gc.decode(res.address)
if err == nil {
res.latitude = pos.Latitude
res.longitude = pos.Longitude
out <- res
} else {
log.Printf("failed to decode address for %s (%v)", res.url, err)
}
} else {
close(out)
return
}
2015-08-22 08:54:46 +00:00
}
2015-08-22 09:14:42 +00:00
}
2015-08-23 08:52:21 +00:00
func scrapeReview(url string, out chan restaurant, wc *webCache, group *sync.WaitGroup, scr scraper) {
defer group.Done()
2015-08-23 06:43:07 +00:00
2015-08-23 08:52:21 +00:00
doc, err := wc.load(url)
2015-08-23 06:16:01 +00:00
if err != nil {
2015-08-23 08:52:21 +00:00
log.Printf("failed to load review at %s (%v)", url, err)
return
2015-08-23 06:16:01 +00:00
}
2015-08-23 08:52:21 +00:00
name, address, features, err := scr.review(doc)
2015-08-23 06:16:01 +00:00
if err != nil {
2015-08-23 08:52:21 +00:00
log.Printf("failed to scrape review at %s (%v)", url, err)
return
2015-08-23 06:16:01 +00:00
}
2015-08-23 08:52:21 +00:00
out <- restaurant{
name: name,
address: address,
features: features,
url: url}
}
2015-08-23 06:16:01 +00:00
2015-08-23 08:52:21 +00:00
func scrapeIndex(indexUrl string, out chan restaurant, wc *webCache, scr scraper) {
doc, err := wc.load(indexUrl)
if err != nil {
log.Printf("failed to load index at %s (%v)", indexUrl, err)
return
2015-08-23 06:16:01 +00:00
}
2015-08-23 08:52:21 +00:00
nextIndexUrl, reviewUrls := scr.index(doc)
2015-08-23 06:16:01 +00:00
if err != nil {
2015-08-23 08:52:21 +00:00
log.Fatal(err)
2015-08-23 06:16:01 +00:00
}
2015-08-23 08:52:21 +00:00
var group sync.WaitGroup
for _, reviewUrl := range reviewUrls {
absUrl, err := makeAbsUrl(reviewUrl, indexUrl)
if err != nil {
log.Fatal(err)
2015-08-23 06:16:01 +00:00
}
2015-08-23 08:52:21 +00:00
group.Add(1)
go scrapeReview(absUrl, out, wc, &group, scr)
2015-08-23 06:16:01 +00:00
}
2015-08-23 08:52:21 +00:00
group.Wait()
2015-08-23 06:16:01 +00:00
2015-08-23 08:52:21 +00:00
if nextIndexUrl == "" {
close(out)
} else {
absUrl, err := makeAbsUrl(nextIndexUrl, indexUrl)
if err != nil {
log.Fatal(err)
}
2015-08-23 06:16:01 +00:00
2015-08-23 08:52:21 +00:00
scrapeIndex(absUrl, out, wc, scr)
2015-08-23 06:16:01 +00:00
}
}
2015-08-23 08:52:21 +00:00
func scrape(url string, wc *webCache, gc *geoCache, scr scraper) []restaurant {
out := make(chan restaurant, 128)
in := make(chan restaurant, 128)
2015-08-22 09:14:42 +00:00
2015-08-23 08:52:21 +00:00
go scrapeIndex(url, in, wc, scr)
go decodeReviews(in, out, gc)
2015-08-23 06:16:01 +00:00
2015-08-23 08:52:21 +00:00
var results []restaurant
for {
if res, ok := <-out; ok {
results = append(results, res)
} else {
return results
}
2015-08-17 05:23:03 +00:00
}
2015-08-11 11:30:42 +00:00
}