/* Copyright 2013 The Camlistore 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 ( "encoding/json" "io" "log" "net/url" "sync" "camlistore.org/pkg/context" "camlistore.org/pkg/httputil" "camlistore.org/pkg/singleflight" ) type LatLong struct { Lat float64 `json:"lat"` Long float64 `json:"lng"` } type Rect struct { NorthEast LatLong `json:"northeast"` SouthWest LatLong `json:"southwest"` } 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) { 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 := ctx.HTTPClient().Get(urlStr) if err != nil { return nil, err } defer httputil.CloseBody(res.Body) 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 }