jsonapi-swagger-blocks-generator 0.1.1
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 +7 -0
- data/.gitignore +12 -0
- data/.rspec +3 -0
- data/.rubocop.yml +267 -0
- data/.simplecov +5 -0
- data/.travis.yml +16 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +14 -0
- data/Gemfile.lock +137 -0
- data/LICENSE.txt +21 -0
- data/README.md +65 -0
- data/Rakefile +8 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/jsonapi-swagger-blocks-generator.gemspec +29 -0
- data/lib/generators/jsonapi/USAGE +9 -0
- data/lib/generators/jsonapi/swagger_blocks_generator.rb +30 -0
- data/lib/generators/jsonapi/templates/controller_template.template +671 -0
- data/lib/generators/jsonapi/templates/model_template.template +352 -0
- data/lib/jsonapi/swagger/blocks/generator.rb +8 -0
- data/lib/jsonapi/swagger/blocks/generator/version.rb +11 -0
- metadata +107 -0
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Gleydson Tavares
|
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,65 @@
|
|
1
|
+
# JSONAPI Swagger Blocks Generator
|
2
|
+
|
3
|
+
[](https://codeclimate.com/github/g13ydson/jsonapi-swagger-blocks-generator/maintainability) <a href="https://codeclimate.com/github/g13ydson/jsonapi-swagger-blocks-generator/test_coverage"><img src="https://api.codeclimate.com/v1/badges/2de3e3c4e8fb1543a687/test_coverage" /></a> [](https://travis-ci.org/g13ydson/jsonapi-swagger-blocks-generator)
|
4
|
+
|
5
|
+
creates swagger blocks files based on the JSONAPI::Resource file http://jsonapi-resources.com/
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'jsonapi-swagger-blocks-generator'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install jsonapi-swagger-blocks-generator
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
$ rails g jsonapi:swagger_blocks User
|
26
|
+
|
27
|
+
or specifying the namespace of the resources folder
|
28
|
+
|
29
|
+
$ rails g jsonapi:swagger_blocks User Api::V1
|
30
|
+
|
31
|
+
|
32
|
+
## Contributing
|
33
|
+
|
34
|
+
# Contributing to JSONAPI Swagger blocks generator
|
35
|
+
|
36
|
+
We are following the Gitflow workflow. The active development branch is [dev](https://github.com/g13ydson/jsonapi-swagger-blocks-generator/tree/dev), the stable branch is [master](https://github.com/g13ydson/jsonapi-swagger-blocks-generator/tree/master).
|
37
|
+
|
38
|
+
Contributions will be accepted to the [dev](https://github.com/g13ydson/jsonapi-swagger-blocks-generator/tree/dev) only.
|
39
|
+
|
40
|
+
## How to provide a patch for a new feature
|
41
|
+
|
42
|
+
1. If it is a major feature, please create an [Issue]( https://github.com/g13ydson/jsonapi-swagger-blocks-generator/issues ) and discuss with the project leaders.
|
43
|
+
|
44
|
+
2. If in step 1 you get an acknowledge from the project leaders, use the
|
45
|
+
following procedure to submit a patch:
|
46
|
+
|
47
|
+
a. Fork Fast JSONAPI Swagger blocks generator on github ( http://help.github.com/fork-a-repo/ )
|
48
|
+
|
49
|
+
b. Create a topic branch (git checkout -b my_branch)
|
50
|
+
|
51
|
+
c. Push to your branch (git push origin my_branch)
|
52
|
+
|
53
|
+
d. Initiate a pull request on github ( http://help.github.com/send-pull-requests/ )
|
54
|
+
|
55
|
+
e. Done :)
|
56
|
+
|
57
|
+
3. Run the tests. We only take pull requests with passing tests.
|
58
|
+
|
59
|
+
## License
|
60
|
+
|
61
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
62
|
+
|
63
|
+
## Code of Conduct
|
64
|
+
|
65
|
+
Everyone interacting in the SwaggerBlocksGenerator project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/g13ydson/jsonapi-swagger-blocks-generator/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
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 "jsonapi/swagger/blocks/generator"
|
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,29 @@
|
|
1
|
+
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
lib = File.expand_path("lib", __dir__)
|
5
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
6
|
+
require "jsonapi/swagger/blocks/generator/version"
|
7
|
+
|
8
|
+
Gem::Specification.new do |spec|
|
9
|
+
spec.name = "jsonapi-swagger-blocks-generator"
|
10
|
+
spec.version = Jsonapi::Swagger::Blocks::Generator::VERSION
|
11
|
+
spec.authors = ["Gleydson Tavares"]
|
12
|
+
spec.email = ["tavares.gleydson@gmail.com"]
|
13
|
+
|
14
|
+
spec.summary = "creates swagger blocks files based on the JSONAPI::Resource"
|
15
|
+
spec.description = "The swagger-bloks files are created based on the JSONAPI::Resources files. To use this gem, you need to have jsonapi-resources gem installed."
|
16
|
+
spec.homepage = "https://github.com/g13ydson/jsonapi-swagger-blocks-generator"
|
17
|
+
spec.license = "MIT"
|
18
|
+
|
19
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
20
|
+
f.match(%r{^(test|spec|features)/})
|
21
|
+
end
|
22
|
+
spec.bindir = "exe"
|
23
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
|
+
spec.require_paths = ["lib"]
|
25
|
+
|
26
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
27
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
28
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
29
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Jsonapi
|
4
|
+
module Generators
|
5
|
+
class SwaggerBlocksGenerator < Rails::Generators::Base
|
6
|
+
source_root File.expand_path("templates", __dir__)
|
7
|
+
argument :model, type: :string, banner: "resource", desc: "Resource file generated by JSONAPI::Resources gem"
|
8
|
+
argument :namespace, type: :string, default: "", desc: "namespace where the Resource files are located"
|
9
|
+
|
10
|
+
def generate_documentation
|
11
|
+
model_name = model.to_s.split("::").last || model
|
12
|
+
Object.const_get("#{namespace}::#{model_name.camelcase}Resource").is_a?(Class)
|
13
|
+
generate_model_template
|
14
|
+
generate_controller_template
|
15
|
+
rescue Exception => e
|
16
|
+
p e.message
|
17
|
+
end
|
18
|
+
|
19
|
+
private
|
20
|
+
|
21
|
+
def generate_model_template
|
22
|
+
template "model_template.template", "app/docs/#{model.underscore}.rb"
|
23
|
+
end
|
24
|
+
|
25
|
+
def generate_controller_template
|
26
|
+
template "controller_template.template", "app/docs/#{model.underscore.pluralize}_controller.rb"
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,671 @@
|
|
1
|
+
class <%= model.pluralize.camelcase %>Controller
|
2
|
+
include Swagger::Blocks
|
3
|
+
<%- model_name = "#{model}".split("::").last || model -%>
|
4
|
+
|
5
|
+
swagger_path "/<%= model_name.pluralize.underscore %>" do
|
6
|
+
operation :get do
|
7
|
+
key :summary, "Index <%= model_name.pluralize.underscore %>"
|
8
|
+
key :produces, [
|
9
|
+
"application/json"
|
10
|
+
]
|
11
|
+
key :tags, [
|
12
|
+
"<%= model_name.singularize.underscore %>"
|
13
|
+
]
|
14
|
+
response 200 do
|
15
|
+
key :description, "List of all <%= model_name.pluralize.underscore %>"
|
16
|
+
schema do
|
17
|
+
key :"$ref", :<%= model_name.singularize.underscore %>_index_response
|
18
|
+
end
|
19
|
+
end
|
20
|
+
response 401 do
|
21
|
+
key :description, "Unauthorized"
|
22
|
+
end
|
23
|
+
response 404 do
|
24
|
+
key :description, "Not Found"
|
25
|
+
end
|
26
|
+
response :default do
|
27
|
+
key :description, "Unexpected error"
|
28
|
+
schema do
|
29
|
+
property :errors do
|
30
|
+
property :status do
|
31
|
+
key :type, :integer
|
32
|
+
end
|
33
|
+
property :source do
|
34
|
+
key :type, :string
|
35
|
+
end
|
36
|
+
property :detail do
|
37
|
+
key :type, :string
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
swagger_path "/<%= model_name.pluralize.underscore %>/{id}" do
|
46
|
+
operation :get do
|
47
|
+
key :summary, "Show <%= model_name.singularize.underscore %>"
|
48
|
+
key :produces, [
|
49
|
+
"application/json"
|
50
|
+
]
|
51
|
+
key :tags, [
|
52
|
+
"<%= model_name.singularize.underscore %>"
|
53
|
+
]
|
54
|
+
parameter do
|
55
|
+
key :name, :id
|
56
|
+
key :in, :path
|
57
|
+
key :description, "id of <%= model_name.singularize.underscore %>"
|
58
|
+
key :required, true
|
59
|
+
key :type, :integer
|
60
|
+
end
|
61
|
+
response 200 do
|
62
|
+
key :description, "Show <%= model_name.singularize.underscore %>"
|
63
|
+
schema do
|
64
|
+
key :"$ref", :<%= model_name.singularize.underscore %>_show_response
|
65
|
+
end
|
66
|
+
end
|
67
|
+
response 401 do
|
68
|
+
key :description, "Unauthorized"
|
69
|
+
end
|
70
|
+
response 404 do
|
71
|
+
key :description, "Not Found"
|
72
|
+
end
|
73
|
+
response :default do
|
74
|
+
key :description, "Unexpected error"
|
75
|
+
schema do
|
76
|
+
property :errors do
|
77
|
+
property :status do
|
78
|
+
key :type, :integer
|
79
|
+
end
|
80
|
+
property :source do
|
81
|
+
key :type, :string
|
82
|
+
end
|
83
|
+
property :detail do
|
84
|
+
key :type, :string
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
swagger_path "/<%= model_name.pluralize.underscore %>" do
|
93
|
+
operation :post do
|
94
|
+
key :summary, "Create <%= model_name.singularize.underscore %>"
|
95
|
+
key :produces, [
|
96
|
+
"application/json"
|
97
|
+
]
|
98
|
+
key :tags, [
|
99
|
+
"<%= model_name.singularize.underscore %>"
|
100
|
+
]
|
101
|
+
parameter do
|
102
|
+
key :name, :<%= model_name.singularize.underscore %>_params
|
103
|
+
key :in, :body
|
104
|
+
key :required, true
|
105
|
+
schema do
|
106
|
+
key :"$ref", :create_<%= model_name.singularize.underscore %>
|
107
|
+
end
|
108
|
+
end
|
109
|
+
response 201 do
|
110
|
+
key :description, "<%= model_name.singularize.underscore %>"
|
111
|
+
schema do
|
112
|
+
key :"$ref", :<%= model_name.singularize.underscore %>_create_response
|
113
|
+
end
|
114
|
+
end
|
115
|
+
response 401 do
|
116
|
+
key :description, "Unauthorized"
|
117
|
+
end
|
118
|
+
response 403 do
|
119
|
+
key :description, "Forbidden"
|
120
|
+
schema do
|
121
|
+
property :errors do
|
122
|
+
property :status do
|
123
|
+
key :type, :integer
|
124
|
+
end
|
125
|
+
property :source do
|
126
|
+
key :type, :string
|
127
|
+
end
|
128
|
+
property :detail do
|
129
|
+
key :type, :string
|
130
|
+
end
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
134
|
+
response :default do
|
135
|
+
key :description, "Unexpected error"
|
136
|
+
schema do
|
137
|
+
property :errors do
|
138
|
+
property :status do
|
139
|
+
key :type, :integer
|
140
|
+
end
|
141
|
+
property :source do
|
142
|
+
key :type, :string
|
143
|
+
end
|
144
|
+
property :detail do
|
145
|
+
key :type, :string
|
146
|
+
end
|
147
|
+
end
|
148
|
+
end
|
149
|
+
end
|
150
|
+
end
|
151
|
+
end
|
152
|
+
|
153
|
+
swagger_path "/<%= model_name.pluralize.underscore %>/{id}" do
|
154
|
+
operation :put do
|
155
|
+
key :summary, "Update <%= model_name.singularize.underscore %>"
|
156
|
+
key :produces, [
|
157
|
+
"application/json"
|
158
|
+
]
|
159
|
+
key :tags, [
|
160
|
+
"<%= model_name.singularize.underscore %>"
|
161
|
+
]
|
162
|
+
parameter do
|
163
|
+
key :name, :id
|
164
|
+
key :in, :path
|
165
|
+
key :description, "id of <%= model_name.singularize.underscore %>"
|
166
|
+
key :required, true
|
167
|
+
key :type, :integer
|
168
|
+
end
|
169
|
+
parameter do
|
170
|
+
key :name, :<%= model_name.singularize.underscore %>_params
|
171
|
+
key :in, :body
|
172
|
+
key :required, true
|
173
|
+
schema do
|
174
|
+
key :"$ref", :update_<%= model_name.singularize.underscore %>
|
175
|
+
end
|
176
|
+
end
|
177
|
+
response 200 do
|
178
|
+
key :description, "<%= model_name.singularize.underscore %>"
|
179
|
+
schema do
|
180
|
+
key :"$ref", :<%= model_name.singularize.underscore %>_create_response
|
181
|
+
end
|
182
|
+
end
|
183
|
+
response 401 do
|
184
|
+
key :description, "Unauthorized"
|
185
|
+
end
|
186
|
+
response 202 do
|
187
|
+
key :description, "Accepted"
|
188
|
+
end
|
189
|
+
response 204 do
|
190
|
+
key :description, "No Content"
|
191
|
+
end
|
192
|
+
response 403 do
|
193
|
+
key :description, "Forbidden"
|
194
|
+
end
|
195
|
+
response 404 do
|
196
|
+
key :description, "Not Found"
|
197
|
+
end
|
198
|
+
response 409 do
|
199
|
+
key :description, "Conflict"
|
200
|
+
end
|
201
|
+
response :default do
|
202
|
+
key :description, "Unexpected error"
|
203
|
+
schema do
|
204
|
+
property :errors do
|
205
|
+
property :status do
|
206
|
+
key :type, :integer
|
207
|
+
end
|
208
|
+
property :source do
|
209
|
+
key :type, :string
|
210
|
+
end
|
211
|
+
property :detail do
|
212
|
+
key :type, :string
|
213
|
+
end
|
214
|
+
end
|
215
|
+
end
|
216
|
+
end
|
217
|
+
end
|
218
|
+
end
|
219
|
+
|
220
|
+
swagger_path "/<%= model_name.pluralize.underscore %>/{id}" do
|
221
|
+
operation :patch do
|
222
|
+
key :summary, "Update <%= model_name.singularize.underscore %>"
|
223
|
+
key :produces, [
|
224
|
+
"application/json"
|
225
|
+
]
|
226
|
+
key :tags, [
|
227
|
+
"<%= model_name.singularize.underscore %>"
|
228
|
+
]
|
229
|
+
parameter do
|
230
|
+
key :name, :id
|
231
|
+
key :in, :path
|
232
|
+
key :description, "id of <%= model_name.singularize.underscore %>"
|
233
|
+
key :required, true
|
234
|
+
key :type, :integer
|
235
|
+
end
|
236
|
+
parameter do
|
237
|
+
key :name, :<%= model_name.singularize.underscore %>_params
|
238
|
+
key :in, :body
|
239
|
+
key :required, true
|
240
|
+
schema do
|
241
|
+
key :"$ref", :update_<%= model_name.singularize.underscore %>
|
242
|
+
end
|
243
|
+
end
|
244
|
+
response 200 do
|
245
|
+
key :description, "<%= model_name.singularize.underscore %>"
|
246
|
+
schema do
|
247
|
+
key :"$ref", :<%= model_name.singularize.underscore %>_create_response
|
248
|
+
end
|
249
|
+
end
|
250
|
+
response 401 do
|
251
|
+
key :description, "Unauthorized"
|
252
|
+
end
|
253
|
+
response 202 do
|
254
|
+
key :description, "Accepted"
|
255
|
+
end
|
256
|
+
response 204 do
|
257
|
+
key :description, "No Content"
|
258
|
+
end
|
259
|
+
response 403 do
|
260
|
+
key :description, "Forbidden"
|
261
|
+
end
|
262
|
+
response 404 do
|
263
|
+
key :description, "Not Found"
|
264
|
+
end
|
265
|
+
response 409 do
|
266
|
+
key :description, "Conflict"
|
267
|
+
end
|
268
|
+
response :default do
|
269
|
+
key :description, "Unexpected error"
|
270
|
+
schema do
|
271
|
+
property :errors do
|
272
|
+
property :status do
|
273
|
+
key :type, :integer
|
274
|
+
end
|
275
|
+
property :source do
|
276
|
+
key :type, :string
|
277
|
+
end
|
278
|
+
property :detail do
|
279
|
+
key :type, :string
|
280
|
+
end
|
281
|
+
end
|
282
|
+
end
|
283
|
+
end
|
284
|
+
end
|
285
|
+
end
|
286
|
+
|
287
|
+
swagger_path "/<%= model_name.pluralize.underscore %>/{id}" do
|
288
|
+
operation :delete do
|
289
|
+
key :summary, "Delete <%= model_name.singularize.underscore %>"
|
290
|
+
key :produces, [
|
291
|
+
"application/json"
|
292
|
+
]
|
293
|
+
key :tags, [
|
294
|
+
"<%= model_name.singularize.underscore %>"
|
295
|
+
]
|
296
|
+
parameter do
|
297
|
+
key :name, :id
|
298
|
+
key :in, :path
|
299
|
+
key :description, "id of <%= model_name.singularize.underscore %>"
|
300
|
+
key :required, true
|
301
|
+
key :type, :integer
|
302
|
+
end
|
303
|
+
response 200 do
|
304
|
+
key :description, "Ok"
|
305
|
+
end
|
306
|
+
response 202 do
|
307
|
+
key :description, "Accepted"
|
308
|
+
end
|
309
|
+
response 204 do
|
310
|
+
key :description, "No Content"
|
311
|
+
end
|
312
|
+
response 404 do
|
313
|
+
key :description, "Not Found"
|
314
|
+
end
|
315
|
+
response 401 do
|
316
|
+
key :description, "Unauthorized"
|
317
|
+
end
|
318
|
+
response :default do
|
319
|
+
key :description, "Unexpected error"
|
320
|
+
schema do
|
321
|
+
property :errors do
|
322
|
+
property :status do
|
323
|
+
key :type, :integer
|
324
|
+
end
|
325
|
+
property :source do
|
326
|
+
key :type, :string
|
327
|
+
end
|
328
|
+
property :detail do
|
329
|
+
key :type, :string
|
330
|
+
end
|
331
|
+
end
|
332
|
+
end
|
333
|
+
end
|
334
|
+
end
|
335
|
+
end
|
336
|
+
<%- relationships = "#{namespace}::#{model_name.camelcase}Resource".constantize._relationships -%>
|
337
|
+
<%- if relationships -%>
|
338
|
+
<%- relationships.keys.each do |relationship| -%>
|
339
|
+
|
340
|
+
swagger_path "/<%= model_name.pluralize.underscore %>/{<%= model_name.singularize.underscore %>_id}/<%= relationship %>" do
|
341
|
+
operation :get do
|
342
|
+
key :summary, "Show <%= relationship %> from <%= model_name.singularize.underscore %>"
|
343
|
+
key :produces, [
|
344
|
+
"application/json"
|
345
|
+
]
|
346
|
+
key :tags, [
|
347
|
+
"<%= model_name.singularize.underscore %>"
|
348
|
+
]
|
349
|
+
response 200 do
|
350
|
+
key :description, "Show <%= relationship %> from <%= model_name.singularize.underscore %>"
|
351
|
+
schema do
|
352
|
+
key :"$ref", :show_<%= relationship %>_from_<%= model_name.singularize.underscore %>_response
|
353
|
+
end
|
354
|
+
end
|
355
|
+
response 401 do
|
356
|
+
key :description, "Unauthorized"
|
357
|
+
end
|
358
|
+
response 403 do
|
359
|
+
key :description, "Forbidden"
|
360
|
+
schema do
|
361
|
+
property :errors do
|
362
|
+
property :status do
|
363
|
+
key :type, :integer
|
364
|
+
end
|
365
|
+
property :source do
|
366
|
+
key :type, :string
|
367
|
+
end
|
368
|
+
property :detail do
|
369
|
+
key :type, :string
|
370
|
+
end
|
371
|
+
end
|
372
|
+
end
|
373
|
+
end
|
374
|
+
response 404 do
|
375
|
+
key :description, "Not Found"
|
376
|
+
end
|
377
|
+
response :default do
|
378
|
+
key :description, "Unexpected error"
|
379
|
+
schema do
|
380
|
+
property :errors do
|
381
|
+
property :status do
|
382
|
+
key :type, :integer
|
383
|
+
end
|
384
|
+
property :source do
|
385
|
+
key :type, :string
|
386
|
+
end
|
387
|
+
property :detail do
|
388
|
+
key :type, :string
|
389
|
+
end
|
390
|
+
end
|
391
|
+
end
|
392
|
+
end
|
393
|
+
end
|
394
|
+
end
|
395
|
+
|
396
|
+
swagger_path "/<%= model_name.pluralize.underscore %>/{id}/relationships/<%= relationship %>" do
|
397
|
+
operation :get do
|
398
|
+
key :summary, "Show <%= relationship %> from <%= model_name.singularize.underscore %>"
|
399
|
+
key :produces, [
|
400
|
+
"application/json"
|
401
|
+
]
|
402
|
+
key :tags, [
|
403
|
+
"<%= model_name.singularize.underscore %>"
|
404
|
+
]
|
405
|
+
parameter do
|
406
|
+
key :name, :id
|
407
|
+
key :in, :path
|
408
|
+
key :description, "id of <%= model_name.singularize.underscore %>"
|
409
|
+
key :required, true
|
410
|
+
key :type, :integer
|
411
|
+
end
|
412
|
+
response 200 do
|
413
|
+
key :description, "Show <%= relationship %> from <%= model_name.singularize.underscore %>"
|
414
|
+
schema do
|
415
|
+
key :"$ref", :show_<%= relationship %>_from_<%= model_name.singularize.underscore %>_relation_response
|
416
|
+
end
|
417
|
+
end
|
418
|
+
response 401 do
|
419
|
+
key :description, "Unauthorized"
|
420
|
+
schema do
|
421
|
+
property :errors do
|
422
|
+
property :status do
|
423
|
+
key :type, :integer
|
424
|
+
end
|
425
|
+
property :source do
|
426
|
+
key :type, :string
|
427
|
+
end
|
428
|
+
property :detail do
|
429
|
+
key :type, :string
|
430
|
+
end
|
431
|
+
end
|
432
|
+
end
|
433
|
+
end
|
434
|
+
response 403 do
|
435
|
+
key :description, "Forbidden"
|
436
|
+
schema do
|
437
|
+
property :errors do
|
438
|
+
property :status do
|
439
|
+
key :type, :integer
|
440
|
+
end
|
441
|
+
property :source do
|
442
|
+
key :type, :string
|
443
|
+
end
|
444
|
+
property :detail do
|
445
|
+
key :type, :string
|
446
|
+
end
|
447
|
+
end
|
448
|
+
end
|
449
|
+
end
|
450
|
+
response :default do
|
451
|
+
key :description, "Unexpected error"
|
452
|
+
schema do
|
453
|
+
property :errors do
|
454
|
+
property :status do
|
455
|
+
key :type, :integer
|
456
|
+
end
|
457
|
+
property :source do
|
458
|
+
key :type, :string
|
459
|
+
end
|
460
|
+
property :detail do
|
461
|
+
key :type, :string
|
462
|
+
end
|
463
|
+
end
|
464
|
+
end
|
465
|
+
end
|
466
|
+
end
|
467
|
+
end
|
468
|
+
|
469
|
+
swagger_path "/<%= model_name.pluralize.underscore %>/{id}/relationships/<%= relationship %>" do
|
470
|
+
operation :put do
|
471
|
+
key :summary, "Update <%= relationship %> from <%= model_name.singularize.underscore %>"
|
472
|
+
key :produces, [
|
473
|
+
"application/json"
|
474
|
+
]
|
475
|
+
key :tags, [
|
476
|
+
"<%= model_name.singularize.underscore %>"
|
477
|
+
]
|
478
|
+
parameter do
|
479
|
+
key :name, :id
|
480
|
+
key :in, :path
|
481
|
+
key :description, "id of <%= model_name.singularize.underscore %>"
|
482
|
+
key :required, true
|
483
|
+
key :type, :integer
|
484
|
+
end
|
485
|
+
response 200 do
|
486
|
+
key :description, "Update <%= relationship %> from <%= model_name.singularize.underscore %>"
|
487
|
+
schema do
|
488
|
+
key :"$ref", :update_<%= relationship %>_from_<%= model_name.singularize.underscore %>_relation_response
|
489
|
+
end
|
490
|
+
end
|
491
|
+
response 202 do
|
492
|
+
key :description, "Accepted"
|
493
|
+
end
|
494
|
+
response 204 do
|
495
|
+
key :description, "No Content"
|
496
|
+
end
|
497
|
+
response 401 do
|
498
|
+
key :description, "Unauthorized"
|
499
|
+
end
|
500
|
+
response 403 do
|
501
|
+
key :description, "Forbidden"
|
502
|
+
schema do
|
503
|
+
property :errors do
|
504
|
+
property :status do
|
505
|
+
key :type, :integer
|
506
|
+
end
|
507
|
+
property :source do
|
508
|
+
key :type, :string
|
509
|
+
end
|
510
|
+
property :detail do
|
511
|
+
key :type, :string
|
512
|
+
end
|
513
|
+
end
|
514
|
+
end
|
515
|
+
end
|
516
|
+
response :default do
|
517
|
+
key :description, "Unexpected error"
|
518
|
+
schema do
|
519
|
+
property :errors do
|
520
|
+
property :status do
|
521
|
+
key :type, :integer
|
522
|
+
end
|
523
|
+
property :source do
|
524
|
+
key :type, :string
|
525
|
+
end
|
526
|
+
property :detail do
|
527
|
+
key :type, :string
|
528
|
+
end
|
529
|
+
end
|
530
|
+
end
|
531
|
+
end
|
532
|
+
end
|
533
|
+
end
|
534
|
+
|
535
|
+
swagger_path "/<%= model_name.pluralize.underscore %>/{id}/relationships/<%= relationship %>" do
|
536
|
+
operation :post do
|
537
|
+
key :summary, "Update <%= relationship %> from <%= model_name.singularize.underscore %>"
|
538
|
+
key :produces, [
|
539
|
+
"application/json"
|
540
|
+
]
|
541
|
+
key :tags, [
|
542
|
+
"<%= model_name.singularize.underscore %>"
|
543
|
+
]
|
544
|
+
parameter do
|
545
|
+
key :name, :id
|
546
|
+
key :in, :path
|
547
|
+
key :description, "id of <%= model_name.singularize.underscore %>"
|
548
|
+
key :required, true
|
549
|
+
key :type, :integer
|
550
|
+
end
|
551
|
+
response 200 do
|
552
|
+
key :description, "Update <%= relationship %> from <%= model_name.singularize.underscore %>"
|
553
|
+
schema do
|
554
|
+
key :"$ref", :update_<%= relationship %>_from_<%= model_name.singularize.underscore %>_relation_response
|
555
|
+
end
|
556
|
+
end
|
557
|
+
response 202 do
|
558
|
+
key :description, "Accepted"
|
559
|
+
end
|
560
|
+
response 204 do
|
561
|
+
key :description, "No Content"
|
562
|
+
end
|
563
|
+
response 401 do
|
564
|
+
key :description, "Unauthorized"
|
565
|
+
end
|
566
|
+
response 403 do
|
567
|
+
key :description, "Forbidden"
|
568
|
+
schema do
|
569
|
+
property :errors do
|
570
|
+
property :status do
|
571
|
+
key :type, :integer
|
572
|
+
end
|
573
|
+
property :source do
|
574
|
+
key :type, :string
|
575
|
+
end
|
576
|
+
property :detail do
|
577
|
+
key :type, :string
|
578
|
+
end
|
579
|
+
end
|
580
|
+
end
|
581
|
+
end
|
582
|
+
response :default do
|
583
|
+
key :description, "Unexpected error"
|
584
|
+
schema do
|
585
|
+
property :errors do
|
586
|
+
property :status do
|
587
|
+
key :type, :integer
|
588
|
+
end
|
589
|
+
property :source do
|
590
|
+
key :type, :string
|
591
|
+
end
|
592
|
+
property :detail do
|
593
|
+
key :type, :string
|
594
|
+
end
|
595
|
+
end
|
596
|
+
end
|
597
|
+
end
|
598
|
+
end
|
599
|
+
end
|
600
|
+
|
601
|
+
swagger_path "/<%= model_name.pluralize.underscore %>/{id}/relationships/<%= relationship %>" do
|
602
|
+
operation :delete do
|
603
|
+
key :summary, "Delete <%= relationship %> from <%= model_name.singularize.underscore %>"
|
604
|
+
key :produces, [
|
605
|
+
"application/json"
|
606
|
+
]
|
607
|
+
key :tags, [
|
608
|
+
"<%= model_name.singularize.underscore %>"
|
609
|
+
]
|
610
|
+
parameter do
|
611
|
+
key :name, :id
|
612
|
+
key :in, :path
|
613
|
+
key :description, "id of <%= model_name.singularize.underscore %>"
|
614
|
+
key :required, true
|
615
|
+
key :type, :integer
|
616
|
+
end
|
617
|
+
response 200 do
|
618
|
+
key :description, "Delete <%= relationship %> from <%= model_name.singularize.underscore %>"
|
619
|
+
schema do
|
620
|
+
key :"$ref", :delete_<%= relationship %>_from_<%= model_name.singularize.underscore %>_relation_response
|
621
|
+
end
|
622
|
+
end
|
623
|
+
response 202 do
|
624
|
+
key :description, "Accepted"
|
625
|
+
end
|
626
|
+
response 204 do
|
627
|
+
key :description, "No Content"
|
628
|
+
end
|
629
|
+
response 401 do
|
630
|
+
key :description, "Unauthorized"
|
631
|
+
end
|
632
|
+
response 404 do
|
633
|
+
key :description, "Not Found"
|
634
|
+
end
|
635
|
+
response 403 do
|
636
|
+
key :description, "Forbidden"
|
637
|
+
schema do
|
638
|
+
property :errors do
|
639
|
+
property :status do
|
640
|
+
key :type, :integer
|
641
|
+
end
|
642
|
+
property :source do
|
643
|
+
key :type, :string
|
644
|
+
end
|
645
|
+
property :detail do
|
646
|
+
key :type, :string
|
647
|
+
end
|
648
|
+
end
|
649
|
+
end
|
650
|
+
end
|
651
|
+
response :default do
|
652
|
+
key :description, "Unexpected error"
|
653
|
+
schema do
|
654
|
+
property :errors do
|
655
|
+
property :status do
|
656
|
+
key :type, :integer
|
657
|
+
end
|
658
|
+
property :source do
|
659
|
+
key :type, :string
|
660
|
+
end
|
661
|
+
property :detail do
|
662
|
+
key :type, :string
|
663
|
+
end
|
664
|
+
end
|
665
|
+
end
|
666
|
+
end
|
667
|
+
end
|
668
|
+
end
|
669
|
+
<%- end -%>
|
670
|
+
<%- end -%>
|
671
|
+
end
|