/* * Copyright (c) 2015 Alex Yatskov * Author: Alex Yatskov * * 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 import ( "errors" "fmt" "strconv" "strings" "github.com/PuerkitoBio/goquery" ) type tabelog struct { scrapeCtx } func (tabelog) define(keyword string) semantics { return map[string]semantics{ "dishes": {Accomodating: 0.0, Affordable: 0.0, Atmospheric: 0.0, Delicious: 0.8}, "drinks": {Accomodating: 0.0, Affordable: 0.0, Atmospheric: 0.0, Delicious: 0.2}, "service": {Accomodating: 1.0, Affordable: 0.0, Atmospheric: 0.0, Delicious: 0.0}, "cost": {Accomodating: 0.0, Affordable: 1.0, Atmospheric: 0.0, Delicious: 0.0}, "atmosphere": {Accomodating: 0.0, Affordable: 0.0, Atmospheric: 1.0, Delicious: 0.0}, }[keyword] } func (tabelog) index(doc *goquery.Document) (string, []string) { var reviewUrls []string doc.Find("div.list-rst__header > p > a").Each(func(index int, sel *goquery.Selection) { if href, ok := sel.Attr("href"); ok { reviewUrls = append(reviewUrls, href) } }) var nextIndexUrl string if href, ok := doc.Find("a.c-pagination__target--next").Attr("href"); ok { nextIndexUrl = href } return nextIndexUrl, reviewUrls } func (tabelog) review(doc *goquery.Document) (name, address string, features map[string]float64, weight float64, err error) { if name = doc.Find("a.rd-header__rst-name-main").Text(); len(name) == 0 { err = errors.New("invalid name") return } if addresses := doc.Find("p.rd-detail-info__rst-address"); addresses.Length() == 2 { address = strings.TrimSpace(addresses.First().Text()) } else { err = errors.New("invalid address") return } features = make(map[string]float64) for index, category := range []string{"dishes", "service", "atmosphere", "cost", "drinks"} { valueText := doc.Find(fmt.Sprintf("dl#js-rating-detail > dd:nth-child(%d)", (index+1)*2)).Text() var value float64 if value, err = strconv.ParseFloat(valueText, 8); err != nil { err = fmt.Errorf("invalid rating for %s", category) return } features[category] = value/2.5 - 1.0 } weight, err = strconv.ParseFloat(doc.Find("a.rd-header__rst-reviews-target > b").Text(), 8) if err != nil { err = fmt.Errorf("invalid review count") return } return }