README.md 20.6 KB
Newer Older
H
henning mueller 已提交
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
X
Xavier Noria 已提交
8
domain model written with Active Record or your ORM of choice.
9 10 11

## Terminology

12
A single Action Cable server can handle multiple connection instances. It has one
13 14 15
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.
16 17

Each consumer can in turn subscribe to multiple cable channels. Each channel encapsulates
Y
Yves Senn 已提交
18
a logical unit of work, similar to what a controller does in a regular MVC setup. For example,
R
Ryuta Kamizono 已提交
19
you could have a `ChatChannel` and an `AppearancesChannel`, and a consumer could be subscribed to either
J
Jon Moss 已提交
20
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
The first thing you must do is define your `ApplicationCable::Connection` class in Ruby. This
41
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
    private
D
David Heinemeier Hansson 已提交
55
      def find_verified_user
56
        if verified_user = User.find_by(id: cookies.encrypted[:user_id])
57
          verified_user
D
David Heinemeier Hansson 已提交
58 59 60 61
        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
This relies on the fact that you will already have handled authentication of the user, and
that a successful authentication sets a signed cookie with the `user_id`. This cookie is then
automatically sent to the connection instance when a new connection is attempted, and you
use that to set the `current_user`. By identifying the connection by this same current_user,
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).

75
Next, you should define your `ApplicationCable::Channel` class in Ruby. This is the place where you put
76 77 78 79 80 81 82 83 84 85
shared logic between your channels.

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

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

88 89 90 91 92
```js
// app/assets/javascripts/cable.js
//= require action_cable
//= require_self
//= require_tree ./channels
93

94 95 96 97 98
(function() {
  this.App || (this.App = {});

  App.cable = ActionCable.createConsumer("ws://cable.example.com");
}).call(this);
D
David Heinemeier Hansson 已提交
99
```
100

101
The `ws://cable.example.com` address must point to your Action Cable server(s), and it
102 103 104 105 106 107 108 109
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.


110
### Channel example 1: User appearances
111

112 113
Here's a simple example of a channel that tracks whether a user is online or not, and also what page they are currently on.
(This is useful for creating presence features like showing a green dot next to a user's name if they're online).
114 115 116

First you declare the server-side channel:

D
David Heinemeier Hansson 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
```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
134
  end
D
David Heinemeier Hansson 已提交
135 136
end
```
137

D
David Heinemeier Hansson 已提交
138
The `#subscribed` callback is invoked when, as we'll show below, a client-side subscription is initiated. In this case,
139 140 141
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 已提交
142 143
```coffeescript
# app/assets/javascripts/cable/subscriptions/appearance.coffee
144 145
App.cable.subscriptions.create "AppearanceChannel",
  # Called when the subscription is ready for use on the server
D
David Heinemeier Hansson 已提交
146
  connected: ->
147 148
    @install()
    @appear()
D
David Heinemeier Hansson 已提交
149

150 151 152 153 154
  # Called when the WebSocket connection is closed
  disconnected: ->
    @uninstall()

  # Called when the subscription is rejected by the server
155
  rejected: ->
156
    @uninstall()
157

D
David Heinemeier Hansson 已提交
158
  appear: ->
J
Javan Makhmali 已提交
159
    # Calls `AppearanceChannel#appear(data)` on the server
160
    @perform("appear", appearing_on: $("main").data("appearing-on"))
D
David Heinemeier Hansson 已提交
161 162

  away: ->
J
Javan Makhmali 已提交
163
    # Calls `AppearanceChannel#away` on the server
164 165 166 167
    @perform("away")


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

169
  install: ->
170
    $(document).on "turbolinks:load.appearance", =>
171
      @appear()
D
David Heinemeier Hansson 已提交
172

173 174 175
    $(document).on "click.appearance", buttonSelector, =>
      @away()
      false
D
David Heinemeier Hansson 已提交
176

177 178 179 180 181
    $(buttonSelector).show()

  uninstall: ->
    $(document).off(".appearance")
    $(buttonSelector).hide()
D
David Heinemeier Hansson 已提交
182 183 184
```

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

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

191
### Channel example 2: Receiving new web notifications
192

193 194
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
M
Mawueli Kofi Adzoe 已提交
195
an action on the client.
196 197 198 199

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 已提交
200
```ruby
G
Greg Molnar 已提交
201
# app/channels/web_notifications_channel.rb
D
David Heinemeier Hansson 已提交
202
class WebNotificationsChannel < ApplicationCable::Channel
203 204 205
  def subscribed
    stream_from "web_notifications_#{current_user.id}"
  end
K
Kasper Timm Hansen 已提交
206
end
D
David Heinemeier Hansson 已提交
207
```
208

D
David Heinemeier Hansson 已提交
209
```coffeescript
A
Akshay Vishnoi 已提交
210
# Client-side, which assumes you've already requested the right to send web notifications
D
David Heinemeier Hansson 已提交
211
App.cable.subscriptions.create "WebNotificationsChannel",
212
  received: (data) ->
213
    new Notification data["title"], body: data["body"]
D
David Heinemeier Hansson 已提交
214 215
```

216 217 218 219 220 221
```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' }
```

222
The `ActionCable.server.broadcast` call places a message in the Action Cable 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`.
223
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 已提交
224 225
`#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`.
226

227 228 229 230 231 232 233 234 235 236 237

### 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 已提交
238
end
239 240
```

241
If you pass an object as the first argument to `subscriptions.create`, that object will become the params hash in your cable channel. The keyword `channel` is required.
242 243

```coffeescript
A
Akshay Vishnoi 已提交
244
# Client-side, which assumes you've already requested the right to send web notifications
K
Kasper Timm Hansen 已提交
245
App.cable.subscriptions.create { channel: "ChatChannel", room: "Best Room" },
246
  received: (data) ->
247 248 249 250 251 252 253 254 255 256 257 258 259
    @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>
    """
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
```

```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
A
Akshay Vishnoi 已提交
287
# Client-side, which assumes you've already requested the right to send web notifications
288
App.chatChannel = App.cable.subscriptions.create { channel: "ChatChannel", room: "Best Room" },
289
  received: (data) ->
290
    # data => { sent_by: "Paul", body: "This is a cool chat app." }
291

292
App.chatChannel.send({ sent_by: "Paul", body: "This is a cool chat app." })
293 294 295 296 297 298
```

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 已提交
299

J
Jon Moss 已提交
300
See the [rails/actioncable-examples](https://github.com/rails/actioncable-examples) repository for a full example of how to setup Action Cable in a Rails app, and how to add channels.
301

302
## Configuration
303

J
Jon Moss 已提交
304
Action Cable has three required configurations: a subscription adapter, allowed request origins, and the cable server URL (which can optionally be set on the client side).
305 306 307

### Redis

308
By default, `ActionCable::Server::Base` will look for a configuration file in `Rails.root.join('config/cable.yml')`.
J
Jon Moss 已提交
309
This file must specify an adapter and a URL for each Rails environment. It may use the following format:
310 311 312

```yaml
production: &production
J
Jon Moss 已提交
313
  adapter: redis
D
David Heinemeier Hansson 已提交
314
  url: redis://10.10.3.153:6381
315
development: &development
J
Jon Moss 已提交
316
  adapter: redis
D
David Heinemeier Hansson 已提交
317
  url: redis://localhost:6379
318 319 320
test: *development
```

J
Jon Moss 已提交
321
You can also change the location of the Action Cable config file in a Rails initializer with something like:
322 323

```ruby
324
Rails.application.paths.add "config/cable", with: "somewhere/else/cable.yml"
325 326
```

327 328
### Allowed Request Origins

329 330 331 332
Action Cable will only accept requests from specific origins.

By default, only an origin matching the cable server itself will be permitted.
Additional origins can be specified using strings or regular expressions, provided in an array.
333 334

```ruby
335
Rails.application.config.action_cable.allowed_request_origins = ['http://rubyonrails.com', /http:\/\/ruby.*/]
336 337
```

338 339
When running in the development environment, this defaults to "http://localhost:3000".

340
To disable protection and allow requests from any origin:
341 342

```ruby
343
Rails.application.config.action_cable.disable_request_forgery_protection = true
344 345
```

346 347 348
To disable automatic access for same-origin requests, and strictly allow
only the configured origins:

349
```ruby
350
Rails.application.config.action_cable.allow_same_origin_as_host = false
351 352
```

353
### Consumer Configuration
354

355
Once you have decided how to run your cable server (see below), you must provide the server URL (or path) to your client-side setup.
356
There are two ways you can do this.
357

358 359 360
The first is to simply pass it in when creating your consumer. For a standalone server,
this would be something like: `App.cable = ActionCable.createConsumer("ws://example.com:28080")`, and for an in-app server,
something like: `App.cable = ActionCable.createConsumer("/cable")`.
361

362 363
The second option is to pass the server URL through the `action_cable_meta_tag` in your layout.
This uses a URL or path typically set via `config.action_cable.url` in the environment configuration files, or defaults to "/cable".
364

365
This method is especially useful if your WebSocket URL might change between environments. If you host your production server via https, you will need to use the wss scheme
366
for your Action Cable server, but development might remain http and use the ws scheme. You might use localhost in development and your
367 368
domain in production.

369
In any case, to vary the WebSocket URL between environments, add the following configuration to each environment:
370 371 372 373 374 375 376 377 378 379 380 381 382 383

```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
384
App.cable = ActionCable.createConsumer()
385 386
```

387 388
### Other Configurations

389
The other common option to configure is the log tags applied to the per-connection logger. Here's an example that uses the user account id if available, else "no-account" while tagging:
390 391

```ruby
392 393
config.action_cable.log_tags = [
  -> request { request.env['user_account_id'] || "no-account" },
394 395 396 397 398
  :action_cable,
  -> request { request.uuid }
]
```

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

W
willnet 已提交
401
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 4, so that means you have to make at least that available. You can change that in `config/database.yml` through the `pool` attribute.
402 403


404 405 406
## Running the cable server

### Standalone
J
Jon Moss 已提交
407
The cable server(s) is separated from your normal application server. It's still a Rack application, but it is its own Rack
408 409 410 411
application. The recommended basic setup is as follows:

```ruby
# cable/config.ru
412
require_relative '../config/environment'
413 414 415 416 417 418
Rails.application.eager_load!

run ActionCable.server
```

Then you start the server using a binstub in bin/cable ala:
A
Anubhav Saxena 已提交
419
```sh
420
#!/bin/bash
421
bundle exec puma -p 28080 cable/config.ru
422 423
```

424
The above will start a cable server on port 28080.
425

426 427
### In app

428
If you are using a server that supports the [Rack socket hijacking API](https://www.rubydoc.info/github/rack/rack/file/SPEC#label-Hijacking), Action Cable can run alongside your Rails application. For example, to listen for WebSocket requests on `/websocket`, specify that path to `config.action_cable.mount_path`:
429 430

```ruby
431 432 433
# config/application.rb
class Application < Rails::Application
  config.action_cable.mount_path = '/websocket'
434 435 436
end
```

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

### Notes

R
Rajat Bansal 已提交
441
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.
442

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

445
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](https://greg.molnar.io/blog/actioncable-devise-authentication/).
446

447 448
## Dependencies

449
Action Cable provides a subscription adapter interface to process its pubsub internals. By default, asynchronous, inline, PostgreSQL, and Redis adapters are included. The default adapter in new Rails applications is the asynchronous (`async`) adapter. To create your own adapter, you can look at `ActionCable::SubscriptionAdapter::Base` for all methods that must be implemented, and any of the adapters included within Action Cable as example implementations.
450

451
The Ruby side of things is built on top of [websocket-driver](https://github.com/faye/websocket-driver-ruby), [nio4r](https://github.com/celluloid/nio4r), and [concurrent-ruby](https://github.com/ruby-concurrency/concurrent-ruby).
452

453 454

## Deployment
455

456
Action Cable is powered by a combination of WebSockets and threads. All of the
Y
Yauheni Dakuka 已提交
457
connection management is handled internally by utilizing Ruby's native thread
458
support, which means you can use all your regular Rails models with no problems
Y
Yauheni Dakuka 已提交
459
as long as you haven't committed any thread-safety sins.
460 461

The Action Cable server does _not_ need to be a multi-threaded application server.
462
This is because Action Cable uses the [Rack socket hijacking API](https://www.rubydoc.info/github/rack/rack/file/SPEC#label-Hijacking)
463 464 465 466 467 468 469
to take over control of connections from the application server. Action Cable
then manages connections internally, in a multithreaded manner, regardless of
whether the application server is multi-threaded or not. So Action Cable works
with all the popular application servers -- Unicorn, Puma and Passenger.

Action Cable does not work with WEBrick, because WEBrick does not support the
Rack socket hijacking API.
470

471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
## Frontend assets

Action Cable's frontend assets are distributed through two channels: the
official gem and npm package, both titled `actioncable`.

### Gem usage

Through the `actioncable` gem, Action Cable's frontend assets are
available through the Rails Asset Pipeline. Create a `cable.js` or
`cable.coffee` file (this is automatically done for you with Rails
generators), and then simply require the assets:

In JavaScript...

```javascript
//= require action_cable
```

... and in CoffeeScript:

```coffeescript
#= require action_cable
```

### npm usage

In addition to being available through the `actioncable` gem, Action Cable's
frontend JS assets are also bundled in an officially supported npm module,
intended for usage in standalone frontend applications that communicate with a
Rails application. A common use case for this could be if you have a decoupled
frontend application written in React, Ember.js, etc. and want to add real-time
WebSocket functionality.

### Installation

```
507
npm install @rails/actioncable --save
508 509 510 511 512 513 514 515 516 517 518
```

### Usage

The `ActionCable` constant is available as a `require`-able module, so
you only have to require the package to gain access to the API that is
provided.

In JavaScript...

```javascript
519
ActionCable = require('@rails/actioncable')
520 521 522 523 524 525 526 527 528 529 530

var cable = ActionCable.createConsumer('wss://RAILS-API-PATH.com/cable')

cable.subscriptions.create('AppearanceChannel', {
  // normal channel code goes here...
});
```

and in CoffeeScript...

```coffeescript
531
ActionCable = require('@rails/actioncable')
532 533 534 535 536 537 538

cable = ActionCable.createConsumer('wss://RAILS-API-PATH.com/cable')

cable.subscriptions.create 'AppearanceChannel',
    # normal channel code goes here...
```

J
Jon Moss 已提交
539 540 541 542 543 544 545 546 547
## Download and Installation

The latest version of Action Cable can be installed with [RubyGems](#gem-usage),
or with [npm](#npm-usage).

Source code can be downloaded as part of the Rails project on GitHub

* https://github.com/rails/rails/tree/master/actioncable

548 549
## License

550
Action Cable is released under the MIT license:
551

552
* https://opensource.org/licenses/MIT
553 554 555 556


## Support

557
API documentation is at:
558

559 560
* http://api.rubyonrails.org

F
Fatos Morina 已提交
561
Bug reports for the Ruby on Rails project can be filed here:
562 563 564 565 566 567

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

Feature requests should be discussed on the rails-core mailing list here:

* https://groups.google.com/forum/?fromgroups#!forum/rubyonrails-core