pubnub 4.3.0 → 4.4.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 (118) hide show
  1. checksums.yaml +4 -4
  2. data/.pubnub.yml +32 -24
  3. data/CHANGELOG.md +5 -0
  4. data/Gemfile.lock +1 -1
  5. data/README.md +1 -1
  6. data/VERSION +1 -1
  7. data/fixtures/vcr_cassettes/examples/grant/1913.yml +1 -1
  8. data/fixtures/vcr_cassettes/examples/grant/1945.yml +355 -4
  9. data/fixtures/vcr_cassettes/lib/events/get_all_channels_metadata.yml +39 -0
  10. data/fixtures/vcr_cassettes/lib/events/get_all_uuid_metadata.yml +76 -0
  11. data/fixtures/vcr_cassettes/lib/events/{get_space_memberships.yml → get_channel_members.yml} +5 -6
  12. data/fixtures/vcr_cassettes/lib/events/get_channel_metadata.yml +37 -0
  13. data/fixtures/vcr_cassettes/lib/events/{get_members.yml → get_memberships.yml} +10 -11
  14. data/fixtures/vcr_cassettes/lib/events/get_uuid_metadata.yml +76 -0
  15. data/fixtures/vcr_cassettes/lib/events/grant-error.yml +2 -2
  16. data/fixtures/vcr_cassettes/lib/events/grant.yml +10 -11
  17. data/fixtures/vcr_cassettes/lib/events/remove_channel_members.yml +78 -0
  18. data/fixtures/vcr_cassettes/lib/events/{delete_space.yml → remove_channel_metadata.yml} +5 -6
  19. data/fixtures/vcr_cassettes/lib/events/{manage_memberships_remove.yml → remove_memberships.yml} +8 -9
  20. data/fixtures/vcr_cassettes/lib/events/remove_uuid_metadata.yml +76 -0
  21. data/fixtures/vcr_cassettes/lib/events/set_channel_members.yml +39 -0
  22. data/fixtures/vcr_cassettes/lib/events/set_channel_metadata.yml +39 -0
  23. data/fixtures/vcr_cassettes/lib/events/{manage_members_add.yml → set_memberships.yml} +8 -9
  24. data/fixtures/vcr_cassettes/lib/events/set_uuid_metadata.yml +78 -0
  25. data/fixtures/vcr_cassettes/lib/events/{subscribe-space-delete-async.yml → subscribe-channel-metadata-remove-sync.yml} +12 -14
  26. data/fixtures/vcr_cassettes/lib/events/subscribe-channel-metadata-set-async.yml +75 -0
  27. data/fixtures/vcr_cassettes/lib/events/{subscribe-member-remove-async.yml → subscribe-member-remove-sync.yml} +12 -14
  28. data/fixtures/vcr_cassettes/lib/events/subscribe-member-set-async.yml +75 -0
  29. data/fixtures/vcr_cassettes/lib/events/subscribe-membership-remove-async.yml +12 -14
  30. data/fixtures/vcr_cassettes/lib/events/{subscribe-user-update-async.yml → subscribe-membership-set-async.yml} +12 -14
  31. data/fixtures/vcr_cassettes/lib/events/{subscribe-user-delete-async.yml → subscribe-uuid-metadata-remove-sync.yml} +12 -14
  32. data/fixtures/vcr_cassettes/lib/events/subscribe-uuid-metadata-set-async.yml +75 -0
  33. data/lib/pubnub/client.rb +14 -14
  34. data/lib/pubnub/client/events.rb +4 -2
  35. data/lib/pubnub/constants.rb +19 -18
  36. data/lib/pubnub/event.rb +29 -15
  37. data/lib/pubnub/event/signature.rb +22 -7
  38. data/lib/pubnub/events/get_all_channels_metadata.rb +92 -0
  39. data/lib/pubnub/events/get_all_uuid_metadata.rb +92 -0
  40. data/lib/pubnub/events/get_channel_members.rb +100 -0
  41. data/lib/pubnub/events/{get_user.rb → get_channel_metadata.rb} +22 -15
  42. data/lib/pubnub/events/get_memberships.rb +100 -0
  43. data/lib/pubnub/events/{get_space.rb → get_uuid_metadata.rb} +22 -15
  44. data/lib/pubnub/events/grant.rb +9 -7
  45. data/lib/pubnub/events/remove_channel_members.rb +117 -0
  46. data/lib/pubnub/events/{delete_space.rb → remove_channel_metadata.rb} +12 -12
  47. data/lib/pubnub/events/remove_memberships.rb +117 -0
  48. data/lib/pubnub/events/{delete_user.rb → remove_uuid_metadata.rb} +12 -12
  49. data/lib/pubnub/events/set_channel_members.rb +120 -0
  50. data/lib/pubnub/events/{create_space.rb → set_channel_metadata.rb} +26 -16
  51. data/lib/pubnub/events/set_memberships.rb +120 -0
  52. data/lib/pubnub/events/{update_space.rb → set_uuid_metadata.rb} +27 -18
  53. data/lib/pubnub/pam.rb +2 -11
  54. data/lib/pubnub/subscribe_callback.rb +1 -3
  55. data/lib/pubnub/subscribe_event/formatter.rb +21 -17
  56. data/lib/pubnub/subscriber.rb +5 -6
  57. data/lib/pubnub/validators/get_all_channels_metadata.rb +29 -0
  58. data/lib/pubnub/validators/get_all_uuid_metadata.rb +29 -0
  59. data/lib/pubnub/validators/get_channel_members.rb +39 -0
  60. data/lib/pubnub/validators/get_channel_metadata.rb +39 -0
  61. data/lib/pubnub/validators/get_memberships.rb +39 -0
  62. data/lib/pubnub/validators/get_uuid_metadata.rb +39 -0
  63. data/lib/pubnub/validators/grant.rb +37 -2
  64. data/lib/pubnub/validators/remove_channel_members.rb +52 -0
  65. data/lib/pubnub/validators/remove_channel_metadata.rb +39 -0
  66. data/lib/pubnub/validators/remove_memberships.rb +52 -0
  67. data/lib/pubnub/validators/remove_uuid_metadata.rb +39 -0
  68. data/lib/pubnub/validators/set_channel_members.rb +78 -0
  69. data/lib/pubnub/validators/set_channel_metadata.rb +62 -0
  70. data/lib/pubnub/validators/set_memberships.rb +78 -0
  71. data/lib/pubnub/validators/set_uuid_metadata.rb +62 -0
  72. data/lib/pubnub/version.rb +1 -1
  73. data/spec/examples/grant_examples_spec.rb +2 -2
  74. data/spec/lib/events/channel_metadata_spec.rb +58 -0
  75. data/spec/lib/events/grant_spec.rb +3 -2
  76. data/spec/lib/events/membership_spec.rb +25 -22
  77. data/spec/lib/events/subscribe_spec.rb +58 -45
  78. data/spec/lib/events/uuid_metadata_spec.rb +56 -0
  79. data/spec/spec_helper.rb +1 -1
  80. metadata +55 -57
  81. data/fixtures/vcr_cassettes/lib/events/create_space.yml +0 -40
  82. data/fixtures/vcr_cassettes/lib/events/create_user.yml +0 -40
  83. data/fixtures/vcr_cassettes/lib/events/delete_user.yml +0 -38
  84. data/fixtures/vcr_cassettes/lib/events/get_space.yml +0 -38
  85. data/fixtures/vcr_cassettes/lib/events/get_spaces.yml +0 -40
  86. data/fixtures/vcr_cassettes/lib/events/get_user.yml +0 -38
  87. data/fixtures/vcr_cassettes/lib/events/get_users.yml +0 -40
  88. data/fixtures/vcr_cassettes/lib/events/manage_members_remove.yml +0 -83
  89. data/fixtures/vcr_cassettes/lib/events/manage_memberships_add.yml +0 -40
  90. data/fixtures/vcr_cassettes/lib/events/subscribe-member-add-async.yml +0 -77
  91. data/fixtures/vcr_cassettes/lib/events/subscribe-membership-add-async.yml +0 -77
  92. data/fixtures/vcr_cassettes/lib/events/subscribe-space-update-async.yml +0 -77
  93. data/fixtures/vcr_cassettes/lib/events/update_space.yml +0 -40
  94. data/fixtures/vcr_cassettes/lib/events/update_user.yml +0 -40
  95. data/lib/pubnub/events/create_user.rb +0 -84
  96. data/lib/pubnub/events/get_members.rb +0 -93
  97. data/lib/pubnub/events/get_space_memberships.rb +0 -93
  98. data/lib/pubnub/events/get_spaces.rb +0 -90
  99. data/lib/pubnub/events/get_users.rb +0 -90
  100. data/lib/pubnub/events/manage_members.rb +0 -105
  101. data/lib/pubnub/events/manage_memberships.rb +0 -105
  102. data/lib/pubnub/events/update_user.rb +0 -86
  103. data/lib/pubnub/validators/create_space.rb +0 -44
  104. data/lib/pubnub/validators/create_user.rb +0 -44
  105. data/lib/pubnub/validators/delete_space.rb +0 -32
  106. data/lib/pubnub/validators/delete_user.rb +0 -32
  107. data/lib/pubnub/validators/get_members.rb +0 -32
  108. data/lib/pubnub/validators/get_space.rb +0 -32
  109. data/lib/pubnub/validators/get_space_memberships.rb +0 -32
  110. data/lib/pubnub/validators/get_spaces.rb +0 -16
  111. data/lib/pubnub/validators/get_user.rb +0 -32
  112. data/lib/pubnub/validators/get_users.rb +0 -16
  113. data/lib/pubnub/validators/manage_members.rb +0 -45
  114. data/lib/pubnub/validators/manage_memberships.rb +0 -45
  115. data/lib/pubnub/validators/update_space.rb +0 -45
  116. data/lib/pubnub/validators/update_user.rb +0 -45
  117. data/spec/lib/events/space_spec.rb +0 -75
  118. data/spec/lib/events/user_spec.rb +0 -75
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
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
5
+ uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/rb_channel_1/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.7&t=%7B%22r%22:0,%22t%22:0%7D&uuid=ruby-test-uuid
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: ''
@@ -12,14 +12,14 @@ http_interactions:
12
12
  Accept:
13
13
  - "*/*"
14
14
  Date:
15
- - Fri, 25 Oct 2019 20:22:50 GMT
15
+ - Wed, 14 Oct 2020 22:52:57 GMT
16
16
  response:
17
17
  status:
18
18
  code: 200
19
19
  message: OK
20
20
  headers:
21
21
  Date:
22
- - Fri, 25 Oct 2019 20:22:53 GMT
22
+ - Wed, 14 Oct 2020 22:52:57 GMT
23
23
  Content-Type:
24
24
  - text/javascript; charset="UTF-8"
25
25
  Content-Length:
@@ -34,12 +34,11 @@ http_interactions:
34
34
  - GET
35
35
  body:
36
36
  encoding: UTF-8
37
- string: '{"t":{"t":"15720348183193928","r":12},"m":[]}'
38
- http_version:
39
- recorded_at: Fri, 25 Oct 2019 20:22:50 GMT
37
+ string: '{"t":{"t":"16027159755912480","r":12},"m":[]}'
38
+ recorded_at: Wed, 14 Oct 2020 22:52:57 GMT
40
39
  - request:
41
40
  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:%2215720348183193928%22%7D&uuid=ruby-test-uuid
41
+ uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/rb_channel_1/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.7&t=%7B%22r%22:12,%22t%22:%2216027159755912480%22%7D&uuid=ruby-test-uuid
43
42
  body:
44
43
  encoding: UTF-8
45
44
  string: ''
@@ -49,18 +48,18 @@ http_interactions:
49
48
  Accept:
50
49
  - "*/*"
51
50
  Date:
52
- - Fri, 25 Oct 2019 20:22:50 GMT
51
+ - Wed, 14 Oct 2020 22:53:01 GMT
53
52
  response:
54
53
  status:
55
54
  code: 200
56
55
  message: OK
57
56
  headers:
58
57
  Date:
59
- - Fri, 25 Oct 2019 20:22:57 GMT
58
+ - Wed, 14 Oct 2020 22:53:01 GMT
60
59
  Content-Type:
61
60
  - text/javascript; charset="UTF-8"
62
61
  Content-Length:
63
- - '298'
62
+ - '315'
64
63
  Connection:
65
64
  - keep-alive
66
65
  Cache-Control:
@@ -71,7 +70,6 @@ http_interactions:
71
70
  - GET
72
71
  body:
73
72
  encoding: UTF-8
74
- string: '{"t":{"t":"15720349772458715","r":12},"m":[{"a":"3","f":0,"e":2,"p":{"t":"15720349772035051","r":2},"k":"sub-a-mock-key","c":"rb_space_4","d":{"source":"objects","version":"1.0","event":"delete","type":"membership","data":{"spaceId":"rb_space_4","userId":"user_mg4"}}}]}'
75
- http_version:
76
- recorded_at: Fri, 25 Oct 2019 20:22:54 GMT
77
- recorded_with: VCR 5.0.0
73
+ string: '{"t":{"t":"16027159797721921","r":12},"m":[{"a":"5","f":0,"e":2,"p":{"t":"16027159797722917","r":12},"k":"sub-a-mock-key","c":"rb_channel_1","d":{"source":"objects","version":"2.0","event":"delete","type":"membership","data":{"channel":{"id":"rb_channel_1"},"uuid":{"id":"uuid_mg1"}}}}]}'
74
+ recorded_at: Wed, 14 Oct 2020 22:53:01 GMT
75
+ recorded_with: VCR 6.0.0
@@ -0,0 +1,75 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/rb_channel_3/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.7&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
+ - Wed, 14 Oct 2020 20:56:41 GMT
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Date:
22
+ - Wed, 14 Oct 2020 20:56:41 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":"16027090015623494","r":12},"m":[]}'
38
+ recorded_at: Wed, 14 Oct 2020 20:56:41 GMT
39
+ - request:
40
+ method: get
41
+ uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/rb_channel_3/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.7&t=%7B%22r%22:12,%22t%22:%2216027090015623494%22%7D&uuid=ruby-test-uuid
42
+ body:
43
+ encoding: UTF-8
44
+ string: ''
45
+ headers:
46
+ User-Agent:
47
+ - HTTPClient/1.0 (2.8.3, ruby 2.6.3 (2019-04-16))
48
+ Accept:
49
+ - "*/*"
50
+ Date:
51
+ - Wed, 14 Oct 2020 20:56:41 GMT
52
+ response:
53
+ status:
54
+ code: 200
55
+ message: OK
56
+ headers:
57
+ Date:
58
+ - Wed, 14 Oct 2020 20:56:43 GMT
59
+ Content-Type:
60
+ - text/javascript; charset="UTF-8"
61
+ Content-Length:
62
+ - '379'
63
+ Connection:
64
+ - keep-alive
65
+ Cache-Control:
66
+ - no-cache
67
+ Access-Control-Allow-Origin:
68
+ - "*"
69
+ Access-Control-Allow-Methods:
70
+ - GET
71
+ body:
72
+ encoding: UTF-8
73
+ string: '{"t":{"t":"16027090036889335","r":12},"m":[{"a":"5","f":0,"e":2,"p":{"t":"16027090036887202","r":12},"k":"sub-a-mock-key","c":"rb_channel_3","d":{"source":"objects","version":"2.0","event":"set","type":"membership","data":{"channel":{"id":"rb_channel_3"},"eTag":"AY39mJKK//C0VA","updated":"2020-10-14T20:56:43.681870939Z","uuid":{"id":"uuid_mg3"}}}}]}'
74
+ recorded_at: Wed, 14 Oct 2020 20:56:43 GMT
75
+ recorded_with: VCR 6.0.0
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/user_mg4/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.0&t=%7B%22r%22:0,%22t%22:0%7D&uuid=ruby-test-uuid
5
+ uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/uuid_mg1/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.7&t=%7B%22r%22:0,%22t%22:0%7D&uuid=ruby-test-uuid
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: ''
@@ -12,14 +12,14 @@ http_interactions:
12
12
  Accept:
13
13
  - "*/*"
14
14
  Date:
15
- - Fri, 25 Oct 2019 20:28:18 GMT
15
+ - Wed, 14 Oct 2020 22:57:29 GMT
16
16
  response:
17
17
  status:
18
18
  code: 200
19
19
  message: OK
20
20
  headers:
21
21
  Date:
22
- - Fri, 25 Oct 2019 20:28:20 GMT
22
+ - Wed, 14 Oct 2020 22:57:29 GMT
23
23
  Content-Type:
24
24
  - text/javascript; charset="UTF-8"
25
25
  Content-Length:
@@ -34,12 +34,11 @@ http_interactions:
34
34
  - GET
35
35
  body:
36
36
  encoding: UTF-8
37
- string: '{"t":{"t":"15720351664523185","r":12},"m":[]}'
38
- http_version:
39
- recorded_at: Fri, 25 Oct 2019 20:28:18 GMT
37
+ string: '{"t":{"t":"16027162473624594","r":12},"m":[]}'
38
+ recorded_at: Wed, 14 Oct 2020 22:57:29 GMT
40
39
  - request:
41
40
  method: get
42
- uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/user_mg4/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.0&t=%7B%22r%22:12,%22t%22:%2215720351664523185%22%7D&uuid=ruby-test-uuid
41
+ uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/uuid_mg1/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.7&t=%7B%22r%22:12,%22t%22:%2216027162473624594%22%7D&uuid=ruby-test-uuid
43
42
  body:
44
43
  encoding: UTF-8
45
44
  string: ''
@@ -49,18 +48,18 @@ http_interactions:
49
48
  Accept:
50
49
  - "*/*"
51
50
  Date:
52
- - Fri, 25 Oct 2019 20:28:18 GMT
51
+ - Wed, 14 Oct 2020 22:57:33 GMT
53
52
  response:
54
53
  status:
55
54
  code: 200
56
55
  message: OK
57
56
  headers:
58
57
  Date:
59
- - Fri, 25 Oct 2019 20:28:26 GMT
58
+ - Wed, 14 Oct 2020 22:57:33 GMT
60
59
  Content-Type:
61
60
  - text/javascript; charset="UTF-8"
62
61
  Content-Length:
63
- - '296'
62
+ - '311'
64
63
  Connection:
65
64
  - keep-alive
66
65
  Cache-Control:
@@ -71,7 +70,6 @@ http_interactions:
71
70
  - GET
72
71
  body:
73
72
  encoding: UTF-8
74
- string: '{"t":{"t":"15720353067806096","r":12},"m":[{"a":"3","f":0,"e":2,"p":{"t":"15720353067365917","r":2},"k":"sub-a-mock-key","c":"user_mg4","d":{"source":"objects","version":"1.0","event":"delete","type":"membership","data":{"spaceId":"rb_space_4","userId":"user_mg4"}}}]}'
75
- http_version:
76
- recorded_at: Fri, 25 Oct 2019 20:28:24 GMT
77
- recorded_with: VCR 5.0.0
73
+ string: '{"t":{"t":"16027162515347114","r":12},"m":[{"a":"5","f":0,"e":2,"p":{"t":"16027162515321544","r":12},"k":"sub-a-mock-key","c":"uuid_mg1","d":{"source":"objects","version":"2.0","event":"delete","type":"membership","data":{"channel":{"id":"rb_channel_1"},"uuid":{"id":"uuid_mg1"}}}}]}'
74
+ recorded_at: Wed, 14 Oct 2020 22:57:33 GMT
75
+ recorded_with: VCR 6.0.0
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/user_mg3/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.0&t=%7B%22r%22:0,%22t%22:0%7D&uuid=ruby-test-uuid
5
+ uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/uuid_mg5/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.7&t=%7B%22r%22:0,%22t%22:0%7D&uuid=ruby-test-uuid
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: ''
@@ -12,14 +12,14 @@ http_interactions:
12
12
  Accept:
13
13
  - "*/*"
14
14
  Date:
15
- - Fri, 25 Oct 2019 19:20:08 GMT
15
+ - Wed, 14 Oct 2020 21:08:31 GMT
16
16
  response:
17
17
  status:
18
18
  code: 200
19
19
  message: OK
20
20
  headers:
21
21
  Date:
22
- - Fri, 25 Oct 2019 19:20:10 GMT
22
+ - Wed, 14 Oct 2020 21:08:32 GMT
23
23
  Content-Type:
24
24
  - text/javascript; charset="UTF-8"
25
25
  Content-Length:
@@ -34,12 +34,11 @@ http_interactions:
34
34
  - GET
35
35
  body:
36
36
  encoding: UTF-8
37
- string: '{"t":{"t":"15720307124752724","r":12},"m":[]}'
38
- http_version:
39
- recorded_at: Fri, 25 Oct 2019 19:20:08 GMT
37
+ string: '{"t":{"t":"16027097119671567","r":12},"m":[]}'
38
+ recorded_at: Wed, 14 Oct 2020 21:08:32 GMT
40
39
  - request:
41
40
  method: get
42
- uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/user_mg3/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.0&t=%7B%22r%22:12,%22t%22:%2215720307124752724%22%7D&uuid=ruby-test-uuid
41
+ uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/uuid_mg5/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.7&t=%7B%22r%22:12,%22t%22:%2216027097119671567%22%7D&uuid=ruby-test-uuid
43
42
  body:
44
43
  encoding: UTF-8
45
44
  string: ''
@@ -49,18 +48,18 @@ http_interactions:
49
48
  Accept:
50
49
  - "*/*"
51
50
  Date:
52
- - Fri, 25 Oct 2019 19:20:08 GMT
51
+ - Wed, 14 Oct 2020 21:08:32 GMT
53
52
  response:
54
53
  status:
55
54
  code: 200
56
55
  message: OK
57
56
  headers:
58
57
  Date:
59
- - Fri, 25 Oct 2019 19:20:14 GMT
58
+ - Wed, 14 Oct 2020 21:08:34 GMT
60
59
  Content-Type:
61
60
  - text/javascript; charset="UTF-8"
62
61
  Content-Length:
63
- - '353'
62
+ - '375'
64
63
  Connection:
65
64
  - keep-alive
66
65
  Cache-Control:
@@ -71,7 +70,6 @@ http_interactions:
71
70
  - GET
72
71
  body:
73
72
  encoding: UTF-8
74
- string: '{"t":{"t":"15720312144082905","r":12},"m":[{"a":"3","f":0,"e":2,"p":{"t":"15720312143594394","r":2},"k":"sub-a-mock-key","c":"user_mg3","d":{"source":"objects","version":"1.0","event":"update","type":"user","data":{"eTag":"Ab+suYTYtJ2yjQE","id":"user_mg3","name":"name_1572031211","updated":"2019-10-25T19:20:14.283963Z"}}}]}'
75
- http_version:
76
- recorded_at: Fri, 25 Oct 2019 19:20:11 GMT
77
- recorded_with: VCR 5.0.0
73
+ string: '{"t":{"t":"16027097140960770","r":12},"m":[{"a":"5","f":0,"e":2,"p":{"t":"16027097140953196","r":12},"k":"sub-a-mock-key","c":"uuid_mg5","d":{"source":"objects","version":"2.0","event":"set","type":"membership","data":{"channel":{"id":"rb_channel_5"},"eTag":"AY39mJKK//C0VA","updated":"2020-10-14T21:08:34.090622201Z","uuid":{"id":"uuid_mg5"}}}}]}'
74
+ recorded_at: Wed, 14 Oct 2020 21:08:34 GMT
75
+ recorded_with: VCR 6.0.0
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/user_mg3/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.0&t=%7B%22r%22:0,%22t%22:0%7D&uuid=ruby-test-uuid
5
+ uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/uuid_mg3/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.7&t=%7B%22r%22:0,%22t%22:0%7D&uuid=ruby-test-uuid
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: ''
@@ -12,14 +12,14 @@ http_interactions:
12
12
  Accept:
13
13
  - "*/*"
14
14
  Date:
15
- - Fri, 25 Oct 2019 19:23:55 GMT
15
+ - Wed, 14 Oct 2020 22:23:52 GMT
16
16
  response:
17
17
  status:
18
18
  code: 200
19
19
  message: OK
20
20
  headers:
21
21
  Date:
22
- - Fri, 25 Oct 2019 19:23:58 GMT
22
+ - Wed, 14 Oct 2020 22:23:52 GMT
23
23
  Content-Type:
24
24
  - text/javascript; charset="UTF-8"
25
25
  Content-Length:
@@ -34,12 +34,11 @@ http_interactions:
34
34
  - GET
35
35
  body:
36
36
  encoding: UTF-8
37
- string: '{"t":{"t":"15720312144082905","r":12},"m":[]}'
38
- http_version:
39
- recorded_at: Fri, 25 Oct 2019 19:23:55 GMT
37
+ string: '{"t":{"t":"16027142324251261","r":12},"m":[]}'
38
+ recorded_at: Wed, 14 Oct 2020 22:23:52 GMT
40
39
  - request:
41
40
  method: get
42
- uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/user_mg3/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.0&t=%7B%22r%22:12,%22t%22:%2215720312144082905%22%7D&uuid=ruby-test-uuid
41
+ uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/uuid_mg3/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.7&t=%7B%22r%22:12,%22t%22:%2216027142324251261%22%7D&uuid=ruby-test-uuid
43
42
  body:
44
43
  encoding: UTF-8
45
44
  string: ''
@@ -49,18 +48,18 @@ http_interactions:
49
48
  Accept:
50
49
  - "*/*"
51
50
  Date:
52
- - Fri, 25 Oct 2019 19:23:55 GMT
51
+ - Wed, 14 Oct 2020 22:23:56 GMT
53
52
  response:
54
53
  status:
55
54
  code: 200
56
55
  message: OK
57
56
  headers:
58
57
  Date:
59
- - Fri, 25 Oct 2019 19:24:07 GMT
58
+ - Wed, 14 Oct 2020 22:23:56 GMT
60
59
  Content-Type:
61
60
  - text/javascript; charset="UTF-8"
62
61
  Content-Length:
63
- - '263'
62
+ - '264'
64
63
  Connection:
65
64
  - keep-alive
66
65
  Cache-Control:
@@ -71,7 +70,6 @@ http_interactions:
71
70
  - GET
72
71
  body:
73
72
  encoding: UTF-8
74
- string: '{"t":{"t":"15720314473053590","r":12},"m":[{"a":"3","f":0,"e":2,"p":{"t":"15720314472596946","r":2},"k":"sub-a-mock-key","c":"user_mg3","d":{"source":"objects","version":"1.0","event":"delete","type":"user","data":{"id":"user_mg3"}}}]}'
75
- http_version:
76
- recorded_at: Fri, 25 Oct 2019 19:24:04 GMT
77
- recorded_with: VCR 5.0.0
73
+ string: '{"t":{"t":"16027142346548263","r":12},"m":[{"a":"5","f":0,"e":2,"p":{"t":"16027142346521934","r":12},"k":"sub-a-mock-key","c":"uuid_mg3","d":{"source":"objects","version":"2.0","event":"delete","type":"uuid","data":{"id":"uuid_mg3"}}}]}'
74
+ recorded_at: Wed, 14 Oct 2020 22:23:56 GMT
75
+ recorded_with: VCR 6.0.0
@@ -0,0 +1,75 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/uuid_mg3/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.7&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
+ - Wed, 14 Oct 2020 20:10:53 GMT
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Date:
22
+ - Wed, 14 Oct 2020 20:10:53 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":"16027062536439869","r":12},"m":[]}'
38
+ recorded_at: Wed, 14 Oct 2020 20:10:53 GMT
39
+ - request:
40
+ method: get
41
+ uri: http://ps.pndsn.com/v2/subscribe/sub-a-mock-key/uuid_mg3/0?auth=ruby-test-auth&pnsdk=PubNub-Ruby/4.2.7&t=%7B%22r%22:12,%22t%22:%2216027062536439869%22%7D&uuid=ruby-test-uuid
42
+ body:
43
+ encoding: UTF-8
44
+ string: ''
45
+ headers:
46
+ User-Agent:
47
+ - HTTPClient/1.0 (2.8.3, ruby 2.6.3 (2019-04-16))
48
+ Accept:
49
+ - "*/*"
50
+ Date:
51
+ - Wed, 14 Oct 2020 20:10:53 GMT
52
+ response:
53
+ status:
54
+ code: 200
55
+ message: OK
56
+ headers:
57
+ Date:
58
+ - Wed, 14 Oct 2020 20:10:55 GMT
59
+ Content-Type:
60
+ - text/javascript; charset="UTF-8"
61
+ Content-Length:
62
+ - '366'
63
+ Connection:
64
+ - keep-alive
65
+ Cache-Control:
66
+ - no-cache
67
+ Access-Control-Allow-Origin:
68
+ - "*"
69
+ Access-Control-Allow-Methods:
70
+ - GET
71
+ body:
72
+ encoding: UTF-8
73
+ string: '{"t":{"t":"16027062557993707","r":12},"m":[{"a":"5","f":0,"e":2,"p":{"t":"16027062557985952","r":12},"k":"sub-a-mock-key","c":"uuid_mg3","d":{"source":"objects","version":"2.0","event":"set","type":"uuid","data":{"custom":{"XXX":"YYYY"},"eTag":"Ad2eyIWXwJzBqAE","id":"uuid_mg3","name":"magnum","updated":"2020-10-14T20:10:55.763006Z"}}}]}'
74
+ recorded_at: Wed, 14 Oct 2020 20:10:55 GMT
75
+ recorded_with: VCR 6.0.0
@@ -50,20 +50,20 @@ require 'pubnub/validators/delete'
50
50
  require 'pubnub/validators/message_counts'
51
51
  require 'pubnub/validators/push'
52
52
  require 'pubnub/validators/signal'
53
- require 'pubnub/validators/create_user'
54
- require 'pubnub/validators/create_space'
55
- require 'pubnub/validators/delete_user'
56
- require 'pubnub/validators/delete_space'
57
- require 'pubnub/validators/get_user'
58
- require 'pubnub/validators/get_users'
59
- require 'pubnub/validators/get_space'
60
- require 'pubnub/validators/get_spaces'
61
- require 'pubnub/validators/update_user'
62
- require 'pubnub/validators/update_space'
63
- require 'pubnub/validators/get_members'
64
- require 'pubnub/validators/get_space_memberships'
65
- require 'pubnub/validators/manage_members'
66
- require 'pubnub/validators/manage_memberships'
53
+ require 'pubnub/validators/set_uuid_metadata'
54
+ require 'pubnub/validators/set_channel_metadata'
55
+ require 'pubnub/validators/remove_uuid_metadata'
56
+ require 'pubnub/validators/remove_channel_metadata'
57
+ require 'pubnub/validators/get_uuid_metadata'
58
+ require 'pubnub/validators/get_all_uuid_metadata'
59
+ require 'pubnub/validators/get_channel_metadata'
60
+ require 'pubnub/validators/get_all_channels_metadata'
61
+ require 'pubnub/validators/get_channel_members'
62
+ require 'pubnub/validators/get_memberships'
63
+ require 'pubnub/validators/set_channel_members'
64
+ require 'pubnub/validators/set_memberships'
65
+ require 'pubnub/validators/remove_channel_members'
66
+ require 'pubnub/validators/remove_memberships'
67
67
 
68
68
  Dir[File.join(File.dirname(__dir__), 'pubnub', 'events', '*.rb')].each do |file|
69
69
  require file