2019-12-31 07:16:11 +01:00
|
|
|
package places
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
gc "github.com/patrickmn/go-cache"
|
2020-01-12 14:00:56 +01:00
|
|
|
"github.com/photoprism/photoprism/pkg/s2"
|
|
|
|
"github.com/photoprism/photoprism/pkg/txt"
|
2019-12-31 07:16:11 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Location
|
|
|
|
type Location struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
LocLat float64 `json:"lat"`
|
|
|
|
LocLng float64 `json:"lng"`
|
|
|
|
LocName string `json:"name"`
|
|
|
|
LocCategory string `json:"category"`
|
|
|
|
Place Place `json:"place"`
|
|
|
|
Cached bool `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
var ReverseLookupURL = "https://places.photoprism.org/v1/location/%s"
|
|
|
|
|
2020-01-19 13:27:15 +01:00
|
|
|
func NewLocation(id string, lat float64, lng float64, name string, category string, place Place, cached bool) *Location {
|
|
|
|
result := &Location{
|
|
|
|
ID: id,
|
|
|
|
LocLat: lat,
|
|
|
|
LocLng: lng,
|
|
|
|
LocName: name,
|
|
|
|
LocCategory: category,
|
|
|
|
Place: place,
|
|
|
|
Cached: cached,
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
2019-12-31 07:16:11 +01:00
|
|
|
func FindLocation(id string) (result Location, err error) {
|
|
|
|
if len(id) > 16 || len(id) == 0 {
|
|
|
|
return result, fmt.Errorf("places: invalid location id %s", id)
|
|
|
|
}
|
|
|
|
|
|
|
|
lat, lng := s2.LatLng(id)
|
|
|
|
|
|
|
|
if lat == 0.0 || lng == 0.0 {
|
|
|
|
return result, fmt.Errorf("places: skipping lat %f, lng %f", lat, lng)
|
|
|
|
}
|
|
|
|
|
|
|
|
if hit, ok := cache.Get(id); ok {
|
|
|
|
log.Debugf("places: cache hit for lat %f, lng %f", lat, lng)
|
|
|
|
result = hit.(Location)
|
|
|
|
result.Cached = true
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
url := fmt.Sprintf(ReverseLookupURL, id)
|
|
|
|
|
|
|
|
log.Debugf("places: query %s", url)
|
|
|
|
|
|
|
|
r, err := http.Get(url)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("places: %s", err.Error())
|
|
|
|
return result, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(r.Body).Decode(&result)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("places: %s", err.Error())
|
|
|
|
return result, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if result.ID == "" {
|
|
|
|
log.Debugf("result: %+v", result)
|
|
|
|
return result, fmt.Errorf("places: no result for %s", id)
|
|
|
|
}
|
|
|
|
|
|
|
|
cache.Set(id, result, gc.DefaultExpiration)
|
|
|
|
|
|
|
|
result.Cached = false
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l Location) CellID() (result string) {
|
|
|
|
return l.ID
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l Location) Name() (result string) {
|
|
|
|
return l.LocName
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l Location) Category() (result string) {
|
|
|
|
return l.LocCategory
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l Location) Label() (result string) {
|
|
|
|
return l.Place.LocLabel
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l Location) State() (result string) {
|
|
|
|
return l.Place.LocState
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l Location) City() (result string) {
|
|
|
|
return l.Place.LocCity
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l Location) CountryCode() (result string) {
|
|
|
|
return l.Place.LocCountry
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l Location) Latitude() (result float64) {
|
|
|
|
return l.LocLat
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l Location) Longitude() (result float64) {
|
|
|
|
return l.LocLng
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l Location) Keywords() (result []string) {
|
2020-01-07 17:36:49 +01:00
|
|
|
return txt.Keywords(l.Label())
|
2019-12-31 07:16:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (l Location) Source() string {
|
|
|
|
return "places"
|
|
|
|
}
|