base.rb 10.7 KB
Newer Older
1 2
require 'set'

P
Pratik Naik 已提交
3 4
module ActionCable
  module Channel
5
    # The channel provides the basic structure of grouping behavior into logical units when communicating over the WebSocket connection.
6 7 8 9 10 11
    # You can think of a channel like a form of controller, but one that's capable of pushing content to the subscriber in addition to simply
    # responding to the subscriber's direct requests.
    #
    # Channel instances are long-lived. A channel object will be instantiated when the cable consumer becomes a subscriber, and then
    # lives until the consumer disconnects. This may be seconds, minutes, hours, or even days. That means you have to take special care
    # not to do anything silly in a channel that would balloon its memory footprint or whatever. The references are forever, so they won't be released
12
    # as is normally the case with a controller instance that gets thrown away after every request.
13 14 15
    #
    # Long-lived channels (and connections) also mean you're responsible for ensuring that the data is fresh. If you hold a reference to a user
    # record, but the name is changed while that reference is held, you may be sending stale data if you don't take precautions to avoid it.
16 17 18 19
    #
    # The upside of long-lived channel instances is that you can use instance variables to keep reference to objects that future subscriber requests
    # can interact with. Here's a quick example:
    #
20
    #   class ChatChannel < ApplicationCable::Channel
21 22 23 24 25 26 27 28 29 30 31 32
    #     def subscribed
    #       @room = Chat::Room[params[:room_number]]
    #     end
    #
    #     def speak(data)
    #       @room.speak data, user: current_user
    #     end
    #   end
    #
    # The #speak action simply uses the Chat::Room object that was created when the channel was first subscribed to by the consumer when that
    # subscriber wants to say something in the room.
    #
33 34
    # == Action processing
    #
35 36
    # Unlike subclasses of ActionController::Base, channels do not follow a RESTful
    # constraint form for their actions. Instead, Action Cable operates through a
37 38 39
    # remote-procedure call model. You can declare any public method on the
    # channel (optionally taking a <tt>data</tt> argument), and this method is
    # automatically exposed as callable to the client.
40 41 42 43 44 45 46
    #
    # Example:
    #
    #   class AppearanceChannel < ApplicationCable::Channel
    #     def subscribed
    #       @connection_token = generate_connection_token
    #     end
47
    #
48 49 50
    #     def unsubscribed
    #       current_user.disappear @connection_token
    #     end
51
    #
52 53 54
    #     def appear(data)
    #       current_user.appear @connection_token, on: data['appearing_on']
    #     end
55
    #
56 57 58
    #     def away
    #       current_user.away @connection_token
    #     end
59
    #
60 61 62 63 64 65
    #     private
    #       def generate_connection_token
    #         SecureRandom.hex(36)
    #       end
    #   end
    #
66
    # In this example, the subscribed and unsubscribed methods are not callable methods, as they
67 68
    # were already declared in ActionCable::Channel::Base, but <tt>#appear</tt>
    # and <tt>#away</tt> are. <tt>#generate_connection_token</tt> is also not
69
    # callable, since it's a private method. You'll see that appear accepts a data
70 71
    # parameter, which it then uses as part of its model call. <tt>#away</tt>
    # does not, since it's simply a trigger action.
72
    #
73 74 75 76
    # Also note that in this example, <tt>current_user</tt> is available because
    # it was marked as an identifying attribute on the connection. All such
    # identifiers will automatically create a delegation method of the same name
    # on the channel instance.
77 78 79
    #
    # == Rejecting subscription requests
    #
80 81
    # A channel can reject a subscription request in the #subscribed callback by
    # invoking the #reject method:
82 83 84 85
    #
    #   class ChatChannel < ApplicationCable::Channel
    #     def subscribed
    #       @room = Chat::Room[params[:room_number]]
86
    #       reject unless current_user.can_access?(@room)
87 88 89
    #     end
    #   end
    #
90 91 92 93
    # In this example, the subscription will be rejected if the
    # <tt>current_user</tt> does not have access to the chat room. On the
    # client-side, the <tt>Channel#rejected</tt> callback will get invoked when
    # the server rejects the subscription request.
P
Pratik Naik 已提交
94 95
    class Base
      include Callbacks
96
      include PeriodicTimers
97
      include Streams
98 99
      include Naming
      include Broadcasting
P
Pratik Naik 已提交
100

P
Pratik Naik 已提交
101
      attr_reader :params, :connection, :identifier
102
      delegate :logger, to: :connection
P
Pratik Naik 已提交
103

104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
      class << self
        # A list of method names that should be considered actions. This
        # includes all public instance methods on a channel, less
        # any internal methods (defined on Base), adding back in
        # any methods that are internal, but still exist on the class
        # itself.
        #
        # ==== Returns
        # * <tt>Set</tt> - A set of all methods that should be considered actions.
        def action_methods
          @action_methods ||= begin
            # All public instance methods of this class, including ancestors
            methods = (public_instance_methods(true) -
              # Except for public instance methods of Base and its ancestors
              ActionCable::Channel::Base.public_instance_methods(true) +
              # Be sure to include shadowed public instance methods of this class
              public_instance_methods(false)).uniq.map(&:to_s)
            methods.to_set
          end
        end

        protected
          # action_methods are cached and there is sometimes need to refresh
          # them. ::clear_action_methods! allows you to do that, so next time
128
          # you run action_methods, they will be recalculated.
129 130 131 132 133 134 135 136 137 138 139
          def clear_action_methods!
            @action_methods = nil
          end

          # Refresh the cached action_methods when a new action_method is added.
          def method_added(name)
            super
            clear_action_methods!
          end
      end

140
      def initialize(connection, identifier, params = {})
P
Pratik Naik 已提交
141
        @connection = connection
142 143
        @identifier = identifier
        @params     = params
P
Pratik Naik 已提交
144

145 146
        # When a channel is streaming via pubsub, we want to delay the confirmation
        # transmission until pubsub subscription is confirmed.
147 148
        @defer_subscription_confirmation = false

A
Arun Agrawal 已提交
149 150 151
        @reject_subscription = nil
        @subscription_confirmation_sent = nil

152
        delegate_connection_identifiers
153
        subscribe_to_channel
P
Pratik Naik 已提交
154 155
      end

D
David Heinemeier Hansson 已提交
156 157 158
      # Extract the action name from the passed data and process it via the channel. The process will ensure
      # that the action requested is a public method on the channel declared by the user (so not one of the callbacks
      # like #subscribed).
159
      def perform_action(data)
160 161 162
        action = extract_action(data)

        if processable_action?(action)
163
          dispatch_action(action, data)
164
        else
165
          logger.error "Unable to process #{action_signature(action, data)}"
166
        end
P
Pratik Naik 已提交
167 168
      end

169
      # Called by the cable connection when it's cut, so the channel has a chance to cleanup with callbacks.
170
      # This method is not intended to be called directly by the user. Instead, overwrite the #unsubscribed callback.
171
      def unsubscribe_from_channel # :nodoc:
D
Diego Ballona 已提交
172 173 174
        run_callbacks :unsubscribe do
          unsubscribed
        end
D
David Heinemeier Hansson 已提交
175 176
      end

P
Pratik Naik 已提交
177 178

      protected
D
David Heinemeier Hansson 已提交
179 180
        # Called once a consumer has become a subscriber of the channel. Usually the place to setup any streams
        # you want this channel to be sending to the subscriber.
181
        def subscribed
P
Pratik Naik 已提交
182 183 184
          # Override in subclasses
        end

D
David Heinemeier Hansson 已提交
185
        # Called once a consumer has cut its cable connection. Can be used for cleaning up connections or marking
186
        # users as offline or the like.
187
        def unsubscribed
188 189
          # Override in subclasses
        end
190 191

        # Transmit a hash of data to the subscriber. The hash will automatically be wrapped in a JSON envelope with
D
David Heinemeier Hansson 已提交
192
        # the proper channel identifier marked as the recipient.
193
        def transmit(data, via: nil)
194
          logger.info "#{self.class.name} transmitting #{data.inspect.truncate(300)}".tap { |m| m << " (via #{via})" if via }
195
          connection.transmit ActiveSupport::JSON.encode(identifier: @identifier, message: data)
P
Pratik Naik 已提交
196 197
        end

198 199 200 201 202 203 204 205
        def defer_subscription_confirmation!
          @defer_subscription_confirmation = true
        end

        def defer_subscription_confirmation?
          @defer_subscription_confirmation
        end

206 207 208 209
        def subscription_confirmation_sent?
          @subscription_confirmation_sent
        end

210
        def reject
211 212 213 214 215 216 217
          @reject_subscription = true
        end

        def subscription_rejected?
          @reject_subscription
        end

218
      private
219 220 221 222 223 224 225 226
        def delegate_connection_identifiers
          connection.identifiers.each do |identifier|
            define_singleton_method(identifier) do
              connection.send(identifier)
            end
          end
        end

227
        def subscribe_to_channel
D
Diego Ballona 已提交
228 229 230
          run_callbacks :subscribe do
            subscribed
          end
231 232 233 234 235 236

          if subscription_rejected?
            reject_subscription
          else
            transmit_subscription_confirmation unless defer_subscription_confirmation?
          end
237 238
        end

239 240 241 242
        def extract_action(data)
          (data['action'].presence || :receive).to_sym
        end

243
        def processable_action?(action)
244
          self.class.action_methods.include?(action.to_s)
245 246
        end

247 248
        def dispatch_action(action, data)
          logger.info action_signature(action, data)
249

250 251 252 253 254 255 256
          if method(action).arity == 1
            public_send action, data
          else
            public_send action
          end
        end

D
David Heinemeier Hansson 已提交
257
        def action_signature(action, data)
258
          "#{self.class.name}##{action}".tap do |signature|
259
            if (arguments = data.except('action')).any?
D
David Heinemeier Hansson 已提交
260
              signature << "(#{arguments.inspect})"
261 262 263 264
            end
          end
        end

265
        def transmit_subscription_confirmation
266 267
          unless subscription_confirmation_sent?
            logger.info "#{self.class.name} is transmitting the subscription confirmation"
268
            connection.transmit ActiveSupport::JSON.encode(identifier: @identifier, type: ActionCable::INTERNAL[:message_types][:confirmation])
269 270
            @subscription_confirmation_sent = true
          end
271 272
        end

273 274 275 276 277 278 279
        def reject_subscription
          connection.subscriptions.remove_subscription self
          transmit_subscription_rejection
        end

        def transmit_subscription_rejection
          logger.info "#{self.class.name} is transmitting the subscription rejection"
280
          connection.transmit ActiveSupport::JSON.encode(identifier: @identifier, type: ActionCable::INTERNAL[:message_types][:rejection])
281
        end
P
Pratik Naik 已提交
282 283
    end
  end
J
Javan Makhmali 已提交
284
end