open_api_rack 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 5eac5e38b678118f9f0fc9081f43503f1c84819ce995e83e94256a0b5cdcb0e9
4
+ data.tar.gz: 1cd0e930a8972889861c17b1bd1a0f6623d63541c3294d5204b3960b40e1af05
5
+ SHA512:
6
+ metadata.gz: c7add14b4339d57f4a6c96c2d9063b5fd7c5ece597bb27a98b5c57e4bb9739eab5d5b212b98a8e5206354284b9ec249b14c848d9347340aa8cfab54460e1bbb4
7
+ data.tar.gz: 793a9eac3fd373428939c633053ef3a7de1384629bb039434e81cae5d2852a57b5cee01bcc0c8ec980aaf816ec7c47465307b9c4d63d65837973d1fe18d7d621
data/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2022-10-23
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at TODO: Write your email address. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in open_api_rack.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
data/Gemfile.lock ADDED
@@ -0,0 +1,19 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ open_api_rack (0.1.3)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ rake (13.0.6)
10
+
11
+ PLATFORMS
12
+ arm64-darwin-21
13
+
14
+ DEPENDENCIES
15
+ open_api_rack!
16
+ rake (~> 13.0)
17
+
18
+ BUNDLED WITH
19
+ 2.2.33
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Olga Leonteva
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,95 @@
1
+ ## Installation
2
+
3
+ Add this line to your application's Gemfile:
4
+
5
+ ```ruby
6
+
7
+ gem 'open_api_rack'
8
+
9
+ ```
10
+
11
+ And then execute:
12
+
13
+     $ bundle install
14
+
15
+ ## Usage
16
+
17
+ 1) It's pretty simple. First register middleware for a test environment
18
+
19
+ ``` config/enviroments/test.rb
20
+
21
+ Rails.application.configure
22
+ config.middleware.insert_before 0, OpenApiRack::Middleware
23
+ end
24
+
25
+ ```
26
+
27
+ Please, keep it only for test env!
28
+
29
+ 2) Then, you need to configure the gem. Create an initializer file
30
+
31
+ ```config/initializers/open_api_rack.rb
32
+
33
+ OpenApiRack.configure do |config|
34
+ # list of headers you want to follow
35
+ config.headers_list = %w(access_token client uid access-token)
36
+
37
+ # by default gem is enabled
38
+ config.disable_by_default = true
39
+ end
40
+
41
+ ```
42
+
43
+ `header_list` setting defines the headers you want to follow
44
+
45
+ 3) Final step, start writing your request specs
46
+
47
+ ``` spec/requests/users_spec.rb
48
+
49
+ RSpec.describe "Api::V1::Users", type: :request do
50
+ describe "GET /" do
51
+ before(:each) do
52
+ get "/api/v1/users", params: { per_page: 5, page: 1, sort: 'email', order: 'desc' }
53
+ end
54
+
55
+ it "returns http success" do
56
+ expect(response).to have_http_status(:success)
57
+ end
58
+ end
59
+ end
60
+ ```
61
+
62
+ You may also exclude specific request from documentation by adding `{ "OA_SKIP_EXAMPLE" => "true" }` to your request headers
63
+
64
+ ``` spec/requests/users_spec.rb
65
+ get "/api/v1/users", params: { per_page: 5, page: 1, sort: 'email', order: 'desc' }, headers: { "OA_SKIP_EXAMPLE" => "true" }
66
+ ```
67
+
68
+ If you decide to disable doc generation, you can turn it on for specific request
69
+ ``` spec/requests/users_spec.rb
70
+ get "/api/v1/users", params: { per_page: 5, page: 1, sort: 'email', order: 'desc' }, headers: { "OA_INCLUDE_EXAMPLE" => "true" }
71
+ ```
72
+
73
+ Generated docs stored in /public/open-api.yaml
74
+
75
+ ## Contributing
76
+
77
+ Gem in active development
78
+
79
+ Known issues:
80
+
81
+ - not working for DELETE HTTP method
82
+
83
+ - not working for :no_content response
84
+
85
+ - can not define fields types
86
+
87
+
88
+ Bug reports and pull requests are welcome on GitHub at https://github.com/chhlga/open_api_rack. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/open_api_rack/blob/main/CODE_OF_CONDUCT.md).
89
+
90
+ ## License
91
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
92
+
93
+ ## Code of Conduct
94
+ Everyone interacting in the OpenApiRack project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/open_api_rack/blob/main/CODE_OF_CONDUCT.md).
95
+
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ task default: %i[]
data/bin/console ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "bundler/setup"
5
+ require "open_api_rack"
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require "irb"
15
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,10 @@
1
+ module OpenApiRack
2
+ class Configuration
3
+ attr_accessor :headers_list, :disable_by_default
4
+
5
+ def initialize(headers_list = nil, disable_by_default = false)
6
+ @headers_list = headers_list
7
+ @disable_by_default = disable_by_default
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,155 @@
1
+ module OpenApiRack
2
+ class Middleware
3
+ def initialize(app)
4
+ @app = app
5
+
6
+ @headers_list = OpenApiRack.configuration.headers_list
7
+ end
8
+
9
+ def call(env)
10
+ app_call_result = @app.call(env)
11
+
12
+ return app_call_result if skip?(env)
13
+
14
+ if File.exist?("public/open-api.yaml")
15
+ open_api_hash = YAML.load_file("public/open-api.yaml")
16
+ else
17
+ open_api_hash = {
18
+ "openapi" => "3.0.0",
19
+ "info" => {
20
+ "title" => "client_area",
21
+ "version" => "1.0.0"
22
+ },
23
+ "servers" => [
24
+ {"url" => "http://localhost:3000"}
25
+ ],
26
+ "paths" => {}
27
+ }
28
+ end
29
+
30
+ open_api_hash["paths"].merge!(
31
+ env["PATH_INFO"] => {
32
+ env["REQUEST_METHOD"].downcase => {
33
+ "parameters" => Rack::Request.new(env).params.map do |k, v|
34
+ {
35
+ "name" => k,
36
+ "in" => "query",
37
+ "schema" => {
38
+ "type" => "string"
39
+ },
40
+ "required" => false,
41
+ "example" => v
42
+ }
43
+ end.concat(
44
+ @headers_list.map do |k|
45
+ {
46
+ "name" => k,
47
+ "in" => "header",
48
+ "schema" => {
49
+ "type" => "string"
50
+ },
51
+ "required" => false,
52
+ "example" => env["HTTP_#{k.to_s.upcase}"]
53
+ }
54
+ end
55
+ ),
56
+ "responses" => {
57
+ app_call_result[0] => {
58
+ "description" => "OK",
59
+ "content" => {
60
+ "application/json" => {
61
+ "schema" => {
62
+ "type" => "object",
63
+ "properties" => parse_json(response_body(app_call_result))
64
+ }
65
+ }
66
+ },
67
+ "headers" => response_headers(app_call_result)
68
+ }
69
+ }
70
+ }.merge(parsed_request_body(env))
71
+ }
72
+ )
73
+
74
+ File.open('public/open-api.yaml', 'w') do |f|
75
+ f.write(open_api_hash.to_yaml)
76
+ end
77
+
78
+ app_call_result
79
+ end
80
+
81
+ private
82
+
83
+ def request_body(env)
84
+ Rack::Request.new(env).params
85
+ end
86
+
87
+ def parsed_request_body(env)
88
+ return {} unless env["REQUEST_METHOD"] == "POST" ||
89
+ env["REQUEST_METHOD"] == "PUT" ||
90
+ env["REQUEST_METHOD"] == "PATCH"
91
+ {
92
+ "requestBody" => {
93
+ "content" => {
94
+ "application/json" => {
95
+ "schema" => {
96
+ "type" => "object",
97
+ "properties" => parse_json(request_body(env))
98
+ }
99
+ }
100
+ }
101
+ }
102
+ }
103
+ end
104
+
105
+ def response_body(app_call_result)
106
+ JSON.parse(app_call_result[2].first)
107
+ end
108
+
109
+ def parse_json(json, result = {})
110
+ return result unless json.respond_to?(:each)
111
+ json.each do |k, v|
112
+ result[k], node = parse_node(v)
113
+ if result[k]["type"] == "object"
114
+ parse_json(node, result[k]["properties"])
115
+ elsif result[k]["type"] == "array"
116
+ parse_json(node, result[k]["items"]["properties"])
117
+ end
118
+ end
119
+ result
120
+ end
121
+
122
+ def parse_node(node)
123
+ if node.is_a?(Array)
124
+ return {"type" => "array", "items" => { "properties" => {} } }, node.first
125
+ elsif node.is_a?(Hash)
126
+ return {"type" => "object", "properties" => {} }, node
127
+ else
128
+ return {"type" => "string" }, node
129
+ end
130
+ end
131
+
132
+ def response_headers(app_call_result)
133
+ result = {}
134
+ app_call_result[1].keys.select { |k| @headers_list.include?(k) }.each do |k|
135
+ result[k] = {
136
+ "schema" => {
137
+ "type" => "string"
138
+ },
139
+ "description" => "Header #{k}"
140
+ }
141
+ end
142
+ result
143
+ end
144
+
145
+ def skip?(env)
146
+ disable_by_default = OpenApiRack.configuration.disable_by_default
147
+ skip_example = env["OA_SKIP_EXAMPLE"] == "true"
148
+ include_example = env["OA_INCLUDE_EXAMPLE"] == "true"
149
+
150
+ return false if include_example
151
+ return true if disable_by_default
152
+ return true if skip_example
153
+ end
154
+ end
155
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module OpenApiRack
4
+ VERSION = "0.1.3"
5
+ end
@@ -0,0 +1,15 @@
1
+ require 'open_api_rack/configuration'
2
+
3
+ module OpenApiRack
4
+ class << self
5
+ attr_accessor :configuration
6
+ end
7
+
8
+ def self.configuration
9
+ @@configuration ||= Configuration.new
10
+ end
11
+
12
+ def self.configure
13
+ yield(configuration)
14
+ end
15
+ end
@@ -0,0 +1,36 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/open_api_rack/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "open_api_rack"
7
+ spec.version = OpenApiRack::VERSION
8
+ spec.authors = ["Olga Leonteva"]
9
+ spec.email = ["youzik@me.com"]
10
+
11
+ spec.summary = "OpenAPI 3.0.0 documentation generator"
12
+ spec.description = "Generate your own shiny OpenAPI 3.0.0 documentation from Rspec request specs"
13
+ spec.homepage = "https://github.com/chhlga/open_api_rack"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = ">= 2.6.0"
16
+
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+ spec.metadata["source_code_uri"] = "https://github.com/chhlga/open_api_rack"
19
+ spec.metadata["changelog_uri"] = "https://github.com/chhlga/open_api_rack/CHANGELOG.md"
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
24
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ end
26
+
27
+ spec.bindir = "exe"
28
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ["lib"]
30
+
31
+ # Uncomment to register a new dependency of your gem
32
+ # spec.add_dependency "example-gem", "~> 1.0"
33
+
34
+ # For more information and examples about making a new gem, checkout our
35
+ # guide at: https://bundler.io/guides/creating_gem.html
36
+ end
@@ -0,0 +1,4 @@
1
+ module OpenApiRack
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: open_api_rack
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.3
5
+ platform: ruby
6
+ authors:
7
+ - Olga Leonteva
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-10-23 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Generate your own shiny OpenAPI 3.0.0 documentation from Rspec request
14
+ specs
15
+ email:
16
+ - youzik@me.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - ".gitignore"
22
+ - CHANGELOG.md
23
+ - CODE_OF_CONDUCT.md
24
+ - Gemfile
25
+ - Gemfile.lock
26
+ - LICENSE.txt
27
+ - README.md
28
+ - Rakefile
29
+ - bin/console
30
+ - bin/setup
31
+ - lib/open_api_rack.rb
32
+ - lib/open_api_rack/configuration.rb
33
+ - lib/open_api_rack/middleware.rb
34
+ - lib/open_api_rack/version.rb
35
+ - open_api_rack.gemspec
36
+ - sig/open_api_rack.rbs
37
+ homepage: https://github.com/chhlga/open_api_rack
38
+ licenses:
39
+ - MIT
40
+ metadata:
41
+ homepage_uri: https://github.com/chhlga/open_api_rack
42
+ source_code_uri: https://github.com/chhlga/open_api_rack
43
+ changelog_uri: https://github.com/chhlga/open_api_rack/CHANGELOG.md
44
+ post_install_message:
45
+ rdoc_options: []
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 2.6.0
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ requirements: []
59
+ rubygems_version: 3.2.33
60
+ signing_key:
61
+ specification_version: 4
62
+ summary: OpenAPI 3.0.0 documentation generator
63
+ test_files: []