-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathdependencies.py
More file actions
591 lines (492 loc) · 20.1 KB
/
Copy pathdependencies.py
File metadata and controls
591 lines (492 loc) · 20.1 KB
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
import logging
from typing import List, Optional
from fastapi import Depends, HTTPException, Request, Security
from fastapi.security import APIKeyHeader, HTTPAuthorizationCredentials, HTTPBearer
from firebase_admin import auth
import database.mcp_api_key as mcp_api_key_db
import database.dev_api_key as dev_api_key_db
from utils.api_key_families import DEV_FAMILY, MCP_FAMILY, wrong_key_family_detail
from utils.executors import critical_executor, db_executor, run_blocking
from utils.log_sanitizer import sanitize
from utils.observability.api_keys import record_api_key_repairs
from utils.memory.product_authorization import ProductAuthorizationContext
from utils.mcp_memories import (
McpVerifiedAuth,
build_mcp_default_memory_read_context,
build_mcp_default_memory_write_context,
)
from utils.other import endpoints as auth_endpoints
from utils.scopes import Scopes, has_scope
logger = logging.getLogger(__name__)
bearer_scheme = HTTPBearer()
check_api_key_rate_limit = auth_endpoints.check_api_key_rate_limit
def enforce_account_deletion_http_access(uid: str) -> None:
"""Keep transport enforcement behind a call-time module boundary."""
auth_endpoints.enforce_account_deletion_http_access(uid)
async def _enforce_account_deletion_access(uid: str) -> None:
await run_blocking(db_executor, enforce_account_deletion_http_access, uid)
def _enforce_cutover_http_if_request(uid: str, request: Request | None) -> None:
"""Apply cutover fencing when FastAPI injected a Request (MCP/API-key lanes)."""
if request is None or not auth_endpoints.cutover_enforcement_enabled():
return
auth_endpoints.enforce_account_cutover_http_access(
uid,
method=request.method,
path=request.url.path,
headers=request.headers,
)
async def _enforce_cutover_access(uid: str, request: Request | None) -> None:
await run_blocking(db_executor, _enforce_cutover_http_if_request, uid, request)
async def get_current_user_id(
credentials: HTTPAuthorizationCredentials = Security(bearer_scheme),
request: Request = None, # pyright: ignore[reportArgumentType]
) -> str:
if not credentials:
raise HTTPException(status_code=401, detail="Not authenticated")
try:
id_token = credentials.credentials
decoded_token = await run_blocking(critical_executor, auth.verify_id_token, id_token)
except Exception as e:
logger.error(f"Error verifying Firebase ID token: {e}")
raise HTTPException(status_code=401, detail="Invalid authentication credentials")
uid = decoded_token["uid"]
await _enforce_account_deletion_access(uid)
await _enforce_cutover_access(uid, request)
return uid
api_key_header = APIKeyHeader(name="Authorization", auto_error=False)
async def get_uid_from_mcp_api_key(
api_key: str = Security(api_key_header),
request: Request = None, # pyright: ignore[reportArgumentType]
) -> str:
if not api_key or not api_key.startswith("Bearer "):
raise HTTPException(
status_code=401,
detail="Missing or invalid Authorization header. Must be 'Bearer API_KEY'",
)
token = api_key.replace("Bearer ", "")
mismatch = wrong_key_family_detail(token, MCP_FAMILY)
if mismatch:
raise HTTPException(status_code=401, detail=mismatch)
auth_result = await run_blocking(db_executor, mcp_api_key_db.get_api_key_auth_result, token)
record_api_key_repairs(key_kind="mcp", operation="auth", repairs=auth_result.repairs, log=logger)
user_data = auth_result.context
if not user_data:
raise HTTPException(status_code=401, detail="Invalid API Key")
user_id = user_data["user_id"]
await _enforce_account_deletion_access(user_id)
await _enforce_cutover_access(user_id, request)
await _check_api_key_rate_limit_async(
prefix="mcp",
uid=user_id,
app_id=user_data.get("app_id"),
key_id=user_data.get("key_id"),
policy_name="mcp:read",
)
return user_id
async def get_mcp_api_key_auth(
api_key: str = Security(api_key_header),
request: Request = None, # pyright: ignore[reportArgumentType]
) -> "ApiKeyAuth":
"""Extract uid plus persisted MCP app/key/scope context from an MCP API key.
Existing uid-only MCP auth remains available through get_uid_from_mcp_api_key.
Missing scopes/app_id/key_id are preserved as missing values so memory memory
authorization fails closed instead of inferring advertised MCP tool scopes.
"""
if not api_key or not api_key.startswith("Bearer "):
raise HTTPException(
status_code=401,
detail="Missing or invalid Authorization header. Must be 'Bearer API_KEY'",
)
token = api_key.replace("Bearer ", "")
mismatch = wrong_key_family_detail(token, MCP_FAMILY)
if mismatch:
raise HTTPException(status_code=401, detail=mismatch)
auth_result = await run_blocking(db_executor, mcp_api_key_db.get_api_key_auth_result, token)
record_api_key_repairs(key_kind="mcp", operation="auth", repairs=auth_result.repairs, log=logger)
user_data = auth_result.context
if not user_data:
raise HTTPException(status_code=401, detail="Invalid API Key")
await _enforce_account_deletion_access(user_data["user_id"])
await _enforce_cutover_access(user_data["user_id"], request)
return ApiKeyAuth(
uid=user_data["user_id"],
scopes=user_data.get("scopes"),
app_id=user_data.get("app_id"),
key_id=user_data.get("key_id"),
)
async def get_mcp_memory_default_memory_read_context(
auth: "ApiKeyAuth" = Depends(get_mcp_api_key_auth),
) -> ProductAuthorizationContext:
if not has_scope(auth.scopes, 'memories.read'):
raise HTTPException(status_code=403, detail="Insufficient permissions. Required scope: memories.read")
if not auth.app_id or not auth.key_id:
raise HTTPException(status_code=403, detail="Missing MCP API app/key identity for memory memory authorization")
await _check_api_key_rate_limit_async(
prefix="mcp",
uid=auth.uid,
app_id=auth.app_id,
key_id=auth.key_id,
policy_name="mcp:memories_read",
)
return build_mcp_default_memory_read_context(
McpVerifiedAuth(
uid=auth.uid,
app_id=auth.app_id,
key_id=auth.key_id,
scopes=tuple(auth.scopes or ()),
)
)
async def get_mcp_memory_default_memory_write_context(
auth: "ApiKeyAuth" = Depends(get_mcp_api_key_auth),
) -> ProductAuthorizationContext:
"""Authenticate an MCP key and build the memory write authorization context.
Requires a persisted ``memories.write`` scope so legacy/read-only MCP keys
cannot mutate canonical memories. Missing app/key identity fails closed; the
shared grant seam enforces the persisted ``write`` capability separately.
"""
if not has_scope(auth.scopes, 'memories.write'):
raise HTTPException(status_code=403, detail="Insufficient permissions. Required scope: memories.write")
if not auth.app_id or not auth.key_id:
raise HTTPException(status_code=403, detail="Missing MCP API app/key identity for memory memory authorization")
await _check_api_key_rate_limit_async(
prefix="mcp",
uid=auth.uid,
app_id=auth.app_id,
key_id=auth.key_id,
policy_name="mcp:memories_write",
)
return build_mcp_default_memory_write_context(
McpVerifiedAuth(
uid=auth.uid,
app_id=auth.app_id,
key_id=auth.key_id,
scopes=tuple(auth.scopes or ()),
)
)
# Data structure to return from auth
class ApiKeyAuth:
def __init__(
self,
uid: str,
scopes: Optional[List[str]],
app_id: Optional[str] = None,
key_id: Optional[str] = None,
):
self.uid = uid
self.scopes = scopes
self.app_id = app_id
self.key_id = key_id
async def get_api_key_auth(
api_key: str = Security(api_key_header),
request: Request = None, # pyright: ignore[reportArgumentType]
) -> ApiKeyAuth:
"""Extract user ID and scopes from API key"""
if not api_key or not api_key.startswith("Bearer "):
raise HTTPException(
status_code=401,
detail="Missing or invalid Authorization header. Must be 'Bearer API_KEY'",
)
token = api_key.replace("Bearer ", "")
mismatch = wrong_key_family_detail(token, DEV_FAMILY)
if mismatch:
raise HTTPException(status_code=401, detail=mismatch)
auth_result = await run_blocking(db_executor, dev_api_key_db.get_api_key_auth_result, token)
record_api_key_repairs(key_kind="dev", operation="auth", repairs=auth_result.repairs, log=logger)
user_data = auth_result.context
if not user_data:
raise HTTPException(status_code=401, detail="Invalid API Key")
await _enforce_account_deletion_access(user_data["user_id"])
await _enforce_cutover_access(user_data["user_id"], request)
return ApiKeyAuth(
uid=user_data["user_id"],
scopes=user_data.get("scopes"),
app_id=user_data.get("app_id"),
key_id=user_data.get("key_id"),
)
async def get_uid_from_dev_api_key(api_key: str = Security(api_key_header)) -> str:
"""Legacy function for backward compatibility. Use scope-specific dependencies instead."""
auth_data = await get_api_key_auth(api_key)
return auth_data.uid
# Scope-specific dependencies
def _log_dev_api_rate_limit_failure(
*,
request: Optional[Request],
auth: ApiKeyAuth,
policy_name: str,
status_code: int,
):
path = request.url.path if request else 'unknown_path'
remote_ip = request.client.host if request and request.client else None
user_agent = sanitize(request.headers.get('user-agent')) if request else None
logger.warning(
"developer_api_rate_limit_failure policy=%s status=%s path=%s uid=%s app_id=%s key_id=%s remote_ip=%s user_agent=%s",
policy_name,
status_code,
path,
auth.uid,
auth.app_id or 'unknown_app',
auth.key_id or 'unknown_key',
remote_ip,
user_agent,
)
def _check_dev_api_key_rate_limit(
*,
request: Optional[Request],
auth: ApiKeyAuth,
policy_name: str,
):
try:
check_api_key_rate_limit(
prefix="dev",
uid=auth.uid,
app_id=auth.app_id,
key_id=auth.key_id,
policy_name=policy_name,
)
except HTTPException as exc:
_log_dev_api_rate_limit_failure(
request=request,
auth=auth,
policy_name=policy_name,
status_code=exc.status_code,
)
raise
async def _check_api_key_rate_limit_async(
*,
prefix: str,
uid: str,
app_id: Optional[str],
key_id: Optional[str],
policy_name: str,
) -> None:
await run_blocking(
critical_executor,
check_api_key_rate_limit,
prefix=prefix,
uid=uid,
app_id=app_id,
key_id=key_id,
policy_name=policy_name,
)
async def _check_dev_api_key_rate_limit_async(
*,
request: Optional[Request],
auth: ApiKeyAuth,
policy_name: str,
) -> None:
await run_blocking(
critical_executor,
_check_dev_api_key_rate_limit,
request=request,
auth=auth,
policy_name=policy_name,
)
def _require_conversations_read_scope(auth: ApiKeyAuth):
if not has_scope(auth.scopes, Scopes.CONVERSATIONS_READ):
raise HTTPException(
status_code=403, detail=f"Insufficient permissions. Required scope: {Scopes.CONVERSATIONS_READ}"
)
async def get_auth_with_conversations_read(
auth: ApiKeyAuth = Depends(get_api_key_auth),
request: Request = None,
) -> ApiKeyAuth:
_require_conversations_read_scope(auth)
await _check_dev_api_key_rate_limit_async(request=request, auth=auth, policy_name="dev:conversations_read")
return auth
async def get_auth_with_conversation_detail_read(
auth: ApiKeyAuth = Depends(get_api_key_auth),
request: Request = None,
) -> ApiKeyAuth:
_require_conversations_read_scope(auth)
await _check_dev_api_key_rate_limit_async(request=request, auth=auth, policy_name="dev:conversation_detail_read")
return auth
async def get_uid_with_conversations_read(auth: ApiKeyAuth = Depends(get_api_key_auth)) -> str:
await get_auth_with_conversations_read(auth)
return auth.uid
def check_conversation_transcript_read_limit(
auth: ApiKeyAuth,
request: Optional[Request] = None,
):
_require_conversations_read_scope(auth)
_check_dev_api_key_rate_limit(request=request, auth=auth, policy_name="dev:conversation_transcript_read")
async def get_auth_with_conversations_write(auth: ApiKeyAuth = Depends(get_api_key_auth)) -> ApiKeyAuth:
if not has_scope(auth.scopes, Scopes.CONVERSATIONS_WRITE):
raise HTTPException(
status_code=403, detail=f"Insufficient permissions. Required scope: {Scopes.CONVERSATIONS_WRITE}"
)
await _check_api_key_rate_limit_async(
prefix="dev",
uid=auth.uid,
app_id=auth.app_id,
key_id=auth.key_id,
policy_name="dev:conversations",
)
return auth
async def get_uid_with_conversations_write(auth: ApiKeyAuth = Depends(get_api_key_auth)) -> str:
await get_auth_with_conversations_write(auth)
return auth.uid
async def get_auth_with_memories_read(auth: ApiKeyAuth = Depends(get_api_key_auth)) -> ApiKeyAuth:
if not has_scope(auth.scopes, Scopes.MEMORIES_READ):
raise HTTPException(status_code=403, detail=f"Insufficient permissions. Required scope: {Scopes.MEMORIES_READ}")
await _check_api_key_rate_limit_async(
prefix="dev",
uid=auth.uid,
app_id=auth.app_id,
key_id=auth.key_id,
policy_name="dev:memories_read",
)
return auth
async def get_uid_with_memories_read(auth: ApiKeyAuth = Depends(get_api_key_auth)) -> str:
await get_auth_with_memories_read(auth)
return auth.uid
async def get_auth_with_memories_write(auth: ApiKeyAuth = Depends(get_api_key_auth)) -> ApiKeyAuth:
if not has_scope(auth.scopes, Scopes.MEMORIES_WRITE):
raise HTTPException(
status_code=403, detail=f"Insufficient permissions. Required scope: {Scopes.MEMORIES_WRITE}"
)
await _check_api_key_rate_limit_async(
prefix="dev",
uid=auth.uid,
app_id=auth.app_id,
key_id=auth.key_id,
policy_name="dev:memories",
)
return auth
async def get_uid_with_memories_write(auth: ApiKeyAuth = Depends(get_api_key_auth)) -> str:
await get_auth_with_memories_write(auth)
return auth.uid
async def get_auth_with_action_items_read(auth: ApiKeyAuth = Depends(get_api_key_auth)) -> ApiKeyAuth:
if not has_scope(auth.scopes, Scopes.ACTION_ITEMS_READ):
raise HTTPException(
status_code=403, detail=f"Insufficient permissions. Required scope: {Scopes.ACTION_ITEMS_READ}"
)
await _check_api_key_rate_limit_async(
prefix="dev",
uid=auth.uid,
app_id=auth.app_id,
key_id=auth.key_id,
policy_name="dev:action_items_read",
)
return auth
async def get_uid_with_action_items_read(auth: ApiKeyAuth = Depends(get_api_key_auth)) -> str:
await get_auth_with_action_items_read(auth)
return auth.uid
async def get_auth_with_action_items_write(auth: ApiKeyAuth = Depends(get_api_key_auth)) -> ApiKeyAuth:
if not has_scope(auth.scopes, Scopes.ACTION_ITEMS_WRITE):
raise HTTPException(
status_code=403, detail=f"Insufficient permissions. Required scope: {Scopes.ACTION_ITEMS_WRITE}"
)
await _check_api_key_rate_limit_async(
prefix="dev",
uid=auth.uid,
app_id=auth.app_id,
key_id=auth.key_id,
policy_name="dev:action_items_write",
)
return auth
async def get_uid_with_action_items_write(auth: ApiKeyAuth = Depends(get_api_key_auth)) -> str:
await get_auth_with_action_items_write(auth)
return auth.uid
async def get_auth_with_goals_read(auth: ApiKeyAuth = Depends(get_api_key_auth)) -> ApiKeyAuth:
if not has_scope(auth.scopes, Scopes.GOALS_READ):
raise HTTPException(status_code=403, detail=f"Insufficient permissions. Required scope: {Scopes.GOALS_READ}")
await _check_api_key_rate_limit_async(
prefix="dev",
uid=auth.uid,
app_id=auth.app_id,
key_id=auth.key_id,
policy_name="dev:goals_read",
)
return auth
async def get_uid_with_goals_read(auth: ApiKeyAuth = Depends(get_api_key_auth)) -> str:
await get_auth_with_goals_read(auth)
return auth.uid
async def get_auth_with_goals_write(auth: ApiKeyAuth = Depends(get_api_key_auth)) -> ApiKeyAuth:
if not has_scope(auth.scopes, Scopes.GOALS_WRITE):
raise HTTPException(status_code=403, detail=f"Insufficient permissions. Required scope: {Scopes.GOALS_WRITE}")
await _check_api_key_rate_limit_async(
prefix="dev",
uid=auth.uid,
app_id=auth.app_id,
key_id=auth.key_id,
policy_name="dev:goals_write",
)
return auth
async def get_uid_with_goals_write(auth: ApiKeyAuth = Depends(get_api_key_auth)) -> str:
await get_auth_with_goals_write(auth)
return auth.uid
DEVELOPER_TO_MEMORY_SCOPES = {
Scopes.MEMORIES_READ: 'memories.read',
Scopes.MEMORIES_WRITE: 'memories.write',
}
def _memory_memory_scopes_from_developer_scopes(scopes: Optional[List[str]]) -> tuple[str, ...]:
return tuple(
memory_scope
for developer_scope, memory_scope in DEVELOPER_TO_MEMORY_SCOPES.items()
if has_scope(scopes, developer_scope)
)
async def get_developer_memory_default_memory_read_context(
auth: ApiKeyAuth = Depends(get_api_key_auth),
) -> ProductAuthorizationContext:
if not has_scope(auth.scopes, Scopes.MEMORIES_READ):
raise HTTPException(status_code=403, detail=f"Insufficient permissions. Required scope: {Scopes.MEMORIES_READ}")
if not auth.app_id or not auth.key_id:
raise HTTPException(
status_code=403, detail="Missing Developer API app/key identity for memory memory authorization"
)
await _check_api_key_rate_limit_async(
prefix="dev",
uid=auth.uid,
app_id=auth.app_id,
key_id=auth.key_id,
policy_name="dev:memories_read",
)
return ProductAuthorizationContext(
uid=auth.uid,
consumer='developer_api',
surface='developer_default_memory_read',
app_id=auth.app_id,
key_id=auth.key_id,
scopes=_memory_memory_scopes_from_developer_scopes(auth.scopes),
)
def get_developer_memory_default_memory_write_auth_context(
auth: ApiKeyAuth = Depends(get_api_key_auth),
) -> ProductAuthorizationContext:
if not has_scope(auth.scopes, Scopes.MEMORIES_WRITE):
raise HTTPException(
status_code=403, detail=f"Insufficient permissions. Required scope: {Scopes.MEMORIES_WRITE}"
)
if not auth.app_id or not auth.key_id:
raise HTTPException(
status_code=403, detail="Missing Developer API app/key identity for memory memory authorization"
)
return ProductAuthorizationContext(
uid=auth.uid,
consumer='developer_api',
surface='developer_default_memory_write',
app_id=auth.app_id,
key_id=auth.key_id,
scopes=_memory_memory_scopes_from_developer_scopes(auth.scopes),
)
async def get_developer_memory_default_memory_write_context(
auth_context: ProductAuthorizationContext = Depends(get_developer_memory_default_memory_write_auth_context),
) -> ProductAuthorizationContext:
await _check_api_key_rate_limit_async(
prefix="dev",
uid=auth_context.uid,
app_id=auth_context.app_id,
key_id=auth_context.key_id,
policy_name="dev:memories",
)
return auth_context
async def get_developer_memory_default_memory_batch_write_context(
auth_context: ProductAuthorizationContext = Depends(get_developer_memory_default_memory_write_auth_context),
) -> ProductAuthorizationContext:
await _check_api_key_rate_limit_async(
prefix="dev",
uid=auth_context.uid,
app_id=auth_context.app_id,
key_id=auth_context.key_id,
policy_name="dev:memories_batch",
)
return auth_context