README.md 17.2 KB
Newer Older
C
claudiob 已提交
1
# Action Cable –- Integrated WebSockets for Rails
2

3
Action Cable seamlessly integrates WebSockets with the rest of your Rails application.
4 5 6 7
It allows for real-time features to be written in Ruby in the same style
and form as the rest of your Rails application, while still being performant
and scalable. It's a full-stack offering that provides both a client-side
JavaScript framework and a server-side Ruby framework. You have access to your full
8
domain model written with ActiveRecord or your ORM of choice.
9

10

11 12
## Terminology

13
A single Action Cable server can handle multiple connection instances. It has one
14 15 16
connection instance per WebSocket connection. A single user may have multiple
WebSockets open to your application if they use multiple browser tabs or devices.
The client of a WebSocket connection is called the consumer.
17 18

Each consumer can in turn subscribe to multiple cable channels. Each channel encapsulates
J
Jon Moss 已提交
19 20
a logical unit of work, similar to what a controller does in a regular MVC setup. For example, you could have a `ChatChannel` and a `AppearancesChannel`, and a consumer could be subscribed to either
or to both of these channels. At the very least, a consumer should be subscribed to one channel.
21 22 23

When the consumer is subscribed to a channel, they act as a subscriber. The connection between
the subscriber and the channel is, surprise-surprise, called a subscription. A consumer
24 25 26
can act as a subscriber to a given channel any number of times. For example, a consumer
could subscribe to multiple chat rooms at the same time. (And remember that a physical user may
have multiple consumers, one per tab/device open to your connection).
27 28

Each channel can then again be streaming zero or more broadcastings. A broadcasting is a
29
pubsub link where anything transmitted by the broadcaster is sent directly to the channel
30 31 32 33 34 35
subscribers who are streaming that named broadcasting.

As you can see, this is a fairly deep architectural stack. There's a lot of new terminology
to identify the new pieces, and on top of that, you're dealing with both client and server side
reflections of each unit.

36
## Examples
37

38
### A full-stack example
39

40 41
The first thing you must do is define your `ApplicationCable::Connection` class in Ruby. This
is the place where you authorize the incoming connection, and proceed to establish it
42 43
if all is well. Here's the simplest example starting with the server-side connection class:

D
David Heinemeier Hansson 已提交
44 45 46 47 48 49 50 51
```ruby
# app/channels/application_cable/connection.rb
module ApplicationCable
  class Connection < ActionCable::Connection::Base
    identified_by :current_user

    def connect
      self.current_user = find_verified_user
52
    end
D
David Heinemeier Hansson 已提交
53 54 55

    protected
      def find_verified_user
56
        if current_user = User.find_by(id: cookies.signed[:user_id])
D
David Heinemeier Hansson 已提交
57 58 59 60 61
          current_user
        else
          reject_unauthorized_connection
        end
      end
62
  end
D
David Heinemeier Hansson 已提交
63 64
end
```
65 66
Here `identified_by` is a connection identifier that can be used to find the specific connection again or later.
Note that anything marked as an identifier will automatically create a delegate by the same name on any channel instances created off the connection.
67

68 69 70 71 72 73 74 75 76 77 78
Then you should define your `ApplicationCable::Channel` class in Ruby. This is the place where you put
shared logic between your channels.

```ruby
# app/channels/application_cable/channel.rb
module ApplicationCable
  class Channel < ActionCable::Channel::Base
  end
end
```

79
This relies on the fact that you will already have handled authentication of the user, and
80
that a successful authentication sets a signed cookie with the `user_id`. This cookie is then
81
automatically sent to the connection instance when a new connection is attempted, and you
82
use that to set the `current_user`. By identifying the connection by this same current_user,
83 84 85 86 87
you're also ensuring that you can later retrieve all open connections by a given user (and
potentially disconnect them all if the user is deleted or deauthorized).

The client-side needs to setup a consumer instance of this connection. That's done like so:

D
David Heinemeier Hansson 已提交
88
```coffeescript
89
# app/assets/javascripts/application_cable.coffee
90
#= require cable
91

D
David Heinemeier Hansson 已提交
92
@App = {}
93
App.cable = Cable.createConsumer("ws://cable.example.com")
D
David Heinemeier Hansson 已提交
94
```
95

96
The ws://cable.example.com address must point to your set of Action Cable servers, and it
97 98 99 100 101 102 103 104
must share a cookie namespace with the rest of the application (which may live under http://example.com).
This ensures that the signed cookie will be correctly sent.

That's all you need to establish the connection! But of course, this isn't very useful in
itself. This just gives you the plumbing. To make stuff happen, you need content. That content
is defined by declaring channels on the server and allowing the consumer to subscribe to them.


105
### Channel example 1: User appearances
106 107

Here's a simple example of a channel that tracks whether a user is online or not and what page they're on.
J
Jon Moss 已提交
108
(This is useful for creating presence features like showing a green dot next to a user name if they're online).
109 110 111

First you declare the server-side channel:

D
David Heinemeier Hansson 已提交
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
```ruby
# app/channels/appearance_channel.rb
class AppearanceChannel < ApplicationCable::Channel
  def subscribed
    current_user.appear
  end

  def unsubscribed
    current_user.disappear
  end

  def appear(data)
    current_user.appear on: data['appearing_on']
  end

  def away
    current_user.away
129
  end
D
David Heinemeier Hansson 已提交
130 131
end
```
132

D
David Heinemeier Hansson 已提交
133
The `#subscribed` callback is invoked when, as we'll show below, a client-side subscription is initiated. In this case,
134 135 136
we take that opportunity to say "the current user has indeed appeared". That appear/disappear API could be backed by
Redis or a database or whatever else. Here's what the client-side of that looks like:

D
David Heinemeier Hansson 已提交
137 138
```coffeescript
# app/assets/javascripts/cable/subscriptions/appearance.coffee
139 140
App.cable.subscriptions.create "AppearanceChannel",
  # Called when the subscription is ready for use on the server
D
David Heinemeier Hansson 已提交
141
  connected: ->
142 143
    @install()
    @appear()
D
David Heinemeier Hansson 已提交
144

145 146 147 148 149
  # Called when the WebSocket connection is closed
  disconnected: ->
    @uninstall()

  # Called when the subscription is rejected by the server
150
  rejected: ->
151
    @uninstall()
152

D
David Heinemeier Hansson 已提交
153
  appear: ->
J
Javan Makhmali 已提交
154
    # Calls `AppearanceChannel#appear(data)` on the server
155
    @perform("appear", appearing_on: $("main").data("appearing-on"))
D
David Heinemeier Hansson 已提交
156 157

  away: ->
J
Javan Makhmali 已提交
158
    # Calls `AppearanceChannel#away` on the server
159 160 161 162
    @perform("away")


  buttonSelector = "[data-behavior~=appear_away]"
D
David Heinemeier Hansson 已提交
163

164 165 166
  install: ->
    $(document).on "page:change.appearance", =>
      @appear()
D
David Heinemeier Hansson 已提交
167

168 169 170
    $(document).on "click.appearance", buttonSelector, =>
      @away()
      false
D
David Heinemeier Hansson 已提交
171

172 173 174 175 176
    $(buttonSelector).show()

  uninstall: ->
    $(document).off(".appearance")
    $(buttonSelector).hide()
D
David Heinemeier Hansson 已提交
177 178 179
```

Simply calling `App.cable.subscriptions.create` will setup the subscription, which will call `AppearanceChannel#subscribed`,
T
Takayuki Matsubara 已提交
180
which in turn is linked to original `App.cable` -> `ApplicationCable::Connection` instances.
D
David Heinemeier Hansson 已提交
181

182
We then link the client-side `appear` method to `AppearanceChannel#appear(data)`. This is possible because the server-side
183
channel instance will automatically expose the public methods declared on the class (minus the callbacks), so that these
184
can be reached as remote procedure calls via a subscription's `perform` method.
185

186
### Channel example 2: Receiving new web notifications
187

188 189
The appearance example was all about exposing server functionality to client-side invocation over the WebSocket connection.
But the great thing about WebSockets is that it's a two-way street. So now let's show an example where the server invokes
190 191 192 193 194
action on the client.

This is a web notification channel that allows you to trigger client-side web notifications when you broadcast to the right
streams:

D
David Heinemeier Hansson 已提交
195
```ruby
G
Greg Molnar 已提交
196
# app/channels/web_notifications_channel.rb
D
David Heinemeier Hansson 已提交
197
class WebNotificationsChannel < ApplicationCable::Channel
198 199 200
  def subscribed
    stream_from "web_notifications_#{current_user.id}"
  end
K
Kasper Timm Hansen 已提交
201
end
D
David Heinemeier Hansson 已提交
202
```
203

D
David Heinemeier Hansson 已提交
204 205 206
```coffeescript
# Client-side which assumes you've already requested the right to send web notifications
App.cable.subscriptions.create "WebNotificationsChannel",
207
  received: (data) ->
208
    new Notification data["title"], body: data["body"]
D
David Heinemeier Hansson 已提交
209 210
```

211 212 213 214 215 216
```ruby
# Somewhere in your app this is called, perhaps from a NewCommentJob
ActionCable.server.broadcast \
  "web_notifications_#{current_user.id}", { title: 'New things!', body: 'All the news that is fit to print' }
```

J
Jon Moss 已提交
217
The `ActionCable.server.broadcast` call places a message in the Redis' pubsub queue under a separate broadcasting name for each user. For a user with an ID of 1, the broadcasting name would be `web_notifications_1`.
218
The channel has been instructed to stream everything that arrives at `web_notifications_1` directly to the client by invoking the
D
David Heinemeier Hansson 已提交
219 220
`#received(data)` callback. The data is the hash sent as the second parameter to the server-side broadcast call, JSON encoded for the trip
across the wire, and unpacked for the data argument arriving to `#received`.
221

222 223 224 225 226 227 228 229 230 231 232

### Passing Parameters to Channel

You can pass parameters from the client side to the server side when creating a subscription. For example:

```ruby
# app/channels/chat_channel.rb
class ChatChannel < ApplicationCable::Channel
  def subscribed
    stream_from "chat_#{params[:room]}"
  end
K
Kasper Timm Hansen 已提交
233
end
234 235 236 237 238 239
```

Pass an object as the first argument to `subscriptions.create`, and that object will become your params hash in your cable channel. The keyword `channel` is required.

```coffeescript
# Client-side which assumes you've already requested the right to send web notifications
K
Kasper Timm Hansen 已提交
240
App.cable.subscriptions.create { channel: "ChatChannel", room: "Best Room" },
241
  received: (data) ->
242 243 244 245 246 247 248 249 250 251 252 253 254
    @appendLine(data)

  appendLine: (data) ->
    html = @createLine(data)
    $("[data-chat-room='Best Room']").append(html)

  createLine: (data) ->
    """
    <article class="chat-line">
      <span class="speaker">#{data["sent_by"]}</span>
      <span class="body">#{data["body"]}</span>
    </article>
    """
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
```

```ruby
# Somewhere in your app this is called, perhaps from a NewCommentJob
ActionCable.server.broadcast \
  "chat_#{room}", { sent_by: 'Paul', body: 'This is a cool chat app.' }
```


### Rebroadcasting message

A common use case is to rebroadcast a message sent by one client to any other connected clients.

```ruby
# app/channels/chat_channel.rb
class ChatChannel < ApplicationCable::Channel
  def subscribed
    stream_from "chat_#{params[:room]}"
  end

  def receive(data)
    ActionCable.server.broadcast "chat_#{params[:room]}", data
  end
end
```

```coffeescript
# Client-side which assumes you've already requested the right to send web notifications
283
App.chatChannel = App.cable.subscriptions.create { channel: "ChatChannel", room: "Best Room" },
284
  received: (data) ->
285
    # data => { sent_by: "Paul", body: "This is a cool chat app." }
286

287
App.chatChannel.send({ sent_by: "Paul", body: "This is a cool chat app." })
288 289 290 291 292 293
```

The rebroadcast will be received by all connected clients, _including_ the client that sent the message. Note that params are the same as they were when you subscribed to the channel.


### More complete examples
D
David Heinemeier Hansson 已提交
294 295

See the [rails/actioncable-examples](http://github.com/rails/actioncable-examples) repository for a full example of how to setup Action Cable in a Rails app and adding channels.
296

297

298 299
## Configuration

300 301 302 303 304
Action Cable has two required configurations: the Redis connection and specifying allowed request origins.

### Redis

By default, `ActionCable::Server::Base` will look for a configuration file in `Rails.root.join('config/redis/cable.yml')`. The file must follow the following format:
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320

```yaml
production: &production
  :url: redis://10.10.3.153:6381
  :host: 10.10.3.153
  :port: 6381
  :timeout: 1
development: &development
  :url: redis://localhost:6379
  :host: localhost
  :port: 6379
  :timeout: 1
  :inline: true
test: *development
```

C
Connor Shea 已提交
321
This format allows you to specify one configuration per Rails environment. You can also change the location of the Redis config file in
322 323 324 325 326 327
a Rails initializer with something like:

```ruby
ActionCable.server.config.redis_path = Rails.root('somewhere/else/cable.yml')
```

328 329
### Allowed Request Origins

330
Action Cable will only accept requests from specified origins, which are passed to the server config as an array. The origins can be instances of strings or regular expressions, against which a check for match will be performed.
331 332

```ruby
333
ActionCable.server.config.allowed_request_origins = ['http://rubyonrails.com', /http:\/\/ruby.*/]
334 335 336 337 338 339 340 341 342 343 344 345
```

To disable and allow requests from any origin:

```ruby
ActionCable.server.config.disable_request_forgery_protection = true
```

By default, Action Cable allows all requests from localhost:3000 when running in the development environment.

### Other Configurations

346 347 348 349 350 351 352 353 354 355
The other common option to configure is the log tags applied to the per-connection logger. Here's close to what we're using in Basecamp:

```ruby
ActionCable.server.config.log_tags = [
  -> request { request.env['bc.account_id'] || "no-account" },
  :action_cable,
  -> request { request.uuid }
]
```

356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
Your websocket url might change between environments. If you host your production server via https, you will need to use the wss scheme
for your ActionCable server, but development might remain http and use the ws scheme. You might use localhost in development and your
domain in production. In any case, to vary the websocket url between environments, add the following configuration to each environment:

```ruby
config.action_cable.url = "ws://example.com:28080"
```

Then add the following line to your layout before your JavaScript tag:

```erb
<%= action_cable_meta_tag %>
```

And finally, create your consumer like so:

```coffeescript
App.cable = Cable.createConsumer()
```

376 377
For a full list of all configuration options, see the `ActionCable::Server::Configuration` class.

378
Also note that your server must provide at least the same number of database connections as you have workers. The default worker pool is set to 100, so that means you have to make at least that available. You can change that in `config/database.yml` through the `pool` attribute.
379 380


381 382 383 384
## Running the cable server

### Standalone
The cable server(s) is separated from your normal application server. It's still a rack application, but it is its own rack
385 386 387 388
application. The recommended basic setup is as follows:

```ruby
# cable/config.ru
389
require ::File.expand_path('../../config/environment', __FILE__)
390 391 392 393 394 395 396 397 398 399
Rails.application.eager_load!

require 'action_cable/process/logging'

run ActionCable.server
```

Then you start the server using a binstub in bin/cable ala:
```
#!/bin/bash
400
bundle exec puma -p 28080 cable/config.ru
401 402
```

J
Jon Moss 已提交
403
The above will start a cable server on port 28080. Remember to point your client-side setup against that using something like:
404
`App.cable = Cable.createConsumer("ws://basecamp.dev:28080")`.
405

406 407
### In app

408
If you are using a threaded server like Puma or Thin, the current implementation of ActionCable can run side-along with your Rails application. For example, to listen for WebSocket requests on `/websocket`, match requests on that path:
409 410 411 412 413 414 415 416

```ruby
# config/routes.rb
Example::Application.routes.draw do
  match "/websocket", :to => ActionCable.server, via: [:get, :post]
end
```

417
You can use `App.cable = Cable.createConsumer("/websocket")` to connect to the cable server.
418 419 420 421 422

For every instance of your server you create and for every worker your server spawns, you will also have a new instance of ActionCable, but the use of Redis keeps messages synced across connections.

### Notes

423 424
Beware that currently the cable server will _not_ auto-reload any changes in the framework. As we've discussed, long-running cable connections mean long-running objects. We don't yet have a way of reloading the classes of those objects in a safe manner. So when you change your channels, or the model your channels use, you must restart the cable server.

425
We'll get all this abstracted properly when the framework is integrated into Rails.
426

G
Greg Molnar 已提交
427
The WebSocket server doesn't have access to the session, but it has access to the cookies. This can be used when you need to handle authentication. You can see one way of doing that with Devise in this [article](http://www.rubytutorial.io/actioncable-devise-authentication).
428

429 430 431
## Dependencies

Action Cable is currently tied to Redis through its use of the pubsub feature to route
432
messages back and forth over the WebSocket cable connection. This dependency may well
433 434 435
be alleviated in the future, but for the moment that's what it is. So be sure to have
Redis installed and running.

P
Pedro Nascimento 已提交
436
The Ruby side of things is built on top of [faye-websocket](https://github.com/faye/faye-websocket-ruby) and [celluloid](https://github.com/celluloid/celluloid).
437

438 439 440 441

## Deployment

Action Cable is powered by a combination of EventMachine and threads. The
442
framework plumbing needed for connection handling is handled in the
443 444 445 446 447 448 449 450 451 452 453
EventMachine loop, but the actual channel, user-specified, work is handled
in a normal Ruby thread. This means you can use all your regular Rails models
with no problem, as long as you haven't committed any thread-safety sins.

But this also means that Action Cable needs to run in its own server process.
So you'll have one set of server processes for your normal web work, and another
set of server processes for the Action Cable. The former can be single-threaded,
like Unicorn, but the latter must be multi-threaded, like Puma.

## License

454
Action Cable is released under the MIT license:
455 456 457 458 459 460 461 462

* http://www.opensource.org/licenses/MIT


## Support

Bug reports can be filed for the alpha development project here:

463
* https://github.com/rails/actioncable/issues