feat: Implement multi-tenancy with organization ID in LMS tables and middleware, refactor web API calls, and update analytics and gamification features."

This commit is contained in:
2026-01-15 11:40:38 -03:00
parent 8bc034b82d
commit daeda7e905
12 changed files with 325 additions and 106 deletions
+18 -2
View File
@@ -34,7 +34,7 @@ pub async fn org_extractor_middleware(
// NOTA: El secreto debe venir de una variable de entorno en producción.
let secret = std::env::var("JWT_SECRET").unwrap_or_else(|_| "secret".to_string());
let claims = decode::<Claims>(
let mut claims = decode::<Claims>(
token,
&DecodingKey::from_secret(secret.as_ref()),
&Validation::default(),
@@ -42,8 +42,24 @@ pub async fn org_extractor_middleware(
.map_err(|_| StatusCode::UNAUTHORIZED)?
.claims;
// Check for organization override header (only for admins)
let org_id = if claims.role == "admin" {
req.headers()
.get("x-organization-id")
.and_then(|h| h.to_str().ok())
.and_then(|s| Uuid::parse_str(s).ok())
.unwrap_or(claims.org)
} else {
claims.org
};
// Update claims.org if overridden so downstream logic sees the new org
if org_id != claims.org {
claims.org = org_id;
}
// Insertamos el contexto y las claims en las extensiones de la petición.
req.extensions_mut().insert(OrgContext { id: claims.org });
req.extensions_mut().insert(OrgContext { id: org_id });
req.extensions_mut().insert(claims);
Ok(next.run(req).await)