Class: MessageBus::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/message_bus/client.rb

Overview

Represents a connected subscriber and delivers published messages over its connected socket.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(opts) ⇒ Client

Returns a new instance of Client.

Parameters:

  • opts (Hash)

Options Hash (opts):

  • :client_id (String)

    the unique ID provided by the client

  • :user_id (String, Integer) — default: `nil`

    the user ID the client was authenticated for

  • :group_ids (Array<String,Integer>) — default: `[]`

    the group IDs the authenticated client is a member of

  • :site_id (String) — default: `nil`

    the site ID the client was authenticated for; used for hosting multiple applications or instances of an application against a single message_bus

  • :seq (#to_i) — default: `0`

    the connection sequence number the client provided when connecting

  • :message_bus (MessageBus::Instance) — default: `MessageBus`

    a specific instance of message_bus



38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/message_bus/client.rb', line 38

def initialize(opts)
  self.client_id = opts[:client_id]
  self.user_id = opts[:user_id]
  self.group_ids = opts[:group_ids] || []
  self.site_id = opts[:site_id]
  self.seq = opts[:seq].to_i
  self.connect_time = Time.now
  @lock = Mutex.new
  @bus = opts[:message_bus] || MessageBus
  @subscriptions = {}
  @chunks_sent = 0
end

Instance Attribute Details

#async_responseThin::AsyncResponse?

Returns:



20
21
22
# File 'lib/message_bus/client.rb', line 20

def async_response
  @async_response
end

#cleanup_timerMessageBus::TimerThread::Cancelable

Returns a timer job that is used to auto-disconnect the client at the configured long-polling interval.

Returns:



18
19
20
# File 'lib/message_bus/client.rb', line 18

def cleanup_timer
  @cleanup_timer
end

#client_idString

Returns the unique ID provided by the client.

Returns:

  • (String)

    the unique ID provided by the client



7
8
9
# File 'lib/message_bus/client.rb', line 7

def client_id
  @client_id
end

#connect_timeTime

Returns the time at which the client connected.

Returns:

  • (Time)

    the time at which the client connected



13
14
15
# File 'lib/message_bus/client.rb', line 13

def connect_time
  @connect_time
end

#group_idsArray<String,Integer>

Returns the group IDs the authenticated client is a member of.

Returns:

  • (Array<String,Integer>)

    the group IDs the authenticated client is a member of



11
12
13
# File 'lib/message_bus/client.rb', line 11

def group_ids
  @group_ids
end

#headersHash<String => String>

Returns custom headers to include in HTTP responses.

Returns:

  • (Hash<String => String>)

    custom headers to include in HTTP responses



24
25
26
# File 'lib/message_bus/client.rb', line 24

def headers
  @headers
end

#ioIO

Returns the HTTP socket the client is connected on.

Returns:

  • (IO)

    the HTTP socket the client is connected on



22
23
24
# File 'lib/message_bus/client.rb', line 22

def io
  @io
end

#seqInteger

Returns the connection sequence number the client provided when connecting.

Returns:

  • (Integer)

    the connection sequence number the client provided when connecting



26
27
28
# File 'lib/message_bus/client.rb', line 26

def seq
  @seq
end

#site_idString

Returns the site ID the client was authenticated for; used for hosting multiple.

Returns:

  • (String)

    the site ID the client was authenticated for; used for hosting multiple



15
16
17
# File 'lib/message_bus/client.rb', line 15

def site_id
  @site_id
end

#use_chunkedBoolean

Returns whether or not the client should use chunked encoding.

Returns:

  • (Boolean)

    whether or not the client should use chunked encoding



28
29
30
# File 'lib/message_bus/client.rb', line 28

def use_chunked
  @use_chunked
end

#user_idString, Integer

Returns the user ID the client was authenticated for.

Returns:

  • (String, Integer)

    the user ID the client was authenticated for



9
10
11
# File 'lib/message_bus/client.rb', line 9

def user_id
  @user_id
end

Instance Method Details

#<<(msg) ⇒ void

This method returns an undefined value.

Delivers a message to the client, even if it’s empty

Parameters:



118
119
120
121
122
123
124
125
# File 'lib/message_bus/client.rb', line 118

def <<(msg)
  json = messages_to_json([msg])
  if use_chunked
    write_chunk json
  else
    write_and_close json
  end
end

#allowed?(msg) ⇒ Boolean

Returns whether or not the client has permission to receive the passed message.

Parameters:

Returns:

  • (Boolean)

    whether or not the client has permission to receive the passed message



130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/message_bus/client.rb', line 130

def allowed?(msg)
  client_allowed = !msg.client_ids || msg.client_ids.length == 0 || msg.client_ids.include?(self.client_id)

  user_allowed = false
  group_allowed = false

  has_users = msg.user_ids && msg.user_ids.length > 0
  has_groups = msg.group_ids && msg.group_ids.length > 0

  if has_users
    user_allowed = msg.user_ids.include?(self.user_id)
  end

  if has_groups
    group_allowed = (
      msg.group_ids - (self.group_ids || [])
    ).length < msg.group_ids.length
  end

  has_permission = client_allowed && (user_allowed || group_allowed || (!has_users && !has_groups))

  return has_permission if !has_permission

  filters_allowed = true

  len = @bus.client_message_filters.length
  while len > 0
    len -= 1
    channel_prefix, blk = @bus.client_message_filters[len]

    if msg.channel.start_with?(channel_prefix)
      filters_allowed = blk.call(msg)
      break if !filters_allowed
    end
  end

  filters_allowed
end

#backlogArray<MessageBus::Message>

Returns the set of messages the client is due to receive, based on its subscriptions and permissions. Includes status message if any channels have no messages available and the client requested a message newer than the newest on the channel, or when there are messages available that the client doesn’t have permission for.

Returns:

  • (Array<MessageBus::Message>)

    the set of messages the client is due to receive, based on its subscriptions and permissions. Includes status message if any channels have no messages available and the client requested a message newer than the newest on the channel, or when there are messages available that the client doesn’t have permission for.



174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
# File 'lib/message_bus/client.rb', line 174

def backlog
  r = []
  new_message_ids = nil

  @subscriptions.each do |k, v|
    id = v.to_i

    if id < -1
      last_id = @bus.last_id(k, site_id)
      id = last_id + id + 1
      id = 0 if id < 0
    end

    next if id < 0

    messages = @bus.backlog(k, id, site_id)

    if messages.length == 0
      if id > @bus.last_id(k, site_id)
        @subscriptions[k] = -1
      end
    else
      messages.each do |msg|
        if allowed?(msg)
          r << msg
        else
          new_message_ids ||= {}
          new_message_ids[k] = msg.message_id
        end
      end
    end
  end

  # stats message for all newly subscribed
  status_message = nil
  @subscriptions.each do |k, v|
    if v.to_i == -1 || (new_message_ids && new_message_ids[k])
      status_message ||= {}
      @subscriptions[k] = status_message[k] = @bus.last_id(k, site_id)
    end
  end

  r << MessageBus::Message.new(-1, -1, '/__status', status_message) if status_message

  r || []
end

#closeObject

Closes the client connection



58
59
60
61
62
63
64
65
# File 'lib/message_bus/client.rb', line 58

def close
  if cleanup_timer
    # concurrency may nil cleanup timer
    cleanup_timer.cancel rescue nil
    self.cleanup_timer = nil
  end
  ensure_closed!
end

#closed?Boolean

Returns whether the connection is closed or not.

Returns:

  • (Boolean)

    whether the connection is closed or not



92
93
94
# File 'lib/message_bus/client.rb', line 92

def closed?
  !@async_response && !@io
end

#deliver_backlog(backlog) ⇒ void

This method returns an undefined value.

Delivers a backlog of messages to the client, if there is anything in it. If chunked encoding/streaming is in use, will keep the connection open; if not, will close it.

Parameters:



73
74
75
76
77
78
79
80
81
# File 'lib/message_bus/client.rb', line 73

def deliver_backlog(backlog)
  if backlog.length > 0
    if use_chunked
      write_chunk(messages_to_json(backlog))
    else
      write_and_close messages_to_json(backlog)
    end
  end
end

#ensure_first_chunk_sentObject

If no data has yet been sent to the client, sends an empty chunk; prevents clients from entering a timeout state if nothing is delivered initially.



85
86
87
88
89
# File 'lib/message_bus/client.rb', line 85

def ensure_first_chunk_sent
  if use_chunked && @chunks_sent == 0
    write_chunk("[]")
  end
end

#subscribe(channel, last_seen_id) ⇒ void

This method returns an undefined value.

Subscribes the client to messages on a channel, optionally from a defined starting point.

Parameters:

  • channel (String)

    the channel to subscribe to

  • last_seen_id (Integer, nil)

    the ID of the last message the client received. If nil, will be subscribed from the head of the backlog.



103
104
105
106
107
# File 'lib/message_bus/client.rb', line 103

def subscribe(channel, last_seen_id)
  last_seen_id = nil if last_seen_id == ""
  last_seen_id ||= @bus.last_id(channel)
  @subscriptions[channel] = last_seen_id.to_i
end

#subscriptionsHash<String => Integer>

Returns the active subscriptions, mapping channel names to last seen message IDs.

Returns:

  • (Hash<String => Integer>)

    the active subscriptions, mapping channel names to last seen message IDs



111
112
113
# File 'lib/message_bus/client.rb', line 111

def subscriptions
  @subscriptions
end

#synchronize { ... } ⇒ void

This method returns an undefined value.

Yields:

  • executed with a lock on the Client instance



53
54
55
# File 'lib/message_bus/client.rb', line 53

def synchronize
  @lock.synchronize { yield }
end