Merge pull request #874 from eikek/api-docs

Api docs fixes and nicer design
This commit is contained in:
mergify[bot] 2021-06-12 20:10:44 +00:00 committed by GitHub
commit 8ece7aa45c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 257 additions and 38 deletions

View File

@ -412,7 +412,7 @@ val restapi = project
openapiTargetLanguage := Language.Scala, openapiTargetLanguage := Language.Scala,
openapiPackage := Pkg("docspell.restapi.model"), openapiPackage := Pkg("docspell.restapi.model"),
openapiSpec := (Compile / resourceDirectory).value / "docspell-openapi.yml", openapiSpec := (Compile / resourceDirectory).value / "docspell-openapi.yml",
openapiStaticArgs := Seq("-l", "html2") openapiStaticGen := OpenApiDocGenerator.Redoc
) )
.dependsOn(common) .dependsOn(common)
@ -431,7 +431,8 @@ val joexapi = project
Dependencies.http4sClient, Dependencies.http4sClient,
openapiTargetLanguage := Language.Scala, openapiTargetLanguage := Language.Scala,
openapiPackage := Pkg("docspell.joexapi.model"), openapiPackage := Pkg("docspell.joexapi.model"),
openapiSpec := (Compile / resourceDirectory).value / "joex-openapi.yml" openapiSpec := (Compile / resourceDirectory).value / "joex-openapi.yml",
openapiStaticGen := OpenApiDocGenerator.Redoc
) )
.dependsOn(common) .dependsOn(common)
@ -784,7 +785,7 @@ addCommandAlias("make-pkg", ";clean ;make ;make-zip ;make-deb ;make-tools")
addCommandAlias("ci", "make; lint; test") addCommandAlias("ci", "make; lint; test")
addCommandAlias( addCommandAlias(
"lint", "lint",
"scalafmtSbtCheck; scalafmtCheckAll; Compile/scalafix --check; Test/scalafix --check" "restapi/openapiLint; joexapi/openapiLint; scalafmtSbtCheck; scalafmtCheckAll; Compile/scalafix --check; Test/scalafix --check"
) )
addCommandAlias("fix", "Compile/scalafix; Test/scalafix; scalafmtSbt; scalafmtAll") addCommandAlias("fix", "Compile/scalafix; Test/scalafix; scalafmtSbt; scalafmtAll")
addCommandAlias("make-website", ";website/clean ;website/zolaBuild ;website/zolaCheck") addCommandAlias("make-website", ";website/clean ;website/zolaBuild ;website/zolaCheck")

View File

@ -3,6 +3,16 @@ openapi: 3.0.0
info: info:
title: Docspell JOEX title: Docspell JOEX
version: 0.24.0-SNAPSHOT version: 0.24.0-SNAPSHOT
description: |
This is the remote API to the job executor component of Docspell.
Docspell is a free document management system focused on small
groups or families.
The routes are not protected by the application. This api is meant
to be used by the server component of Docspell.
license:
name: GPLv3
url: https://spdx.org/licenses/GPL-3.0-or-later.html
servers: servers:
- url: /api/v1 - url: /api/v1
@ -11,6 +21,7 @@ servers:
paths: paths:
/api/info/version: /api/info/version:
get: get:
operationId: "info-version"
tags: [ Api Info ] tags: [ Api Info ]
summary: Get basic information about this software. summary: Get basic information about this software.
description: | description: |
@ -22,8 +33,9 @@ paths:
application/json: application/json:
schema: schema:
$ref: "#/components/schemas/VersionInfo" $ref: "#/components/schemas/VersionInfo"
/api/v1/notify: /notify:
post: post:
operationId: "v1-notify"
tags: [ Job Executor ] tags: [ Job Executor ]
summary: Notify the job executor. summary: Notify the job executor.
description: | description: |
@ -35,8 +47,9 @@ paths:
application/json: application/json:
schema: schema:
$ref: "#/components/schemas/BasicResult" $ref: "#/components/schemas/BasicResult"
/api/v1/running: /running:
get: get:
operationId: "v1-running"
tags: [ Job Executor ] tags: [ Job Executor ]
summary: Get a list of currently executing jobs. summary: Get a list of currently executing jobs.
description: | description: |
@ -48,8 +61,9 @@ paths:
application/json: application/json:
schema: schema:
$ref: "#/components/schemas/JobList" $ref: "#/components/schemas/JobList"
/api/v1/shutdownAndExit: /shutdownAndExit:
post: post:
operationId: "v1-shutdown-and-exit"
tags: [ Job Executor ] tags: [ Job Executor ]
summary: Stops this component and exits. summary: Stops this component and exits.
description: | description: |
@ -61,8 +75,9 @@ paths:
application/json: application/json:
schema: schema:
$ref: "#/components/schemas/BasicResult" $ref: "#/components/schemas/BasicResult"
/api/v1/job/{id}: /job/{id}:
get: get:
operationId: "v1-job-by-id"
tags: [ Current Jobs ] tags: [ Current Jobs ]
summary: Get a job by its id. summary: Get a job by its id.
description: | description: |
@ -76,8 +91,9 @@ paths:
application/json: application/json:
schema: schema:
$ref: "#/components/schemas/JobAndLog" $ref: "#/components/schemas/JobAndLog"
/api/v1/job/{id}/cancel: /job/{id}/cancel:
post: post:
operationId: "v1-job-cancel"
tags: [ Current Jobs ] tags: [ Current Jobs ]
summary: Request to cancel a running job. summary: Request to cancel a running job.
description: | description: |

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.29") addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.29")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0") addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0")
addSbtPlugin("com.github.eikek" % "sbt-openapi-schema" % "0.7.1") addSbtPlugin("com.github.eikek" % "sbt-openapi-schema" % "0.8.0")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.0.15") addSbtPlugin("com.github.sbt" % "sbt-release" % "1.0.15")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2") addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
addSbtPlugin("io.kevinlee" % "sbt-github-pages" % "0.5.0") addSbtPlugin("io.kevinlee" % "sbt-github-pages" % "0.5.0")

View File

@ -102,6 +102,26 @@ $ export DOCSPELL_ENV=dev
$ sbt "restserver/reStart" $ sbt "restserver/reStart"
``` ```
# Developing Backend
## OpenAPI
The http API is specified in the corresponding `-openapi.yml` file.
The `component` section is being used to generate code for the client
and the server, so that both are always in sync. However, the route
definitions are not checked against the server implementation.
Changes to the openapi files can be checked by running a sbt task:
``` scala
restapi/openapiLint //and/or
joexapi/openapiLint
```
These tasks must not show any errors (it is checked by the CI). The
warnings should also be fixed.
# Nix Expressions # Nix Expressions
The directory `/nix` contains nix expressions to install docspell via The directory `/nix` contains nix expressions to install docspell via