Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds openapi annotation #92

Merged
merged 2 commits into from
Jul 19, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
org.clojure/core.async {:mvn/version "1.5.648"}
com.yetanalytics/xapi-schema {:mvn/version "1.3.0"
:exclusions [org.clojure/clojurescript]}
com.yetanalytics/gen-openapi {:mvn/version "0.0.4"}
cheshire/cheshire {:mvn/version "5.10.1"}
io.pedestal/pedestal.service
{:mvn/version "0.5.10"
Expand Down
233 changes: 233 additions & 0 deletions src/main/com/yetanalytics/lrs/pedestal/openapi.cljc
Original file line number Diff line number Diff line change
@@ -0,0 +1,233 @@
(ns com.yetanalytics.lrs.pedestal.openapi
(:require
[com.yetanalytics.gen-openapi.generate :as g]
[com.yetanalytics.gen-openapi.generate.schema :as gs]
[com.yetanalytics.gen-openapi.core :as gc]))

(def components
{:securitySchemes
{:bearerAuth {:type :http
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I could be wrong but is this essentially referencing SQL LRS, and should that be in LRS lib?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

its also not always true even in SQL LRS

:scheme :bearer
:bearerFormat :JWT}}
:responses
{:error-400 (g/response "Bad Request" :r#Error)
:error-401 (g/response "Unauthorized" :r#Error)}
:schemas
{:Account (gs/o {:homePage :r#IRL
:name :t#string})
:Activity {:type :object
:required [:id]
:properties {:objectType {:type :string :pattern "String"}
:id :r#IRI
:definition {:type :object
:properties {:name {}
:description {}
:type {}
:moreinfo {}
:extensions {}}}}}
:Agent ;maybe important
milt marked this conversation as resolved.
Show resolved Hide resolved
{:allOf [{:type :object
:properties {:name :t#string
:objectType :t#string}}
:r#IFI]}
:Group {:oneOf [{:properties {:objectType {:type :string :pattern "Group"}
:name :t#string
:member (gs/a :r#Agent)}
:required [:objectType :member]}
{:allOf [{:properties {:objectType {:type :string :pattern "Group"}
:name {:type :string}
:member (gs/a :r#Agent)}
:required [:objectType]}
:r#IFI]}]}
:Actor {:oneOf [:r#Group
:r#Agent]}

:Error (gs/o {:error :t#string})

:IFI {:oneOf [(gs/o {:mbox :r#MailToIRI})
(gs/o {:mbox_sha1sum :t#string})
(gs/o {:openid :r#URI})
(gs/o {:account :r#Account})]}

:IRI {:type :string :format :iri}
:IRL :t#string
:MailToIRI {:type :string :format :email}
:KeyPair (gs/o {:api-key :t#string
:secret-key :t#string})

:Person {:type :object
:properties {:objectType {:type :string :pattern "Person"}
:name (gs/a :t#string)
:mbox (gs/a :r#MailToIRI)
:mbox_sha1sum (gs/a :t#string)
:openid* (gs/a :r#URI)
:account* (gs/a :r#Account)}
:required [:objectType]}
:Scopes (gs/o {:scopes (gs/a :t#string)})
:ScopedKeyPair {:allOf [:r#KeyPair
:r#Scopes]}

:statementId {:type :string}
:Statement {:type :object :description "https://github.com/adlnet/xAPI-Spec/blob/master/xAPI-Data.md#20-statements"}

:Timestamp {:type :string :format :date-time}

:StatementResult {:type :object
:required [:statements]
:properties {:statements (gs/a :r#Statement)
:more :r#IRL}}
:URI {:type :string :format :uri}
:UUID {:type :string :format :uuid}}})

(defn spec [spec-kw]
(case spec-kw
:xapi.activities.profile.GET.request/params
{:params {:activityId :r#IRI
:?#profileId :t#string
:?since :r#Timestamp}
:responses {200 (g/response "The requested Profile document" :t#object)}
:operationId :get-activity-profile
:description "Fetches the specified Profile document in the context of the specified Activity. The semantics of the request are driven by the \"profileId\" parameter. If it is included, the GET method will act upon a single defined document identified by \"profileId\". Otherwise, GET will return the available ids."}


:xapi.activities.profile.PUT.request/params
{:params {:activityId :r#IRI :profileId :t#string}
:requestBody (g/request :t#object)
:responses {204 (g/response "No content")}
:operationId :put-activity-profile
:description "Stores or changes the specified Profile document in the context of the specified Activity."}

:xapi.activities.profile.POST.request/params
{:params {:activityId :r#IRI :profileId :t#string}
:requestBody(g/request :t#object)
:responses {204 (g/response "No content")}
:operationId :post-activity-profile
:description "Stores or changes the specified Profile document in the context of the specified Activity."}

:xapi.activities.profile.DELETE.request/params
{:params {:activityId :r#IRI
:profileId :t#string}
:responses {204 (g/response "No content")}
:operationId :delete-activity-profile
:description "Deletes the specified Profile document in the context of the specified Activity."}

:xapi.activities.state.GET.request/params
{:params {:activityId :r#IRI
:agent :r#Agent
:?#registration :r#UUID
:?#stateId :t#string
:?#since :r#Timestamp}
:responses {200 (g/response "The requested state document, or an array of stateId(s)"
{:oneOf [:t#object
(gs/a :t#string)]})}
:operationId :get-state
:description "Fetches the document specified by the given stateId that exists in the context of the specified Activity, Agent, and registration (if specified), or an array of stateIds."}

:xapi.activities.state.PUT.request/params
{:params {:activityId :r#IRI
:agent :r#Agent
:?#registration :r#UUID
:stateId :t#string}
:requestBody (g/request :t#object)
:responses {204 (g/response "No content" )}
:operationId :put-state
:description "Stores or changes the document specified by the given stateId that exists in the context of the specified Activity, Agent, and registration (if specified)."}
:xapi.activities.state.POST.request/params
{:params {:activityId :r#IRI
:agent :r#Agent
:?#registration :r#UUID
:stateId :t#string}
:requestBody (g/request :t#object)
:responses {204 (g/response "No content" )}
:operationId :post-state
:description "Stores or changes the document specified by the given stateId that exists in the context of the specified Activity, Agent, and registration (if specified)."}
:xapi.activities.state.DELETE.request/params
{:params {:activityId :r#IRI
:agent :r#Agent
:?#registration :r#UUID
:?#stateId :t#string}
:responses {204 (g/response "No content" )}
:operationId :delete-state
:description "Deletes all documents associated with the specified Activity, Agent, and registration (if specified), or just the document specified by stateId"}
:xapi.agents.profile.GET.request/params
{:params {:agent :r#Agent
:?#profileId :t#string
:?#since :r#Timestamp}
:responses {200 (g/response "If profileId is included in the request, the specified document. Otherwise, an array of profileId for the specified Agent.")}
:operationId :get-agents-profile
:description "Fetches the specified Profile document in the context of the specified Agent. The semantics of the request are driven by the \"profileId\" parameter. If it is included, the GET method will act upon a single defined document identified by \"profileId\". Otherwise, GET will return the available ids."}

:xapi.agents.profile.PUT.request/params
{:params {:agent :r#Agent
:profileId :t#string}
:requestBody (g/request :t#object)
:responses {204 (g/response "No content")}
:operationId :put-agents-profile
:description "Stores or changes the specified Profile document in the context of the specified Agent."}
:xapi.agents.profile.POST.request/params
{:params {:agent :r#Agent
:profileId :t#string}
:requestBody (g/request :t#object)
:responses {204 (g/response "No content")}
:operationId :post-agents-profile
:description "Stores or changes the specified Profile document in the context of the specified Agent."}
:xapi.agents.profile.DELETE.request/params
{:params {:agent :r#Agent
:profileId :t#string}
:responses {204 (g/response "No content")}
:operationId :delete-agents-profile
:description "Deletes the specified Profile document in the context of the specified Agent."}))



(def annotations
{:health {:operationId :health
:responses {200 (gc/response "Empty body---a 200 indicates server is alive")}
:description "Simple heartbeat"}
:about {:operationId :get-about
:description "About info"
:responses
{200 (gc/response "Object containing body text and optional etag"
(gc/o {:body :t#string
:#?etag :t#string}))}}
:statements-get {:params {:?#statementId :t#string
milt marked this conversation as resolved.
Show resolved Hide resolved
:?#voidedStatementId :t#string
:?#agent :r#Actor
:?#verb :r#IRI
:?#activity :r#IRI
:?#registration :r#UUID
:?#related_activities :t#boolean
:?#related_agents :t#boolean
:?#since :r#Timestamp
:?#limit :t#integer
:?#format :t#string
:?#attachments :t#boolean
:?#ascending :t#boolean}

:responses {200 (gc/response "Requested Statement or Results"
{:oneOf [:r#Statement
:r#StatementResult]})}
:operationId :get-statement
:description "https://github.com/adlnet/xAPI-Spec/blob/master/xAPI-Communication.md#21-statement-resource"}

:statements-put {:params {:statementId :t#string}
:requestBody (gc/request :r#Statement)
:responses {204 (gc/response "No content")}
:operationId :put-statement
:description ""}
:statements-post {:requestBody (gc/request {:oneOf [(gc/a :r#statementId)
:r#statementId]})
:responses {200 (gc/response "Array of Statement id(s) (UUID) in the same order as the corresponding stored Statements."
(gc/a :r#statementId))}
:operationId :post-statement
:description "Stores a Statement, or a set of Statements."}
:agents-post {:params {:agent :r#Agent}
:responses {200 (gc/response "Return a special, Person Object for a specified Agent. The Person Object is very similar to an Agent Object, but instead of each attribute having a single value, each attribute has an array value, and it is legal to include multiple identifying properties."
:r#Person)}
:operationId :get-agent
:description "Gets a specified agent"}
:activities-post {:params {:activityId :r#IRI}
:responses {200 (gc/response "The requested Activity object"
:r#Activity)}
:operationId :get-activity
:description "Gets the Activity with the specified activityId"}})
Loading
Loading