forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.py
More file actions
491 lines (407 loc) · 16.4 KB
/
Copy pathdependencies.py
File metadata and controls
491 lines (407 loc) · 16.4 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
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.scopes import Scopes, has_scope
from utils.log_sanitizer import sanitize
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.endpoints import check_api_key_rate_limit
import logging
logger = logging.getLogger(__name__)
bearer_scheme = HTTPBearer()
async def get_current_user_id(
credentials: HTTPAuthorizationCredentials = Security(bearer_scheme),
) -> str:
if not credentials:
raise HTTPException(status_code=401, detail="Not authenticated")
try:
id_token = credentials.credentials
decoded_token = auth.verify_id_token(id_token)
return decoded_token["uid"]
except Exception as e:
logger.error(f"Error verifying Firebase ID token: {e}")
raise HTTPException(status_code=401, detail="Invalid authentication credentials")
api_key_header = APIKeyHeader(name="Authorization", auto_error=False)
async def get_uid_from_mcp_api_key(api_key: str = Security(api_key_header)) -> 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 ", "")
user_data = mcp_api_key_db.get_user_and_scopes_by_api_key(token)
if not user_data:
raise HTTPException(status_code=401, detail="Invalid API Key")
user_id = user_data["user_id"]
check_api_key_rate_limit(
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)) -> "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 ", "")
user_data = mcp_api_key_db.get_user_and_scopes_by_api_key(token)
if not user_data:
raise HTTPException(status_code=401, detail="Invalid API Key")
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")
check_api_key_rate_limit(
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")
check_api_key_rate_limit(
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)) -> 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 ", "")
user_data = dev_api_key_db.get_user_and_scopes_by_api_key(token)
if not user_data:
raise HTTPException(status_code=401, detail="Invalid API Key")
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
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)
_check_dev_api_key_rate_limit(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)
_check_dev_api_key_rate_limit(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}"
)
check_api_key_rate_limit(
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}")
check_api_key_rate_limit(
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}"
)
check_api_key_rate_limit(
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}"
)
check_api_key_rate_limit(
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}"
)
check_api_key_rate_limit(
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}")
check_api_key_rate_limit(
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}")
check_api_key_rate_limit(
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"
)
check_api_key_rate_limit(
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),
)
async 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:
check_api_key_rate_limit(
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:
check_api_key_rate_limit(
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