Spaces:
Sleeping
Sleeping
File size: 13,599 Bytes
456b2e2 c54345d 456b2e2 9ee662c 456b2e2 1c7add8 456b2e2 c54345d 456b2e2 c54345d 456b2e2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 |
"""
Map and Location API endpoints.
Provides visualization endpoints for location data and journey tracking.
All endpoints are READ-ONLY - they query existing location data.
"""
from typing import List, Optional
from uuid import UUID
from fastapi import APIRouter, Depends, HTTPException, Query, status
from sqlalchemy.orm import Session
from sqlalchemy import select
from app.api.deps import get_db, get_current_user
from app.models.user import User
from app.models.ticket_assignment import TicketAssignment
from app.models.project_team import ProjectTeam
from app.services.location_service import LocationService
from app.services.journey_service import JourneyService
from app.schemas.map import (
MapEntitiesResponse,
RegionLocationResponse,
JourneyDetails,
NearestRegionResponse,
Coordinates
)
router = APIRouter()
@router.get(
"/entities",
response_model=MapEntitiesResponse,
summary="Get aggregated map view",
description="Get all entity locations for map visualization. Supports filtering by entity types and status."
)
async def get_map_entities(
project_id: UUID = Query(..., description="Project ID"),
entity_types: Optional[List[str]] = Query(
None,
description="Entity types to include: customers, sales_orders, subscriptions, tickets, tasks, regions, agents"
),
status: Optional[str] = Query(None, description="Status filter for entities"),
db: Session = Depends(get_db),
current_user: User = Depends(get_current_user)
):
"""
Get aggregated map view with multiple entity types.
Returns locations for:
- Customers (home addresses)
- Sales Orders (pending installation sites)
- Subscriptions (active service locations - derived from technician arrival point)
- Tickets (work locations)
- Tasks (infrastructure work)
- Regions (regional hubs)
- Agents (currently on journeys - privacy-compliant)
**Authorization**: Must be a member of the project team.
"""
# Verify user has access to project
team_membership = db.query(ProjectTeam).filter(
ProjectTeam.project_id == project_id,
ProjectTeam.user_id == current_user.id,
ProjectTeam.deleted_at.is_(None)
).first()
if not team_membership and current_user.role != "super_admin":
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN,
detail="You do not have access to this project"
)
location_service = LocationService(db)
return location_service.get_entities_map_view(
project_id=project_id,
entity_types=entity_types,
status_filter=status
)
@router.get(
"/regions/{project_id}",
response_model=List[RegionLocationResponse],
summary="Get regional hub locations",
description="Get all regional hub locations for a project with coverage information."
)
async def get_region_locations(
project_id: UUID,
include_inactive: bool = Query(False, description="Include inactive regions"),
db: Session = Depends(get_db),
current_user: User = Depends(get_current_user)
):
"""
Get regional hub locations with coverage statistics.
Returns:
- Region coordinates
- Coverage radius
- Active tickets count
- Active agents count
**Authorization**: Must be a member of the project team.
"""
# Verify user has access to project
team_membership = db.query(ProjectTeam).filter(
ProjectTeam.project_id == project_id,
ProjectTeam.user_id == current_user.id,
ProjectTeam.deleted_at.is_(None)
).first()
if not team_membership and current_user.role != "super_admin":
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN,
detail="You do not have access to this project"
)
location_service = LocationService(db)
return location_service.get_region_locations(
project_id=project_id,
include_inactive=include_inactive
)
@router.get(
"/journeys/{assignment_id}",
response_model=JourneyDetails,
summary="Get journey details with breadcrumbs",
description="Get complete journey information including GPS breadcrumb trail and analytics."
)
async def get_journey_details(
assignment_id: UUID,
db: Session = Depends(get_db),
current_user: User = Depends(get_current_user)
):
"""
Get journey details with breadcrumb trail and analytics.
Returns:
- Timeline (start, arrival, completion times)
- GPS breadcrumb trail
- Journey statistics (distance, speed, etc.)
- Location information
**Authorization**:
- Agents can only view their own journeys
- Managers can view all journeys in their projects
- Super admins can view all journeys
**Privacy**: Journey tracking only occurs during active assignments
(from "Start Journey" to "Arrived"). No surveillance outside work hours.
"""
journey_service = JourneyService(db)
# Get assignment to check authorization
assignment = db.query(TicketAssignment).filter(
TicketAssignment.id == assignment_id,
TicketAssignment.deleted_at.is_(None)
).first()
if not assignment:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="Assignment not found"
)
# Authorization check
can_view = False
# Super admins can view all
if current_user.role == "super_admin":
can_view = True
# Agents can view their own journeys
elif assignment.user_id == current_user.id:
can_view = True
# Managers can view journeys in their projects
else:
ticket = assignment.ticket
if ticket:
team_membership = db.query(ProjectTeam).filter(
ProjectTeam.project_id == ticket.project_id,
ProjectTeam.user_id == current_user.id,
ProjectTeam.role.in_(["manager", "project_manager"]),
ProjectTeam.deleted_at.is_(None)
).first()
if team_membership:
can_view = True
if not can_view:
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN,
detail="You do not have permission to view this journey"
)
journey = journey_service.get_journey_details(assignment_id)
if not journey:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="Journey details not found"
)
return journey
@router.get(
"/journeys/agent/{user_id}",
response_model=List[JourneyDetails],
summary="Get agent journey history",
description="Get journey history for a specific agent with optional date filtering."
)
async def get_agent_journey_history(
user_id: UUID,
start_date: Optional[str] = Query(None, description="Start date filter (ISO format)"),
end_date: Optional[str] = Query(None, description="End date filter (ISO format)"),
limit: int = Query(50, ge=1, le=100, description="Maximum number of journeys"),
db: Session = Depends(get_db),
current_user: User = Depends(get_current_user)
):
"""
Get journey history for an agent.
**Authorization**:
- Agents can only view their own history
- Managers can view history of agents in their projects
- Super admins can view all history
"""
from datetime import datetime
# Authorization check
can_view = False
if current_user.role == "super_admin":
can_view = True
elif current_user.id == user_id:
can_view = True
else:
# Check if current user is a manager in any project where target user is a team member
target_projects = select(ProjectTeam.project_id).filter(
ProjectTeam.user_id == user_id,
ProjectTeam.deleted_at.is_(None)
).scalar_subquery()
manager_membership = db.query(ProjectTeam).filter(
ProjectTeam.user_id == current_user.id,
ProjectTeam.project_id.in_(target_projects),
ProjectTeam.role.in_(["manager", "project_manager"]),
ProjectTeam.deleted_at.is_(None)
).first()
if manager_membership:
can_view = True
if not can_view:
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN,
detail="You do not have permission to view this agent's journey history"
)
# Parse dates
start_dt = None
end_dt = None
if start_date:
try:
start_dt = datetime.fromisoformat(start_date.replace("Z", "+00:00"))
except ValueError:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail="Invalid start_date format. Use ISO format (YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS)"
)
if end_date:
try:
end_dt = datetime.fromisoformat(end_date.replace("Z", "+00:00"))
except ValueError:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail="Invalid end_date format. Use ISO format (YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS)"
)
journey_service = JourneyService(db)
return journey_service.get_agent_journey_history(
user_id=user_id,
start_date=start_dt,
end_date=end_dt,
limit=limit
)
@router.get(
"/nearest-region",
response_model=NearestRegionResponse,
summary="Find nearest regional hub",
description="Find the nearest regional hub to a given location."
)
async def find_nearest_region(
project_id: UUID = Query(..., description="Project ID"),
latitude: float = Query(..., ge=-90, le=90, description="Latitude"),
longitude: float = Query(..., ge=-180, le=180, description="Longitude"),
max_distance_km: Optional[float] = Query(None, gt=0, description="Maximum search distance in km"),
db: Session = Depends(get_db),
current_user: User = Depends(get_current_user)
):
"""
Find the nearest regional hub to a location.
Used for:
- Auto-assigning regions to new customers
- Auto-assigning regions to sales orders
- Finding closest support hub
**Authorization**: Must be a member of the project team.
"""
# Verify user has access to project
team_membership = db.query(ProjectTeam).filter(
ProjectTeam.project_id == project_id,
ProjectTeam.user_id == current_user.id,
ProjectTeam.deleted_at.is_(None)
).first()
if not team_membership and current_user.role != "super_admin":
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN,
detail="You do not have access to this project"
)
location_service = LocationService(db)
result = location_service.find_nearest_region(
project_id=project_id,
latitude=latitude,
longitude=longitude,
max_distance_km=max_distance_km
)
if not result:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="No region found within specified distance"
)
region_id, distance_km = result
# Get region details
regions = location_service.get_region_locations(project_id)
region = next((r for r in regions if r.region_id == region_id), None)
if not region:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="Region not found"
)
return NearestRegionResponse(
region_id=region.region_id,
region_name=region.region_name,
distance_km=round(distance_km, 2),
coordinates=region.coordinates
)
@router.get(
"/entities-near",
response_model=MapEntitiesResponse,
summary="Find entities near location",
description="Find all entities within a radius of a given location."
)
async def find_entities_near_location(
project_id: UUID = Query(..., description="Project ID"),
latitude: float = Query(..., ge=-90, le=90, description="Center latitude"),
longitude: float = Query(..., ge=-180, le=180, description="Center longitude"),
radius_km: float = Query(..., gt=0, le=100, description="Search radius in km (max 100)"),
entity_types: Optional[List[str]] = Query(
None,
description="Entity types to include"
),
db: Session = Depends(get_db),
current_user: User = Depends(get_current_user)
):
"""
Find all entities within a radius of a location.
Useful for:
- Finding nearby customers
- Finding nearby tickets
- Service coverage analysis
**Authorization**: Must be a member of the project team.
"""
# Verify user has access to project
team_membership = db.query(ProjectTeam).filter(
ProjectTeam.project_id == project_id,
ProjectTeam.user_id == current_user.id,
ProjectTeam.deleted_at.is_(None)
).first()
if not team_membership and current_user.role != "super_admin":
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN,
detail="You do not have access to this project"
)
location_service = LocationService(db)
return location_service.find_entities_near_location(
project_id=project_id,
latitude=latitude,
longitude=longitude,
radius_km=radius_km,
entity_types=entity_types
)
|