pubnub 4.2.5 → 4.5.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pubnub might be problematic. Click here for more details.

Files changed (183) hide show
  1. checksums.yaml +4 -4
  2. data/.github/CODEOWNERS +1 -0
  3. data/.pubnub.yml +168 -117
  4. data/.travis.yml +13 -9
  5. data/CHANGELOG.md +31 -8
  6. data/Gemfile.lock +67 -64
  7. data/README.md +56 -17
  8. data/VERSION +1 -1
  9. data/fixtures/vcr_cassettes/examples/add_channels_to_push/001.yml +45 -0
  10. data/fixtures/vcr_cassettes/examples/add_channels_to_push/002.yml +45 -0
  11. data/fixtures/vcr_cassettes/examples/add_channels_to_push/003.yml +45 -0
  12. data/fixtures/vcr_cassettes/examples/add_channels_to_push/004.yml +45 -0
  13. data/fixtures/vcr_cassettes/examples/grant/1913.yml +1 -1
  14. data/fixtures/vcr_cassettes/examples/grant/1944.yml +8 -9
  15. data/fixtures/vcr_cassettes/examples/grant/1945.yml +359 -9
  16. data/fixtures/vcr_cassettes/examples/grant/1946.yml +8 -9
  17. data/fixtures/vcr_cassettes/examples/grant/1947.yml +8 -9
  18. data/fixtures/vcr_cassettes/examples/grant/1948.yml +8 -9
  19. data/fixtures/vcr_cassettes/examples/history/100.yml +46 -0
  20. data/fixtures/vcr_cassettes/examples/history/include_meta__encrypted.yml +46 -0
  21. data/fixtures/vcr_cassettes/examples/history/include_token__encrypted.yml +45 -0
  22. data/fixtures/vcr_cassettes/examples/history/no_includes__encrypted.yml +45 -0
  23. data/fixtures/vcr_cassettes/examples/list_push_provisions/001.yml +46 -0
  24. data/fixtures/vcr_cassettes/examples/list_push_provisions/002.yml +45 -0
  25. data/fixtures/vcr_cassettes/examples/list_push_provisions/003.yml +45 -0
  26. data/fixtures/vcr_cassettes/examples/remove_channels_from_push/001.yml +45 -0
  27. data/fixtures/vcr_cassettes/examples/remove_channels_from_push/002.yml +45 -0
  28. data/fixtures/vcr_cassettes/examples/remove_channels_from_push/003.yml +45 -0
  29. data/fixtures/vcr_cassettes/examples/remove_device_from_push/001.yml +45 -0
  30. data/fixtures/vcr_cassettes/examples/remove_device_from_push/002.yml +45 -0
  31. data/fixtures/vcr_cassettes/examples/remove_device_from_push/003.yml +45 -0
  32. data/fixtures/vcr_cassettes/lib/events/get_all_channels_metadata.yml +39 -0
  33. data/fixtures/vcr_cassettes/lib/events/get_all_uuid_metadata.yml +76 -0
  34. data/fixtures/vcr_cassettes/lib/events/get_channel_members.yml +37 -0
  35. data/fixtures/vcr_cassettes/lib/events/get_channel_metadata.yml +37 -0
  36. data/fixtures/vcr_cassettes/lib/events/get_memberships1.yml +37 -0
  37. data/fixtures/vcr_cassettes/lib/events/get_memberships2.yml +37 -0
  38. data/fixtures/vcr_cassettes/lib/events/get_uuid_metadata1.yml +76 -0
  39. data/fixtures/vcr_cassettes/lib/events/get_uuid_metadata2.yml +76 -0
  40. data/fixtures/vcr_cassettes/lib/events/grant-error.yml +2 -2
  41. data/fixtures/vcr_cassettes/lib/events/grant.yml +10 -11
  42. data/fixtures/vcr_cassettes/lib/events/remove_channel_members.yml +78 -0
  43. data/fixtures/vcr_cassettes/lib/events/{delete_space.yml → remove_channel_metadata.yml} +5 -6
  44. data/fixtures/vcr_cassettes/lib/events/{manage_memberships_remove.yml → remove_memberships1.yml} +8 -9
  45. data/fixtures/vcr_cassettes/lib/events/{manage_members_add.yml → remove_memberships2.yml} +8 -9
  46. data/fixtures/vcr_cassettes/lib/events/remove_uuid_metadata1.yml +76 -0
  47. data/fixtures/vcr_cassettes/lib/events/remove_uuid_metadata2.yml +76 -0
  48. data/fixtures/vcr_cassettes/lib/events/set_channel_members.yml +39 -0
  49. data/fixtures/vcr_cassettes/lib/events/set_channel_metadata.yml +39 -0
  50. data/fixtures/vcr_cassettes/lib/events/{manage_memberships_add.yml → set_memberships1.yml} +8 -9
  51. data/fixtures/vcr_cassettes/lib/events/set_memberships2.yml +39 -0
  52. data/fixtures/vcr_cassettes/lib/events/set_uuid_metadata1.yml +78 -0
  53. data/fixtures/vcr_cassettes/lib/events/set_uuid_metadata2.yml +78 -0
  54. data/fixtures/vcr_cassettes/lib/events/{subscribe-space-delete-async.yml → subscribe-channel-metadata-remove-sync.yml} +12 -14
  55. data/fixtures/vcr_cassettes/lib/events/subscribe-channel-metadata-set-async.yml +75 -0
  56. data/fixtures/vcr_cassettes/lib/events/{subscribe-member-remove-async.yml → subscribe-member-remove-sync.yml} +12 -14
  57. data/fixtures/vcr_cassettes/lib/events/subscribe-member-set-async.yml +75 -0
  58. data/fixtures/vcr_cassettes/lib/events/subscribe-membership-remove-async.yml +12 -14
  59. data/fixtures/vcr_cassettes/lib/events/{subscribe-user-update-async.yml → subscribe-membership-set-async.yml} +12 -14
  60. data/fixtures/vcr_cassettes/lib/events/{subscribe-user-delete-async.yml → subscribe-uuid-metadata-remove-sync.yml} +12 -14
  61. data/fixtures/vcr_cassettes/lib/events/subscribe-uuid-metadata-set-async.yml +75 -0
  62. data/lib/pubnub/client.rb +18 -15
  63. data/lib/pubnub/client/events.rb +4 -2
  64. data/lib/pubnub/client/paged_history.rb +1 -1
  65. data/lib/pubnub/constants.rb +19 -18
  66. data/lib/pubnub/event.rb +32 -16
  67. data/lib/pubnub/event/formatter.rb +4 -0
  68. data/lib/pubnub/event/signature.rb +22 -7
  69. data/lib/pubnub/events/add_channels_to_push.rb +29 -13
  70. data/lib/pubnub/events/get_all_channels_metadata.rb +104 -0
  71. data/lib/pubnub/events/get_all_uuid_metadata.rb +104 -0
  72. data/lib/pubnub/events/get_channel_members.rb +120 -0
  73. data/lib/pubnub/events/{update_space.rb → get_channel_metadata.rb} +27 -27
  74. data/lib/pubnub/events/get_memberships.rb +120 -0
  75. data/lib/pubnub/events/{create_space.rb → get_uuid_metadata.rb} +27 -25
  76. data/lib/pubnub/events/grant.rb +10 -1
  77. data/lib/pubnub/events/history.rb +17 -2
  78. data/lib/pubnub/events/list_push_provisions.rb +29 -12
  79. data/lib/pubnub/events/remove_channel_members.rb +137 -0
  80. data/lib/pubnub/events/{delete_space.rb → remove_channel_metadata.rb} +12 -12
  81. data/lib/pubnub/events/remove_channels_from_push.rb +29 -13
  82. data/lib/pubnub/events/remove_device_from_push.rb +30 -14
  83. data/lib/pubnub/events/remove_memberships.rb +137 -0
  84. data/lib/pubnub/events/{delete_user.rb → remove_uuid_metadata.rb} +12 -12
  85. data/lib/pubnub/events/set_channel_members.rb +140 -0
  86. data/lib/pubnub/events/{manage_members.rb → set_channel_metadata.rb} +32 -38
  87. data/lib/pubnub/events/set_memberships.rb +140 -0
  88. data/lib/pubnub/events/{create_user.rb → set_uuid_metadata.rb} +33 -17
  89. data/lib/pubnub/formatter.rb +30 -3
  90. data/lib/pubnub/pam.rb +2 -11
  91. data/lib/pubnub/subscribe_callback.rb +1 -3
  92. data/lib/pubnub/subscribe_event/formatter.rb +26 -17
  93. data/lib/pubnub/subscriber.rb +5 -6
  94. data/lib/pubnub/validators/add_channels_to_push.rb +52 -0
  95. data/lib/pubnub/validators/get_all_channels_metadata.rb +29 -0
  96. data/lib/pubnub/validators/get_all_uuid_metadata.rb +29 -0
  97. data/lib/pubnub/validators/get_channel_members.rb +39 -0
  98. data/lib/pubnub/validators/get_channel_metadata.rb +39 -0
  99. data/lib/pubnub/validators/get_memberships.rb +39 -0
  100. data/lib/pubnub/validators/get_uuid_metadata.rb +39 -0
  101. data/lib/pubnub/validators/grant.rb +37 -2
  102. data/lib/pubnub/validators/list_push_provisions.rb +43 -0
  103. data/lib/pubnub/validators/remove_channel_members.rb +52 -0
  104. data/lib/pubnub/validators/remove_channel_metadata.rb +39 -0
  105. data/lib/pubnub/validators/remove_channels_from_push.rb +52 -0
  106. data/lib/pubnub/validators/remove_device_from_push.rb +43 -0
  107. data/lib/pubnub/validators/remove_memberships.rb +52 -0
  108. data/lib/pubnub/validators/remove_uuid_metadata.rb +39 -0
  109. data/lib/pubnub/validators/set_channel_members.rb +78 -0
  110. data/lib/pubnub/validators/set_channel_metadata.rb +62 -0
  111. data/lib/pubnub/validators/set_memberships.rb +78 -0
  112. data/lib/pubnub/validators/set_uuid_metadata.rb +62 -0
  113. data/lib/pubnub/version.rb +1 -1
  114. data/pubnub.gemspec +1 -1
  115. data/spec/examples/add_channels_to_push_spec.rb +178 -0
  116. data/spec/examples/{grant_examples_spec.rb → grant_examples_1_spec.rb} +0 -8973
  117. data/spec/examples/grant_examples_2_spec.rb +9107 -0
  118. data/spec/examples/history_examples_spec.rb +85 -0
  119. data/spec/examples/list_push_provisions_spec.rb +164 -0
  120. data/spec/examples/presence_examples_spec.rb +222 -186
  121. data/spec/examples/remove_channels_from_push_spec.rb +164 -0
  122. data/spec/examples/remove_device_from_push_spec.rb +164 -0
  123. data/spec/examples/revoke_examples_1_spec.rb +27013 -0
  124. data/spec/examples/revoke_examples_2_spec.rb +27012 -0
  125. data/spec/examples/revoke_examples_3_spec.rb +17967 -0
  126. data/spec/examples/status_request_message_count_exceeded_spec.rb +4 -1
  127. data/spec/examples/subscribe_examples_1_spec.rb +26972 -0
  128. data/spec/examples/subscribe_examples_2_spec.rb +19575 -0
  129. data/spec/lib/connection_callback_spec.rb +4 -3
  130. data/spec/lib/event/formatter_spec.rb +22 -0
  131. data/spec/lib/events/channel_metadata_spec.rb +58 -0
  132. data/spec/lib/events/grant_spec.rb +3 -2
  133. data/spec/lib/events/membership_spec.rb +51 -21
  134. data/spec/lib/events/presence_delta_spec.rb +9 -6
  135. data/spec/lib/events/presence_spec.rb +13 -7
  136. data/spec/lib/events/subscribe_spec.rb +102 -65
  137. data/spec/lib/events/uuid_metadata_spec.rb +86 -0
  138. data/spec/lib/subscribe_event/formatter_spec.rb +22 -0
  139. data/spec/lib/super_admin_spec.rb +8 -4
  140. data/spec/spec_helper.rb +24 -8
  141. metadata +124 -79
  142. data/fixtures/vcr_cassettes/lib/events/create_space.yml +0 -40
  143. data/fixtures/vcr_cassettes/lib/events/create_user.yml +0 -40
  144. data/fixtures/vcr_cassettes/lib/events/delete_user.yml +0 -38
  145. data/fixtures/vcr_cassettes/lib/events/get_members.yml +0 -38
  146. data/fixtures/vcr_cassettes/lib/events/get_space.yml +0 -38
  147. data/fixtures/vcr_cassettes/lib/events/get_space_memberships.yml +0 -38
  148. data/fixtures/vcr_cassettes/lib/events/get_spaces.yml +0 -40
  149. data/fixtures/vcr_cassettes/lib/events/get_user.yml +0 -38
  150. data/fixtures/vcr_cassettes/lib/events/get_users.yml +0 -40
  151. data/fixtures/vcr_cassettes/lib/events/manage_members_remove.yml +0 -83
  152. data/fixtures/vcr_cassettes/lib/events/subscribe-member-add-async.yml +0 -77
  153. data/fixtures/vcr_cassettes/lib/events/subscribe-membership-add-async.yml +0 -77
  154. data/fixtures/vcr_cassettes/lib/events/subscribe-space-update-async.yml +0 -77
  155. data/fixtures/vcr_cassettes/lib/events/update_space.yml +0 -40
  156. data/fixtures/vcr_cassettes/lib/events/update_user.yml +0 -40
  157. data/lib/pubnub/events/get_members.rb +0 -93
  158. data/lib/pubnub/events/get_space.rb +0 -74
  159. data/lib/pubnub/events/get_space_memberships.rb +0 -93
  160. data/lib/pubnub/events/get_spaces.rb +0 -90
  161. data/lib/pubnub/events/get_user.rb +0 -74
  162. data/lib/pubnub/events/get_users.rb +0 -90
  163. data/lib/pubnub/events/manage_memberships.rb +0 -105
  164. data/lib/pubnub/events/update_user.rb +0 -86
  165. data/lib/pubnub/validators/create_space.rb +0 -44
  166. data/lib/pubnub/validators/create_user.rb +0 -44
  167. data/lib/pubnub/validators/delete_space.rb +0 -32
  168. data/lib/pubnub/validators/delete_user.rb +0 -32
  169. data/lib/pubnub/validators/get_members.rb +0 -32
  170. data/lib/pubnub/validators/get_space.rb +0 -32
  171. data/lib/pubnub/validators/get_space_memberships.rb +0 -32
  172. data/lib/pubnub/validators/get_spaces.rb +0 -16
  173. data/lib/pubnub/validators/get_user.rb +0 -32
  174. data/lib/pubnub/validators/get_users.rb +0 -16
  175. data/lib/pubnub/validators/manage_members.rb +0 -45
  176. data/lib/pubnub/validators/manage_memberships.rb +0 -45
  177. data/lib/pubnub/validators/push.rb +0 -43
  178. data/lib/pubnub/validators/update_space.rb +0 -45
  179. data/lib/pubnub/validators/update_user.rb +0 -45
  180. data/spec/examples/revoke_examples_spec.rb +0 -71950
  181. data/spec/examples/subscribe_examples_spec.rb +0 -45184
  182. data/spec/lib/events/space_spec.rb +0 -75
  183. data/spec/lib/events/user_spec.rb +0 -75
@@ -1,40 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: http://ps.pndsn.com/v1/objects/demo/spaces?auth=ruby-test-auth&include=custom&pnsdk=PubNub-Ruby/4.2.0&uuid=ruby-test-uuid
6
- body:
7
- encoding: UTF-8
8
- string: '{"id":"rb_space","name":"some_name","custom":{"XXX":"YYYY"}}'
9
- headers:
10
- User-Agent:
11
- - HTTPClient/1.0 (2.8.3, ruby 2.6.3 (2019-04-16))
12
- Accept:
13
- - "*/*"
14
- Date:
15
- - Fri, 25 Oct 2019 20:35:51 GMT
16
- Content-Type:
17
- - application/x-www-form-urlencoded
18
- response:
19
- status:
20
- code: 200
21
- message: OK
22
- headers:
23
- Date:
24
- - Fri, 25 Oct 2019 20:35:54 GMT
25
- Content-Type:
26
- - application/json
27
- Content-Length:
28
- - '201'
29
- Connection:
30
- - keep-alive
31
- Access-Control-Allow-Origin:
32
- - "*"
33
- Access-Control-Allow-Credentials:
34
- - 'true'
35
- body:
36
- encoding: UTF-8
37
- string: '{"status":200,"data":{"id":"rb_space","name":"some_name","description":null,"custom":{"XXX":"YYYY"},"created":"2019-10-25T20:35:54.1512Z","updated":"2019-10-25T20:35:54.1512Z","eTag":"AZTUtcvx6NDGLQ"}}'
38
- http_version:
39
- recorded_at: Fri, 25 Oct 2019 20:35:51 GMT
40
- recorded_with: VCR 5.0.0
@@ -1,40 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: http://ps.pndsn.com/v1/objects/demo/users?auth=ruby-test-auth&include=custom&pnsdk=PubNub-Ruby/4.2.0&uuid=ruby-test-uuid
6
- body:
7
- encoding: UTF-8
8
- string: '{"id":"mg","name":"magnum","custom":{"XXX":"YYYY"}}'
9
- headers:
10
- User-Agent:
11
- - HTTPClient/1.0 (2.8.3, ruby 2.6.3 (2019-04-16))
12
- Accept:
13
- - "*/*"
14
- Date:
15
- - Fri, 25 Oct 2019 20:36:54 GMT
16
- Content-Type:
17
- - application/x-www-form-urlencoded
18
- response:
19
- status:
20
- code: 200
21
- message: OK
22
- headers:
23
- Date:
24
- - Fri, 25 Oct 2019 20:36:57 GMT
25
- Content-Type:
26
- - application/json
27
- Content-Length:
28
- - '227'
29
- Connection:
30
- - keep-alive
31
- Access-Control-Allow-Origin:
32
- - "*"
33
- Access-Control-Allow-Credentials:
34
- - 'true'
35
- body:
36
- encoding: UTF-8
37
- string: '{"status":200,"data":{"id":"mg","name":"magnum","externalId":null,"profileUrl":null,"email":null,"custom":{"XXX":"YYYY"},"created":"2019-10-25T20:36:57.254813Z","updated":"2019-10-25T20:36:57.254813Z","eTag":"Ad2eyIWXwJzBqAE"}}'
38
- http_version:
39
- recorded_at: Fri, 25 Oct 2019 20:36:54 GMT
40
- recorded_with: VCR 5.0.0
@@ -1,38 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: delete
5
- uri: http://ps.pndsn.com/v1/objects/demo/users/mg?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.0&uuid=ruby-test-uuid
6
- body:
7
- encoding: UTF-8
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - HTTPClient/1.0 (2.8.3, ruby 2.6.3 (2019-04-16))
12
- Accept:
13
- - "*/*"
14
- Date:
15
- - Fri, 25 Oct 2019 20:36:55 GMT
16
- response:
17
- status:
18
- code: 200
19
- message: OK
20
- headers:
21
- Date:
22
- - Fri, 25 Oct 2019 20:36:58 GMT
23
- Content-Type:
24
- - application/json
25
- Content-Length:
26
- - '26'
27
- Connection:
28
- - keep-alive
29
- Access-Control-Allow-Origin:
30
- - "*"
31
- Access-Control-Allow-Credentials:
32
- - 'true'
33
- body:
34
- encoding: UTF-8
35
- string: '{"status":200,"data":null}'
36
- http_version:
37
- recorded_at: Fri, 25 Oct 2019 20:36:55 GMT
38
- recorded_with: VCR 5.0.0
@@ -1,38 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://ps.pndsn.com/v1/objects/demo/spaces/space-1/users?auth=ruby-test-auth&count=true&include=custom&pnsdk=PubNub-Ruby/4.2.0&uuid=ruby-test-uuid
6
- body:
7
- encoding: UTF-8
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - HTTPClient/1.0 (2.8.3, ruby 2.6.3 (2019-04-16))
12
- Accept:
13
- - "*/*"
14
- Date:
15
- - Fri, 25 Oct 2019 20:35:48 GMT
16
- response:
17
- status:
18
- code: 200
19
- message: OK
20
- headers:
21
- Date:
22
- - Fri, 25 Oct 2019 20:35:51 GMT
23
- Content-Type:
24
- - application/json
25
- Content-Length:
26
- - '39'
27
- Connection:
28
- - keep-alive
29
- Access-Control-Allow-Origin:
30
- - "*"
31
- Access-Control-Allow-Credentials:
32
- - 'true'
33
- body:
34
- encoding: UTF-8
35
- string: '{"status":200,"data":[],"totalCount":0}'
36
- http_version:
37
- recorded_at: Fri, 25 Oct 2019 20:35:48 GMT
38
- recorded_with: VCR 5.0.0
@@ -1,38 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://ps.pndsn.com/v1/objects/demo/spaces/rb_space?auth=ruby-test-auth&include=custom&pnsdk=PubNub-Ruby/4.2.0&uuid=ruby-test-uuid
6
- body:
7
- encoding: UTF-8
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - HTTPClient/1.0 (2.8.3, ruby 2.6.3 (2019-04-16))
12
- Accept:
13
- - "*/*"
14
- Date:
15
- - Fri, 25 Oct 2019 20:35:51 GMT
16
- response:
17
- status:
18
- code: 200
19
- message: OK
20
- headers:
21
- Date:
22
- - Fri, 25 Oct 2019 20:35:54 GMT
23
- Content-Type:
24
- - application/json
25
- Content-Length:
26
- - '203'
27
- Connection:
28
- - keep-alive
29
- Access-Control-Allow-Origin:
30
- - "*"
31
- Access-Control-Allow-Credentials:
32
- - 'true'
33
- body:
34
- encoding: UTF-8
35
- string: '{"status":200,"data":{"id":"rb_space","name":"new_name","description":null,"custom":{"XXX":"YYYY"},"created":"2019-10-25T20:35:54.1512Z","updated":"2019-10-25T20:35:54.431837Z","eTag":"AYKsrdL029TZ1wE"}}'
36
- http_version:
37
- recorded_at: Fri, 25 Oct 2019 20:35:51 GMT
38
- recorded_with: VCR 5.0.0
@@ -1,38 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://ps.pndsn.com/v1/objects/demo/users/mg3/spaces?auth=ruby-test-auth&count=true&include=custom&pnsdk=PubNub-Ruby/4.2.0&uuid=ruby-test-uuid
6
- body:
7
- encoding: UTF-8
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - HTTPClient/1.0 (2.8.3, ruby 2.6.3 (2019-04-16))
12
- Accept:
13
- - "*/*"
14
- Date:
15
- - Fri, 25 Oct 2019 20:35:48 GMT
16
- response:
17
- status:
18
- code: 200
19
- message: OK
20
- headers:
21
- Date:
22
- - Fri, 25 Oct 2019 20:35:51 GMT
23
- Content-Type:
24
- - application/json
25
- Content-Length:
26
- - '39'
27
- Connection:
28
- - keep-alive
29
- Access-Control-Allow-Origin:
30
- - "*"
31
- Access-Control-Allow-Credentials:
32
- - 'true'
33
- body:
34
- encoding: UTF-8
35
- string: '{"status":200,"data":[],"totalCount":0}'
36
- http_version:
37
- recorded_at: Fri, 25 Oct 2019 20:35:48 GMT
38
- recorded_with: VCR 5.0.0
@@ -1,40 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://ps.pndsn.com/v1/objects/demo/spaces?auth=ruby-test-auth&include=custom&limit=5&pnsdk=PubNub-Ruby/4.2.0&uuid=ruby-test-uuid
6
- body:
7
- encoding: UTF-8
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - HTTPClient/1.0 (2.8.3, ruby 2.6.3 (2019-04-16))
12
- Accept:
13
- - "*/*"
14
- Date:
15
- - Fri, 25 Oct 2019 20:35:51 GMT
16
- response:
17
- status:
18
- code: 200
19
- message: OK
20
- headers:
21
- Date:
22
- - Fri, 25 Oct 2019 20:35:54 GMT
23
- Content-Type:
24
- - application/json
25
- Content-Length:
26
- - '1036'
27
- Connection:
28
- - keep-alive
29
- Vary:
30
- - Accept-Encoding
31
- Access-Control-Allow-Origin:
32
- - "*"
33
- Access-Control-Allow-Credentials:
34
- - 'true'
35
- body:
36
- encoding: UTF-8
37
- string: '{"status":200,"data":[{"id":"NMLWPOUHLV","name":"ZAGXJVHXZL","description":null,"custom":null,"created":"2019-08-18T12:10:01.873873Z","updated":"2019-08-18T12:10:01.873873Z","eTag":"AY6XzPic6t+aNg"},{"id":"YGVRVMOZIK","name":"FZJWFBWKZM","description":"GKRYWOMDRG","custom":null,"created":"2019-08-18T12:16:37.379839Z","updated":"2019-08-18T12:16:37.848793Z","eTag":"AdGc85ajmIDoXg"},{"id":"PXBRDJJWOI","name":"AOQFCTWRZF","description":null,"custom":{"info":"CJIOSKYG","text":"YWHVBDKUHF","uncd":"=!=?-+-?"},"created":"2019-08-18T12:16:40.302258Z","updated":"2019-08-18T12:16:40.609418Z","eTag":"AbzMs+nb/JmowgE"},{"id":"ZZHUEGVHWM","name":"YUUOXZEKDW","description":null,"custom":{"info":"RDZQEIYH","text":"MVCSBQVYEZ","uncd":"-=--?!=!"},"created":"2019-08-18T12:16:41.154746Z","updated":"2019-08-18T12:16:41.564938Z","eTag":"Ab79ksvrz77S6QE"},{"id":"OTCGLMCVEQ","name":"KLRDJADJSG","description":null,"custom":null,"created":"2019-08-18T12:16:42.062339Z","updated":"2019-08-18T12:16:42.062339Z","eTag":"Adbut8mspafpYw"}],"next":"NQ"}'
38
- http_version:
39
- recorded_at: Fri, 25 Oct 2019 20:35:52 GMT
40
- recorded_with: VCR 5.0.0
@@ -1,38 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://ps.pndsn.com/v1/objects/demo/users/mg?auth=ruby-test-auth&include=custom&pnsdk=PubNub-Ruby/4.2.0&uuid=ruby-test-uuid
6
- body:
7
- encoding: UTF-8
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - HTTPClient/1.0 (2.8.3, ruby 2.6.3 (2019-04-16))
12
- Accept:
13
- - "*/*"
14
- Date:
15
- - Fri, 25 Oct 2019 20:36:54 GMT
16
- response:
17
- status:
18
- code: 200
19
- message: OK
20
- headers:
21
- Date:
22
- - Fri, 25 Oct 2019 20:36:57 GMT
23
- Content-Type:
24
- - application/json
25
- Content-Length:
26
- - '228'
27
- Connection:
28
- - keep-alive
29
- Access-Control-Allow-Origin:
30
- - "*"
31
- Access-Control-Allow-Credentials:
32
- - 'true'
33
- body:
34
- encoding: UTF-8
35
- string: '{"status":200,"data":{"id":"mg","name":"magnum_1","externalId":null,"profileUrl":null,"email":null,"custom":{"XXX":"YYYY"},"created":"2019-10-25T20:36:57.254813Z","updated":"2019-10-25T20:36:57.561462Z","eTag":"AYD0rZeD55aIMA"}}'
36
- http_version:
37
- recorded_at: Fri, 25 Oct 2019 20:36:55 GMT
38
- recorded_with: VCR 5.0.0
@@ -1,40 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://ps.pndsn.com/v1/objects/demo/users?auth=ruby-test-auth&include=custom&limit=5&pnsdk=PubNub-Ruby/4.2.0&uuid=ruby-test-uuid
6
- body:
7
- encoding: UTF-8
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - HTTPClient/1.0 (2.8.3, ruby 2.6.3 (2019-04-16))
12
- Accept:
13
- - "*/*"
14
- Date:
15
- - Mon, 14 Oct 2019 13:26:38 GMT
16
- response:
17
- status:
18
- code: 200
19
- message: OK
20
- headers:
21
- Date:
22
- - Mon, 14 Oct 2019 13:26:39 GMT
23
- Content-Type:
24
- - application/json
25
- Content-Length:
26
- - '1140'
27
- Connection:
28
- - keep-alive
29
- Vary:
30
- - Accept-Encoding
31
- Access-Control-Allow-Origin:
32
- - "*"
33
- Access-Control-Allow-Credentials:
34
- - 'true'
35
- body:
36
- encoding: UTF-8
37
- string: '{"status":200,"data":[{"id":"UJNPRWCKNI","name":"VBSHVLMPEO","externalId":null,"profileUrl":null,"email":null,"custom":null,"created":"2019-08-16T08:12:02.242563Z","updated":"2019-08-16T08:12:02.242563Z","eTag":"AaeFrJLq79bxMg"},{"id":"YAJNBVKTTY","name":"SZRNRVXLGS","externalId":null,"profileUrl":null,"email":null,"custom":null,"created":"2019-08-16T08:13:26.571666Z","updated":"2019-08-16T08:13:26.571666Z","eTag":"AZG6vojJlPjuvwE"},{"id":"QTIVDQJAOJ","name":"XMRZLEINKB","externalId":null,"profileUrl":null,"email":null,"custom":null,"created":"2019-08-16T08:51:20.763757Z","updated":"2019-08-16T08:51:20.763757Z","eTag":"AcHMvZj9rpTj/wE"},{"id":"SAHHGSCVBO","name":"LRXSBWCRND","externalId":null,"profileUrl":null,"email":null,"custom":{"text":"CGJYKWBJWS","uncd":"=--+=!=="},"created":"2019-08-16T08:55:18.96962Z","updated":"2019-08-16T08:55:18.96962Z","eTag":"AeWkrM7ducOORA"},{"id":"SRMNJAHHNT","name":"XNQAYAJVQE","externalId":null,"profileUrl":null,"email":null,"custom":{"text":"TQONNXSYTR","uncd":"!!++!!-+"},"created":"2019-08-16T08:55:54.795609Z","updated":"2019-08-16T08:55:54.795609Z","eTag":"Af+0/7Gt6oKBNw"}],"next":"NQ"}'
38
- http_version:
39
- recorded_at: Mon, 14 Oct 2019 13:26:38 GMT
40
- recorded_with: VCR 5.0.0
@@ -1,83 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://ps.pndsn.com/v2/presence/sub-key/demo/channel/demo/heartbeat?auth=ruby-test-auth&heartbeat=3&l_pres=0.006&pnsdk=PubNub-Ruby/4.2.0&state=%7B%22channel%22:%7B%7D,%22group%22:%7B%7D%7D&uuid=ruby-test-uuid
6
- body:
7
- encoding: UTF-8
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - HTTPClient/1.0 (2.8.3, ruby 2.6.3 (2019-04-16))
12
- Accept:
13
- - "*/*"
14
- Date:
15
- - Fri, 25 Oct 2019 20:35:49 GMT
16
- response:
17
- status:
18
- code: 200
19
- message: OK
20
- headers:
21
- Date:
22
- - Fri, 25 Oct 2019 20:35:52 GMT
23
- Content-Type:
24
- - text/javascript; charset="UTF-8"
25
- Content-Length:
26
- - '55'
27
- Connection:
28
- - keep-alive
29
- Access-Control-Allow-Origin:
30
- - "*"
31
- Access-Control-Allow-Methods:
32
- - OPTIONS, GET, POST
33
- Age:
34
- - '0'
35
- Server:
36
- - Pubnub Presence
37
- Cache-Control:
38
- - no-cache
39
- Accept-Ranges:
40
- - bytes
41
- body:
42
- encoding: UTF-8
43
- string: '{"status": 200, "message": "OK", "service": "Presence"}'
44
- http_version:
45
- recorded_at: Fri, 25 Oct 2019 20:35:50 GMT
46
- - request:
47
- method: patch
48
- uri: http://ps.pndsn.com/v1/objects/demo/spaces/space-1/users?auth=ruby-test-auth&include=custom&pnsdk=PubNub-Ruby/4.2.0&uuid=ruby-test-uuid
49
- body:
50
- encoding: UTF-8
51
- string: '{"remove":[{"id":"mg2"}]}'
52
- headers:
53
- User-Agent:
54
- - HTTPClient/1.0 (2.8.3, ruby 2.6.3 (2019-04-16))
55
- Accept:
56
- - "*/*"
57
- Date:
58
- - Fri, 25 Oct 2019 20:35:49 GMT
59
- Content-Type:
60
- - application/x-www-form-urlencoded
61
- response:
62
- status:
63
- code: 200
64
- message: OK
65
- headers:
66
- Date:
67
- - Fri, 25 Oct 2019 20:35:52 GMT
68
- Content-Type:
69
- - application/json
70
- Content-Length:
71
- - '24'
72
- Connection:
73
- - keep-alive
74
- Access-Control-Allow-Origin:
75
- - "*"
76
- Access-Control-Allow-Credentials:
77
- - 'true'
78
- body:
79
- encoding: UTF-8
80
- string: '{"status":200,"data":[]}'
81
- http_version:
82
- recorded_at: Fri, 25 Oct 2019 20:35:50 GMT
83
- recorded_with: VCR 5.0.0
@@ -1,77 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/rb_space_4/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.0&t=%7B%22r%22:0,%22t%22:0%7D&uuid=ruby-test-uuid
6
- body:
7
- encoding: UTF-8
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - HTTPClient/1.0 (2.8.3, ruby 2.6.3 (2019-04-16))
12
- Accept:
13
- - "*/*"
14
- Date:
15
- - Fri, 25 Oct 2019 20:20:13 GMT
16
- response:
17
- status:
18
- code: 200
19
- message: OK
20
- headers:
21
- Date:
22
- - Fri, 25 Oct 2019 20:20:15 GMT
23
- Content-Type:
24
- - text/javascript; charset="UTF-8"
25
- Content-Length:
26
- - '45'
27
- Connection:
28
- - keep-alive
29
- Cache-Control:
30
- - no-cache
31
- Access-Control-Allow-Origin:
32
- - "*"
33
- Access-Control-Allow-Methods:
34
- - GET
35
- body:
36
- encoding: UTF-8
37
- string: '{"t":{"t":"15720347890178803","r":12},"m":[]}'
38
- http_version:
39
- recorded_at: Fri, 25 Oct 2019 20:20:13 GMT
40
- - request:
41
- method: get
42
- uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/rb_space_4/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.0&t=%7B%22r%22:12,%22t%22:%2215720347890178803%22%7D&uuid=ruby-test-uuid
43
- body:
44
- encoding: UTF-8
45
- string: ''
46
- headers:
47
- User-Agent:
48
- - HTTPClient/1.0 (2.8.3, ruby 2.6.3 (2019-04-16))
49
- Accept:
50
- - "*/*"
51
- Date:
52
- - Fri, 25 Oct 2019 20:20:13 GMT
53
- response:
54
- status:
55
- code: 200
56
- message: OK
57
- headers:
58
- Date:
59
- - Fri, 25 Oct 2019 20:20:18 GMT
60
- Content-Type:
61
- - text/javascript; charset="UTF-8"
62
- Content-Length:
63
- - '422'
64
- Connection:
65
- - keep-alive
66
- Cache-Control:
67
- - no-cache
68
- Access-Control-Allow-Origin:
69
- - "*"
70
- Access-Control-Allow-Methods:
71
- - GET
72
- body:
73
- encoding: UTF-8
74
- string: '{"t":{"t":"15720348183193928","r":12},"m":[{"a":"3","f":0,"e":2,"p":{"t":"15720348182752121","r":2},"k":"sub-a-mock-key","c":"rb_space_4","d":{"source":"objects","version":"1.0","event":"create","type":"membership","data":{"created":"2019-10-25T20:20:18.257654837Z","custom":null,"eTag":"AY39mJKK//C0VA","spaceId":"rb_space_4","updated":"2019-10-25T20:20:18.257654837Z","userId":"user_mg4"}}}]}'
75
- http_version:
76
- recorded_at: Fri, 25 Oct 2019 20:20:15 GMT
77
- recorded_with: VCR 5.0.0