mirror of
https://github.com/langgenius/dify.git
synced 2026-05-09 12:59:18 +08:00
Ports service_api/app/{completion,workflow}.py to bearer-authed
/openapi/v1/apps/<app_id>/{info,chat-messages,completion-messages,workflows/run}.
Architecture:
- New controllers/openapi/auth/ package: Pipeline + Step protocol over
one mutable Context. Endpoints attach via @APP_PIPELINE.guard(scope=...)
— single attachment point; forgetting auth is structurally impossible.
- Pipeline order: BearerCheck -> ScopeCheck -> AppResolver -> AppAuthzCheck
-> CallerMount.
- Strategies vary along independent axes: AclStrategy (EE webapp-auth inner
API) vs MembershipStrategy (CE TenantAccountJoin); AccountMounter vs
EndUserMounter dispatched by SubjectType.
- App is in URL path (not header). Each non-GET has typed Pydantic Request;
each non-SSE response has typed Pydantic Response. Bearer-as-identity:
body 'user' field stripped, ignored if present.
Adds InvokeFrom.OPENAPI enum variant. Emits app.run.openapi audit log
on successful invocation via standard logger extra={"audit": True, ...}
convention.
15 lines
487 B
Python
15 lines
487 B
Python
import pytest
|
|
|
|
from controllers.openapi.auth.pipeline import Pipeline
|
|
|
|
|
|
@pytest.fixture
|
|
def bypass_pipeline(monkeypatch):
|
|
"""Stub Pipeline.run so endpoint decoration does not invoke real auth.
|
|
|
|
Module-level @APP_PIPELINE.guard(...) captures the real APP_PIPELINE at
|
|
import time; mocking the module attribute does not undo that. Patching
|
|
Pipeline.run on the class is the bypass that actually works.
|
|
"""
|
|
monkeypatch.setattr(Pipeline, "run", lambda self, ctx: None)
|