metatron_ruby_client 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (116) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +140 -0
  3. data/config.json +13 -0
  4. data/docs/Asset.md +9 -0
  5. data/docs/AssetAttributes.md +8 -0
  6. data/docs/AssetData.md +10 -0
  7. data/docs/AssetMeta.md +8 -0
  8. data/docs/AssetResultSet.md +10 -0
  9. data/docs/AssetResultSetMeta.md +8 -0
  10. data/docs/DefaultApi.md +631 -0
  11. data/docs/Error.md +10 -0
  12. data/docs/Errors.md +8 -0
  13. data/docs/Item.md +9 -0
  14. data/docs/ItemData.md +8 -0
  15. data/docs/ItemResultSet.md +10 -0
  16. data/docs/Links.md +10 -0
  17. data/docs/Manifestation.md +9 -0
  18. data/docs/ManifestationAttributes.md +11 -0
  19. data/docs/ManifestationData.md +11 -0
  20. data/docs/ManifestationRelationships.md +10 -0
  21. data/docs/ManifestationResultSet.md +10 -0
  22. data/docs/Meta.md +10 -0
  23. data/docs/OneToManyRelationship.md +10 -0
  24. data/docs/OneToOneRelationship.md +10 -0
  25. data/docs/Resource.md +10 -0
  26. data/docs/ResourceData.md +11 -0
  27. data/docs/ResourceLink.md +9 -0
  28. data/docs/ResultSetMeta.md +10 -0
  29. data/docs/Work.md +9 -0
  30. data/docs/WorkAttributes.md +8 -0
  31. data/docs/WorkData.md +11 -0
  32. data/docs/WorkRelationships.md +8 -0
  33. data/docs/WorkResultSet.md +11 -0
  34. data/generate.sh +0 -0
  35. data/git_push.sh +52 -0
  36. data/lib/metatron_ruby_client/api/default_api.rb +727 -0
  37. data/lib/metatron_ruby_client/api_client.rb +361 -0
  38. data/lib/metatron_ruby_client/api_error.rb +34 -0
  39. data/lib/metatron_ruby_client/configuration.rb +170 -0
  40. data/lib/metatron_ruby_client/models/asset.rb +195 -0
  41. data/lib/metatron_ruby_client/models/asset_attributes.rb +212 -0
  42. data/lib/metatron_ruby_client/models/asset_data.rb +208 -0
  43. data/lib/metatron_ruby_client/models/asset_meta.rb +198 -0
  44. data/lib/metatron_ruby_client/models/asset_result_set.rb +202 -0
  45. data/lib/metatron_ruby_client/models/asset_result_set_meta.rb +196 -0
  46. data/lib/metatron_ruby_client/models/error.rb +208 -0
  47. data/lib/metatron_ruby_client/models/errors.rb +184 -0
  48. data/lib/metatron_ruby_client/models/item.rb +197 -0
  49. data/lib/metatron_ruby_client/models/item_data.rb +186 -0
  50. data/lib/metatron_ruby_client/models/item_result_set.rb +206 -0
  51. data/lib/metatron_ruby_client/models/links.rb +204 -0
  52. data/lib/metatron_ruby_client/models/manifestation.rb +197 -0
  53. data/lib/metatron_ruby_client/models/manifestation_attributes.rb +209 -0
  54. data/lib/metatron_ruby_client/models/manifestation_data.rb +235 -0
  55. data/lib/metatron_ruby_client/models/manifestation_relationships.rb +200 -0
  56. data/lib/metatron_ruby_client/models/manifestation_result_set.rb +214 -0
  57. data/lib/metatron_ruby_client/models/meta.rb +260 -0
  58. data/lib/metatron_ruby_client/models/one_to_many_relationship.rb +206 -0
  59. data/lib/metatron_ruby_client/models/one_to_one_relationship.rb +204 -0
  60. data/lib/metatron_ruby_client/models/resource.rb +281 -0
  61. data/lib/metatron_ruby_client/models/resource_data.rb +221 -0
  62. data/lib/metatron_ruby_client/models/resource_link.rb +199 -0
  63. data/lib/metatron_ruby_client/models/result_set_meta.rb +203 -0
  64. data/lib/metatron_ruby_client/models/work.rb +197 -0
  65. data/lib/metatron_ruby_client/models/work_attributes.rb +186 -0
  66. data/lib/metatron_ruby_client/models/work_data.rb +235 -0
  67. data/lib/metatron_ruby_client/models/work_relationships.rb +182 -0
  68. data/lib/metatron_ruby_client/models/work_result_set.rb +213 -0
  69. data/lib/metatron_ruby_client/version.rb +13 -0
  70. data/lib/metatron_ruby_client.rb +60 -0
  71. data/metatron_ruby_client.gemspec +31 -0
  72. data/spec/api/default_api_spec.rb +218 -0
  73. data/spec/models/asset_attributes_spec.rb +46 -0
  74. data/spec/models/asset_data_spec.rb +66 -0
  75. data/spec/models/asset_meta_spec.rb +46 -0
  76. data/spec/models/asset_result_set_spec.rb +66 -0
  77. data/spec/models/asset_spec.rb +56 -0
  78. data/spec/models/error_spec.rb +66 -0
  79. data/spec/models/errors_spec.rb +46 -0
  80. data/spec/models/item_data_spec.rb +46 -0
  81. data/spec/models/item_result_set_spec.rb +66 -0
  82. data/spec/models/item_spec.rb +56 -0
  83. data/spec/models/links_spec.rb +66 -0
  84. data/spec/models/manifestation_attributes_spec.rb +76 -0
  85. data/spec/models/manifestation_data_spec.rb +76 -0
  86. data/spec/models/manifestation_relationships_spec.rb +66 -0
  87. data/spec/models/manifestation_result_set_spec.rb +66 -0
  88. data/spec/models/manifestation_spec.rb +56 -0
  89. data/spec/models/meta_spec.rb +66 -0
  90. data/spec/models/one_to_many_relationship_spec.rb +66 -0
  91. data/spec/models/one_to_one_relationship_spec.rb +66 -0
  92. data/spec/models/resource_data_spec.rb +76 -0
  93. data/spec/models/resource_link_spec.rb +56 -0
  94. data/spec/models/resource_spec.rb +66 -0
  95. data/spec/models/result_set_meta_spec.rb +66 -0
  96. data/spec/models/work_attributes_spec.rb +46 -0
  97. data/spec/models/work_data_spec.rb +76 -0
  98. data/spec/models/work_relationships_spec.rb +46 -0
  99. data/spec/models/work_result_set_spec.rb +76 -0
  100. data/spec/models/work_spec.rb +56 -0
  101. data/stub-service/.swagger-codegen-ignore +23 -0
  102. data/stub-service/Gemfile +4 -0
  103. data/stub-service/Gemfile.lock +22 -0
  104. data/stub-service/LICENSE +201 -0
  105. data/stub-service/README.md +29 -0
  106. data/stub-service/api/default_api.rb +370 -0
  107. data/stub-service/config.ru +2 -0
  108. data/stub-service/lib/result_set.rb +37 -0
  109. data/stub-service/lib/swaggering.rb +163 -0
  110. data/stub-service/my_app.rb +13 -0
  111. data/stub-service/responses/works/includes/manifestations.assets.yaml +42 -0
  112. data/stub-service/responses/works/includes/manifestations.yaml +88 -0
  113. data/stub-service/responses/works/result_set.yaml +18 -0
  114. data/stub-service/swagger.yaml +756 -0
  115. data/swagger-codegen-cli.jar +0 -0
  116. metadata +369 -0
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "{}"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright {yyyy} {name of copyright owner}
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,29 @@
1
+ # Swagger for Sinatra
2
+
3
+ ## Overview
4
+ This is a project to provide Swagger support inside the [Sinatra](http://www.sinatrarb.com/) framework. You can find
5
+ out more about both the spec and the framework at http://swagger.io. For more information about
6
+ Wordnik's APIs, please visit http://developer.wordnik.com.
7
+
8
+ ## Prerequisites
9
+ You need to install ruby 1.9.3 and the following gems:
10
+
11
+ ```
12
+ sinatra
13
+ sinatra-cross_origin
14
+ ```
15
+
16
+ ## Getting started
17
+ This sample was generated with the [swagger-codegen](https://github.com/swagger-api/swagger-codegen) project.
18
+
19
+ ```
20
+ rackup -p 4567 config.ru
21
+ ```
22
+
23
+ In your [swagger ui](https://github.com/swagger-api/swagger-ui), put in the following URL:
24
+
25
+ ```
26
+ http://localhost:4567/resources.json
27
+ ```
28
+
29
+ Voila!
@@ -0,0 +1,370 @@
1
+ require 'json'
2
+
3
+
4
+ MyApp.add_route('DELETE', '/2/assets/{assetType}/{assetId}', {
5
+ "resourcePath" => "/Default",
6
+ "summary" => "",
7
+ "nickname" => "2_assets_asset_type_asset_id_delete",
8
+ "responseClass" => "void",
9
+ "endpoint" => "/2/assets/{assetType}/{assetId}",
10
+ "notes" => "",
11
+ "parameters" => [
12
+ {
13
+ "name" => "asset_id",
14
+ "description" => "",
15
+ "dataType" => "string",
16
+ "paramType" => "path",
17
+ },
18
+ {
19
+ "name" => "asset_type",
20
+ "description" => "",
21
+ "dataType" => "string",
22
+ "paramType" => "path",
23
+ },
24
+ {
25
+ "name" => "authorization",
26
+ "description" => "",
27
+ "dataType" => "string",
28
+ "paramType" => "header",
29
+ },
30
+ ]}) do
31
+ cross_origin
32
+ # the guts live here
33
+
34
+ {"message" => "yes, it worked"}.to_json
35
+ end
36
+
37
+
38
+ MyApp.add_route('GET', '/2/manifestations', {
39
+ "resourcePath" => "/Default",
40
+ "summary" => "",
41
+ "nickname" => "2_manifestations_get",
42
+ "responseClass" => "ManifestationResultSet",
43
+ "endpoint" => "/2/manifestations",
44
+ "notes" => "",
45
+ "parameters" => [
46
+ {
47
+ "name" => "work_id",
48
+ "description" => "",
49
+ "dataType" => "string",
50
+ "paramType" => "query",
51
+
52
+ "allowableValues" => "",
53
+
54
+ },
55
+ {
56
+ "name" => "isbn",
57
+ "description" => "",
58
+ "dataType" => "string",
59
+ "paramType" => "query",
60
+
61
+ "allowableValues" => "",
62
+
63
+ },
64
+ {
65
+ "name" => "authorization",
66
+ "description" => "",
67
+ "dataType" => "string",
68
+ "paramType" => "header",
69
+ },
70
+ ]}) do
71
+ cross_origin
72
+ # the guts live here
73
+
74
+ {"message" => "yes, it worked"}.to_json
75
+ end
76
+
77
+
78
+ MyApp.add_route('GET', '/2/manifestations/{manifestationId}/assets', {
79
+ "resourcePath" => "/Default",
80
+ "summary" => "",
81
+ "nickname" => "2_manifestations_manifestation_id_assets_get",
82
+ "responseClass" => "AssetResultSet",
83
+ "endpoint" => "/2/manifestations/{manifestationId}/assets",
84
+ "notes" => "",
85
+ "parameters" => [
86
+ {
87
+ "name" => "manifestation_id",
88
+ "description" => "",
89
+ "dataType" => "string",
90
+ "paramType" => "path",
91
+ },
92
+ {
93
+ "name" => "authorization",
94
+ "description" => "",
95
+ "dataType" => "string",
96
+ "paramType" => "header",
97
+ },
98
+ ]}) do
99
+ cross_origin
100
+ # the guts live here
101
+
102
+ {"message" => "yes, it worked"}.to_json
103
+ end
104
+
105
+
106
+ MyApp.add_route('POST', '/2/manifestations/{manifestationId}/assets', {
107
+ "resourcePath" => "/Default",
108
+ "summary" => "",
109
+ "nickname" => "2_manifestations_manifestation_id_assets_post",
110
+ "responseClass" => "Asset",
111
+ "endpoint" => "/2/manifestations/{manifestationId}/assets",
112
+ "notes" => "",
113
+ "parameters" => [
114
+ {
115
+ "name" => "manifestation_id",
116
+ "description" => "",
117
+ "dataType" => "string",
118
+ "paramType" => "path",
119
+ },
120
+ {
121
+ "name" => "authorization",
122
+ "description" => "",
123
+ "dataType" => "string",
124
+ "paramType" => "header",
125
+ },
126
+ {
127
+ "name" => "body",
128
+ "description" => "",
129
+ "dataType" => "Asset",
130
+ "paramType" => "body",
131
+ }
132
+ ]}) do
133
+ cross_origin
134
+ # the guts live here
135
+
136
+ {"message" => "yes, it worked"}.to_json
137
+ end
138
+
139
+
140
+ MyApp.add_route('GET', '/2/manifestations/{manifestationId}', {
141
+ "resourcePath" => "/Default",
142
+ "summary" => "",
143
+ "nickname" => "2_manifestations_manifestation_id_get",
144
+ "responseClass" => "void",
145
+ "endpoint" => "/2/manifestations/{manifestationId}",
146
+ "notes" => "",
147
+ "parameters" => [
148
+ {
149
+ "name" => "manifestation_id",
150
+ "description" => "",
151
+ "dataType" => "string",
152
+ "paramType" => "path",
153
+ },
154
+ {
155
+ "name" => "authorization",
156
+ "description" => "",
157
+ "dataType" => "string",
158
+ "paramType" => "header",
159
+ },
160
+ ]}) do
161
+ cross_origin
162
+ # the guts live here
163
+
164
+ {"message" => "yes, it worked"}.to_json
165
+ end
166
+
167
+
168
+ MyApp.add_route('GET', '/2/manifestations/{manifestationId}/items/{tenantCode}', {
169
+ "resourcePath" => "/Default",
170
+ "summary" => "",
171
+ "nickname" => "2_manifestations_manifestation_id_items_tenant_code_get",
172
+ "responseClass" => "ItemResultSet",
173
+ "endpoint" => "/2/manifestations/{manifestationId}/items/{tenantCode}",
174
+ "notes" => "",
175
+ "parameters" => [
176
+ {
177
+ "name" => "manifestation_id",
178
+ "description" => "",
179
+ "dataType" => "string",
180
+ "paramType" => "path",
181
+ },
182
+ {
183
+ "name" => "tenant_code",
184
+ "description" => "",
185
+ "dataType" => "string",
186
+ "paramType" => "path",
187
+ },
188
+ {
189
+ "name" => "authorization",
190
+ "description" => "",
191
+ "dataType" => "string",
192
+ "paramType" => "header",
193
+ },
194
+ ]}) do
195
+ cross_origin
196
+ # the guts live here
197
+
198
+ {"message" => "yes, it worked"}.to_json
199
+ end
200
+
201
+
202
+ MyApp.add_route('GET', '/2/manifestations/{manifestationId}/works', {
203
+ "resourcePath" => "/Default",
204
+ "summary" => "",
205
+ "nickname" => "2_manifestations_manifestation_id_works_get",
206
+ "responseClass" => "void",
207
+ "endpoint" => "/2/manifestations/{manifestationId}/works",
208
+ "notes" => "",
209
+ "parameters" => [
210
+ {
211
+ "name" => "manifestation_id",
212
+ "description" => "",
213
+ "dataType" => "string",
214
+ "paramType" => "path",
215
+ },
216
+ {
217
+ "name" => "authorization",
218
+ "description" => "",
219
+ "dataType" => "string",
220
+ "paramType" => "header",
221
+ },
222
+ ]}) do
223
+ cross_origin
224
+ # the guts live here
225
+
226
+ {"message" => "yes, it worked"}.to_json
227
+ end
228
+
229
+
230
+ MyApp.add_route('GET', '/2/works', {
231
+ "resourcePath" => "/Default",
232
+ "summary" => "",
233
+ "nickname" => "2_works_get",
234
+ "responseClass" => "WorkResultSet",
235
+ "endpoint" => "/2/works",
236
+ "notes" => "",
237
+ "parameters" => [
238
+ {
239
+ "name" => "limit",
240
+ "description" => "",
241
+ "dataType" => "string",
242
+ "paramType" => "query",
243
+
244
+ "allowableValues" => "",
245
+
246
+ },
247
+ {
248
+ "name" => "include",
249
+ "description" => "",
250
+ "dataType" => "string",
251
+ "paramType" => "query",
252
+
253
+ "allowableValues" => "",
254
+
255
+ },
256
+ {
257
+ "name" => "offset",
258
+ "description" => "",
259
+ "dataType" => "string",
260
+ "paramType" => "query",
261
+
262
+ "allowableValues" => "",
263
+
264
+ },
265
+ {
266
+ "name" => "q",
267
+ "description" => "",
268
+ "dataType" => "string",
269
+ "paramType" => "query",
270
+
271
+ "allowableValues" => "",
272
+
273
+ },
274
+ {
275
+ "name" => "authorization",
276
+ "description" => "",
277
+ "dataType" => "string",
278
+ "paramType" => "header",
279
+ },
280
+ ]}) do
281
+ cross_origin
282
+ # the guts live here
283
+
284
+ {"message" => "yes, it worked"}.to_json
285
+ end
286
+
287
+
288
+ MyApp.add_route('GET', '/2/works/{workId}/assets', {
289
+ "resourcePath" => "/Default",
290
+ "summary" => "",
291
+ "nickname" => "2_works_work_id_assets_get",
292
+ "responseClass" => "AssetResultSet",
293
+ "endpoint" => "/2/works/{workId}/assets",
294
+ "notes" => "",
295
+ "parameters" => [
296
+ {
297
+ "name" => "work_id",
298
+ "description" => "",
299
+ "dataType" => "string",
300
+ "paramType" => "path",
301
+ },
302
+ {
303
+ "name" => "authorization",
304
+ "description" => "",
305
+ "dataType" => "string",
306
+ "paramType" => "header",
307
+ },
308
+ ]}) do
309
+ cross_origin
310
+ # the guts live here
311
+
312
+ {"message" => "yes, it worked"}.to_json
313
+ end
314
+
315
+
316
+ MyApp.add_route('GET', '/2/works/{workId}/manifestations', {
317
+ "resourcePath" => "/Default",
318
+ "summary" => "",
319
+ "nickname" => "2_works_work_id_manifestations_get",
320
+ "responseClass" => "void",
321
+ "endpoint" => "/2/works/{workId}/manifestations",
322
+ "notes" => "",
323
+ "parameters" => [
324
+ {
325
+ "name" => "work_id",
326
+ "description" => "",
327
+ "dataType" => "string",
328
+ "paramType" => "path",
329
+ },
330
+ {
331
+ "name" => "authorization",
332
+ "description" => "",
333
+ "dataType" => "string",
334
+ "paramType" => "header",
335
+ },
336
+ ]}) do
337
+ cross_origin
338
+ # the guts live here
339
+
340
+ {"message" => "yes, it worked"}.to_json
341
+ end
342
+
343
+
344
+ MyApp.add_route('GET', '/2/works/{workId}/similar', {
345
+ "resourcePath" => "/Default",
346
+ "summary" => "",
347
+ "nickname" => "2_works_work_id_similar_get",
348
+ "responseClass" => "WorkResultSet",
349
+ "endpoint" => "/2/works/{workId}/similar",
350
+ "notes" => "",
351
+ "parameters" => [
352
+ {
353
+ "name" => "work_id",
354
+ "description" => "",
355
+ "dataType" => "string",
356
+ "paramType" => "path",
357
+ },
358
+ {
359
+ "name" => "authorization",
360
+ "description" => "",
361
+ "dataType" => "string",
362
+ "paramType" => "header",
363
+ },
364
+ ]}) do
365
+ cross_origin
366
+ # the guts live here
367
+
368
+ {"message" => "yes, it worked"}.to_json
369
+ end
370
+
@@ -0,0 +1,2 @@
1
+ require './my_app'
2
+ run MyApp
@@ -0,0 +1,37 @@
1
+ class ResultSet < Hash
2
+ def self.load(filename)
3
+ self[YAML.load_file filename]
4
+ end
5
+
6
+ def include(filename)
7
+ include = YAML.load_file filename
8
+ if include['include']
9
+ include "#{Dir.pwd}/responses/#{include['include']}.yaml"
10
+ end
11
+ if include['resources']
12
+ self['included'] ||= []
13
+ include['resources'].each do |resource|
14
+ self['included'] << resource
15
+ end
16
+ end
17
+
18
+ if include['relationships']
19
+ include['relationships'].each do |rel|
20
+ %w(data included).each {|key| hydrate_relationships key, rel }
21
+ end
22
+ end
23
+ end
24
+
25
+ def hydrate_relationships(key, rel)
26
+ self[key].each do |resource|
27
+ if resource['id'] == rel['id'] && resource['type'] == rel['type']
28
+ resource['relationships'] ||= {}
29
+ resource['relationships'][rel['relationship']] ||= { 'data' => [] }
30
+ rel['relationships'].each do |r|
31
+ resource['relationships'][rel['relationship']]['data'] << r
32
+ end
33
+ end
34
+ end
35
+ end
36
+
37
+ end