Class: SelfSDK::MessagingClient
- Inherits:
-
Object
- Object
- SelfSDK::MessagingClient
- Defined in:
- lib/messaging.rb
Constant Summary collapse
- DEFAULT_DEVICE =
"1"
- DEFAULT_AUTO_RECONNECT =
true
- PRIORITIES =
{ 'chat.invite': SelfSDK::Messages::PRIORITY_VISIBLE, 'chat.join': SelfSDK::Messages::PRIORITY_INVISIBLE, 'chat.message': SelfSDK::Messages::PRIORITY_VISIBLE, 'chat.message.delete': SelfSDK::Messages::PRIORITY_INVISIBLE, 'chat.message.delivered': SelfSDK::Messages::PRIORITY_INVISIBLE, 'chat.message.edit': SelfSDK::Messages::PRIORITY_INVISIBLE, 'chat.message.read': SelfSDK::Messages::PRIORITY_INVISIBLE, 'chat.remove': SelfSDK::Messages::PRIORITY_INVISIBLE, 'document.sign.req': SelfSDK::Messages::PRIORITY_VISIBLE, 'identities.authenticate.req': SelfSDK::Messages::PRIORITY_VISIBLE, 'identities.connections.req': SelfSDK::Messages::PRIORITY_VISIBLE, 'identities.facts.query.req': SelfSDK::Messages::PRIORITY_VISIBLE, 'identities.facts.issue': SelfSDK::Messages::PRIORITY_VISIBLE, 'identities.notify': SelfSDK::Messages::PRIORITY_VISIBLE }.freeze
Instance Attribute Summary collapse
-
#ack_timeout ⇒ Object
Returns the value of attribute ack_timeout.
-
#client ⇒ Object
Returns the value of attribute client.
-
#device_id ⇒ Object
Returns the value of attribute device_id.
-
#encryption_client ⇒ Object
Returns the value of attribute encryption_client.
-
#jwt ⇒ Object
Returns the value of attribute jwt.
-
#source ⇒ Object
Returns the value of attribute source.
-
#timeout ⇒ Object
Returns the value of attribute timeout.
-
#type_observer ⇒ Object
Returns the value of attribute type_observer.
-
#uuid_observer ⇒ Object
Returns the value of attribute uuid_observer.
Instance Method Summary collapse
- #clean_observers ⇒ Object
- #close ⇒ Object
-
#initialize(url, client, storage_key, storage, options = {}) ⇒ MessagingClient
constructor
RestClient initializer.
-
#notify_observer(message) ⇒ Object
Notify the type observer for the given message.
-
#send_and_wait_for_response(msgs, original) ⇒ Object
Sends a message and waits for the response.
-
#send_custom(recipients, request_body) ⇒ Object
Send custom mmessage.
-
#send_message(msg) ⇒ Object
Send a message through self network.
-
#session?(identifier, device) ⇒ Boolean
Checks if the session with a specified identity / device is already created.
- #set_observer(original, options = {}, &block) ⇒ Object
-
#start ⇒ Object
Starts the underlying websocket connection.
-
#stop ⇒ Object
Stops the underlying websocket connection.
- #subscribe(type, &block) ⇒ Object
-
#wait_for(uuid, msg = nil) ⇒ Object
Executes the given block and waits for the message id specified on the uuid.
Constructor Details
#initialize(url, client, storage_key, storage, options = {}) ⇒ MessagingClient
RestClient initializer
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'lib/messaging.rb', line 117 def initialize(url, client, storage_key, storage, = {}) @mon = Monitor.new @messages = {} @acks = {} @type_observer = {} @uuid_observer = {} @jwt = client.jwt @client = client @ack_timeout = 60 # seconds @timeout = 120 # seconds @auth_id = SecureRandom.uuid @device_id = .fetch(:device_id, DEFAULT_DEVICE) @source = SelfSDK::Sources.new("#{__dir__}/sources.json") @storage = storage unless .include? :no_crypto @encryption_client = Crypto.new(@client, @device_id, @storage, storage_key) end @offset = @storage.account_offset @ws = if .include? :ws [:ws] else WebsocketClient.new(url, .fetch(:auto_reconnect, DEFAULT_AUTO_RECONNECT), -> { authenticate }, ->(event) { (event) }) end end |
Instance Attribute Details
#ack_timeout ⇒ Object
Returns the value of attribute ack_timeout.
106 107 108 |
# File 'lib/messaging.rb', line 106 def ack_timeout @ack_timeout end |
#client ⇒ Object
Returns the value of attribute client.
106 107 108 |
# File 'lib/messaging.rb', line 106 def client @client end |
#device_id ⇒ Object
Returns the value of attribute device_id.
106 107 108 |
# File 'lib/messaging.rb', line 106 def device_id @device_id end |
#encryption_client ⇒ Object
Returns the value of attribute encryption_client.
106 107 108 |
# File 'lib/messaging.rb', line 106 def encryption_client @encryption_client end |
#jwt ⇒ Object
Returns the value of attribute jwt.
106 107 108 |
# File 'lib/messaging.rb', line 106 def jwt @jwt end |
#source ⇒ Object
Returns the value of attribute source.
106 107 108 |
# File 'lib/messaging.rb', line 106 def source @source end |
#timeout ⇒ Object
Returns the value of attribute timeout.
106 107 108 |
# File 'lib/messaging.rb', line 106 def timeout @timeout end |
#type_observer ⇒ Object
Returns the value of attribute type_observer.
106 107 108 |
# File 'lib/messaging.rb', line 106 def type_observer @type_observer end |
#uuid_observer ⇒ Object
Returns the value of attribute uuid_observer.
106 107 108 |
# File 'lib/messaging.rb', line 106 def uuid_observer @uuid_observer end |
Instance Method Details
#clean_observers ⇒ Object
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 |
# File 'lib/messaging.rb', line 324 def clean_observers live = {} @uuid_observer.clone.each do |id, msg| if msg[:timeout] < SelfSDK::Time.now = SelfSDK::Messages::Base.new(self) .status = "errored" @uuid_observer[id][:block].call() @uuid_observer.delete(id) else live[id] = msg end end @uuid_observer = live end |
#close ⇒ Object
196 197 198 |
# File 'lib/messaging.rb', line 196 def close @ws.close end |
#notify_observer(message) ⇒ Object
Notify the type observer for the given message
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 |
# File 'lib/messaging.rb', line 341 def notify_observer() if @uuid_observer.include? .id SelfSDK.logger.debug " - notifying by id" observer = @uuid_observer[.id] .validate!(observer[:original_message]) if observer.include?(:original_message) Thread.new do @uuid_observer[.id][:block].call() @uuid_observer.delete(.id) end return end SelfSDK.logger.debug " - notifying by type" SelfSDK.logger.debug " - #{.typ}" SelfSDK.logger.debug " - #{.payload}" SelfSDK.logger.debug " - #{@type_observer.keys.join(',')}" # Return if there is no observer setup for this kind of message return unless @type_observer.include? .typ SelfSDK.logger.debug " - notifying by type (Y)" Thread.new do @type_observer[.typ][:block].call() end end |
#send_and_wait_for_response(msgs, original) ⇒ Object
Sends a message and waits for the response
252 253 254 255 256 257 258 259 |
# File 'lib/messaging.rb', line 252 def send_and_wait_for_response(msgs, original) SelfSDK.logger.debug "sending/wait for #{msgs.first.id}" wait_for msgs.first.id, original do msgs.each do |msg| msg end end end |
#send_custom(recipients, request_body) ⇒ Object
Send custom mmessage
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
# File 'lib/messaging.rb', line 211 def send_custom(recipients, request_body) # convert argument into an array if is a string recipients = [recipients] if recipients.is_a? String # send to current identity devices except the current one. recipients |= [@jwt.id] # build recipients list recs = [] recipients.each do |r| @client.devices(r).each do |to_device| recs << { id: r, device_id: to_device } end end SelfSDK.logger.debug "sending custom message #{request_body.to_json}" current_device = "#{@jwt.id}:#{@device_id}" recs.each do |r| next if current_device == "#{r[:id]}:#{r[:device_id]}" request_body[:sub] = r[:id] request_body[:aud] = r[:id] unless request_body.key?(:aud) ciphertext = @encryption_client.encrypt(@jwt.prepare(request_body), recs) m = SelfMsg::Message.new m.id = SecureRandom.uuid m.sender = current_device m.recipient = "#{r[:id]}:#{r[:device_id]}" m.ciphertext = ciphertext m. = r[:typ] m.priority = select_priority(r[:typ]) SelfSDK.logger.debug "[#{m.id}] -> to #{m.recipient}" m end end |
#send_message(msg) ⇒ Object
Send a message through self network
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 |
# File 'lib/messaging.rb', line 294 def (msg) uuid = msg.id @mon.synchronize do @acks[uuid] = { waiting_cond: @mon.new_cond, waiting: true, timeout: SelfSDK::Time.now + @ack_timeout, } end @ws.send msg SelfSDK.logger.debug "waiting for acknowledgement #{uuid}" @mon.synchronize do @acks[uuid][:waiting_cond].wait_while do @acks[uuid][:waiting] end end # response has timed out if @acks[uuid][:timed_out] SelfSDK.logger.debug "acknowledgement response timed out re-sending message #{uuid}" return (msg) end SelfSDK.logger.debug "acknowledged #{uuid}" true ensure @acks.delete(uuid) false end |
#session?(identifier, device) ⇒ Boolean
Checks if the session with a specified identity / device is already created.
201 202 203 204 |
# File 'lib/messaging.rb', line 201 def session?(identifier, device) path = @encryption_client.session_path(identifier, device) File.file?(path) end |
#set_observer(original, options = {}, &block) ⇒ Object
367 368 369 370 |
# File 'lib/messaging.rb', line 367 def set_observer(original, = {}, &block) request_timeout = .fetch(:timeout, @timeout) @uuid_observer[original.id] = { original_message: original, block: block, timeout: SelfSDK::Time.now + request_timeout } end |
#start ⇒ Object
Starts the underlying websocket connection.
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
# File 'lib/messaging.rb', line 148 def start SelfSDK.logger.debug "starting" auth_id = @auth_id.dup @mon.synchronize do @acks[auth_id] = { waiting_cond: @mon.new_cond, waiting: true, timeout: SelfSDK::Time.now + @ack_timeout } end Thread.new do EM.run start_connection end Thread.new do loop do sleep 10 clean_timeouts @ws.ping end end @mon.synchronize do @acks[auth_id][:waiting_cond].wait_while { @acks[auth_id][:waiting] } @acks.delete(auth_id) end return unless @acks.include? auth_id # In case this does not succeed start the process again. if @acks[auth_id][:waiting] close start_connection end @acks.delete(auth_id) end |
#stop ⇒ Object
Stops the underlying websocket connection.
186 187 188 189 190 191 192 193 194 |
# File 'lib/messaging.rb', line 186 def stop @acks.each do |k, _v| mark_as_acknowledged(k) end @messages.each do |k, _v| mark_as_acknowledged(k) mark_as_arrived(k) end end |
#subscribe(type, &block) ⇒ Object
372 373 374 375 376 |
# File 'lib/messaging.rb', line 372 def subscribe(type, &block) type = @source.(type) if type.is_a? Symbol SelfSDK.logger.debug "Subscribing to messages by type: #{type}" @type_observer[type] = { block: block } end |
#wait_for(uuid, msg = nil) ⇒ Object
Executes the given block and waits for the message id specified on the uuid.
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 |
# File 'lib/messaging.rb', line 265 def wait_for(uuid, msg = nil) SelfSDK.logger.debug "sending #{uuid}" @mon.synchronize do @messages[uuid] = { waiting_cond: @mon.new_cond, waiting: true, timeout: SelfSDK::Time.now + @timeout, original_message: msg, } end yield SelfSDK.logger.debug "waiting for client to respond #{uuid}" @mon.synchronize do @messages[uuid][:waiting_cond].wait_while do @messages[uuid][:waiting] end end SelfSDK.logger.debug "response received for #{uuid}" @messages[uuid][:response] ensure @messages.delete(uuid) end |