perkeep/internal/geocode/geocode.go

138 lines
3.6 KiB
Go

/*
Copyright 2013 The Perkeep Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Package geocode handles mapping user-entered locations into lat/long polygons.
package geocode // import "perkeep.org/internal/geocode"
import (
"context"
"encoding/json"
"io"
"log"
"net/url"
"sync"
"go4.org/ctxutil"
"go4.org/syncutil/singleflight"
"golang.org/x/net/context/ctxhttp"
)
type LatLong struct {
Lat float64 `json:"lat"`
Long float64 `json:"lng"`
}
type Rect struct {
NorthEast LatLong `json:"northeast"`
SouthWest LatLong `json:"southwest"`
}
// AltLookupFn provides alternative geocode lookup in tests.
//
// If AltLookupFn is not nil, Lookup calls AltLookupFn first,
// and returns the results unless it is (nil, nil).
//
// Lookup performs its standard lookup using its cache
// and the Google geocoding serice if AltLookupFn is nil,
// or it returns (nil, nil) for the address being looked up.
//
// It's up to the caller to change AltLookupFn only
// when Lookup is not being called.
var AltLookupFn func(ctx context.Context, address string) ([]Rect, error)
var (
mu sync.RWMutex
cache = map[string][]Rect{}
sf singleflight.Group
)
// Lookup returns rectangles for the given address. Currently the only
// implementation is the Google geocoding service.
func Lookup(ctx context.Context, address string) ([]Rect, error) {
if AltLookupFn != nil {
r, err := AltLookupFn(ctx, address)
if r != nil || err != nil {
return r, err
}
}
mu.RLock()
rects, ok := cache[address]
mu.RUnlock()
if ok {
return rects, nil
}
rectsi, err := sf.Do(address, func() (interface{}, error) {
// TODO: static data files from OpenStreetMap, Wikipedia, etc?
urlStr := "https://maps.googleapis.com/maps/api/geocode/json?address=" + url.QueryEscape(address) + "&sensor=false"
res, err := ctxhttp.Get(ctx, ctxutil.Client(ctx), urlStr)
if err != nil {
return nil, err
}
defer res.Body.Close()
rects, err := decodeGoogleResponse(res.Body)
log.Printf("Google geocode lookup (%q) = %#v, %v", address, rects, err)
if err == nil {
mu.Lock()
cache[address] = rects
mu.Unlock()
}
return rects, err
})
if err != nil {
return nil, err
}
return rectsi.([]Rect), nil
}
type googleResTop struct {
Results []*googleResult `json:"results"`
}
type googleResult struct {
Geometry *googleGeometry `json:"geometry"`
}
type googleGeometry struct {
Bounds *Rect `json:"bounds"`
Viewport *Rect `json:"viewport"`
}
func decodeGoogleResponse(r io.Reader) (rects []Rect, err error) {
var resTop googleResTop
if err := json.NewDecoder(r).Decode(&resTop); err != nil {
return nil, err
}
for _, res := range resTop.Results {
if res.Geometry != nil && res.Geometry.Bounds != nil {
r := res.Geometry.Bounds
if r.NorthEast.Lat == 90 && r.NorthEast.Long == 180 &&
r.SouthWest.Lat == -90 && r.SouthWest.Long == -180 {
// Google sometimes returns a "whole world" rect for large addresses (like "USA")
// so instead use the viewport in that case.
if res.Geometry.Viewport != nil {
rects = append(rects, *res.Geometry.Viewport)
}
} else {
rects = append(rects, *r)
}
}
}
return
}