A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://speakerdeck.com/ota42y/how-to-use-openapi3-for-api-developer below:

How to use OpenAPI3 for API developer (RubyKaigi 2019)

  • Schema first development • Schema first development • Define API

    schema • Client-side and server-side implement according it • Integration test • Without Schema first development, 
 we can’t start client-side implement until server side implement finished Reference: RubyKaigi 2017 API Development in 2017 https://www.youtube.com/watch?v=a28jJ62ZfZM Rails Developers Meetup 2019: 
 https://speakerdeck.com/aeroastro/rails-meets-protocol-buffers-for-schema-first-development

  • OpenAPI extends REST API • OpenAPI is just a YAML/JSON

    rule • Actual processing is just REST API • OpenAPI 3 takes full advantage of existing RESTful frameworks and insights • Since REST is a web best practice at the time, various mechanisms such as HTTP cache, monitoring system can also be used

  • Example API to OpenAPI 3 definition • GET /apps openapi:

    3.0.0 info: title: Sample API version: 0.1.0 paths: "/apps": get: parameters: - name: page in: query required: true schema: type: integer responses: '200': description: example content: 'application/json': schema: type: array items: type: string

  • Example API to OpenAPI 3 definition • GET /apps returns

    application/json openapi: 3.0.0 info: title: Sample API version: 0.1.0 paths: "/apps": get: parameters: - name: page in: query required: true schema: type: integer responses: '200': description: example content: 'application/json': schema: type: array items: type: string

  • Example API to OpenAPI 3 definition • GET /apps returns

    application/json • `page` parameter required and it’s integer openapi: 3.0.0 info: title: Sample API version: 0.1.0 paths: "/apps": get: parameters: - name: page in: query required: true schema: type: integer responses: '200': description: example content: 'application/json': schema: type: array items: type: string

  • Example API to OpenAPI 3 definition • GET /apps returns

    application/json • `page` parameter required and it’s integer • Succeed response includes string array openapi: 3.0.0 info: title: Sample API version: 0.1.0 paths: "/apps": get: parameters: - name: page in: query required: true schema: type: integer responses: '200': description: example content: 'application/json': schema: type: array items: type: string

  • Example API to OpenAPI 3 definition • GET /apps returns

    application/json • `page` parameter required and it’s integer • Succeed response includes string array openapi: 3.0.0 info: title: Sample API version: 0.1.0 paths: "/apps": get: parameters: - name: page in: query required: true schema: type: integer responses: '200': description: example content: 'application/json': schema: type: array items: type: string

  • openapi: 3.0.0 info: title: Sample API version: 0.1.0 paths: "/apps":

    get: parameters: - name: page in: query required: true schema: type: integer responses: '200': description: example content: 'application/json': schema: type: array items: type: string Paths Object • API definitions are written in this section • There is path string key and 
 Path Item Object • We can write definition in Path Item Object Path string Path Item Object

  • Path Item Object • Define request/response parameter 
 per HTTP

    method • We can define request parameter openapi: 3.0.0 info: title: Sample API version: 0.1.0 paths: "/apps": get: parameters: - name: page in: query required: true schema: type: integer responses: '200': description: example content: 'application/json': schema: type: array items: type: string

  • Path Item Object • Define request/response parameter 
 per HTTP

    method • We can define request parameter and 
 response parameter schema openapi: 3.0.0 info: title: Sample API version: 0.1.0 paths: "/apps": get: parameters: - name: page in: query required: true schema: type: integer responses: '200': description: example content: 'application/json': schema: type: array items: type: string

  • Security Scheme Object • We can define security schema for

    all API or specific API • We can use HTTP authentication, API key (like header, query), 
 OAuth2, OpenID Connect type: http scheme: basic type: apiKey name: api_key in: header type: http scheme: bearer bearerFormat: JWT JWT API key basic type: oauth2 flows: implicit: authorizationUrl: https://example.co... scopes: write:pets: modify pets read:pets: read your pets OAuth2

  • Request validation using committee % curl -X GET "http://localhost:4567/apps" {"id":"bad_request","message":"required

    parameters page not exist in #/paths/~1apps/get”} % curl -X GET "http://localhost:4567/apps?page=1" ["1","10"] When `page` parameter exists, get correct response require "sinatra" require "committee" use Committee::Middleware::RequestValidation, schema_path: 'schema.yaml' use Committee::Middleware::ResponseValidation, schema_path: 'schema.yaml' get "/apps" do content_type :json # page should be Integer page = params["page"].to_i [page, (page*10)].map(&:to_s).to_json end

  • % curl -X GET "http://localhost:4567/apps?page=1" ["1","10"] Coerce request parameter But

    committee converts class using definition type (optional feature) require "sinatra" require "committee" use Committee::Middleware::RequestValidation, schema_path: 'schema.yaml' use Committee::Middleware::ResponseValidation, schema_path: 'schema.yaml' get "/apps" do content_type :json # page should be Integer page = params["page"] [page, (page*10)].map(&:to_s).to_json end

  • Coerce request body and other convert % curl -X POST

    -H "Content-Type: application/json" -d '{"measured_at":"2016-04-01T16:00:00+09:00"}' “http://localhost:4567/apps" {"class":"DateTime"} post: requestBody: content: application/json: schema: type: object properties: measured_at: type: string format: date-time responses: '201': description: no content content: 'application/json': schema: type: object properties: class: type: string • committee coerce parameter in request body • When string in date-time format, 
 committee converts it to DateTime class

  • Test Assertions describe "GET /apps" do it "conforms to schema"

    do get '/apps?page=1' assert_schema_conform end end % bundle exec ruby committee_test.rb Run options: --seed 62877 # Running: E Finished in 0.023367s, 42.7954 runs/s, 0.0000 assertions/s. 1) Error: Committee::Middleware::Stub::GET /apps#test_0001_conforms to schema: Committee::InvalidResponse: don't exist status code definition in #/paths/~1apps/get/responses • committee provides response format checker for test • When there’re difference, test will fail

  • Mapping OpenAPI definition to object • OpenAPI 3 definition have

    many object openapi: 3.0.0 info: title: Sample API version: 0.1.0 paths: "/apps": get: parameters: - name: page in: query required: true schema: type: integer responses: '200': description: example content: 'application/json': schema: type: array items: type: string

  • Mapping OpenAPI definition to object • OpenAPI 3 definition have

    many object • Definition is YAML/JSON file so 
 ruby loads it as Hash objects • openapi: 3.0.0 info: title: Sample API version: 0.1.0 paths: "/apps": get: parameters: - name: page in: query required: true schema: type: integer responses: '200': description: example content: 'application/json': schema: type: array items: type: string

  • Mapping OpenAPI definition to object • openapi_parser map definition data

    to Ruby object using DSL • I implemented few methods to these classes module OpenAPIParser::Schemas class Parameter < Base openapi_attr_values :name, :in, :description, :req openapi_attr_value :allow_empty_value, schema_key: openapi_attr_value :allow_reserved, schema_key: :a def validate_params(params, options)

  • openapi: 3.0.0 info: title: Sample API version: 0.1.0 paths: "/apps":

    get: parameters: - name: page in: query required: true schema: type: integer responses: '200': description: example content: 'application/json': schema: type: array items: type: string • Schema is defined separately for each HTTP method in Path Item Object Find schema from URL Path Item Object Path string

  • openapi: 3.0.0 info: title: Sample API version: 0.1.0 paths: "/apps":

    get: parameters: - name: page in: query required: true schema: type: integer responses: '200': description: example content: 'application/json': schema: type: array items: type: string • Schema is defined separately for each HTTP method in Path Item Object Find schema from URL Path Item Object

  • openapi: 3.0.0 info: title: Sample API version: 0.1.0 paths: "/apps":

    get: parameters: - name: page in: query required: true schema: type: integer responses: '200': description: example content: 'application/json': schema: type: array items: type: string • Schema is defined separately for each HTTP method in Path Item Object • So we should find Path Item Object from requested URL Find schema from URL Path Item Object Path string

  • OpenAPI 3 support path parameter paths: "/pets/mine": … "/pets/{petId}": …

    "/pets/0": … Requested path Definition path /pets/mine -> "/pets/mine" /pets/1 -> "/pets/{petId}" /pets/2 -> "/pets/{petId}" /pets/0 -> "/pets/0" 
 /pets/1/food -> "/pets/{petId}/food" /pets/0/food -> "/pets/0/food/" • If there are both with and without parameters, the one without parameters takes precedence

  • OpenAPI 3 support path parameter paths: "/pets/mine": … "/pets/{petId}": …

    "/pets/0": … Requested path Definition path /pets/mine -> "/pets/mine" /pets/1 -> "/pets/{petId}" /pets/2 -> "/pets/{petId}" /pets/0 -> "/pets/0" 
 /pets/1/food -> "/pets/{petId}/food" /pets/0/food -> "/pets/0/food/" • If there are both with and without parameters, the one without parameters takes precedence • So we should find Path Item Object according this rule

  • lunch • Divide requested URL by `/` too • Find

    node from root • If there isn’t matched node, 
 use parameter node (OpenAPI 3 definition) Find defined path from patricia tree {id} users meals me steps lunch /users/meals/42/lunch public root

  • lunch • Divide requested URL by `/` too • Find

    node from root • If there isn’t matched node, 
 use parameter node (OpenAPI 3 definition) Find defined path from patricia tree {id} users meals me steps lunch /users/meals/42/lunch public root

  • lunch • Divide requested URL by `/` too • Find

    node from root • If there isn’t matched node, 
 use parameter node (OpenAPI 3 definition) Find defined path from patricia tree {id} users meals me steps lunch /users/meals/42/lunch public root

  • lunch • Divide requested URL by `/` too • Find

    node from root • If there isn’t matched node, 
 use parameter node (OpenAPI 3 definition) Find defined path from patricia tree {id} users meals me steps lunch /users/meals/42/lunch public root

  • lunch • Divide requested URL by `/` too • Find

    node from root • If there isn’t matched node, 
 use parameter node (OpenAPI 3 definition) Find defined path from patricia tree {id} users meals me steps lunch /users/meals/{id}/lunch public root

  • lunch • Divide requested URL by `/` too • Find

    node from root • If there isn’t matched node, 
 use parameter node (OpenAPI 3 definition) • Get Path Item Object from matched Find defined path from patricia tree {id} users meals me steps lunch /users/meals/{id}/lunch public root

  • • JSON Schema has `object` type • This type has

    `properties` which has property name and schema • This type can be mapped to Hash in ruby 
 and property name is represented as hash key Object validation schema: type: object nullable: false properties: nickname: type: string

  • • JSON Schema has `object` type • This type has

    `properties` which has property name and schema • This type can be mapped to Hash in ruby 
 and property name is represented as hash key Object validation schema: type: object nullable: false properties: nickname: type: string schema.properties.each do |name, child_schema| child_schema.validate(parameter[name]) end

  • • The `array` type in JSON Schema which can be

    mapped Array • The `array` type has items schema definition • Check all item in array is according to schema Array validation schema: type: array items: type: object required: ... array_parameter.all? do |item| items_schema.validate(item) end

  • openapi_parser include these methods • These feature is implemented in

    openapi_parser
 and it’s separated from committee # load OpenAPI 3 definition root = OpenAPIParser.parse(YAML.load_file('open_api_3/schema.yml')) # get schema from HTTP method (POST) and path (/validate) op = root.request_operation(:post, '/validate') # validate request body ret = op.validate_request_body('application/json', params)

  • openapi_parser include these methods • These feature is implemented in

    openapi_parser
 and it’s separated from committee • So if you want to create OpenAPI 3 tool, this gem help for you # load OpenAPI 3 definition root = OpenAPIParser.parse(YAML.load_file('open_api_3/schema.yml')) # get schema from HTTP method (POST) and path (/validate) op = root.request_operation(:post, '/validate') # validate request body ret = op.validate_request_body('application/json', params)

  • Generated gem • One method is created for one HTTP

    method • If you want to divide by namespace, use tags in OpenAPI 3
 (OpenAPI 3 allow add tag per HTTP method) api_instance = OpenapiClient::DefaultApi.new page = 56 result = api_instance.apps_get(page) users_api = OpenapiClient::UsersApi.new limit = 10 users_api.blogs_get(limit)

  • Document Included • OpenAPI 3 supports markdown description for many

    objects • OpenAPI Generator convert request / response parameter as method argument and return value and outputs these as YARD style comments with description # get app names by array # @param page specific page setting # @param [Hash] opts the optional parameters # @return [Array<String>] def apps_get(page, opts = {})

  • Generete type definition…? • I think we can generate type

    definition (.rbi) • And we can generate server side code like Hanami with .rbi class DefaultApi def apps_get: (page: Integer) -> Array<String> end module Web module Controllers module Home class Index include Web::Action def call(params) end end

  • Summary • We can use OpenAPI 3 to define API

    schema • OpenAPI 3 has various tools • Request/Respones validation • Client library generation • Interactive document • If you want to create new OpenAPI tool, it’s not so difficult

  • Summary • We can use OpenAPI 3 to define API

    schema • OpenAPI 3 has various tools • Request/Respones validation • Client library generation • Interactive document • If you want to create new OpenAPI tool, it’s not so difficult

  • Summary • We can use OpenAPI 3 to define API

    schema • OpenAPI 3 has various tools • Request/Respones validation • Client library generation • Interactive document • If you want to create new OpenAPI tool, it’s not so difficult

  • Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS

    FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright The Linux Foundation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

  • Do you use committee in production? • Yes • We

    use request validator and coerce all value in production • But we don’t use response validator in production, we use staging only • Because if we implement request/response by correct in staging, we don’t need check in production • committee has parameter coercer so we use request validation in production

  • Committee is slow? • It is a benchmark result •

    Small benchmark have 1 query parameter • Big benchmark have 2600 objects • Check enable/disable committee and request 1000 times • I don’t check response validation benchmark because we don’t use it in production • Benchmark script is here
 https://gist.github.com/ota42y/3ed68a2cb0dc7c98122bdfd1a696ab72


  • RetroSearch is an open source project built by @garambo | Open a GitHub Issue

    Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

    HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4