ably-rest 1.0.6 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +14 -14
  3. data/lib/submodules/ably-ruby/.editorconfig +14 -0
  4. data/lib/submodules/ably-ruby/.travis.yml +4 -4
  5. data/lib/submodules/ably-ruby/CHANGELOG.md +43 -2
  6. data/lib/submodules/ably-ruby/README.md +3 -2
  7. data/lib/submodules/ably-ruby/Rakefile +32 -0
  8. data/lib/submodules/ably-ruby/SPEC.md +1277 -835
  9. data/lib/submodules/ably-ruby/ably.gemspec +9 -4
  10. data/lib/submodules/ably-ruby/lib/ably/auth.rb +30 -4
  11. data/lib/submodules/ably-ruby/lib/ably/exceptions.rb +8 -2
  12. data/lib/submodules/ably-ruby/lib/ably/models/channel_state_change.rb +1 -1
  13. data/lib/submodules/ably-ruby/lib/ably/models/connection_state_change.rb +1 -1
  14. data/lib/submodules/ably-ruby/lib/ably/models/device_details.rb +87 -0
  15. data/lib/submodules/ably-ruby/lib/ably/models/device_push_details.rb +86 -0
  16. data/lib/submodules/ably-ruby/lib/ably/models/error_info.rb +23 -2
  17. data/lib/submodules/ably-ruby/lib/ably/models/idiomatic_ruby_wrapper.rb +4 -4
  18. data/lib/submodules/ably-ruby/lib/ably/models/protocol_message.rb +32 -2
  19. data/lib/submodules/ably-ruby/lib/ably/models/push_channel_subscription.rb +89 -0
  20. data/lib/submodules/ably-ruby/lib/ably/modules/conversions.rb +1 -1
  21. data/lib/submodules/ably-ruby/lib/ably/modules/encodeable.rb +1 -1
  22. data/lib/submodules/ably-ruby/lib/ably/modules/exception_codes.rb +128 -0
  23. data/lib/submodules/ably-ruby/lib/ably/modules/model_common.rb +15 -2
  24. data/lib/submodules/ably-ruby/lib/ably/modules/state_machine.rb +1 -1
  25. data/lib/submodules/ably-ruby/lib/ably/realtime.rb +1 -0
  26. data/lib/submodules/ably-ruby/lib/ably/realtime/auth.rb +1 -1
  27. data/lib/submodules/ably-ruby/lib/ably/realtime/channel.rb +24 -102
  28. data/lib/submodules/ably-ruby/lib/ably/realtime/channel/channel_manager.rb +2 -6
  29. data/lib/submodules/ably-ruby/lib/ably/realtime/channel/channel_state_machine.rb +2 -2
  30. data/lib/submodules/ably-ruby/lib/ably/realtime/channel/publisher.rb +74 -0
  31. data/lib/submodules/ably-ruby/lib/ably/realtime/channel/push_channel.rb +62 -0
  32. data/lib/submodules/ably-ruby/lib/ably/realtime/client.rb +87 -0
  33. data/lib/submodules/ably-ruby/lib/ably/realtime/client/incoming_message_dispatcher.rb +6 -2
  34. data/lib/submodules/ably-ruby/lib/ably/realtime/client/outgoing_message_dispatcher.rb +1 -1
  35. data/lib/submodules/ably-ruby/lib/ably/realtime/connection.rb +8 -5
  36. data/lib/submodules/ably-ruby/lib/ably/realtime/connection/connection_manager.rb +7 -7
  37. data/lib/submodules/ably-ruby/lib/ably/realtime/connection/websocket_transport.rb +1 -1
  38. data/lib/submodules/ably-ruby/lib/ably/realtime/presence.rb +4 -4
  39. data/lib/submodules/ably-ruby/lib/ably/realtime/presence/members_map.rb +3 -3
  40. data/lib/submodules/ably-ruby/lib/ably/realtime/push.rb +40 -0
  41. data/lib/submodules/ably-ruby/lib/ably/realtime/push/admin.rb +61 -0
  42. data/lib/submodules/ably-ruby/lib/ably/realtime/push/channel_subscriptions.rb +108 -0
  43. data/lib/submodules/ably-ruby/lib/ably/realtime/push/device_registrations.rb +105 -0
  44. data/lib/submodules/ably-ruby/lib/ably/rest.rb +1 -0
  45. data/lib/submodules/ably-ruby/lib/ably/rest/channel.rb +33 -5
  46. data/lib/submodules/ably-ruby/lib/ably/rest/channel/push_channel.rb +62 -0
  47. data/lib/submodules/ably-ruby/lib/ably/rest/client.rb +138 -28
  48. data/lib/submodules/ably-ruby/lib/ably/rest/middleware/parse_message_pack.rb +17 -1
  49. data/lib/submodules/ably-ruby/lib/ably/rest/presence.rb +1 -0
  50. data/lib/submodules/ably-ruby/lib/ably/rest/push.rb +42 -0
  51. data/lib/submodules/ably-ruby/lib/ably/rest/push/admin.rb +54 -0
  52. data/lib/submodules/ably-ruby/lib/ably/rest/push/channel_subscriptions.rb +121 -0
  53. data/lib/submodules/ably-ruby/lib/ably/rest/push/device_registrations.rb +103 -0
  54. data/lib/submodules/ably-ruby/lib/ably/version.rb +7 -2
  55. data/lib/submodules/ably-ruby/spec/acceptance/realtime/auth_spec.rb +233 -8
  56. data/lib/submodules/ably-ruby/spec/acceptance/realtime/channel_spec.rb +166 -51
  57. data/lib/submodules/ably-ruby/spec/acceptance/realtime/client_spec.rb +149 -0
  58. data/lib/submodules/ably-ruby/spec/acceptance/realtime/connection_failures_spec.rb +1 -1
  59. data/lib/submodules/ably-ruby/spec/acceptance/realtime/connection_spec.rb +4 -4
  60. data/lib/submodules/ably-ruby/spec/acceptance/realtime/message_spec.rb +19 -17
  61. data/lib/submodules/ably-ruby/spec/acceptance/realtime/presence_spec.rb +5 -5
  62. data/lib/submodules/ably-ruby/spec/acceptance/realtime/push_admin_spec.rb +696 -0
  63. data/lib/submodules/ably-ruby/spec/acceptance/realtime/push_spec.rb +27 -0
  64. data/lib/submodules/ably-ruby/spec/acceptance/rest/auth_spec.rb +41 -3
  65. data/lib/submodules/ably-ruby/spec/acceptance/rest/base_spec.rb +2 -2
  66. data/lib/submodules/ably-ruby/spec/acceptance/rest/client_spec.rb +129 -10
  67. data/lib/submodules/ably-ruby/spec/acceptance/rest/message_spec.rb +175 -4
  68. data/lib/submodules/ably-ruby/spec/acceptance/rest/push_admin_spec.rb +896 -0
  69. data/lib/submodules/ably-ruby/spec/acceptance/rest/push_spec.rb +25 -0
  70. data/lib/submodules/ably-ruby/spec/acceptance/rest/time_spec.rb +1 -1
  71. data/lib/submodules/ably-ruby/spec/run_parallel_tests +33 -0
  72. data/lib/submodules/ably-ruby/spec/unit/logger_spec.rb +10 -3
  73. data/lib/submodules/ably-ruby/spec/unit/models/device_details_spec.rb +102 -0
  74. data/lib/submodules/ably-ruby/spec/unit/models/device_push_details_spec.rb +101 -0
  75. data/lib/submodules/ably-ruby/spec/unit/models/error_info_spec.rb +51 -3
  76. data/lib/submodules/ably-ruby/spec/unit/models/message_spec.rb +17 -2
  77. data/lib/submodules/ably-ruby/spec/unit/models/presence_message_spec.rb +1 -1
  78. data/lib/submodules/ably-ruby/spec/unit/models/push_channel_subscription_spec.rb +86 -0
  79. data/lib/submodules/ably-ruby/spec/unit/realtime/client_spec.rb +12 -0
  80. data/lib/submodules/ably-ruby/spec/unit/realtime/push_channel_spec.rb +36 -0
  81. data/lib/submodules/ably-ruby/spec/unit/rest/channel_spec.rb +8 -1
  82. data/lib/submodules/ably-ruby/spec/unit/rest/client_spec.rb +30 -0
  83. data/lib/submodules/ably-ruby/spec/unit/rest/push_channel_spec.rb +36 -0
  84. metadata +29 -4
@@ -36,17 +36,22 @@ Gem::Specification.new do |spec|
36
36
  spec.add_development_dependency 'bundler', '~> 1.3'
37
37
  spec.add_development_dependency 'rake', '~> 11.3'
38
38
  spec.add_development_dependency 'redcarpet', '~> 3.3'
39
- spec.add_development_dependency 'rspec', '~> 3.2.0' # version lock, see config.around(:example, :event_machine) in event_machine_helper.rb
40
- spec.add_development_dependency 'rspec-retry', '~> 0.4'
39
+ spec.add_development_dependency 'rspec', '~> 3.3.0' # version lock, see config.around(:example, :event_machine) in event_machine_helper.rb
40
+ spec.add_development_dependency 'rspec-retry', '~> 0.6'
41
41
  spec.add_development_dependency 'yard', '~> 0.9'
42
+ spec.add_development_dependency 'rspec-instafail', '~> 1.0'
42
43
 
43
44
  if RUBY_VERSION.match(/^1/)
44
45
  spec.add_development_dependency 'public_suffix', '~> 1.4.6' # Later versions do not support Ruby 1.9
45
46
  spec.add_development_dependency 'webmock', '2.2'
47
+ spec.add_development_dependency 'parallel_tests', '~> 2.9.0'
46
48
  else
47
49
  spec.add_development_dependency 'webmock', '~> 2.2'
48
50
  spec.add_development_dependency 'coveralls'
49
- spec.add_development_dependency 'pry'
50
- spec.add_development_dependency 'pry-byebug'
51
+ spec.add_development_dependency 'parallel_tests', '~> 2.22'
52
+ if !RUBY_VERSION.match(/^2\.[0123]/)
53
+ spec.add_development_dependency 'pry'
54
+ spec.add_development_dependency 'pry-byebug'
55
+ end
51
56
  end
52
57
  end
@@ -35,6 +35,28 @@ module Ably
35
35
 
36
36
  API_KEY_REGEX = /^[\w-]{2,}\.[\w-]{2,}:[\w-]{2,}$/
37
37
 
38
+ # Supported AuthOption keys, see https://www.ably.io/documentation/realtime/types#auth-options
39
+ # TODO: Review client_id usage embedded incorrectly within AuthOptions.
40
+ # This is legacy code to configure a client with a client_id from the ClientOptions
41
+ # TODO: Review inclusion of use_token_auth, ttl, token_params in auth options
42
+ AUTH_OPTIONS_KEYS = %w(
43
+ auth_callback
44
+ auth_url
45
+ auth_method
46
+ auth_headers
47
+ auth_params
48
+ client_id
49
+ key
50
+ key_name
51
+ key_secret
52
+ query_time
53
+ token
54
+ token_details
55
+ token_params
56
+ ttl
57
+ use_token_auth
58
+ )
59
+
38
60
  attr_reader :options, :token_params, :current_token_details
39
61
  alias_method :auth_options, :options
40
62
 
@@ -231,7 +253,7 @@ module Ably
231
253
  auth_callback.call(token_params)
232
254
  end
233
255
  rescue StandardError => err
234
- raise Ably::Exceptions::AuthenticationFailed.new("auth_callback failed: #{err.message}", nil, nil, err, fallback_status: 500, fallback_code: 80019)
256
+ raise Ably::Exceptions::AuthenticationFailed.new("auth_callback failed: #{err.message}", nil, nil, err, fallback_status: 500, fallback_code: Ably::Exceptions::Codes::CONNECTION_NOT_ESTABLISHED_NO_TRANSPORT_HANDLE)
235
257
  end
236
258
  elsif auth_url = auth_options.delete(:auth_url)
237
259
  begin
@@ -239,7 +261,7 @@ module Ably
239
261
  token_request_from_auth_url(auth_url, auth_options, token_params)
240
262
  end
241
263
  rescue StandardError => err
242
- raise Ably::Exceptions::AuthenticationFailed.new("auth_url failed: #{err.message}", nil, nil, err, fallback_status: 500, fallback_code: 80019)
264
+ raise Ably::Exceptions::AuthenticationFailed.new("auth_url failed: #{err.message}", nil, nil, err, fallback_status: 500, fallback_code: Ably::Exceptions::Codes::CONNECTION_NOT_ESTABLISHED_NO_TRANSPORT_HANDLE)
243
265
  end
244
266
  else
245
267
  create_token_request(token_params, auth_options)
@@ -504,6 +526,10 @@ module Ably
504
526
  end
505
527
 
506
528
  def ensure_valid_auth_attributes(attributes)
529
+ (attributes.keys.map(&:to_s) - AUTH_OPTIONS_KEYS).tap do |unsupported_keys|
530
+ raise ArgumentError, "The key(s) #{unsupported_keys.map { |k| ":#{k}" }.join(', ')} are not valid AuthOptions" unless unsupported_keys.empty?
531
+ end
532
+
507
533
  if attributes[:timestamp]
508
534
  unless attributes[:timestamp].kind_of?(Time) || attributes[:timestamp].kind_of?(Numeric)
509
535
  raise ArgumentError, ':timestamp must be a Time or positive Integer value of seconds since epoch'
@@ -631,7 +657,7 @@ module Ably
631
657
  uri = URI.parse(auth_url)
632
658
  connection = Faraday.new("#{uri.scheme}://#{uri.host}", connection_options)
633
659
  method = auth_options[:auth_method] || options[:auth_method] || :get
634
- params = (auth_options[:auth_params] || options[:auth_method] || {}).merge(token_params)
660
+ params = (auth_options[:auth_params] || options[:auth_params] || {}).merge(token_params)
635
661
 
636
662
  response = connection.public_send(method) do |request|
637
663
  request.url uri.path
@@ -643,7 +669,7 @@ module Ably
643
669
  end
644
670
  end
645
671
 
646
- if !response.body.kind_of?(Hash) && !response.headers['Content-Type'].to_s.match(%r{text/plain}i)
672
+ if !response.body.kind_of?(Hash) && !response.headers['Content-Type'].to_s.match(%r{text/plain|application/jwt}i)
647
673
  raise Ably::Exceptions::InvalidResponseBody,
648
674
  "Content Type #{response.headers['Content-Type']} is not supported by this client library"
649
675
  end
@@ -1,7 +1,8 @@
1
+ require 'ably/modules/exception_codes'
2
+
1
3
  module Ably
2
4
  module Exceptions
3
5
  TOKEN_EXPIRED_CODE = 40140..40149
4
- INVALID_CLIENT_ID = 40012
5
6
 
6
7
  # Base Ably exception class that contains status and code values used by Ably
7
8
  # Refer to https://github.com/ably/ably-common/blob/master/protocol/errors.json
@@ -37,6 +38,7 @@ module Ably
37
38
  additional_info << "base exception: #{@base_exception.class}" if @base_exception
38
39
  additional_info << "request_id: #{request_id}" if request_id
39
40
  message << "(#{additional_info.join(', ')})"
41
+ message << "-> see https://help.ably.io/error/#{code} for help" if code
40
42
  end
41
43
  message.join(' ')
42
44
  end
@@ -53,6 +55,8 @@ module Ably
53
55
  # An invalid request was received by Ably
54
56
  class InvalidRequest < BaseAblyException; end
55
57
 
58
+ class InvalidCredentials < BaseAblyException; end
59
+
56
60
  # Similar to 403 Forbidden, but specifically for use when authentication is required and has failed or has not yet been provided
57
61
  class UnauthorizedRequest < BaseAblyException; end
58
62
 
@@ -146,12 +150,14 @@ module Ably
146
150
  class ChannelInactive < BaseAblyException; end
147
151
 
148
152
  class IncompatibleClientId < BaseAblyException
149
- def initialize(messages, status = 400, code = INVALID_CLIENT_ID, *args)
153
+ def initialize(messages, status = 400, code = Ably::Exceptions::Codes::INVALID_CLIENT_ID, *args)
150
154
  super(message, status, code, *args)
151
155
  end
152
156
  end
153
157
 
154
158
  # Token request has missing or invalid attributes
155
159
  class InvalidTokenRequest < BaseAblyException; end
160
+
161
+ class PushNotificationsNotSupported < BaseAblyException; end
156
162
  end
157
163
  end
@@ -48,7 +48,7 @@ module Ably::Models
48
48
  end
49
49
 
50
50
  def to_s
51
- "ChannelStateChange: current state #{current}, previous state #{previous}"
51
+ "<ChannelStateChange: current state #{current}, previous state #{previous}>"
52
52
  end
53
53
  end
54
54
  end
@@ -38,7 +38,7 @@ module Ably::Models
38
38
  end
39
39
 
40
40
  def to_s
41
- "ConnectionStateChange: current state #{current}, previous state #{previous}"
41
+ "<ConnectionStateChange: current state #{current}, previous state #{previous}>"
42
42
  end
43
43
  end
44
44
  end
@@ -0,0 +1,87 @@
1
+ module Ably::Modules
2
+ module Conversions
3
+ private
4
+ # Convert device_details argument to a {Ably::Models::DeviceDetails} object
5
+ #
6
+ # @param device_details [Ably::Models::DeviceDetails,Hash,nil] A device details object
7
+ #
8
+ # @return [Ably::Models::DeviceDetails]
9
+ def DeviceDetails(device_details)
10
+ case device_details
11
+ when Ably::Models::DeviceDetails
12
+ device_details
13
+ else
14
+ Ably::Models::DeviceDetails.new(device_details)
15
+ end
16
+ end
17
+ end
18
+ end
19
+
20
+ module Ably::Models
21
+ # An object representing a devices details, used currently for push notifications
22
+ #
23
+ # @!attribute [r] id
24
+ # @return [String] Unique device identifier assigned randomly by the device
25
+ # @!attribute [r] platform
26
+ # @return [String] Device platform such as android, ios or browser
27
+ # @!attribute [r] form_factor
28
+ # @return [String] Device form factor such as phone, tablet, watch
29
+ # @!attribute [r] client_id
30
+ # @return [String] The authenticated client identifier for this device. See {https://www.ably.io/documentation/general/authentication#identified-clients auth documentation}.
31
+ # @!attribute [r] metadata
32
+ # @return [Hash] Arbitrary metadata that can be associated with a device
33
+ # @!attribute [r] device_secret
34
+ # @return [String] This secret is used internally by Ably client libraries to authenticate with Ably when push registration updates are required such as when the GCM token expires and needs renewing
35
+ # @!attribute [r] push
36
+ # @return [DevicePushDetails] The push notification specific properties for this device allowing push notifications to be delivered to the device
37
+ #
38
+ class DeviceDetails < Ably::Exceptions::BaseAblyException
39
+ include Ably::Modules::ModelCommon
40
+
41
+ # @param hash_object [Hash,nil] Device detail attributes
42
+ #a
43
+ def initialize(hash_object = {})
44
+ @raw_hash_object = hash_object || {}
45
+ @hash_object = IdiomaticRubyWrapper(hash_object)
46
+ end
47
+
48
+ %w(id platform form_factor client_id device_secret).each do |attribute|
49
+ define_method attribute do
50
+ attributes[attribute.to_sym]
51
+ end
52
+
53
+ define_method "#{attribute}=" do |val|
54
+ unless val.nil? || val.kind_of?(String)
55
+ raise ArgumentError, "#{attribute} must be nil or a string value"
56
+ end
57
+ attributes[attribute.to_sym] = val
58
+ end
59
+ end
60
+
61
+ def metadata
62
+ attributes[:metadata] || {}
63
+ end
64
+
65
+ def metadata=(val)
66
+ unless val.nil? || val.kind_of?(Hash)
67
+ raise ArgumentError, "metadata must be nil or a Hash value"
68
+ end
69
+ attributes[:metadata] = val
70
+ end
71
+
72
+ def push
73
+ DevicePushDetails(attributes[:push] || {})
74
+ end
75
+
76
+ def push=(val)
77
+ unless val.nil? || val.kind_of?(Hash) || val.kind_of?(Ably::Models::DevicePushDetails)
78
+ raise ArgumentError, "push must be nil, a Hash value or a DevicePushDetails object"
79
+ end
80
+ attributes[:push] = DevicePushDetails(val)
81
+ end
82
+
83
+ def attributes
84
+ @hash_object
85
+ end
86
+ end
87
+ end
@@ -0,0 +1,86 @@
1
+ module Ably::Modules
2
+ module Conversions
3
+ private
4
+ # Convert device_push_details argument to a {Ably::Models::DevicePushDetails} object
5
+ #
6
+ # @param device_push_details [Ably::Models::DevicePushDetails,Hash,nil] A device push notification details object
7
+ #
8
+ # @return [Ably::Models::DevicePushDetails]
9
+ def DevicePushDetails(device_push_details)
10
+ case device_push_details
11
+ when Ably::Models::DevicePushDetails
12
+ device_push_details
13
+ else
14
+ Ably::Models::DevicePushDetails.new(device_push_details)
15
+ end
16
+ end
17
+ end
18
+ end
19
+
20
+ module Ably::Models
21
+ # An object with the push notification details for {DeviceDetails} object
22
+ #
23
+ # @!attribute [r] transport_type
24
+ # @return [String] Transport type for push notifications such as gcm, apns, web
25
+ # @!attribute [r] state
26
+ # @return [String] The current state of this push target such as Active, Failing or Failed
27
+ # @!attribute [r] error_reason
28
+ # @return [ErrorInfo] If the state is Failing of Failed, this field may optionally contain a reason
29
+ # @!attribute [r] metadata
30
+ # @return [Hash] Arbitrary metadata that can be associated with this object
31
+ #
32
+ class DevicePushDetails < Ably::Exceptions::BaseAblyException
33
+ include Ably::Modules::ModelCommon
34
+
35
+ # @param hash_object [Hash,nil] Device push detail attributes
36
+ #a
37
+ def initialize(hash_object = {})
38
+ @raw_hash_object = hash_object || {}
39
+ @hash_object = IdiomaticRubyWrapper(@raw_hash_object)
40
+ end
41
+
42
+ %w(state).each do |attribute|
43
+ define_method attribute do
44
+ attributes[attribute.to_sym]
45
+ end
46
+
47
+ define_method "#{attribute}=" do |val|
48
+ unless val.nil? || val.kind_of?(String)
49
+ raise ArgumentError, "#{attribute} must be nil or a string value"
50
+ end
51
+ attributes[attribute.to_sym] = val
52
+ end
53
+ end
54
+
55
+ def recipient
56
+ attributes[:recipient] || {}
57
+ end
58
+
59
+ def recipient=(val)
60
+ unless val.nil? || val.kind_of?(Hash)
61
+ raise ArgumentError, "recipient must be nil or a Hash value"
62
+ end
63
+ attributes[:recipient] = val
64
+ end
65
+
66
+ def error_reason
67
+ attributes[:error_reason]
68
+ end
69
+
70
+ def error_reason=(val)
71
+ unless val.nil? || val.kind_of?(Hash) || val.kind_of?(Ably::Models::ErrorInfo)
72
+ raise ArgumentError, "error_reason must be nil, a Hash value or a ErrorInfo object"
73
+ end
74
+
75
+ attributes[:error_reason] = if val.nil?
76
+ nil
77
+ else
78
+ ErrorInfo(val)
79
+ end
80
+ end
81
+
82
+ def attributes
83
+ @hash_object
84
+ end
85
+ end
86
+ end
@@ -1,3 +1,22 @@
1
+ module Ably::Modules
2
+ module Conversions
3
+ private
4
+ # Convert error_details argument to a {ErrorInfo} object
5
+ #
6
+ # @param error_details [ErrorInfo,Hash] Error info attributes
7
+ #
8
+ # @return [ErrorInfo]
9
+ def ErrorInfo(error_details)
10
+ case error_details
11
+ when Ably::Models::ErrorInfo
12
+ error_details
13
+ else
14
+ Ably::Models::ErrorInfo.new(error_details)
15
+ end
16
+ end
17
+ end
18
+ end
19
+
1
20
  module Ably::Models
2
21
  # An exception type encapsulating error information containing
3
22
  # an Ably-specific error code and generic status code.
@@ -19,7 +38,7 @@ module Ably::Models
19
38
  @hash_object = IdiomaticRubyWrapper(hash_object.clone.freeze)
20
39
  end
21
40
 
22
- %w(message code status_code).each do |attribute|
41
+ %w(message code href status_code).each do |attribute|
23
42
  define_method attribute do
24
43
  attributes[attribute.to_sym]
25
44
  end
@@ -31,7 +50,9 @@ module Ably::Models
31
50
  end
32
51
 
33
52
  def to_s
34
- "Error: #{message} (code: #{code}, http status: #{status})"
53
+ error_href = href || (code ? "https://help.ably.io/error/#{code}" : '')
54
+ see_msg = " -> see #{error_href} for help" unless message.to_s.include?(error_href.to_s)
55
+ "<Error: #{message} (code: #{code}, http status: #{status})>#{see_msg}"
35
56
  end
36
57
  end
37
58
  end
@@ -144,11 +144,11 @@ module Ably::Models
144
144
  @attributes
145
145
  end
146
146
 
147
- # Takes the underlying Hash object and returns it in as a JSON ready Hash object using snakeCase for compability with the Ably service.
147
+ # Takes the underlying Hash object and returns it in as a JSON ready Hash object using camelCase for compability with the Ably service.
148
148
  # Note name clashes are ignored and will result in loss of one or more values
149
149
  # @example
150
150
  # wrapper = IdiomaticRubyWrapper({ 'mixedCase': true, mixed_case: false, 'snake_case': 1 })
151
- # wrapper.as_json({ 'mixedCase': true, 'snakeCase': 1 })
151
+ # wrapper.as_json => { 'mixedCase': true, 'snakeCase': 1 }
152
152
  def as_json(*args)
153
153
  attributes.each_with_object({}) do |key_val, new_hash|
154
154
  key = key_val[0]
@@ -161,7 +161,7 @@ module Ably::Models
161
161
  end
162
162
 
163
163
  # Converts the current wrapped mixedCase object to JSON
164
- # using mixedCase syntax as expected by the Realtime API
164
+ # using snakedCase syntax as expected by the Realtime API
165
165
  def to_json(*args)
166
166
  as_json(args).to_json
167
167
  end
@@ -170,7 +170,7 @@ module Ably::Models
170
170
  # Note name clashes are ignored and will result in loss of one or more values
171
171
  # @example
172
172
  # wrapper = IdiomaticRubyWrapper({ 'mixedCase': true, mixed_case: false, 'snake_case': 1 })
173
- # wrapper.to_hash({ mixed_case: true, snake_case: 1 })
173
+ # wrapper.to_hash => { mixed_case: true, snake_case: 1 }
174
174
  def to_hash(*args)
175
175
  each_with_object({}) do |key_val, object|
176
176
  key, val = key_val
@@ -198,12 +198,42 @@ module Ably::Models
198
198
 
199
199
  # @api private
200
200
  def has_backlog_flag?
201
- flags & 2 == 2
201
+ flags & 2 == 2 # 2^1
202
202
  end
203
203
 
204
204
  # @api private
205
205
  def has_channel_resumed_flag?
206
- flags & 4 == 4
206
+ flags & 4 == 4 # 2^2
207
+ end
208
+
209
+ # @api private
210
+ def has_local_presence_flag?
211
+ flags & 8 == 8 # 2^3
212
+ end
213
+
214
+ # @api private
215
+ def has_transient_flag?
216
+ flags & 16 == 16 # 2^4
217
+ end
218
+
219
+ # @api private
220
+ def has_attach_presence_flag?
221
+ flags & 65536 == 65536 # 2^16
222
+ end
223
+
224
+ # @api private
225
+ def has_attach_publish_flag?
226
+ flags & 131072 == 131072 # 2^17
227
+ end
228
+
229
+ # @api private
230
+ def has_attach_subscribe_flag?
231
+ flags & 262144 == 262144 # 2^18
232
+ end
233
+
234
+ # @api private
235
+ def has_attach_presence_subscribe_flag?
236
+ flags & 524288 == 524288 # 2^19
207
237
  end
208
238
 
209
239
  def connection_details