Skip to content

Latest commit

 

History

History
262 lines (208 loc) · 9.19 KB

File metadata and controls

262 lines (208 loc) · 9.19 KB

Rust API for openapi-v3

API under test

Overview

This client/server was generated by the [openapi-generator] (https://openapi-generator.tech) project. By using the OpenAPI-Spec from a remote server, you can easily generate a server stub.

To see how to make this your own, look here:

README

  • API version: 1.0.7
  • Generator version: 7.9.0-SNAPSHOT

This autogenerated project defines an API crate openapi-v3 which contains:

  • An Api trait defining the API in Rust.
  • Data types representing the underlying data model.
  • A Client type which implements Api and issues HTTP requests for each operation.
  • A router which accepts HTTP requests and invokes the appropriate Api method for each operation.
  • A CLI tool to drive basic API operations from the command line.

It also contains an example server and client which make use of openapi-v3:

  • The example server starts up a web server using the openapi-v3 router, and supplies a trivial implementation of Api which returns failure for every operation.
  • The example client provides a CLI which lets you invoke any single operation on the openapi-v3 client by passing appropriate arguments on the command line.

You can use the example server and client as a basis for your own code. See below for more detail on the examples.

CLI

Run the included CLI tool with:

cargo run --bin cli --features=cli

To pass in arguments, put them after --, for example:

cargo run --bin cli --features=cli -- --help

See the help text for available options.

To build a standalone tool, use:

cargo build --bin cli --features=cli --release

You'll find the binary at target/release/cli.

Examples

Run examples with:

cargo run --example <example-name>

To pass in arguments to the examples, put them after --, for example:

cargo run --example client -- --help

Running the example server

To run the server, follow these simple steps:

cargo run --example server

Running the example client

To run a client, follow one of the following simple steps:

cargo run --example client AnyOfGet
cargo run --example client CallbackWithHeaderPost
cargo run --example client ComplexQueryParamGet
cargo run --example client FormTest
cargo run --example client GetWithBooleanParameter
cargo run --example client JsonComplexQueryParamGet
cargo run --example client MandatoryRequestHeaderGet
cargo run --example client MergePatchJsonGet
cargo run --example client MultigetGet
cargo run --example client MultipleAuthSchemeGet
cargo run --example client OneOfGet
cargo run --example client OverrideServerGet
cargo run --example client ParamgetGet
cargo run --example client ReadonlyAuthSchemeGet
cargo run --example client RegisterCallbackPost
cargo run --example client RequiredOctetStreamPut
cargo run --example client ResponsesWithHeadersGet
cargo run --example client Rfc7807Get
cargo run --example client TwoFirstLetterHeaders
cargo run --example client UntypedPropertyGet
cargo run --example client UuidGet
cargo run --example client XmlExtraPost
cargo run --example client XmlOtherPost
cargo run --example client XmlOtherPut
cargo run --example client XmlPost
cargo run --example client XmlPut
cargo run --example client MultiplePathParamsWithVeryLongPathToTestFormattingPathParamAPathParamBGet
cargo run --example client CreateRepo
cargo run --example client GetRepoInfo

HTTPS

The examples can be run in HTTPS mode by passing in the flag --https, for example:

cargo run --example server -- --https

This will use the keys/certificates from the examples directory. Note that the server chain is signed with CN=localhost.

Using the generated library

The generated library has a few optional features that can be activated through Cargo.

  • server
    • This defaults to enabled and creates the basic skeleton of a server implementation based on hyper
    • To create the server stack you'll need to provide an implementation of the API trait to provide the server function.
  • client
    • This defaults to enabled and creates the basic skeleton of a client implementation based on hyper
    • The constructed client implements the API trait by making remote API call.
  • conversions
    • This defaults to disabled and creates extra derives on models to allow "transmogrification" between objects of structurally similar types.
  • cli
    • This defaults to disabled and is required for building the included CLI tool.

See https://doc.rust-lang.org/cargo/reference/manifest.html#the-features-section for how to use features in your Cargo.toml.

Documentation for API Endpoints

All URIs are relative to http://localhost

Method HTTP request Description
**** GET /any-of
**** POST /callback-with-header
**** GET /complex-query-param
FormTest POST /form-test Test a Form Post
GetWithBooleanParameter GET /get-with-bool
**** GET /json-complex-query-param
**** GET /mandatory-request-header
**** GET /merge-patch-json
**** GET /multiget Get some stuff.
**** GET /multiple_auth_scheme
**** GET /one-of
**** GET /override-server
**** GET /paramget Get some stuff with parameters.
**** GET /readonly_auth_scheme
**** POST /register-callback
**** PUT /required_octet_stream
**** GET /responses_with_headers
**** GET /rfc7807
TwoFirstLetterHeaders POST /operation-two-first-letter-headers
**** GET /untyped_property
**** GET /uuid
**** POST /xml_extra
**** POST /xml_other
**** PUT /xml_other
**** POST /xml Post an array. It's important we test apostrophes, so include one here.
**** PUT /xml
**** GET /enum_in_path/{path_param}
**** GET /multiple-path-params-with-very-long-path-to-test-formatting/{path_param_a}/{path_param_b}
CreateRepo POST /repos
GetRepoInfo GET /repos/{repoId}

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

authScheme

  • Type: OAuth
  • Flow: accessCode
  • Authorization URL: http://example.org
  • Scopes:
  • test.read: Allowed to read state.
  • test.write: Allowed to change state.

Example

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

additionalAuthScheme

  • Type: OAuth
  • Flow: accessCode
  • Authorization URL: http://example.org
  • Scopes:
  • additional.test.read: Allowed to read state.
  • additional.test.write: Allowed to change state.

Example

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

Author