Did you know ... Search Documentation:
Packs (add-ons) for SWI-Prolog

Package "openapi"

Title:OpenAPI (Swagger) interface
Rating:Not rated. Create the first rating!
Latest version:0.2.1
SHA1 sum:3644009802c941f30e20cfb84f2e776226bc9a3b
Author:Jan Wielemaker <jan@swi-prolog.org>
Maintainer:Jan Wielemaker <jan@swi-prolog.org>
Packager:Jan Wielemaker <jan@swi-prolog.org>
Home page:https://github.com/JanWielemaker/openapi.git
Download URL:https://github.com/JanWielemaker/openapi/archive/V*.zip

Reviews

No reviews. Create the first review!.

Details by download location

VersionSHA1#DownloadsURL
0.1919d4f9fed332e094b394507dfbb6922d5646a1679https://github.com/JanWielemaker/openapi.git
0.20b42ad9774a76f263298333943ff65848a8580cb8https://github.com/JanWielemaker/openapi/archive/V0.2.zip
76c16b580ad1f21ef92ffa7c695b398c7b801ec029https://github.com/JanWielemaker/openapi.git
cc0a1423f82ddf203f6f3a15f95c0abeb18cc56b3https://github.com/JanWielemaker/openapi.git
eef2c2e44f561b47e2c88f9da4452430b81904571https://github.com/JanWielemaker/openapi.git
0.2.13644009802c941f30e20cfb84f2e776226bc9a3b3https://github.com/JanWielemaker/openapi/archive/V0.2.1.zip

SWI-Prolog OpenAPI (Swagger) interface

Design

There are two options to support OpenAPI:

  1. Use an OpenAPI file as a specification for the interface, only providing the body implementation in Prolog.
  2. Specify the API in Prolog and generate an OpenAPI document for it.

This library implements the first option. Future versions may reuse a lot of the infrastructure to implement the second option.

Components

The single library(openapi) implements the following components:

  1. A compiler that creates a Prolog friendly representation of the operations described in the swagger file.
  2. An HTTP request dispatcher that uses the above to
    • Find the operation
    • Extract the parameters (from path, query and request body)
    • Check the argument types
    • Call the (user defined) implementation
    • Check the response type
    • Return the reply document
  3. A compiler that creates the client predicates as wrappers around http_open/3. The wrapper does
    • Type-check the parameters
    • Use the parameters to formulate a URL and optional request body for http_open/3.
    • Run the request
    • Type-check and return the returned answer

In addition, there is a script swi-openapi that wraps the above library to create the skeleton server and client, including PlDoc comments for the operations.

Using this package

First of all, obtain a Swagger file using Swagger version 3.0. Now, to generate a server, do

swi-openapi --server=server.pl spec.yaml

This creates a Prolog file server.pl with documented predicate skeletons that must be filled by you. We advice to write the actual implementation of the server in a separate module such that the implementation you have to add to this file is short. This makes upgrading and deploying multiple versions of the server API much easier. There are additional options:

  • `--httpd` includes an HTTP server in server.pl. For more complicated projects you probably want something more advanced. This quickly gets you started though.
  • `--ui` includes the swagger ui, so you can interactively explore the API in your browser.

To generate a client run

swi-openapi --client=client.pl spec.yaml

This creates documented predicates that call the API. The server address is extracted from spec.yaml. Probably the best way to use this is to include client.pl into your project using include/1.

The predicate mapping

The operationId from the Swagger file is used as the name of the predicate, both for the server and client. The arguments are extracted from the parameters specification in the Swagger file. Required arguments use a normal Prolog argument. Optional parameters are passed using a Prolog option list. If there is a return value, this is positioned after the required argument and before the option list. On the client side, normal responses are returned as data. The default is mapped to an exception of the form error(rest_error(Code, Data),_), where Code is the HTTP status code and Data the data returned by the server. If an operation only defines code 204 (no content) and a default, the parameter is missing in the client and the predicate succeeds if the server replies 204 or throws an exception as above otherwise.

Server reply

The implementation skeleton for each server operation has a variable Response. The implementation must succeed and bind Response to one of the terms below.

  • status(Code)
  • status(Code, Data)

Currently, Data must be a term suitable for json_write_dict/3. Future versions will support a other replies and a hook to extend the reply types.

Examples

See the examples directory for two examples from the Swagger site.

Prerequisites

SWI-Prolog 7.7.11 for basic operation. This version has a bug in the YAML parser and lacks an extension to http_parameters/2 that supports more precise HTTP error reports.

Contents of pack "openapi"

Pack contains 16 files holding a total of 102K bytes.