contentful-management 0.0.1.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (188) hide show
  1. data/.gitignore +24 -0
  2. data/.reek +3 -0
  3. data/.rspec +3 -0
  4. data/.rubocop.yml +16 -0
  5. data/.travis.yml +9 -0
  6. data/CHANGELOG.md +2 -0
  7. data/Gemfile +13 -0
  8. data/LICENSE.txt +22 -0
  9. data/README.md +408 -0
  10. data/Rakefile +37 -0
  11. data/bin/cma-console +8 -0
  12. data/contentful-management.gemspec +33 -0
  13. data/examples/blog.rb +82 -0
  14. data/examples/content_types.rb +45 -0
  15. data/examples/create_space.rb +35 -0
  16. data/lib/contentful/management.rb +12 -0
  17. data/lib/contentful/management/array.rb +35 -0
  18. data/lib/contentful/management/asset.rb +163 -0
  19. data/lib/contentful/management/client.rb +160 -0
  20. data/lib/contentful/management/content_type.rb +180 -0
  21. data/lib/contentful/management/dynamic_entry.rb +71 -0
  22. data/lib/contentful/management/entry.rb +213 -0
  23. data/lib/contentful/management/error.rb +62 -0
  24. data/lib/contentful/management/field.rb +34 -0
  25. data/lib/contentful/management/file.rb +15 -0
  26. data/lib/contentful/management/http_client.rb +22 -0
  27. data/lib/contentful/management/link.rb +23 -0
  28. data/lib/contentful/management/locale.rb +48 -0
  29. data/lib/contentful/management/location.rb +15 -0
  30. data/lib/contentful/management/request.rb +82 -0
  31. data/lib/contentful/management/resource.rb +166 -0
  32. data/lib/contentful/management/resource/array_like.rb +37 -0
  33. data/lib/contentful/management/resource/fields.rb +69 -0
  34. data/lib/contentful/management/resource/refresher.rb +21 -0
  35. data/lib/contentful/management/resource/system_properties.rb +56 -0
  36. data/lib/contentful/management/resource_builder.rb +269 -0
  37. data/lib/contentful/management/response.rb +72 -0
  38. data/lib/contentful/management/space.rb +159 -0
  39. data/lib/contentful/management/support.rb +24 -0
  40. data/lib/contentful/management/version.rb +6 -0
  41. data/spec/fixtures/vcr_cassettes/array_page_1.yml +1337 -0
  42. data/spec/fixtures/vcr_cassettes/asset/all.yml +611 -0
  43. data/spec/fixtures/vcr_cassettes/asset/archive.yml +228 -0
  44. data/spec/fixtures/vcr_cassettes/asset/archive_published.yml +177 -0
  45. data/spec/fixtures/vcr_cassettes/asset/archived_false.yml +228 -0
  46. data/spec/fixtures/vcr_cassettes/asset/archived_true.yml +228 -0
  47. data/spec/fixtures/vcr_cassettes/asset/create.yml +150 -0
  48. data/spec/fixtures/vcr_cassettes/asset/create_with_already_used_id.yml +56 -0
  49. data/spec/fixtures/vcr_cassettes/asset/create_with_custom_id.yml +150 -0
  50. data/spec/fixtures/vcr_cassettes/asset/destroy.yml +159 -0
  51. data/spec/fixtures/vcr_cassettes/asset/destroy_published.yml +175 -0
  52. data/spec/fixtures/vcr_cassettes/asset/find.yml +108 -0
  53. data/spec/fixtures/vcr_cassettes/asset/find_not_found.yml +64 -0
  54. data/spec/fixtures/vcr_cassettes/asset/image_url.yml +133 -0
  55. data/spec/fixtures/vcr_cassettes/asset/locale.yml +110 -0
  56. data/spec/fixtures/vcr_cassettes/asset/publish.yml +228 -0
  57. data/spec/fixtures/vcr_cassettes/asset/publish_already_published.yml +176 -0
  58. data/spec/fixtures/vcr_cassettes/asset/published_false.yml +228 -0
  59. data/spec/fixtures/vcr_cassettes/asset/published_true.yml +226 -0
  60. data/spec/fixtures/vcr_cassettes/asset/save_update.yml +242 -0
  61. data/spec/fixtures/vcr_cassettes/asset/set_locale.yml +110 -0
  62. data/spec/fixtures/vcr_cassettes/asset/unarchive.yml +228 -0
  63. data/spec/fixtures/vcr_cassettes/asset/unarchive_already_unarchive.yml +168 -0
  64. data/spec/fixtures/vcr_cassettes/asset/unarchive_already_unarchived.yml +168 -0
  65. data/spec/fixtures/vcr_cassettes/asset/unpublish.yml +228 -0
  66. data/spec/fixtures/vcr_cassettes/asset/unpublish_already_unpublished.yml +168 -0
  67. data/spec/fixtures/vcr_cassettes/asset/update_file.yml +207 -0
  68. data/spec/fixtures/vcr_cassettes/asset/update_to_specified_locale.yml +224 -0
  69. data/spec/fixtures/vcr_cassettes/asset/update_with_default_locale_without_file.yml +214 -0
  70. data/spec/fixtures/vcr_cassettes/content_type/activate.yml +246 -0
  71. data/spec/fixtures/vcr_cassettes/content_type/activate_with_invalid_version.yml +186 -0
  72. data/spec/fixtures/vcr_cassettes/content_type/activated_false.yml +246 -0
  73. data/spec/fixtures/vcr_cassettes/content_type/activated_true.yml +257 -0
  74. data/spec/fixtures/vcr_cassettes/content_type/all.yml +190 -0
  75. data/spec/fixtures/vcr_cassettes/content_type/create.yml +87 -0
  76. data/spec/fixtures/vcr_cassettes/content_type/create_content_type_with_id.yml +87 -0
  77. data/spec/fixtures/vcr_cassettes/content_type/create_with_Array_field.yml +94 -0
  78. data/spec/fixtures/vcr_cassettes/content_type/create_with_Boolean_field.yml +94 -0
  79. data/spec/fixtures/vcr_cassettes/content_type/create_with_Date_field.yml +94 -0
  80. data/spec/fixtures/vcr_cassettes/content_type/create_with_Integer_field.yml +94 -0
  81. data/spec/fixtures/vcr_cassettes/content_type/create_with_Link_field.yml +95 -0
  82. data/spec/fixtures/vcr_cassettes/content_type/create_with_Location_field.yml +94 -0
  83. data/spec/fixtures/vcr_cassettes/content_type/create_with_Number_field.yml +94 -0
  84. data/spec/fixtures/vcr_cassettes/content_type/create_with_Object_field.yml +94 -0
  85. data/spec/fixtures/vcr_cassettes/content_type/create_with_Symbol_field.yml +94 -0
  86. data/spec/fixtures/vcr_cassettes/content_type/create_with_Text_field.yml +94 -0
  87. data/spec/fixtures/vcr_cassettes/content_type/deactivate.yml +246 -0
  88. data/spec/fixtures/vcr_cassettes/content_type/deactivate_already_deactivated.yml +176 -0
  89. data/spec/fixtures/vcr_cassettes/content_type/deactivate_with_entries.yml +236 -0
  90. data/spec/fixtures/vcr_cassettes/content_type/deactivate_with_version_change.yml +248 -0
  91. data/spec/fixtures/vcr_cassettes/content_type/destroy.yml +148 -0
  92. data/spec/fixtures/vcr_cassettes/content_type/destroy_activated.yml +164 -0
  93. data/spec/fixtures/vcr_cassettes/content_type/entry/create.yml +1344 -0
  94. data/spec/fixtures/vcr_cassettes/content_type/entry/create_with_camel_case_id_to_multiple_locales.yml +235 -0
  95. data/spec/fixtures/vcr_cassettes/content_type/entry/create_with_entries.yml +398 -0
  96. data/spec/fixtures/vcr_cassettes/content_type/entry/create_with_entries_for_multiple_locales.yml +3157 -0
  97. data/spec/fixtures/vcr_cassettes/content_type/entry/create_with_multiple_locales.yml +230 -0
  98. data/spec/fixtures/vcr_cassettes/content_type/fields/add.yml +345 -0
  99. data/spec/fixtures/vcr_cassettes/content_type/fields/create.yml +353 -0
  100. data/spec/fixtures/vcr_cassettes/content_type/fields/create_array_with_params.yml +228 -0
  101. data/spec/fixtures/vcr_cassettes/content_type/fields/create_with_params.yml +221 -0
  102. data/spec/fixtures/vcr_cassettes/content_type/fields/destroy.yml +349 -0
  103. data/spec/fixtures/vcr_cassettes/content_type/fields/update_field.yml +358 -0
  104. data/spec/fixtures/vcr_cassettes/content_type/find.yml +180 -0
  105. data/spec/fixtures/vcr_cassettes/content_type/find_not_found.yml +64 -0
  106. data/spec/fixtures/vcr_cassettes/content_type/save_new.yml +876 -0
  107. data/spec/fixtures/vcr_cassettes/content_type/save_updated.yml +345 -0
  108. data/spec/fixtures/vcr_cassettes/content_type/save_with_added_field.yml +217 -0
  109. data/spec/fixtures/vcr_cassettes/content_type/update.yml +175 -0
  110. data/spec/fixtures/vcr_cassettes/content_type/update_change_field_name.yml +222 -0
  111. data/spec/fixtures/vcr_cassettes/content_type/update_remove_field.yml +231 -0
  112. data/spec/fixtures/vcr_cassettes/content_type/update_with_fields.yml +222 -0
  113. data/spec/fixtures/vcr_cassettes/content_type/update_with_one_new_field.yml +251 -0
  114. data/spec/fixtures/vcr_cassettes/entry/all.yml +139 -0
  115. data/spec/fixtures/vcr_cassettes/entry/archive.yml +222 -0
  116. data/spec/fixtures/vcr_cassettes/entry/archive_published.yml +187 -0
  117. data/spec/fixtures/vcr_cassettes/entry/archived_false.yml +178 -0
  118. data/spec/fixtures/vcr_cassettes/entry/archived_true.yml +248 -0
  119. data/spec/fixtures/vcr_cassettes/entry/create.yml +245 -0
  120. data/spec/fixtures/vcr_cassettes/entry/create_test.yml +150 -0
  121. data/spec/fixtures/vcr_cassettes/entry/create_with_asset.yml +403 -0
  122. data/spec/fixtures/vcr_cassettes/entry/create_with_assets.yml +419 -0
  123. data/spec/fixtures/vcr_cassettes/entry/create_with_entries.yml +418 -0
  124. data/spec/fixtures/vcr_cassettes/entry/create_with_entry.yml +493 -0
  125. data/spec/fixtures/vcr_cassettes/entry/create_with_location.yml +259 -0
  126. data/spec/fixtures/vcr_cassettes/entry/create_with_symbols.yml +271 -0
  127. data/spec/fixtures/vcr_cassettes/entry/destory_published.yml +172 -0
  128. data/spec/fixtures/vcr_cassettes/entry/destroy.yml +156 -0
  129. data/spec/fixtures/vcr_cassettes/entry/find.yml +129 -0
  130. data/spec/fixtures/vcr_cassettes/entry/find_not_found.yml +64 -0
  131. data/spec/fixtures/vcr_cassettes/entry/publish.yml +248 -0
  132. data/spec/fixtures/vcr_cassettes/entry/publish_already_published.yml +186 -0
  133. data/spec/fixtures/vcr_cassettes/entry/published_false.yml +248 -0
  134. data/spec/fixtures/vcr_cassettes/entry/published_true.yml +257 -0
  135. data/spec/fixtures/vcr_cassettes/entry/save_update.yml +211 -0
  136. data/spec/fixtures/vcr_cassettes/entry/unarchive.yml +248 -0
  137. data/spec/fixtures/vcr_cassettes/entry/unarchive_already_unarchived.yml +178 -0
  138. data/spec/fixtures/vcr_cassettes/entry/unpublish.yml +248 -0
  139. data/spec/fixtures/vcr_cassettes/entry/unpublish_already_unpublished.yml +178 -0
  140. data/spec/fixtures/vcr_cassettes/entry/update.yml +626 -0
  141. data/spec/fixtures/vcr_cassettes/entry/update_unlocalized_field.yml +308 -0
  142. data/spec/fixtures/vcr_cassettes/entry/update_with_custom_locale.yml +332 -0
  143. data/spec/fixtures/vcr_cassettes/get_request.yml +37 -0
  144. data/spec/fixtures/vcr_cassettes/locale/all_for_space.yml +321 -0
  145. data/spec/fixtures/vcr_cassettes/locale/create_for_space.yml +95 -0
  146. data/spec/fixtures/vcr_cassettes/locale/find.yml +95 -0
  147. data/spec/fixtures/vcr_cassettes/locale/find_for_space_not_found.yml +67 -0
  148. data/spec/fixtures/vcr_cassettes/space/all.yml +1201 -0
  149. data/spec/fixtures/vcr_cassettes/space/asset/all.yml +475 -0
  150. data/spec/fixtures/vcr_cassettes/space/asset/assets.yml +826 -0
  151. data/spec/fixtures/vcr_cassettes/space/asset/create.yml +508 -0
  152. data/spec/fixtures/vcr_cassettes/space/asset/create_with_multiple_locales.yml +1062 -0
  153. data/spec/fixtures/vcr_cassettes/space/asset/find.yml +634 -0
  154. data/spec/fixtures/vcr_cassettes/space/content_type/all.yml +470 -0
  155. data/spec/fixtures/vcr_cassettes/space/content_type/content_types.yml +341 -0
  156. data/spec/fixtures/vcr_cassettes/space/content_type/create.yml +425 -0
  157. data/spec/fixtures/vcr_cassettes/space/content_type/find.yml +493 -0
  158. data/spec/fixtures/vcr_cassettes/space/create.yml +85 -0
  159. data/spec/fixtures/vcr_cassettes/space/create_when_limit_has_been_reached.yml +67 -0
  160. data/spec/fixtures/vcr_cassettes/space/create_with_unknown_organization.yml +65 -0
  161. data/spec/fixtures/vcr_cassettes/space/create_without_organization.yml +83 -0
  162. data/spec/fixtures/vcr_cassettes/space/destory.yml +196 -0
  163. data/spec/fixtures/vcr_cassettes/space/entry/all.yml +634 -0
  164. data/spec/fixtures/vcr_cassettes/space/entry/entries.yml +498 -0
  165. data/spec/fixtures/vcr_cassettes/space/entry/find.yml +624 -0
  166. data/spec/fixtures/vcr_cassettes/space/find.yml +270 -0
  167. data/spec/fixtures/vcr_cassettes/space/find_not_found.yml +67 -0
  168. data/spec/fixtures/vcr_cassettes/space/locale/all.yml +690 -0
  169. data/spec/fixtures/vcr_cassettes/space/locale/create.yml +572 -0
  170. data/spec/fixtures/vcr_cassettes/space/locale/create_with_the_same_code.yml +585 -0
  171. data/spec/fixtures/vcr_cassettes/space/locale/find.yml +572 -0
  172. data/spec/fixtures/vcr_cassettes/space/locale/find_not_found.yml +580 -0
  173. data/spec/fixtures/vcr_cassettes/space/locale/locales.yml +480 -0
  174. data/spec/fixtures/vcr_cassettes/space/locale/update.yml +700 -0
  175. data/spec/fixtures/vcr_cassettes/space/save_new_space.yml +67 -0
  176. data/spec/fixtures/vcr_cassettes/space/save_update_space.yml +352 -0
  177. data/spec/fixtures/vcr_cassettes/space/update.yml +350 -0
  178. data/spec/fixtures/vcr_cassettes/space/update_with_the_same_data.yml +350 -0
  179. data/spec/lib/contentful/management/array_spec.rb +59 -0
  180. data/spec/lib/contentful/management/asset_spec.rb +321 -0
  181. data/spec/lib/contentful/management/client_spec.rb +80 -0
  182. data/spec/lib/contentful/management/content_type_spec.rb +455 -0
  183. data/spec/lib/contentful/management/entry_spec.rb +308 -0
  184. data/spec/lib/contentful/management/locale_spec.rb +53 -0
  185. data/spec/lib/contentful/management/space_spec.rb +317 -0
  186. data/spec/spec_helper.rb +10 -0
  187. data/spec/support/vcr.rb +17 -0
  188. metadata +554 -0
@@ -0,0 +1,176 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/content_types/4EnwylPOikyMGUIy8uQgQY
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - RubyContenfulManagementGem/0.0.1
12
+ Authorization:
13
+ - Bearer <ACCESS_TOKEN>
14
+ Content-Type:
15
+ - application/vnd.contentful.management.v1+json
16
+ Content-Length:
17
+ - '0'
18
+ Host:
19
+ - api.contentful.com
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Server:
26
+ - nginx
27
+ Date:
28
+ - Thu, 31 Jul 2014 08:58:33 GMT
29
+ Content-Type:
30
+ - application/vnd.contentful.management.v1+json
31
+ Content-Length:
32
+ - '1333'
33
+ Connection:
34
+ - keep-alive
35
+ X-Powered-By:
36
+ - Express
37
+ Cf-Space-Id:
38
+ - yr5m0jky5hsh
39
+ Etag:
40
+ - '"1ece12754976d6b3c4b5ca0f9bfd3e58"'
41
+ Access-Control-Allow-Origin:
42
+ - "*"
43
+ Access-Control-Allow-Headers:
44
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization
45
+ Access-Control-Allow-Methods:
46
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
47
+ "^access-Control-Expose-Headers":
48
+ - Etag
49
+ Access-Control-Max-Age:
50
+ - '1728000'
51
+ body:
52
+ encoding: UTF-8
53
+ string: |
54
+ {
55
+ "fields": [
56
+ {
57
+ "name": "post_title",
58
+ "id": "post_title",
59
+ "type": "Text",
60
+ "uiid": "3y811ua4gsg",
61
+ "localized": true
62
+ },
63
+ {
64
+ "name": "post_body",
65
+ "id": "post_body",
66
+ "type": "Text",
67
+ "uiid": "2wcy8gvpn28",
68
+ "localized": true
69
+ },
70
+ {
71
+ "name": "post_code",
72
+ "id": "post_code",
73
+ "type": "Symbol",
74
+ "uiid": "42ip6svqlts",
75
+ "localized": true
76
+ },
77
+ {
78
+ "name": "post_created",
79
+ "id": "post_created",
80
+ "type": "Date",
81
+ "uiid": "3qb1v37yebk"
82
+ }
83
+ ],
84
+ "name": "Post",
85
+ "sys": {
86
+ "id": "4EnwylPOikyMGUIy8uQgQY",
87
+ "type": "ContentType",
88
+ "createdAt": "2014-07-31T08:46:36.678Z",
89
+ "createdBy": {
90
+ "sys": {
91
+ "type": "Link",
92
+ "linkType": "User",
93
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
94
+ }
95
+ },
96
+ "space": {
97
+ "sys": {
98
+ "type": "Link",
99
+ "linkType": "Space",
100
+ "id": "yr5m0jky5hsh"
101
+ }
102
+ },
103
+ "firstPublishedAt": "2014-07-31T08:51:14.655Z",
104
+ "publishedCounter": 3,
105
+ "version": 211,
106
+ "updatedAt": "2014-07-31T08:58:29.590Z",
107
+ "updatedBy": {
108
+ "sys": {
109
+ "type": "Link",
110
+ "linkType": "User",
111
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
112
+ }
113
+ }
114
+ },
115
+ "description": "Content with Post fields",
116
+ "displayField": "postTitl"
117
+ }
118
+ http_version:
119
+ recorded_at: Thu, 31 Jul 2014 08:58:33 GMT
120
+ - request:
121
+ method: delete
122
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/content_types/4EnwylPOikyMGUIy8uQgQY/published
123
+ body:
124
+ encoding: US-ASCII
125
+ string: ''
126
+ headers:
127
+ User-Agent:
128
+ - RubyContenfulManagementGem/0.0.1
129
+ Authorization:
130
+ - Bearer <ACCESS_TOKEN>
131
+ Content-Type:
132
+ - application/vnd.contentful.management.v1+json
133
+ Content-Length:
134
+ - '0'
135
+ Host:
136
+ - api.contentful.com
137
+ response:
138
+ status:
139
+ code: 400
140
+ message: Bad Request
141
+ headers:
142
+ Server:
143
+ - nginx
144
+ Date:
145
+ - Thu, 31 Jul 2014 08:58:34 GMT
146
+ Content-Type:
147
+ - application/vnd.contentful.management.v1+json
148
+ Transfer-Encoding:
149
+ - chunked
150
+ Connection:
151
+ - keep-alive
152
+ X-Powered-By:
153
+ - Express
154
+ Access-Control-Allow-Origin:
155
+ - "*"
156
+ Access-Control-Allow-Headers:
157
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization
158
+ Access-Control-Allow-Methods:
159
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
160
+ "^access-Control-Expose-Headers":
161
+ - Etag
162
+ Access-Control-Max-Age:
163
+ - '1728000'
164
+ body:
165
+ encoding: UTF-8
166
+ string: |
167
+ {
168
+ "sys": {
169
+ "type": "Error",
170
+ "id": "BadRequest"
171
+ },
172
+ "message": "Not published"
173
+ }
174
+ http_version:
175
+ recorded_at: Thu, 31 Jul 2014 08:58:34 GMT
176
+ recorded_with: VCR 2.9.2
@@ -0,0 +1,236 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/content_types/5DSpuKrl04eMAGQoQckeIq
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - RubyContenfulManagementGem/0.0.1
12
+ Authorization:
13
+ - Bearer <ACCESS_TOKEN>
14
+ Content-Type:
15
+ - application/vnd.contentful.management.v1+json
16
+ Content-Length:
17
+ - '0'
18
+ Host:
19
+ - api.contentful.com
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Server:
26
+ - nginx
27
+ Date:
28
+ - Thu, 31 Jul 2014 08:46:01 GMT
29
+ Content-Type:
30
+ - application/vnd.contentful.management.v1+json
31
+ Content-Length:
32
+ - '2458'
33
+ Connection:
34
+ - keep-alive
35
+ X-Powered-By:
36
+ - Express
37
+ Cf-Space-Id:
38
+ - yr5m0jky5hsh
39
+ Etag:
40
+ - '"22ac7b99fb23804fd7b079ade52f888e"'
41
+ Access-Control-Allow-Origin:
42
+ - "*"
43
+ Access-Control-Allow-Headers:
44
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization
45
+ Access-Control-Allow-Methods:
46
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
47
+ "^access-Control-Expose-Headers":
48
+ - Etag
49
+ Access-Control-Max-Age:
50
+ - '1728000'
51
+ body:
52
+ encoding: UTF-8
53
+ string: |
54
+ {
55
+ "fields": [
56
+ {
57
+ "name": "name",
58
+ "id": "name",
59
+ "type": "Text",
60
+ "uiid": "3fflnrplhc0",
61
+ "localized": true
62
+ },
63
+ {
64
+ "name": "age",
65
+ "id": "age",
66
+ "uiid": "2t5blkc7u2o",
67
+ "type": "Integer",
68
+ "localized": true
69
+ },
70
+ {
71
+ "name": "city",
72
+ "id": "city",
73
+ "type": "Location",
74
+ "uiid": "4fzl5jkm1a8",
75
+ "localized": false
76
+ },
77
+ {
78
+ "name": "assets",
79
+ "id": "assets",
80
+ "uiid": "3aqrgdyesxs",
81
+ "type": "Array",
82
+ "items": {
83
+ "type": "Link",
84
+ "linkType": "Asset"
85
+ },
86
+ "localized": true
87
+ },
88
+ {
89
+ "name": "entries",
90
+ "id": "entries",
91
+ "type": "Array",
92
+ "uiid": "3xi486kbchs",
93
+ "items": {
94
+ "type": "Link",
95
+ "linkType": "Entry"
96
+ }
97
+ },
98
+ {
99
+ "name": "entry",
100
+ "id": "entry",
101
+ "type": "Link",
102
+ "uiid": "3uxjdd1n5ds",
103
+ "linkType": "Entry"
104
+ },
105
+ {
106
+ "name": "asset",
107
+ "id": "asset",
108
+ "type": "Link",
109
+ "uiid": "40ilp8h1xc0",
110
+ "linkType": "Asset"
111
+ },
112
+ {
113
+ "name": "bool",
114
+ "id": "bool",
115
+ "type": "Boolean",
116
+ "uiid": "2i1bgmn2dj4",
117
+ "localized": true
118
+ },
119
+ {
120
+ "name": "symbols",
121
+ "id": "symbols",
122
+ "type": "Array",
123
+ "uiid": "38rbncxmzuo",
124
+ "items": {
125
+ "type": "Symbol"
126
+ }
127
+ },
128
+ {
129
+ "name": "birthday",
130
+ "id": "birthday",
131
+ "type": "Date",
132
+ "uiid": "41bdwbk06bk"
133
+ }
134
+ ],
135
+ "name": "Author",
136
+ "sys": {
137
+ "id": "5DSpuKrl04eMAGQoQckeIq",
138
+ "type": "ContentType",
139
+ "createdAt": "2014-07-30T12:35:01.110Z",
140
+ "createdBy": {
141
+ "sys": {
142
+ "type": "Link",
143
+ "linkType": "User",
144
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
145
+ }
146
+ },
147
+ "space": {
148
+ "sys": {
149
+ "type": "Link",
150
+ "linkType": "Space",
151
+ "id": "yr5m0jky5hsh"
152
+ }
153
+ },
154
+ "firstPublishedAt": "2014-07-30T12:37:42.035Z",
155
+ "publishedCounter": 6,
156
+ "publishedAt": "2014-07-30T14:58:40.786Z",
157
+ "publishedBy": {
158
+ "sys": {
159
+ "type": "Link",
160
+ "linkType": "User",
161
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
162
+ }
163
+ },
164
+ "publishedVersion": 177,
165
+ "version": 178,
166
+ "updatedAt": "2014-07-30T14:58:40.796Z",
167
+ "updatedBy": {
168
+ "sys": {
169
+ "type": "Link",
170
+ "linkType": "User",
171
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
172
+ }
173
+ }
174
+ },
175
+ "description": null,
176
+ "displayField": "name"
177
+ }
178
+ http_version:
179
+ recorded_at: Thu, 31 Jul 2014 08:46:01 GMT
180
+ - request:
181
+ method: delete
182
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/content_types/5DSpuKrl04eMAGQoQckeIq/published
183
+ body:
184
+ encoding: US-ASCII
185
+ string: ''
186
+ headers:
187
+ User-Agent:
188
+ - RubyContenfulManagementGem/0.0.1
189
+ Authorization:
190
+ - Bearer <ACCESS_TOKEN>
191
+ Content-Type:
192
+ - application/vnd.contentful.management.v1+json
193
+ Content-Length:
194
+ - '0'
195
+ Host:
196
+ - api.contentful.com
197
+ response:
198
+ status:
199
+ code: 400
200
+ message: Bad Request
201
+ headers:
202
+ Server:
203
+ - nginx
204
+ Date:
205
+ - Thu, 31 Jul 2014 08:46:01 GMT
206
+ Content-Type:
207
+ - application/vnd.contentful.management.v1+json
208
+ Transfer-Encoding:
209
+ - chunked
210
+ Connection:
211
+ - keep-alive
212
+ X-Powered-By:
213
+ - Express
214
+ Access-Control-Allow-Origin:
215
+ - "*"
216
+ Access-Control-Allow-Headers:
217
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization
218
+ Access-Control-Allow-Methods:
219
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
220
+ "^access-Control-Expose-Headers":
221
+ - Etag
222
+ Access-Control-Max-Age:
223
+ - '1728000'
224
+ body:
225
+ encoding: UTF-8
226
+ string: |
227
+ {
228
+ "sys": {
229
+ "type": "Error",
230
+ "id": "BadRequest"
231
+ },
232
+ "message": "Content Type has entries"
233
+ }
234
+ http_version:
235
+ recorded_at: Thu, 31 Jul 2014 08:46:01 GMT
236
+ recorded_with: VCR 2.9.2
@@ -0,0 +1,248 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/content_types/4EnwylPOikyMGUIy8uQgQY
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - RubyContenfulManagementGem/0.0.1
12
+ Authorization:
13
+ - Bearer <ACCESS_TOKEN>
14
+ Content-Type:
15
+ - application/vnd.contentful.management.v1+json
16
+ Content-Length:
17
+ - '0'
18
+ Host:
19
+ - api.contentful.com
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Server:
26
+ - nginx
27
+ Date:
28
+ - Thu, 31 Jul 2014 08:57:01 GMT
29
+ Content-Type:
30
+ - application/vnd.contentful.management.v1+json
31
+ Content-Length:
32
+ - '1333'
33
+ Connection:
34
+ - keep-alive
35
+ X-Powered-By:
36
+ - Express
37
+ Cf-Space-Id:
38
+ - yr5m0jky5hsh
39
+ Etag:
40
+ - '"d7e02987c35b45560f9b4e9abfbd1e2d"'
41
+ Access-Control-Allow-Origin:
42
+ - "*"
43
+ Access-Control-Allow-Headers:
44
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization
45
+ Access-Control-Allow-Methods:
46
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
47
+ "^access-Control-Expose-Headers":
48
+ - Etag
49
+ Access-Control-Max-Age:
50
+ - '1728000'
51
+ body:
52
+ encoding: UTF-8
53
+ string: |
54
+ {
55
+ "fields": [
56
+ {
57
+ "name": "post_title",
58
+ "id": "post_title",
59
+ "type": "Text",
60
+ "uiid": "3y811ua4gsg",
61
+ "localized": true
62
+ },
63
+ {
64
+ "name": "post_body",
65
+ "id": "post_body",
66
+ "type": "Text",
67
+ "uiid": "2wcy8gvpn28",
68
+ "localized": true
69
+ },
70
+ {
71
+ "name": "post_code",
72
+ "id": "post_code",
73
+ "type": "Symbol",
74
+ "uiid": "42ip6svqlts",
75
+ "localized": true
76
+ },
77
+ {
78
+ "name": "post_created",
79
+ "id": "post_created",
80
+ "type": "Date",
81
+ "uiid": "3qb1v37yebk"
82
+ }
83
+ ],
84
+ "name": "Post",
85
+ "sys": {
86
+ "id": "4EnwylPOikyMGUIy8uQgQY",
87
+ "type": "ContentType",
88
+ "createdAt": "2014-07-31T08:46:36.678Z",
89
+ "createdBy": {
90
+ "sys": {
91
+ "type": "Link",
92
+ "linkType": "User",
93
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
94
+ }
95
+ },
96
+ "space": {
97
+ "sys": {
98
+ "type": "Link",
99
+ "linkType": "Space",
100
+ "id": "yr5m0jky5hsh"
101
+ }
102
+ },
103
+ "firstPublishedAt": "2014-07-31T08:51:14.655Z",
104
+ "publishedCounter": 1,
105
+ "version": 207,
106
+ "updatedAt": "2014-07-31T08:56:52.723Z",
107
+ "updatedBy": {
108
+ "sys": {
109
+ "type": "Link",
110
+ "linkType": "User",
111
+ "id": "0fn5fOWn4WsKFyYla1gI5h"
112
+ }
113
+ }
114
+ },
115
+ "description": "Content with Post fields",
116
+ "displayField": "postTitl"
117
+ }
118
+ http_version:
119
+ recorded_at: Thu, 31 Jul 2014 08:57:01 GMT
120
+ - request:
121
+ method: put
122
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/content_types/4EnwylPOikyMGUIy8uQgQY/published
123
+ body:
124
+ encoding: US-ASCII
125
+ string: ''
126
+ headers:
127
+ User-Agent:
128
+ - RubyContenfulManagementGem/0.0.1
129
+ Authorization:
130
+ - Bearer <ACCESS_TOKEN>
131
+ Content-Type:
132
+ - application/vnd.contentful.management.v1+json
133
+ X-Contentful-Version:
134
+ - '207'
135
+ Content-Length:
136
+ - '0'
137
+ Host:
138
+ - api.contentful.com
139
+ response:
140
+ status:
141
+ code: 200
142
+ message: OK
143
+ headers:
144
+ Server:
145
+ - nginx
146
+ Date:
147
+ - Thu, 31 Jul 2014 08:57:02 GMT
148
+ Content-Type:
149
+ - application/vnd.contentful.management.v1+json
150
+ Content-Length:
151
+ - '1551'
152
+ Connection:
153
+ - keep-alive
154
+ X-Powered-By:
155
+ - Express
156
+ Cf-Space-Id:
157
+ - yr5m0jky5hsh
158
+ Etag:
159
+ - '"931dd9742ce6554169ed2c62be8b926a"'
160
+ Access-Control-Allow-Origin:
161
+ - "*"
162
+ Access-Control-Allow-Headers:
163
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization
164
+ Access-Control-Allow-Methods:
165
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
166
+ "^access-Control-Expose-Headers":
167
+ - Etag
168
+ Access-Control-Max-Age:
169
+ - '1728000'
170
+ body:
171
+ encoding: UTF-8
172
+ string: |
173
+ {
174
+ "fields": [
175
+ {
176
+ "name": "post_title",
177
+ "id": "post_title",
178
+ "type": "Text",
179
+ "uiid": "3y811ua4gsg",
180
+ "localized": true
181
+ },
182
+ {
183
+ "name": "post_body",
184
+ "id": "post_body",
185
+ "type": "Text",
186
+ "uiid": "2wcy8gvpn28",
187
+ "localized": true
188
+ },
189
+ {
190
+ "name": "post_code",
191
+ "id": "post_code",
192
+ "type": "Symbol",
193
+ "uiid": "42ip6svqlts",
194
+ "localized": true
195
+ },
196
+ {
197
+ "name": "post_created",
198
+ "id": "post_created",
199
+ "type": "Date",
200
+ "uiid": "3qb1v37yebk"
201
+ }
202
+ ],
203
+ "name": "Post",
204
+ "sys": {
205
+ "id": "4EnwylPOikyMGUIy8uQgQY",
206
+ "type": "ContentType",
207
+ "createdAt": "2014-07-31T08:46:36.678Z",
208
+ "createdBy": {
209
+ "sys": {
210
+ "type": "Link",
211
+ "linkType": "User",
212
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
213
+ }
214
+ },
215
+ "space": {
216
+ "sys": {
217
+ "type": "Link",
218
+ "linkType": "Space",
219
+ "id": "yr5m0jky5hsh"
220
+ }
221
+ },
222
+ "firstPublishedAt": "2014-07-31T08:51:14.655Z",
223
+ "publishedCounter": 2,
224
+ "version": 208,
225
+ "updatedAt": "2014-07-31T08:57:01.799Z",
226
+ "updatedBy": {
227
+ "sys": {
228
+ "type": "Link",
229
+ "linkType": "User",
230
+ "id": "0fn5fOWn4WsKFyYla1gI5h"
231
+ }
232
+ },
233
+ "publishedAt": "2014-07-31T08:57:01.799Z",
234
+ "publishedBy": {
235
+ "sys": {
236
+ "type": "Link",
237
+ "linkType": "User",
238
+ "id": "0fn5fOWn4WsKFyYla1gI5h"
239
+ }
240
+ },
241
+ "publishedVersion": 207
242
+ },
243
+ "description": "Content with Post fields",
244
+ "displayField": "postTitl"
245
+ }
246
+ http_version:
247
+ recorded_at: Thu, 31 Jul 2014 08:57:02 GMT
248
+ recorded_with: VCR 2.9.2