Skip to content

Latest commit

 

History

History
75 lines (41 loc) · 4.01 KB

File metadata and controls

75 lines (41 loc) · 4.01 KB
graph LR
    PrismaClient_singleton["PrismaClient singleton"]
    Auth_Middleware_withAuth_["Auth Middleware (withAuth)"]
    API_Layer["API Layer"]
    Stardog_Service["Stardog Service"]
    QueryFactory["QueryFactory"]
    Unclassified["Unclassified"]
    Auth_Middleware_withAuth_ -- "wraps" --> API_Layer
    Auth_Middleware_withAuth_ -- "provides AuthContext & OBO tokens to" --> Stardog_Service
    API_Layer -- "calls" --> PrismaClient_singleton
    API_Layer -- "calls" --> Stardog_Service
    Stardog_Service -- "uses" --> QueryFactory
Loading

CodeBoardingDemoContact

Details

The Data‑Access & Orchestration Subsystem provides persistence, authentication, and graph‑store orchestration for the Flow Designer UI. A singleton PrismaClient supplies PostgreSQL CRUD for flows, parameters, execution results and users. All public HTTP endpoints reside in the Next.js API Layer, each wrapped by the Auth Middleware which extracts the Next‑Auth session and OBO tokens, injecting an AuthContext into handlers. Handlers validate requests, use helper utilities, and either perform relational data operations via PrismaClient or orchestrate RDF‑graph actions through the Stardog Service. The Stardog Service is a thin adapter that executes SPARQL queries generated by the QueryFactory. This separation of authentication, API orchestration, relational persistence, and RDF‑graph interaction yields a clear, testable architecture.

PrismaClient singleton

Singleton instance of PrismaClient providing CRUD access to PostgreSQL tables for flows, parameters, execution results, and users.

Related Classes/Methods:

Auth Middleware (withAuth)

Facade/context provider that wraps each API handler, extracts the Next‑Auth session, obtains OBO tokens, and injects an AuthContext for downstream services.

Related Classes/Methods:

API Layer

Collection of Next.js API route handlers (flows, parameters, execute‑result, generate‑context) that implement the business logic, validate requests, and coordinate persistence and graph‑store actions.

Related Classes/Methods:

Stardog Service

Adapter that opens a connection to the Stardog RDF store, executes SPARQL queries (SELECT, CONSTRUCT, INSERT, DROP, CLEAR) and handles JSON‑LD to N‑Quads conversion.

Related Classes/Methods:

QueryFactory

Utility builder that provides static methods returning ready‑to‑run SPARQL strings for various operations (drop graph, insert data, fetch classes, result graph, delete result graph).

Related Classes/Methods:

Unclassified

Component for all unclassified files and utility functions (Utility functions/External Libraries/Dependencies)

Related Classes/Methods: None