feat: remove recommendations surface and backend

This commit is contained in:
2026-03-10 20:20:00 +00:00
parent 4caa1d717e
commit 9d3006ad8e
28 changed files with 12 additions and 2020 deletions

View File

@@ -124,28 +124,6 @@ class WeatherViewTests(APITestCase):
self.assertEqual(response.json()["results"][0]["temperature_c"], 15.0)
class RecommendationPhotoProxyValidationTests(APITestCase):
def setUp(self):
self.user = User.objects.create_user(
username="reco-user",
email="reco@example.com",
password="password123",
)
self.client.force_authenticate(user=self.user)
def test_google_photo_rejects_invalid_photo_name(self):
response = self.client.get(
"/api/recommendations/google-photo/?photo_name=invalid-photo-name"
)
self.assertEqual(response.status_code, 400)
def test_google_photo_rejects_trailing_newline_photo_name(self):
response = self.client.get(
"/api/recommendations/google-photo/?photo_name=places/abc/photos/def%0A"
)
self.assertEqual(response.status_code, 400)
class MCPAuthTests(APITestCase):
def test_mcp_unauthenticated_access_is_rejected(self):
unauthenticated_client = APIClient()

View File

@@ -18,11 +18,6 @@ router.register(r"ics-calendar", IcsCalendarGeneratorViewSet, basename="ics-cale
router.register(r"search", GlobalSearchView, basename="search")
router.register(r"attachments", AttachmentViewSet, basename="attachments")
router.register(r"lodging", LodgingViewSet, basename="lodging")
(
router.register(
r"recommendations", RecommendationsViewSet, basename="recommendations"
),
)
router.register(r"backup", BackupViewSet, basename="backup")
router.register(r"trails", TrailViewSet, basename="trails")
router.register(r"activities", ActivityViewSet, basename="activities")

View File

@@ -13,7 +13,6 @@ from .transportation_view import *
from .global_search_view import *
from .attachment_view import *
from .lodging_view import *
from .recommendations_view import *
from .import_export_view import *
from .trail_view import *
from .activity_view import *

View File

@@ -1,910 +0,0 @@
from urllib.parse import urlencode
import re
from rest_framework import status, viewsets
from rest_framework.decorators import action
from rest_framework.permissions import IsAuthenticated
from rest_framework.response import Response
from django.conf import settings
import requests
from geopy.distance import geodesic
import logging
from ..geocoding import search_osm
from integrations.models import EncryptionConfigurationError, UserAPIKey
logger = logging.getLogger(__name__)
class RecommendationsViewSet(viewsets.ViewSet):
permission_classes = [IsAuthenticated]
OVERPASS_URL = "https://overpass-api.de/api/interpreter"
NOMINATIM_URL = "https://nominatim.openstreetmap.org/search"
HEADERS = {"User-Agent": "Voyage Server"}
# Quality thresholds
MIN_GOOGLE_RATING = 3.0 # Minimum rating to include
MIN_GOOGLE_REVIEWS = 5 # Minimum number of reviews
MAX_RESULTS = 50 # Maximum results to return
def _get_google_api_key(self, request):
user_key = UserAPIKey.objects.filter(
user=request.user, provider="google_maps"
).first()
if user_key:
try:
decrypted = user_key.get_api_key()
except EncryptionConfigurationError:
decrypted = None
if decrypted:
return decrypted
return getattr(settings, "GOOGLE_MAPS_API_KEY", None)
def _search_google_text(self, query, api_key):
if not api_key:
return None
url = "https://places.googleapis.com/v1/places:searchText"
headers = {
"Content-Type": "application/json",
"X-Goog-Api-Key": api_key,
"X-Goog-FieldMask": "places.displayName.text,places.formattedAddress,places.location",
}
payload = {
"textQuery": query,
"maxResultCount": 5,
}
try:
response = requests.post(url, json=payload, headers=headers, timeout=10)
response.raise_for_status()
data = response.json()
except Exception:
return None
places = data.get("places", []) or []
if not places:
return None
normalized = []
for place in places:
loc = place.get("location") or {}
normalized.append(
{
"lat": loc.get("latitude"),
"lon": loc.get("longitude"),
"name": (place.get("displayName") or {}).get("text"),
"display_name": place.get("formattedAddress"),
}
)
return normalized
def calculate_quality_score(self, place_data):
"""
Calculate a quality score based on multiple factors.
Higher score = better quality recommendation.
"""
import math
score = 0.0
# Rating contribution (0-50 points)
rating = place_data.get("rating")
if rating is not None and rating > 0:
score += (rating / 5.0) * 50
# Review count contribution (0-30 points, logarithmic scale)
review_count = place_data.get("review_count")
if review_count is not None and review_count > 0:
# Logarithmic scale: 10 reviews = ~10 pts, 100 = ~20 pts, 1000 = ~30 pts
score += min(30, math.log10(review_count) * 10)
# Distance penalty (0-20 points, closer is better)
distance_km = place_data.get("distance_km")
if distance_km is not None:
if distance_km < 1:
score += 20
elif distance_km < 5:
score += 15
elif distance_km < 10:
score += 10
elif distance_km < 20:
score += 5
# Verified/business status bonus (0-10 points)
if (
place_data.get("is_verified")
or place_data.get("business_status") == "OPERATIONAL"
):
score += 10
# Has photos bonus (0-5 points)
photos = place_data.get("photos")
if photos and len(photos) > 0:
score += 5
# Has opening hours bonus (0-5 points)
opening_hours = place_data.get("opening_hours")
if opening_hours and len(opening_hours) > 0:
score += 5
return round(score, 2)
def parse_google_places(self, places, origin):
"""
Parse Google Places API results into unified format.
Enhanced with quality filtering and comprehensive data extraction.
"""
locations = []
for place in places:
location = place.get("location", {})
types = place.get("types", [])
# Extract display name
display_name = place.get("displayName", {})
name = (
display_name.get("text")
if isinstance(display_name, dict)
else display_name
)
# Extract coordinates
lat = location.get("latitude")
lon = location.get("longitude")
if not name or not lat or not lon:
continue
# Extract rating information
rating = place.get("rating")
review_count = place.get("userRatingCount", 0)
# Quality filter: Skip low-rated or unreviewed places
if rating and rating < self.MIN_GOOGLE_RATING:
continue
if review_count < self.MIN_GOOGLE_REVIEWS:
continue
# Calculate distance
distance_km = geodesic(origin, (lat, lon)).km
# Extract address information
formatted_address = place.get("formattedAddress") or place.get(
"shortFormattedAddress"
)
# Extract business status
business_status = place.get("businessStatus")
is_operational = business_status == "OPERATIONAL"
# Extract opening hours
opening_hours = place.get("regularOpeningHours", {})
current_opening_hours = place.get("currentOpeningHours", {})
is_open_now = current_opening_hours.get("openNow")
# Extract photos and construct URLs
photos = place.get("photos", [])
photo_urls = []
if photos:
# Get first 5 photos and construct full URLs
for photo in photos[:5]:
photo_name = photo.get("name", "")
if photo_name:
query = urlencode(
{
"photo_name": photo_name,
"max_height": 800,
"max_width": 800,
}
)
photo_url = f"/api/recommendations/google-photo/?{query}"
photo_urls.append(photo_url)
# Extract contact information
phone_number = place.get("nationalPhoneNumber") or place.get(
"internationalPhoneNumber"
)
website = place.get("websiteUri")
google_maps_uri = place.get("googleMapsUri")
# Extract price level
price_level = place.get("priceLevel")
# Extract editorial summary/description
editorial_summary = place.get("editorialSummary", {})
description = (
editorial_summary.get("text")
if isinstance(editorial_summary, dict)
else None
)
# Filter out unwanted types (generic categories)
filtered_types = [
t for t in types if t not in ["point_of_interest", "establishment"]
]
# Build unified response
place_data = {
"id": f"google:{place.get('id')}",
"external_id": place.get("id"),
"source": "google",
"name": name,
"description": description,
"latitude": lat,
"longitude": lon,
"address": formatted_address,
"distance_km": round(distance_km, 2),
"rating": rating,
"review_count": review_count,
"price_level": price_level,
"types": filtered_types,
"primary_type": filtered_types[0] if filtered_types else None,
"business_status": business_status,
"is_open_now": is_open_now,
"opening_hours": opening_hours.get("weekdayDescriptions", [])
if opening_hours
else None,
"phone_number": phone_number,
"website": website,
"google_maps_url": google_maps_uri,
"photos": photo_urls,
"is_verified": is_operational,
}
# Calculate quality score
place_data["quality_score"] = self.calculate_quality_score(place_data)
locations.append(place_data)
return locations
def parse_overpass_response(self, data, request, origin):
"""
Parse Overpass API (OSM) results into unified format.
Enhanced with quality filtering and comprehensive data extraction.
"""
nodes = data.get("elements", [])
locations = []
for node in nodes:
if node.get("type") not in ["node", "way", "relation"]:
continue
tags = node.get("tags", {})
# Get coordinates (for ways/relations, use center)
lat = node.get("lat") or node.get("center", {}).get("lat")
lon = node.get("lon") or node.get("center", {}).get("lon")
# Extract name (with fallbacks)
name = tags.get("name") or tags.get("official_name") or tags.get("alt_name")
if not name or lat is None or lon is None:
continue
# Calculate distance
distance_km = round(geodesic(origin, (lat, lon)).km, 2) if origin else None
# Extract address information
address_parts = [
tags.get("addr:housenumber"),
tags.get("addr:street"),
tags.get("addr:suburb") or tags.get("addr:neighbourhood"),
tags.get("addr:city"),
tags.get("addr:state"),
tags.get("addr:postcode"),
tags.get("addr:country"),
]
formatted_address = ", ".join(filter(None, address_parts)) or None
# Extract contact information
phone = tags.get("phone") or tags.get("contact:phone")
website = (
tags.get("website") or tags.get("contact:website") or tags.get("url")
)
# Extract opening hours
opening_hours = tags.get("opening_hours")
# Extract rating/stars (if available)
stars = tags.get("stars")
# Determine category/type hierarchy
category_keys = [
"tourism",
"leisure",
"amenity",
"natural",
"historic",
"attraction",
"shop",
"sport",
]
types = [tags.get(key) for key in category_keys if key in tags]
primary_type = types[0] if types else None
# Extract description and additional info
description = tags.get("description") or tags.get("note")
wikipedia = tags.get("wikipedia") or tags.get("wikidata")
# Extract image if available
image = tags.get("image") or tags.get("wikimedia_commons")
# Quality filters for OSM data
# Skip if it's just a generic POI without specific category
if not primary_type:
continue
# Skip construction or disused places
if tags.get("disused") or tags.get("construction"):
continue
# Build unified response
place_data = {
"id": f"osm:{node.get('type')}:{node.get('id')}",
"external_id": str(node.get("id")),
"source": "osm",
"name": name,
"description": description,
"latitude": lat,
"longitude": lon,
"address": formatted_address,
"distance_km": distance_km,
"rating": None, # OSM doesn't have ratings
"review_count": None,
"price_level": None,
"types": types,
"primary_type": primary_type,
"business_status": None,
"is_open_now": None,
"opening_hours": [opening_hours] if opening_hours else None,
"phone_number": phone,
"website": website,
"google_maps_url": None,
"photos": [image] if image else [],
"is_verified": bool(wikipedia), # Has Wikipedia = more verified
"osm_type": node.get("type"),
"wikipedia": wikipedia,
"stars": stars,
}
# Calculate quality score (will be lower without ratings)
place_data["quality_score"] = self.calculate_quality_score(place_data)
locations.append(place_data)
return locations
def query_overpass(self, lat, lon, radius, category, request):
"""
Query Overpass API (OpenStreetMap) for nearby places.
Enhanced with better queries and error handling.
"""
# Limit radius for OSM to prevent timeouts (max 5km for OSM due to server limits)
osm_radius = min(radius, 5000)
# Build optimized query - use simpler queries and limit results
# Reduced timeout and simplified queries to prevent 504 errors
if category == "tourism":
query = f"""
[out:json][timeout:25];
(
nwr["tourism"~"attraction|viewpoint|museum|gallery|zoo|aquarium"](around:{osm_radius},{lat},{lon});
nwr["historic"~"monument|castle|memorial"](around:{osm_radius},{lat},{lon});
nwr["leisure"~"park|garden|nature_reserve"](around:{osm_radius},{lat},{lon});
);
out center tags 50;
"""
elif category == "lodging":
query = f"""
[out:json][timeout:25];
nwr["tourism"~"hotel|motel|guest_house|hostel"](around:{osm_radius},{lat},{lon});
out center tags 50;
"""
elif category == "food":
query = f"""
[out:json][timeout:25];
nwr["amenity"~"restaurant|cafe|bar|pub"](around:{osm_radius},{lat},{lon});
out center tags 50;
"""
else:
logger.error(f"Invalid category requested: {category}")
return {"error": "Invalid category.", "results": []}
try:
response = requests.post(
self.OVERPASS_URL, data=query, headers=self.HEADERS, timeout=30
)
response.raise_for_status()
data = response.json()
except requests.exceptions.Timeout:
logger.warning(
f"Overpass API timeout for {category} at ({lat}, {lon}) with radius {osm_radius}m"
)
return {
"error": f"OpenStreetMap query timed out. The service is overloaded. Radius limited to {int(osm_radius)}m.",
"results": [],
}
except requests.exceptions.HTTPError as e:
if e.response.status_code == 504:
logger.warning(f"Overpass API 504 Gateway Timeout for {category}")
return {
"error": "OpenStreetMap server is overloaded. Try again later or use Google source.",
"results": [],
}
logger.warning(f"Overpass API HTTP error: {e}")
return {
"error": f"OpenStreetMap error: please try again later.",
"results": [],
}
except requests.exceptions.RequestException as e:
logger.warning(f"Overpass API error: {e}")
return {
"error": f"OpenStreetMap temporarily unavailable: please try again later.",
"results": [],
}
except ValueError as e:
logger.error(f"Invalid JSON response from Overpass: {e}")
return {"error": "Invalid response from OpenStreetMap.", "results": []}
origin = (float(lat), float(lon))
locations = self.parse_overpass_response(data, request, origin)
logger.info(f"Overpass returned {len(locations)} results")
return {"error": None, "results": locations}
def query_google_nearby(self, lat, lon, radius, category, request):
"""
Query Google Places API (New) for nearby places.
Enhanced with comprehensive field masks and better error handling.
"""
api_key = self._get_google_api_key(request)
url = "https://places.googleapis.com/v1/places:searchNearby"
# Comprehensive field mask to get all useful information
headers = {
"Content-Type": "application/json",
"X-Goog-Api-Key": api_key,
"X-Goog-FieldMask": (
"places.id,"
"places.displayName,"
"places.formattedAddress,"
"places.shortFormattedAddress,"
"places.location,"
"places.types,"
"places.rating,"
"places.userRatingCount,"
"places.businessStatus,"
"places.priceLevel,"
"places.websiteUri,"
"places.googleMapsUri,"
"places.nationalPhoneNumber,"
"places.internationalPhoneNumber,"
"places.editorialSummary,"
"places.photos,"
"places.currentOpeningHours,"
"places.regularOpeningHours"
),
}
# Map categories to place types - use multiple types for better coverage
type_mapping = {
"lodging": [
"lodging",
"hotel",
"hostel",
"resort_hotel",
"extended_stay_hotel",
],
"food": [
"restaurant",
"cafe",
"bar",
"bakery",
"meal_takeaway",
"meal_delivery",
],
"tourism": [
"tourist_attraction",
"museum",
"art_gallery",
"aquarium",
"zoo",
"amusement_park",
"park",
"natural_feature",
],
}
payload = {
"includedTypes": type_mapping.get(category, ["tourist_attraction"]),
"maxResultCount": 20,
"rankPreference": "DISTANCE", # Sort by distance first
"locationRestriction": {
"circle": {
"center": {"latitude": float(lat), "longitude": float(lon)},
"radius": float(radius),
}
},
}
try:
response = requests.post(url, json=payload, headers=headers, timeout=15)
response.raise_for_status()
data = response.json()
places = data.get("places", [])
origin = (float(lat), float(lon))
locations = self.parse_google_places(places, origin)
logger.info(
f"Google Places returned {len(locations)} quality results for category '{category}'"
)
return Response(self._prepare_final_results(locations))
except requests.exceptions.Timeout:
logger.warning("Google Places API timeout, falling back to OSM")
return self.query_overpass(lat, lon, radius, category, request)
except requests.exceptions.RequestException as e:
logger.warning(f"Google Places API error: {e}, falling back to OSM")
return self.query_overpass(lat, lon, radius, category, request)
except Exception as e:
logger.error(f"Unexpected error with Google Places API: {e}")
return self.query_overpass(lat, lon, radius, category, request)
def _prepare_final_results(self, locations):
"""
Prepare final results: sort by quality score and limit results.
"""
# Sort by quality score (highest first)
locations.sort(key=lambda x: x.get("quality_score", 0), reverse=True)
# Limit to MAX_RESULTS
locations = locations[: self.MAX_RESULTS]
return locations
def _deduplicate_results(self, google_results, osm_results):
"""
Deduplicate results from both sources based on name and proximity.
Prioritize Google results when duplicates are found.
"""
from difflib import SequenceMatcher
def is_similar(name1, name2, threshold=0.85):
"""Check if two names are similar using fuzzy matching."""
return (
SequenceMatcher(None, name1.lower(), name2.lower()).ratio() > threshold
)
def is_nearby(loc1, loc2, max_distance_m=50):
"""Check if two locations are within max_distance_m meters."""
dist = geodesic(
(loc1["latitude"], loc1["longitude"]),
(loc2["latitude"], loc2["longitude"]),
).meters
return dist < max_distance_m
# Start with all Google results (higher quality)
deduplicated = list(google_results)
# Add OSM results that don't match Google results
for osm_loc in osm_results:
is_duplicate = False
for google_loc in google_results:
if is_similar(osm_loc["name"], google_loc["name"]) and is_nearby(
osm_loc, google_loc
):
is_duplicate = True
break
if not is_duplicate:
deduplicated.append(osm_loc)
return deduplicated
@action(detail=False, methods=["get"])
def query(self, request):
"""
Query both Google Places and OSM for recommendations.
Returns unified, high-quality results sorted by quality score.
Query Parameters:
- lat (required): Latitude
- lon (required): Longitude
- radius (optional): Search radius in meters (default: 5000, max: 50000)
- category (required): Category - 'tourism', 'food', or 'lodging'
- sources (optional): Comma-separated sources - 'google', 'osm', or 'both' (default: 'both')
"""
lat = request.query_params.get("lat")
lon = request.query_params.get("lon")
# Allow a free-text `location` parameter which will be geocoded
location_param = request.query_params.get("location")
radius = request.query_params.get("radius", "5000")
category = request.query_params.get("category")
sources = request.query_params.get("sources", "both").lower()
# If lat/lon not supplied, try geocoding the free-text location param
if (not lat or not lon) and location_param:
geocode_results = None
request_google_api_key = self._get_google_api_key(request)
# Try Google first if API key configured
if request_google_api_key:
try:
geocode_results = self._search_google_text(
location_param, request_google_api_key
)
except Exception:
logger.warning("Google geocoding failed; falling back to OSM")
geocode_results = None
# Fallback to OSM Nominatim
if not geocode_results:
try:
geocode_results = search_osm(location_param)
except Exception:
logger.warning("OSM geocoding failed")
geocode_results = None
# Validate geocode results
if isinstance(geocode_results, dict) and geocode_results.get("error"):
# Log internal geocoding error but avoid exposing sensitive details
logger.warning("Geocoding helper returned an internal error")
return Response(
{
"error": "Geocoding failed. Please try a different location or contact support."
},
status=400,
)
if not geocode_results:
return Response(
{"error": "Could not geocode provided location."}, status=400
)
# geocode_results expected to be a list of results; pick the best (first)
best = None
if isinstance(geocode_results, list) and len(geocode_results) > 0:
best = geocode_results[0]
elif isinstance(geocode_results, dict):
# Some helpers might return a dict when only one result found
best = geocode_results
if not best:
return Response({"error": "No geocoding results found."}, status=400)
try:
best_lat = best.get("lat") or best.get("latitude")
best_lon = best.get("lon") or best.get("longitude")
if best_lat is None or best_lon is None:
raise ValueError("missing_coordinates")
lat = float(best_lat)
lon = float(best_lon)
except Exception:
return Response(
{"error": "Geocoding result missing coordinates."}, status=400
)
# Replace location_param with display name when available for logging/debug
location_param = (
best.get("display_name") or best.get("name") or location_param
)
# Validation: require lat and lon at this point
if not lat or not lon:
return Response(
{
"error": "Latitude and longitude parameters are required (or provide a 'location' parameter to geocode)."
},
status=400,
)
try:
lat = float(lat)
lon = float(lon)
radius = min(float(radius), 50000) # Max 50km radius
except ValueError:
return Response(
{"error": "Invalid latitude, longitude, or radius value."}, status=400
)
valid_categories = ["lodging", "food", "tourism"]
if category not in valid_categories:
return Response(
{
"error": f"Invalid category. Valid categories: {', '.join(valid_categories)}"
},
status=400,
)
valid_sources = ["google", "osm", "both"]
if sources not in valid_sources:
return Response(
{
"error": f"Invalid sources. Valid options: {', '.join(valid_sources)}"
},
status=400,
)
api_key = self._get_google_api_key(request)
google_results = []
osm_results = []
# Query Google Places if available and requested
if api_key and sources in ["google", "both"]:
try:
url = "https://places.googleapis.com/v1/places:searchNearby"
headers = {
"Content-Type": "application/json",
"X-Goog-Api-Key": api_key,
"X-Goog-FieldMask": (
"places.id,places.displayName,places.formattedAddress,"
"places.shortFormattedAddress,places.location,places.types,"
"places.rating,places.userRatingCount,places.businessStatus,"
"places.priceLevel,places.websiteUri,places.googleMapsUri,"
"places.nationalPhoneNumber,places.internationalPhoneNumber,"
"places.editorialSummary,places.photos,"
"places.currentOpeningHours,places.regularOpeningHours"
),
}
type_mapping = {
"lodging": ["lodging", "hotel", "hostel", "resort_hotel"],
"food": ["restaurant", "cafe", "bar", "bakery"],
"tourism": [
"tourist_attraction",
"museum",
"art_gallery",
"aquarium",
"zoo",
"park",
],
}
payload = {
"includedTypes": type_mapping.get(category, ["tourist_attraction"]),
"maxResultCount": 20,
"rankPreference": "DISTANCE",
"locationRestriction": {
"circle": {
"center": {"latitude": lat, "longitude": lon},
"radius": radius,
}
},
}
response = requests.post(url, json=payload, headers=headers, timeout=15)
response.raise_for_status()
data = response.json()
places = data.get("places", [])
origin = (lat, lon)
google_results = self.parse_google_places(places, origin)
logger.info(f"Google Places: {len(google_results)} quality results")
except Exception as e:
logger.warning(f"Google Places failed: {e}")
# Query OSM if requested or as fallback
osm_error = None
if sources in ["osm", "both"] or (sources == "google" and not google_results):
osm_response = self.query_overpass(lat, lon, radius, category, request)
osm_results = osm_response.get("results", [])
osm_error = osm_response.get("error")
if osm_error:
logger.warning(f"OSM query had issues: {osm_error}")
# Combine and deduplicate if using both sources
if sources == "both" and google_results and osm_results:
all_results = self._deduplicate_results(google_results, osm_results)
else:
all_results = google_results + osm_results
# Prepare final results
final_results = self._prepare_final_results(all_results)
logger.info(f"Returning {len(final_results)} total recommendations")
# Build response with metadata
response_data = {
"count": len(final_results),
"results": final_results,
"sources_used": {
"google": len(google_results),
"osm": len(osm_results),
"total_before_dedup": len(google_results) + len(osm_results),
},
}
# Add warnings if there were errors but we still have some results
warnings = []
if osm_error and len(osm_results) == 0:
warnings.append(osm_error)
if warnings:
response_data["warnings"] = warnings
# If no results at all and user requested only OSM, return error status
if len(final_results) == 0 and sources == "osm" and osm_error:
# Log internal error notice for investigation but do not expose details to clients
logger.debug("OSM query error (internal)")
return Response(
{
"error": "OpenStreetMap service temporarily unavailable. Please try again later.",
"count": 0,
"results": [],
"sources_used": response_data["sources_used"],
},
status=503,
)
return Response(response_data)
@action(detail=False, methods=["get"], url_path="google-photo")
def google_photo(self, request):
photo_name = request.query_params.get("photo_name")
if not photo_name:
return Response(
{"error": "photo_name is required"},
status=status.HTTP_400_BAD_REQUEST,
)
if not re.fullmatch(r"places/[A-Za-z0-9_-]+/photos/[A-Za-z0-9_-]+", photo_name):
return Response(
{
"error": "photo_name must match pattern: places/{place_id}/photos/{photo_id}"
},
status=status.HTTP_400_BAD_REQUEST,
)
api_key = self._get_google_api_key(request)
if not api_key:
return Response(
{"error": "Google API key is not configured for this account."},
status=status.HTTP_400_BAD_REQUEST,
)
try:
max_height = min(
max(int(request.query_params.get("max_height", "800")), 1), 1600
)
max_width = min(
max(int(request.query_params.get("max_width", "800")), 1), 1600
)
except ValueError:
return Response(
{"error": "max_height and max_width must be integers."},
status=status.HTTP_400_BAD_REQUEST,
)
photo_url = f"https://places.googleapis.com/v1/{photo_name}/media"
try:
upstream = requests.get(
photo_url,
params={
"key": api_key,
"maxHeightPx": max_height,
"maxWidthPx": max_width,
},
timeout=15,
)
except requests.RequestException:
return Response(
{"error": "Unable to fetch Google photo right now."},
status=status.HTTP_502_BAD_GATEWAY,
)
if upstream.status_code >= 400:
return Response(
{"error": "Google photo unavailable."},
status=status.HTTP_502_BAD_GATEWAY,
)
response = Response(upstream.content, status=status.HTTP_200_OK)
response["Content-Type"] = upstream.headers.get("Content-Type", "image/jpeg")
cache_control = upstream.headers.get("Cache-Control")
if cache_control:
response["Cache-Control"] = cache_control
return response

View File

@@ -1,5 +1,3 @@
from unittest.mock import patch
from django.contrib.auth import get_user_model
from django.test import override_settings
from rest_framework.test import APITestCase
@@ -29,29 +27,6 @@ class UserAPIKeyConfigurationTests(APITestCase):
self.assertEqual(response.status_code, 503)
self.assertIn("invalid", response.json().get("detail", "").lower())
@override_settings(FIELD_ENCRYPTION_KEY="")
@patch("adventures.views.recommendations_view.requests.get")
def test_google_photo_uses_graceful_fallback_when_user_key_unreadable(
self, mock_requests_get
):
from integrations.models import UserAPIKey
# Legacy/bad row exists but cannot be decrypted due to missing key.
UserAPIKey.objects.create(
user=self.user,
provider="google_maps",
encrypted_api_key="not-a-valid-fernet-token",
)
response = self.client.get(
"/api/recommendations/google-photo/?photo_name=places/abc/photos/def"
)
# Should fail gracefully as misconfigured key path, not crash (500).
self.assertEqual(response.status_code, 400)
self.assertIn("not configured", response.json().get("error", "").lower())
mock_requests_get.assert_not_called()
class UserAPIKeyCreateBehaviorTests(APITestCase):
@override_settings(

View File

@@ -1,800 +0,0 @@
<script lang="ts">
import type { Collection, User, ContentImage } from '$lib/types';
import { onMount } from 'svelte';
import { t } from 'svelte-i18n';
import { DefaultMarker, MapLibre, Popup } from 'svelte-maplibre';
import { getBasemapUrl } from '$lib';
import MagnifyIcon from '~icons/mdi/magnify';
import MapMarker from '~icons/mdi/map-marker';
import Star from '~icons/mdi/star';
import StarHalfFull from '~icons/mdi/star-half-full';
import StarOutline from '~icons/mdi/star-outline';
import AccountMultiple from '~icons/mdi/account-multiple';
import Phone from '~icons/mdi/phone';
import Web from '~icons/mdi/web';
import OpenInNew from '~icons/mdi/open-in-new';
import ClockOutline from '~icons/mdi/clock-outline';
import CurrencyUsd from '~icons/mdi/currency-usd';
import TuneVariant from '~icons/mdi/tune-variant';
import CloseCircle from '~icons/mdi/close-circle';
import Compass from '~icons/mdi/compass';
import ImageDisplayModal from '$lib/components/ImageDisplayModal.svelte';
import LocationModal from '$lib/components/locations/LocationModal.svelte';
import LodgingModal from '$lib/components/lodging/LodgingModal.svelte';
import { createEventDispatcher } from 'svelte';
import type { Location, Lodging } from '$lib/types';
export let collection: Collection;
export let user: User | null;
// Whether the current user can modify this collection (owner or shared user)
type RecommendationResult = {
name: string;
latitude: number;
longitude: number;
distance_km: number;
source: 'google' | 'osm';
type: string;
tags?: Record<string, string>;
rating?: number;
review_count?: number;
address?: string;
business_status?: string;
opening_hours?: string[];
is_open_now?: boolean;
photos?: string[];
phone_number?: string;
website?: string;
google_maps_uri?: string;
price_level?: string;
description?: string;
quality_score?: number;
};
let searchQuery = '';
let selectedCategory: 'tourism' | 'lodging' | 'food' = 'tourism';
let radiusValue = 5000; // Default 5km
let loading = false;
let results: RecommendationResult[] = [];
let error: string | null = null;
let selectedLocationId: string | null = null;
let showFilters = false;
let mapCenter: { lng: number; lat: number } = { lng: 0, lat: 0 };
let mapZoom = 12;
// Filters
let minRating = 0;
let minReviews = 0;
let showOpenOnly = false;
// Photo modal
let photoModalOpen = false;
let selectedPhotos: ContentImage[] = [];
let selectedPhotoIndex = 0;
let selectedPlaceName = '';
let selectedPlaceAddress = '';
const dispatch = createEventDispatcher();
// Modals for creating autofilled items
let showLocationModal = false;
let showLodgingModal = false;
let modalLocationToEdit: Location | null = null;
let modalLodgingToEdit: Lodging | null = null;
function mapPhotosToContentImages(photos: string[]): ContentImage[] {
return photos.map((url, i) => ({
id: `rec-${i}-${Date.now()}`,
image: url,
is_primary: i === 0,
immich_id: null
}));
}
function openCreateLocationFromResult(result: RecommendationResult) {
modalLocationToEdit = {
id: '',
name: result.name || '',
location: result.address || result.description || '',
tags: [],
description: result.description || null,
rating: result.rating ?? NaN,
price: null,
price_currency: null,
link: result.website || null,
images: mapPhotosToContentImages(result.photos || []),
visits: [],
collections: [collection.id],
latitude: result.latitude ?? null,
longitude: result.longitude ?? null,
is_public: false,
user: user ?? null,
category: null,
attachments: [],
trails: []
} as Location;
showLocationModal = true;
}
function openCreateLodgingFromResult(result: RecommendationResult) {
modalLodgingToEdit = {
id: '',
user: user ? user.uuid : '',
name: result.name || '',
type: '',
description: result.description || null,
rating: result.rating ?? null,
link: result.website || null,
check_in: null,
check_out: null,
timezone: null,
reservation_number: null,
price: null,
price_currency: null,
latitude: result.latitude ?? null,
longitude: result.longitude ?? null,
location: result.address || result.description || null,
is_public: false,
collection: collection.id,
created_at: '',
updated_at: '',
images: mapPhotosToContentImages(result.photos || []),
attachments: []
} as Lodging;
showLodgingModal = true;
}
function handleLocationCreate(e: CustomEvent) {
const created: Location = e.detail;
showLocationModal = false;
modalLocationToEdit = null;
collection.locations = [...collection.locations, created];
}
function handleLodgingCreate(e: CustomEvent) {
const created: Lodging = e.detail;
showLodgingModal = false;
modalLodgingToEdit = null;
collection.lodging = [...(collection.lodging ?? []), created];
}
function closeLocationModal() {
showLocationModal = false;
modalLocationToEdit = null;
}
function closeLodgingModal() {
showLodgingModal = false;
modalLodgingToEdit = null;
}
$: isMetric = user?.measurement_system === 'metric';
$: radiusDisplay = isMetric
? `${(radiusValue / 1000).toFixed(1)} km`
: `${(radiusValue / 1609.34).toFixed(1)} mi`;
$: radiusOptions = isMetric
? [
{ value: 1000, label: '1 km' },
{ value: 2000, label: '2 km' },
{ value: 5000, label: '5 km' },
{ value: 10000, label: '10 km' },
{ value: 20000, label: '20 km' },
{ value: 50000, label: '50 km' }
]
: [
{ value: 1609, label: '1 mi' },
{ value: 3219, label: '2 mi' },
{ value: 8047, label: '5 mi' },
{ value: 16093, label: '10 mi' },
{ value: 32187, label: '20 mi' },
{ value: 80467, label: '50 mi' }
];
// Get locations with coordinates for dropdown
$: locationsWithCoords = collection.locations.filter((l) => l.latitude && l.longitude);
// Set default selected location and map center
onMount(() => {
if (locationsWithCoords.length > 0) {
selectedLocationId = locationsWithCoords[0].id;
mapCenter = {
lng: locationsWithCoords[0].longitude!,
lat: locationsWithCoords[0].latitude!
};
}
});
// Update map center when selected location changes
$: if (selectedLocationId) {
const location = locationsWithCoords.find((l) => l.id === selectedLocationId);
if (location && location.latitude && location.longitude) {
mapCenter = { lng: location.longitude, lat: location.latitude };
}
}
// Filter results
$: filteredResults = results.filter((r) => {
if (minRating > 0 && (r.rating === undefined || r.rating < minRating)) return false;
if (minReviews > 0 && (r.review_count === undefined || r.review_count < minReviews))
return false;
if (showOpenOnly && !r.is_open_now) return false;
return true;
});
async function searchRecommendations() {
if (!searchQuery.trim() && !selectedLocationId) {
error = 'Please select a location or enter a search query';
return;
}
loading = true;
error = null;
results = [];
try {
const params = new URLSearchParams();
if (selectedLocationId) {
const location = locationsWithCoords.find((l) => l.id === selectedLocationId);
if (location && location.latitude && location.longitude) {
params.append('lat', location.latitude.toString());
params.append('lon', location.longitude.toString());
}
} else if (searchQuery.trim()) {
params.append('location', searchQuery);
}
params.append('radius', radiusValue.toString());
params.append('category', selectedCategory);
const response = await fetch(`/api/recommendations/query?${params.toString()}`);
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.error || 'Failed to fetch recommendations');
}
const data = await response.json();
if (data.error) {
throw new Error(data.error);
}
results = data.results || [];
// Update map if we have results
if (results.length > 0) {
// Calculate bounds for all results
const lats = results.map((r) => r.latitude);
const lngs = results.map((r) => r.longitude);
const avgLat = lats.reduce((a, b) => a + b, 0) / lats.length;
const avgLng = lngs.reduce((a, b) => a + b, 0) / lngs.length;
mapCenter = { lng: avgLng, lat: avgLat };
}
} catch (err) {
error = err instanceof Error ? err.message : 'An error occurred';
console.error('Error fetching recommendations:', err);
} finally {
loading = false;
}
}
function openPhotoModal(
photos: string[],
placeName: string,
placeAddress: string = '',
startIndex: number = 0
) {
// Convert photo URLs to ContentImage format
selectedPhotos = photos.map((url, index) => ({
id: `photo-${index}`,
image: url,
is_primary: index === 0,
immich_id: null
}));
selectedPlaceName = placeName;
selectedPlaceAddress = placeAddress;
selectedPhotoIndex = startIndex;
photoModalOpen = true;
}
function closePhotoModal() {
photoModalOpen = false;
selectedPhotos = [];
selectedPhotoIndex = 0;
selectedPlaceName = '';
selectedPlaceAddress = '';
}
function renderStars(rating: number | undefined) {
if (!rating) return [];
const stars = [];
const fullStars = Math.floor(rating);
const hasHalfStar = rating % 1 >= 0.5;
for (let i = 0; i < 5; i++) {
if (i < fullStars) {
stars.push({ type: 'full', key: i });
} else if (i === fullStars && hasHalfStar) {
stars.push({ type: 'half', key: i });
} else {
stars.push({ type: 'empty', key: i });
}
}
return stars;
}
function getPriceLevelDisplay(priceLevel: string | undefined) {
if (!priceLevel) return '';
const levels: Record<string, string> = {
FREE: 'Free',
INEXPENSIVE: '$',
MODERATE: '$$',
EXPENSIVE: '$$$',
VERY_EXPENSIVE: '$$$$'
};
return levels[priceLevel] || '';
}
function formatDistance(km: number) {
if (isMetric) {
return km < 1 ? `${Math.round(km * 1000)} m` : `${km.toFixed(1)} km`;
} else {
const miles = km / 1.60934;
const feet = miles * 5280;
return miles < 0.1 ? `${Math.round(feet)} ft` : `${miles.toFixed(1)} mi`;
}
}
</script>
<!-- Photo Modal -->
{#if photoModalOpen}
<ImageDisplayModal
images={selectedPhotos}
initialIndex={selectedPhotoIndex}
name={selectedPlaceName}
location={selectedPlaceAddress}
on:close={closePhotoModal}
/>
{/if}
{#if showLocationModal}
<LocationModal
{user}
{collection}
locationToEdit={modalLocationToEdit}
on:create={handleLocationCreate}
on:save={handleLocationCreate}
on:close={closeLocationModal}
/>
{/if}
{#if showLodgingModal}
<LodgingModal
{user}
{collection}
lodgingToEdit={modalLodgingToEdit}
on:create={handleLodgingCreate}
on:close={closeLodgingModal}
on:save={handleLodgingCreate}
/>
{/if}
<div class="space-y-6">
<!-- Search & Filter Card -->
<div class="card bg-base-200 shadow-xl">
<div class="card-body">
<h2 class="card-title text-2xl mb-4">
<Compass class="w-8 h-8" />
{$t('recomendations.discover_places')}
</h2>
<!-- Search Options -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<!-- Location Selector -->
{#if locationsWithCoords.length > 0}
<div class="form-control">
<label class="label">
<span class="label-text font-semibold"
>{$t('recomendations.search_around_location')}</span
>
</label>
<select class="select w-full" bind:value={selectedLocationId}>
<option value={null}>{$t('recomendations.use_search_instead')}...</option>
{#each locationsWithCoords as location}
<option value={location.id}>{location.name}</option>
{/each}
</select>
</div>
{/if}
<!-- Search Input -->
<div class="form-control">
<label class="label">
<span class="label-text font-semibold">{$t('recomendations.search_by_address')}</span>
</label>
<input
type="text"
placeholder={$t('adventures.search_placeholder')}
class="input w-full"
bind:value={searchQuery}
disabled={selectedLocationId !== null}
on:keydown={(e) => e.key === 'Enter' && searchRecommendations()}
/>
</div>
<!-- Category Selector -->
<div class="form-control">
<label class="label">
<span class="label-text font-semibold">{$t('adventures.category')}</span>
</label>
<select class="select w-full" bind:value={selectedCategory}>
<option value="tourism">🏛️ {$t('recomendations.tourism')}</option>
<option value="lodging">🏨 {$t('recomendations.lodging')}</option>
<option value="food">🍴 {$t('recomendations.food')}</option>
</select>
</div>
<!-- Radius Selector -->
<div class="form-control">
<label class="label">
<span class="label-text font-semibold"
>{$t('recomendations.search_radius_label')} {radiusDisplay}</span
>
</label>
<select class="select w-full" bind:value={radiusValue}>
{#each radiusOptions as option}
<option value={option.value}>{option.label}</option>
{/each}
</select>
</div>
</div>
<!-- Filters Toggle -->
<div class="flex gap-2 mt-4">
<button class="btn btn-primary flex-1" on:click={searchRecommendations} disabled={loading}>
{#if loading}
<span class="loading loading-spinner loading-sm"></span>
{$t('recomendations.searching')}
{:else}
<MagnifyIcon class="w-5 h-5" />
{$t('navbar.search')}
{/if}
</button>
<button class="btn btn-ghost" on:click={() => (showFilters = !showFilters)}>
<TuneVariant class="w-5 h-5" />
{$t('adventures.filter')}
</button>
</div>
<!-- Advanced Filters -->
{#if showFilters}
<div class="divider">{$t('adventures.filter')}</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<div class="form-control">
<label class="label">
<span class="label-text">{$t('recomendations.minimum_rating')}</span>
</label>
<select class="select select-sm" bind:value={minRating}>
<option value={0}>{$t('recomendations.any')}</option>
<option value={3}>3+ ⭐</option>
<option value={3.5}>3.5+ ⭐</option>
<option value={4}>4+ ⭐</option>
<option value={4.5}>4.5+ ⭐</option>
</select>
</div>
<div class="form-control">
<!-- svelte-ignore a11y-label-has-associated-control -->
<label class="label">
<span class="label-text">{$t('recomendations.minimum_reviews')}</span>
</label>
<select class="select select-sm" bind:value={minReviews}>
<option value={0}>{$t('recomendations.any')}</option>
<option value={10}>10+</option>
<option value={50}>50+</option>
<option value={100}>100+</option>
<option value={500}>500+</option>
</select>
</div>
<div class="form-control">
<label class="label cursor-pointer">
<span class="label-text">{$t('recomendations.open_now_only')}</span>
<input type="checkbox" class="toggle toggle-primary" bind:checked={showOpenOnly} />
</label>
</div>
</div>
{/if}
<!-- Error Message -->
{#if error}
<div class="alert alert-error mt-4">
<CloseCircle class="w-6 h-6" />
<span>{error}</span>
</div>
{/if}
</div>
</div>
<!-- Results -->
{#if loading}
<div class="flex justify-center py-12">
<span class="loading loading-spinner loading-lg text-primary"></span>
</div>
{:else if filteredResults.length > 0}
<!-- Results Stats -->
<div class="stats shadow w-full">
<div class="stat">
<div class="stat-title">{$t('recomendations.total_results')}</div>
<div class="stat-value text-primary">{filteredResults.length}</div>
</div>
<div class="stat">
<div class="stat-title">{$t('recomendations.average_rating')}</div>
<div class="stat-value text-secondary">
{(
filteredResults.filter((r) => r.rating).reduce((sum, r) => sum + (r.rating || 0), 0) /
filteredResults.filter((r) => r.rating).length
).toFixed(1)}
</div>
</div>
<div class="stat">
<div class="stat-title">{$t('recomendations.search_radius_label')}</div>
<div class="stat-value text-accent">{radiusDisplay}</div>
</div>
</div>
<!-- Map View -->
<div class="card bg-base-200 shadow-xl">
<div class="card-body">
<h3 class="card-title text-xl mb-4">📍 {$t('recomendations.map_view')}</h3>
<div class="rounded-lg overflow-hidden shadow-lg">
<MapLibre
style={getBasemapUrl()}
class="w-full h-[500px]"
standardControls
center={mapCenter}
zoom={mapZoom}
>
<!-- Collection Locations -->
{#each collection.locations as location}
{#if location.latitude && location.longitude}
<DefaultMarker lngLat={{ lng: location.longitude, lat: location.latitude }}>
<Popup openOn="click" offset={[0, -10]}>
<div class="p-2">
<a
href={`/adventures/${location.id}`}
class="text-lg font-bold text-black hover:underline mb-1 block"
>
{location.name}
</a>
<p class="text-xs text-black opacity-70">
{$t('recomendations.your_location')}
</p>
</div>
</Popup>
</DefaultMarker>
{/if}
{/each}
<!-- Recommendation Results -->
{#each filteredResults as result}
<DefaultMarker lngLat={{ lng: result.longitude, lat: result.latitude }}>
<Popup openOn="click" offset={[0, -10]}>
<div class="p-3 max-w-xs">
<h4 class="text-base font-bold text-black mb-2">{result.name}</h4>
{#if result.rating}
<div class="flex items-center gap-2 mb-2">
<div class="flex text-yellow-500">
{#each renderStars(result.rating) as star}
{#if star.type === 'full'}
<Star class="w-4 h-4" />
{:else if star.type === 'half'}
<StarHalfFull class="w-4 h-4" />
{:else}
<StarOutline class="w-4 h-4" />
{/if}
{/each}
</div>
<span class="text-sm text-black">{result.rating.toFixed(1)}</span>
{#if result.review_count}
<span class="text-xs text-black opacity-70">
({result.review_count})
</span>
{/if}
</div>
{/if}
{#if result.address}
<p class="text-xs text-black opacity-70 mb-2">📍 {result.address}</p>
{/if}
<p class="text-xs text-black font-semibold">
🚶 {formatDistance(result.distance_km)}
{$t('recomendations.away')}
</p>
</div>
</Popup>
</DefaultMarker>
{/each}
</MapLibre>
</div>
</div>
</div>
<!-- Results Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
{#each filteredResults as result}
<div class="card bg-base-100 shadow-xl hover:shadow-2xl transition-shadow">
<!-- Photo Carousel -->
{#if result.photos && result.photos.length > 0}
<figure class="relative h-48 cursor-pointer">
<button
class="w-full h-full"
on:click={() =>
openPhotoModal(result.photos || [], result.name, result.address || '')}
>
<img src={result.photos[0]} alt={result.name} class="w-full h-full object-cover" />
</button>
{#if result.photos.length > 1}
<div
class="badge badge-neutral badge-sm absolute bottom-2 right-2 bg-black/70 text-white border-none"
>
📷 {result.photos.length}
</div>
{/if}
</figure>
{:else}
<div
class="bg-gradient-to-br from-primary/20 to-secondary/20 h-48 flex items-center justify-center"
>
<MapMarker class="w-16 h-16 opacity-30" />
</div>
{/if}
<div class="card-body p-4">
<!-- Title & Type -->
<h3 class="card-title text-lg">
{result.name}
{#if result.is_open_now}
<span class="badge badge-success badge-sm">{$t('recomendations.open')}</span>
{/if}
</h3>
<!-- Rating -->
{#if result.rating}
<div class="flex items-center gap-2 mb-2">
<div class="flex text-yellow-500">
{#each renderStars(result.rating) as star}
{#if star.type === 'full'}
<Star class="w-4 h-4" />
{:else if star.type === 'half'}
<StarHalfFull class="w-4 h-4" />
{:else}
<StarOutline class="w-4 h-4" />
{/if}
{/each}
</div>
<span class="text-sm font-semibold">{result.rating.toFixed(1)}</span>
{#if result.review_count}
<span class="text-xs opacity-70">
<AccountMultiple class="w-3 h-3 inline" />
{result.review_count}
</span>
{/if}
{#if result.quality_score}
<div class="badge badge-primary badge-sm ml-auto">
Score: {result.quality_score}
</div>
{/if}
</div>
{/if}
<!-- Address -->
{#if result.address}
<p class="text-sm opacity-70 line-clamp-2">
<MapMarker class="w-4 h-4 inline" />
{result.address}
</p>
{/if}
<!-- Distance & Price -->
<div class="flex gap-2 flex-wrap mt-2">
<div class="badge badge-outline badge-sm">
🚶 {formatDistance(result.distance_km)}
</div>
{#if result.price_level}
<div class="badge badge-outline badge-sm">
<CurrencyUsd class="w-3 h-3" />
{getPriceLevelDisplay(result.price_level)}
</div>
{/if}
<div class="badge badge-ghost badge-sm">
{result.source === 'google' ? '🔍 Google' : '🗺️ OSM'}
</div>
</div>
<!-- Description -->
{#if result.description}
<p class="text-sm mt-2 line-clamp-2 opacity-80">
{result.description}
</p>
{/if}
<!-- Opening Hours -->
{#if result.opening_hours && result.opening_hours.length > 0}
<div class="collapse collapse-arrow bg-base-200 mt-2">
<input type="checkbox" />
<div class="collapse-title text-sm font-medium">
<ClockOutline class="w-4 h-4 inline" />
{$t('recomendations.hours')}
</div>
<div class="collapse-content text-xs">
{#each result.opening_hours as hours}
<p>{hours}</p>
{/each}
</div>
</div>
{/if}
<!-- Action Buttons -->
<div class="card-actions justify-end mt-4">
{#if result.phone_number}
<a href={`tel:${result.phone_number}`} class="btn btn-sm btn-neutral-100">
<Phone class="w-4 h-4" />
</a>
{/if}
{#if result.website}
<a
href={result.website}
target="_blank"
rel="noopener noreferrer"
class="btn btn-sm btn-neutral-100"
>
<Web class="w-4 h-4" />
</a>
{/if}
{#if result.google_maps_uri}
<a
href={result.google_maps_uri}
target="_blank"
rel="noopener noreferrer"
class="btn btn-sm btn-primary"
>
View on Maps
<OpenInNew class="w-4 h-4" />
</a>
{/if}
<!-- Create from recommendation -->
<button
class="btn btn-sm btn-outline"
on:click={() => openCreateLocationFromResult(result)}
>
{$t('recomendations.add_location')}
</button>
<button
class="btn btn-sm btn-ghost"
on:click={() => openCreateLodgingFromResult(result)}
>
{$t('recomendations.add_lodging')}
</button>
</div>
</div>
</div>
{/each}
</div>
{:else if !loading && results.length === 0 && !error}
<div class="card bg-base-200 shadow-xl">
<div class="card-body text-center py-12">
<MagnifyIcon class="w-24 h-24 mx-auto opacity-30 mb-4" />
<h3 class="text-2xl font-bold mb-2">{$t('recomendations.no_results_yet')}</h3>
<p class="opacity-70">{$t('recomendations.select_location_or_query')}</p>
</div>
</div>
{/if}
</div>

View File

@@ -526,46 +526,6 @@ export type Pin = {
category: Category | null;
};
export type Recommendation = {
id: string;
external_id: string;
source: 'google' | 'osm';
name: string;
description: string | null;
latitude: number;
longitude: number;
address: string | null;
distance_km: number;
rating: number | null;
review_count: number | null;
price_level: string | null;
types: string[];
primary_type: string | null;
business_status: string | null;
is_open_now: boolean | null;
opening_hours: string[] | null;
phone_number: string | null;
website: string | null;
google_maps_url: string | null;
photos: string[];
is_verified: boolean;
quality_score: number;
// OSM-specific fields
osm_type?: string;
wikipedia?: string;
stars?: string;
};
export type RecommendationResponse = {
count: number;
results: Recommendation[];
sources_used: {
google: number;
osm: number;
total_before_dedup: number;
};
};
export type ChatProviderCatalogEntry = {
id: string;
label: string;

View File

@@ -753,7 +753,6 @@
},
"recomendations": {
"food": "طعام",
"recommendations": "التوصيات",
"tourism": "السياحة",
"any": "أي",
"average_rating": "متوسط ​​التقييم",

View File

@@ -988,7 +988,6 @@
"try_different_date": "Versuchen Sie ein anderes Datum"
},
"recomendations": {
"recommendations": "Empfehlungen",
"food": "Essen",
"tourism": "Tourismus",
"any": "Beliebig",

View File

@@ -1085,7 +1085,6 @@
"google_maps_integration_desc_no_staff": "This integration must first be enabled by the admin on this server."
},
"recomendations": {
"recommendations": "Recommendations",
"food": "Food",
"tourism": "Tourism",
"discover_places": "Discover Places",

View File

@@ -956,7 +956,6 @@
"try_different_date": "Prueba una fecha diferente"
},
"recomendations": {
"recommendations": "Recomendaciones",
"food": "Comida",
"tourism": "Turismo",
"any": "Cualquier",

View File

@@ -956,7 +956,6 @@
"try_different_date": "Essayez une date différente"
},
"recomendations": {
"recommendations": "Recommandations",
"food": "Nourriture",
"tourism": "Tourisme",
"any": "N'importe lequel",

View File

@@ -983,7 +983,6 @@
"google_maps_integration_desc_no_staff": "Ezt az integrációt először a szerver adminisztrátorának kell engedélyeznie."
},
"recomendations": {
"recommendations": "Ajánlások",
"food": "Étel",
"tourism": "Turizmus",
"any": "Bármilyen",

View File

@@ -956,7 +956,6 @@
"try_different_date": "Prova una data diversa"
},
"recomendations": {
"recommendations": "Raccomandazioni",
"food": "Cibo",
"tourism": "Turismo",
"any": "Qualunque",

View File

@@ -753,7 +753,6 @@
},
"recomendations": {
"food": "食べ物",
"recommendations": "推奨事項",
"tourism": "観光",
"any": "どれでも",
"average_rating": "平均評価",

View File

@@ -692,7 +692,6 @@
"public_location_experiences": "공개 위치 경험"
},
"recomendations": {
"recommendations": "권장 사항",
"food": "음식",
"tourism": "관광 여행",
"any": "어느",

View File

@@ -956,7 +956,6 @@
"try_different_date": "Probeer een andere datum"
},
"recomendations": {
"recommendations": "Aanbevelingen",
"food": "Voedsel",
"tourism": "Toerisme",
"any": "Elk",

View File

@@ -979,7 +979,6 @@
"try_different_date": "Prøv en annen dato"
},
"recomendations": {
"recommendations": "Anbefalinger",
"food": "Mat",
"tourism": "Turisme",
"any": "Noen",

View File

@@ -956,7 +956,6 @@
"try_different_date": "Wypróbuj inną datę"
},
"recomendations": {
"recommendations": "Zalecenia",
"food": "Żywność",
"tourism": "Turystyka",
"any": "Każdy",

View File

@@ -753,7 +753,6 @@
},
"recomendations": {
"food": "Comida",
"recommendations": "Recomendações",
"tourism": "Turismo",
"any": "Qualquer",
"average_rating": "Avaliação média",

View File

@@ -845,7 +845,6 @@
"no_results_yet": "Încă nu există rezultate",
"open": "Deschide",
"open_now_only": "Deschide numai acum",
"recommendations": "Recomandări",
"search_around_location": "Căutați în jurul locației",
"search_by_address": "Căutați după adresă",
"search_radius_label": "Raza de căutare:",

View File

@@ -983,7 +983,6 @@
"google_maps_integration_desc_no_staff": "Эта интеграция должна сначала быть включена администратором на этом сервере."
},
"recomendations": {
"recommendations": "Рекомендации",
"food": "Еда",
"tourism": "Туризм",
"any": "Любой",

View File

@@ -983,7 +983,6 @@
"google_maps_integration_desc_no_staff": "Túto integráciu musí najprv povoliť administrátor na tomto serveri."
},
"recomendations": {
"recommendations": "Odporúčania",
"food": "Jedlo",
"tourism": "Turizmus",
"any": "Akékoľvek",

View File

@@ -956,7 +956,6 @@
"try_different_date": "Prova ett annat datum"
},
"recomendations": {
"recommendations": "Rekommendationer",
"food": "Mat",
"tourism": "Turism",
"any": "Några",

View File

@@ -986,7 +986,6 @@
"google_maps_integration_desc_no_staff": "Bu entegrasyon öncelikle bu sunucudaki yönetici tarafından etkinleştirilmelidir."
},
"recomendations": {
"recommendations": "Önerilenler",
"food": "Yemek",
"tourism": "Turizm",
"any": "Herhangi",

View File

@@ -753,7 +753,6 @@
},
"recomendations": {
"food": "харчування",
"recommendations": "Рекомендації",
"tourism": "Туризм",
"any": "Будь-який",
"average_rating": "Середній рейтинг",

View File

@@ -956,7 +956,6 @@
"try_different_date": "尝试其他日期"
},
"recomendations": {
"recommendations": "建议",
"food": "食物",
"tourism": "旅游",
"average_rating": "平均评分",

View File

@@ -1,12 +1,5 @@
<script lang="ts">
import type {
Collection,
ContentImage,
Location,
Collaborator,
Lodging,
CollectionItineraryItem
} from '$lib/types';
import type { Collection, ContentImage, Location, Collaborator, Lodging } from '$lib/types';
import { onMount } from 'svelte';
import type { PageData } from './$types';
import { goto } from '$app/navigation';
@@ -25,8 +18,6 @@
import ImageDisplayModal from '$lib/components/ImageDisplayModal.svelte';
import CollectionAllItems from '$lib/components/collections/CollectionAllItems.svelte';
import CollectionItineraryPlanner from '$lib/components/collections/CollectionItineraryPlanner.svelte';
import CollectionRecommendationView from '$lib/components/CollectionRecommendationView.svelte';
import AITravelChat from '$lib/components/AITravelChat.svelte';
import CollectionMap from '$lib/components/collections/CollectionMap.svelte';
import CollectionStats from '$lib/components/collections/CollectionStats.svelte';
import LocationLink from '$lib/components/LocationLink.svelte';
@@ -36,7 +27,6 @@
import FormatListBulleted from '~icons/mdi/format-list-bulleted';
import Timeline from '~icons/mdi/timeline';
import MapIcon from '~icons/mdi/map';
import Lightbulb from '~icons/mdi/lightbulb';
import ChartBar from '~icons/mdi/chart-bar';
import Plus from '~icons/mdi/plus';
import { addToast } from '$lib/toasts';
@@ -97,115 +87,8 @@
collection = { ...collection }; // trigger reactivity so cost summary & UI refresh immediately
}
type AssistantItemAddedDetail = {
location: Location;
itineraryItem: CollectionItineraryItem;
date: string;
};
function handleAssistantItemAdded(event: CustomEvent<AssistantItemAddedDetail>) {
const { location, itineraryItem } = event.detail;
upsertCollectionItem('locations', location);
if (!itineraryItem || itineraryItem.id === undefined || itineraryItem.id === null) {
return;
}
const items = collection.itinerary || [];
const exists = items.some((entry) => String(entry.id) === String(itineraryItem.id));
collection = {
...collection,
itinerary: exists
? items.map((entry) =>
String(entry.id) === String(itineraryItem.id) ? itineraryItem : entry
)
: [...items, itineraryItem]
};
}
// Helper to upload prefilled images (temp ids starting with 'rec-') sequentially
async function importPrefilledImagesForItem(
item: any,
contentType: string,
collectionKey: 'locations' | 'lodging'
) {
if (!item || !item.images || item.images.length === 0) return;
const prefilled = item.images.filter((img: any) => img.id && String(img.id).startsWith('rec-'));
if (prefilled.length === 0) return;
// If we don't have a server id yet, retry a few times because the modal flow may set it asynchronously.
let attempts = 0;
const maxAttempts = 6;
const attemptDelayMs = 2000;
while ((!item.id || String(item.id).trim() === '') && attempts < maxAttempts) {
attempts += 1;
console.debug(`Waiting for server id for item (attempt ${attempts}/${maxAttempts})`);
// Try to find an updated item in the collection by matching name and collection membership
const candidates = (collection as any)[collectionKey] || [];
const match = candidates.find(
(c: any) =>
c.name === item.name &&
(c.collections || c.collection) &&
String(c.collections || c.collection || '') === String(collection.id)
);
if (match && match.id) {
item.id = match.id;
break;
}
await new Promise((r) => setTimeout(r, attemptDelayMs));
}
if (!item.id || String(item.id).trim() === '') {
console.warn('Unable to obtain server id for item; skipping image import for', item);
return;
}
for (const img of prefilled) {
try {
const res = await fetch(img.image);
if (!res.ok) throw new Error('Failed to fetch image');
const blob = await res.blob();
const file = new File([blob], 'image.jpg', { type: blob.type || 'image/jpeg' });
const form = new FormData();
form.append('image', file);
form.append('object_id', item.id);
form.append('content_type', contentType || 'location');
const upload = await fetch('/locations?/image', {
method: 'POST',
body: form,
credentials: 'same-origin'
});
if (!upload.ok) throw new Error('Upload failed');
const newData = await upload.json();
const newImage = newData && newData.data ? newData.data : newData;
// Replace temporary image in the item and in the collection
item.images = item.images.map((i: any) =>
String(i.id) === String(img.id)
? {
id: newImage.id,
image: newImage.image,
is_primary: newImage.is_primary || false,
immich_id: newImage.immich_id || null
}
: i
);
// Upsert the updated item back into the collection to refresh UI bindings
upsertCollectionItem(collectionKey, item);
addToast('success', $t('adventures.image_upload_success'));
} catch (err) {
console.error('Error importing prefilled image for item:', err);
addToast('error', $t('adventures.image_upload_error'));
}
}
}
// View state from URL params
type ViewType = 'all' | 'itinerary' | 'map' | 'calendar' | 'recommendations' | 'stats';
type ViewType = 'all' | 'itinerary' | 'map' | 'calendar' | 'stats';
let currentView: ViewType = 'itinerary';
// Determine if this is a folder view (no dates) or itinerary view (has dates)
@@ -240,7 +123,6 @@
) ||
false,
calendar: !isFolderView,
recommendations: true, // may be overridden by permission check below
stats: true
};
@@ -253,7 +135,7 @@
const view = $page.url.searchParams.get('view') as ViewType;
if (
view &&
['all', 'itinerary', 'map', 'calendar', 'recommendations', 'stats'].includes(view) &&
['all', 'itinerary', 'map', 'calendar', 'stats'].includes(view) &&
availableViews[view]
) {
currentView = view;
@@ -287,55 +169,6 @@
return false;
})();
// Enforce recommendations visibility only for owner/shared users
$: availableViews.recommendations = !!canModifyCollection;
function deriveCollectionDestination(current: Collection | null): string | undefined {
if (!current?.locations?.length) {
return undefined;
}
const maxStops = 4;
const stops: string[] = [];
const seen = new Set<string>();
for (const loc of current.locations) {
const cityName = loc.city?.name?.trim();
const countryName = loc.country?.name?.trim();
if (cityName || countryName) {
const label =
cityName && countryName ? `${cityName}, ${countryName}` : cityName || countryName;
if (!label) continue;
const key = `geo:${(cityName || '').toLowerCase()}|${(countryName || '').toLowerCase()}`;
if (seen.has(key)) continue;
seen.add(key);
stops.push(label);
continue;
}
const fallbackName = (loc.location || loc.name || '').trim();
if (!fallbackName) continue;
const key = `name:${fallbackName.toLowerCase()}`;
if (seen.has(key)) continue;
seen.add(key);
stops.push(fallbackName);
}
if (stops.length === 0) {
return undefined;
}
const summarizedStops = stops.slice(0, maxStops).join('; ');
if (stops.length > maxStops) {
return `${summarizedStops}; +${stops.length - maxStops} more`;
}
return summarizedStops;
}
$: collectionDestination = deriveCollectionDestination(collection);
// Build calendar events from collection visits
type TimezoneMode = 'event' | 'local';
@@ -763,6 +596,14 @@
isImageModalOpen = true;
}
function createImageKeydownHandler(index: number) {
return (event: KeyboardEvent) => {
if (event.key === 'Enter') {
openImageModal(index);
}
};
}
function formatDate(dateString: string | null) {
if (!dateString) return '';
return DateTime.fromISO(dateString).toLocaleString(DateTime.DATE_MED, { locale: 'en-GB' });
@@ -1209,16 +1050,6 @@
<span class="hidden sm:inline">{$t('navbar.calendar')}</span>
</button>
{/if}
{#if availableViews.recommendations}
<button
class="btn join-item"
class:btn-active={currentView === 'recommendations'}
on:click={() => switchView('recommendations')}
>
<Lightbulb class="w-5 h-5 sm:mr-2" aria-hidden="true" />
<span class="hidden sm:inline">{$t('recomendations.recommendations')}</span>
</button>
{/if}
{#if availableViews.stats}
<button
class="btn join-item"
@@ -1337,22 +1168,6 @@
</div>
{/if}
{/if}
<!-- Recommendations View -->
{#if currentView === 'recommendations'}
<div class="space-y-8">
<AITravelChat
embedded={true}
collectionId={collection.id}
collectionName={collection.name}
startDate={collection.start_date || undefined}
endDate={collection.end_date || undefined}
destination={collectionDestination}
on:itemAdded={handleAssistantItemAdded}
/>
<CollectionRecommendationView bind:collection user={data.user} />
</div>
{/if}
</div>
<!-- Right Column - Sidebar -->
@@ -1591,7 +1406,7 @@
class="aspect-square bg-cover bg-center rounded-lg cursor-pointer transition-transform duration-200 group-hover:scale-105"
style="background-image: url({image.image})"
on:click={() => openImageModal(index)}
on:keydown={(e) => e.key === 'Enter' && openImageModal(index)}
on:keydown={createImageKeydownHandler(index)}
role="button"
tabindex="0"
></div>