2015-12-21 04:05:28 -05:00
# Action Cable – Integrated WebSockets for Rails
2015-07-08 10:10:28 -04:00
2015-10-16 02:25:54 -04:00
Action Cable seamlessly integrates WebSockets with the rest of your Rails application.
2015-07-08 10:10:28 -04:00
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
2015-12-17 09:00:19 -05:00
domain model written with Active Record or your ORM of choice.
2015-07-08 10:10:28 -04:00
## Terminology
2015-07-08 12:24:18 -04:00
A single Action Cable server can handle multiple connection instances. It has one
2015-10-16 02:25:54 -04:00
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.
2015-07-08 10:10:28 -04:00
Each consumer can in turn subscribe to multiple cable channels. Each channel encapsulates
2015-12-19 08:42:09 -05:00
a logical unit of work, similar to what a controller does in a regular MVC setup. For example,
2016-02-08 19:47:47 -05:00
you could have a `ChatChannel` and an `AppearancesChannel` , and a consumer could be subscribed to either
2015-07-26 17:13:19 -04:00
or to both of these channels. At the very least, a consumer should be subscribed to one channel.
2015-07-08 10:10:28 -04:00
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
2015-07-08 12:24:18 -04:00
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).
2015-07-08 10:10:28 -04:00
Each channel can then again be streaming zero or more broadcastings. A broadcasting is a
2015-07-08 21:24:12 -04:00
pubsub link where anything transmitted by the broadcaster is sent directly to the channel
2015-07-08 10:10:28 -04:00
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.
2015-10-12 21:15:17 -04:00
## Examples
2015-07-08 10:10:28 -04:00
2015-10-12 21:15:17 -04:00
### A full-stack example
2015-07-08 10:10:28 -04:00
2015-07-08 12:24:18 -04:00
The first thing you must do is define your `ApplicationCable::Connection` class in Ruby. This
2016-02-13 21:05:04 -05:00
is the place where you authorize the incoming connection, and proceed to establish it,
2015-07-08 10:10:28 -04:00
if all is well. Here's the simplest example starting with the server-side connection class:
2015-07-08 10:50:27 -04:00
```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
2015-07-08 10:10:28 -04:00
end
2015-07-08 10:50:27 -04:00
protected
def find_verified_user
2015-12-08 04:48:07 -05:00
if current_user = User.find_by(id: cookies.signed[:user_id])
2015-07-08 10:50:27 -04:00
current_user
else
reject_unauthorized_connection
end
end
2015-07-08 10:10:28 -04:00
end
2015-07-08 10:50:27 -04:00
end
```
2015-07-30 03:53:36 -04:00
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.
2015-07-08 10:10:28 -04:00
2016-01-22 14:01:44 -05:00
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).
2016-02-13 21:05:04 -05:00
Next, you should define your `ApplicationCable::Channel` class in Ruby. This is the place where you put
2015-07-09 03:50:50 -04:00
shared logic between your channels.
```ruby
# app/channels/application_cable/channel.rb
module ApplicationCable
class Channel < ActionCable::Channel::Base
end
end
```
2015-07-08 10:10:28 -04:00
The client-side needs to setup a consumer instance of this connection. That's done like so:
2016-05-06 23:12:27 -04:00
```js
// app/assets/javascripts/cable.js
//= require action_cable
//= require_self
//= require_tree ./channels
2015-07-09 18:39:34 -04:00
2016-05-06 23:12:27 -04:00
(function() {
this.App || (this.App = {});
App.cable = ActionCable.createConsumer("ws://cable.example.com");
}).call(this);
2015-07-08 10:50:27 -04:00
```
2015-07-08 10:10:28 -04:00
2016-02-13 21:05:04 -05:00
The `ws://cable.example.com` address must point to your Action Cable server(s), and it
2015-07-08 10:10:28 -04:00
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.
2015-10-12 21:15:17 -04:00
### Channel example 1: User appearances
2015-07-08 10:10:28 -04:00
2016-02-13 21:05:04 -05:00
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).
2015-07-08 10:10:28 -04:00
First you declare the server-side channel:
2015-07-08 10:50:27 -04:00
```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
2015-07-08 10:10:28 -04:00
end
2015-07-08 10:50:27 -04:00
end
```
2015-07-08 10:10:28 -04:00
2015-07-08 10:50:27 -04:00
The `#subscribed` callback is invoked when, as we'll show below, a client-side subscription is initiated. In this case,
2015-07-08 10:10:28 -04:00
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:
2015-07-08 10:50:27 -04:00
```coffeescript
# app/assets/javascripts/cable/subscriptions/appearance.coffee
2015-12-11 17:09:02 -05:00
App.cable.subscriptions.create "AppearanceChannel",
# Called when the subscription is ready for use on the server
2015-07-08 10:50:27 -04:00
connected: ->
2015-12-11 17:09:02 -05:00
@install ()
@appear ()
2015-07-08 10:50:27 -04:00
2015-12-11 17:09:02 -05:00
# Called when the WebSocket connection is closed
disconnected: ->
@uninstall ()
# Called when the subscription is rejected by the server
2015-11-04 18:40:53 -05:00
rejected: ->
2015-12-11 17:09:02 -05:00
@uninstall ()
2015-11-04 18:40:53 -05:00
2015-07-08 10:50:27 -04:00
appear: ->
2015-12-11 17:17:18 -05:00
# Calls `AppearanceChannel#appear(data)` on the server
2015-12-11 17:09:02 -05:00
@perform ("appear", appearing_on: $("main").data("appearing-on"))
2015-07-08 10:50:27 -04:00
away: ->
2015-12-11 17:17:18 -05:00
# Calls `AppearanceChannel#away` on the server
2015-12-11 17:09:02 -05:00
@perform ("away")
buttonSelector = "[data-behavior~=appear_away]"
2015-07-08 10:50:27 -04:00
2015-12-11 17:09:02 -05:00
install: ->
$(document).on "page:change.appearance", =>
@appear ()
2015-07-08 10:50:27 -04:00
2015-12-11 17:09:02 -05:00
$(document).on "click.appearance", buttonSelector, =>
@away ()
false
2015-07-08 10:50:27 -04:00
2015-12-11 17:09:02 -05:00
$(buttonSelector).show()
uninstall: ->
$(document).off(".appearance")
$(buttonSelector).hide()
2015-07-08 10:50:27 -04:00
```
Simply calling `App.cable.subscriptions.create` will setup the subscription, which will call `AppearanceChannel#subscribed` ,
2016-04-17 17:03:11 -04:00
which in turn is linked to the original `App.cable` -> `ApplicationCable::Connection` instances.
2015-07-08 10:50:27 -04:00
2016-02-13 21:05:04 -05:00
Next, we link the client-side `appear` method to `AppearanceChannel#appear(data)` . This is possible because the server-side
2015-07-08 10:10:28 -04:00
channel instance will automatically expose the public methods declared on the class (minus the callbacks), so that these
2015-12-11 17:09:02 -05:00
can be reached as remote procedure calls via a subscription's `perform` method.
2015-07-08 10:10:28 -04:00
2015-10-12 21:15:17 -04:00
### Channel example 2: Receiving new web notifications
2015-07-08 10:10:28 -04:00
2015-10-16 02:25:54 -04:00
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
2016-02-10 00:35:40 -05:00
an action on the client.
2015-07-08 10:10:28 -04:00
This is a web notification channel that allows you to trigger client-side web notifications when you broadcast to the right
streams:
2015-07-08 10:50:27 -04:00
```ruby
2015-10-03 13:47:54 -04:00
# app/channels/web_notifications_channel.rb
2015-07-08 10:50:27 -04:00
class WebNotificationsChannel < ApplicationCable::Channel
2015-10-12 21:15:17 -04:00
def subscribed
stream_from "web_notifications_#{current_user.id}"
end
2015-11-15 15:09:14 -05:00
end
2015-07-08 10:50:27 -04:00
```
2015-07-08 12:24:18 -04:00
2015-07-08 10:50:27 -04:00
```coffeescript
2015-12-18 02:32:17 -05:00
# Client-side, which assumes you've already requested the right to send web notifications
2015-07-08 10:50:27 -04:00
App.cable.subscriptions.create "WebNotificationsChannel",
2015-07-08 23:22:56 -04:00
received: (data) ->
2015-12-11 17:09:02 -05:00
new Notification data["title"], body: data["body"]
2015-07-08 10:50:27 -04:00
```
2015-10-12 22:43:48 -04:00
```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' }
```
2016-02-13 21:05:04 -05:00
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` .
2015-07-08 12:24:18 -04:00
The channel has been instructed to stream everything that arrives at `web_notifications_1` directly to the client by invoking the
2015-07-08 10:50:27 -04:00
`#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` .
2015-07-08 10:10:28 -04:00
2015-10-12 21:15:17 -04:00
### 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
2015-11-15 15:09:14 -05:00
end
2015-10-12 21:15:17 -04:00
```
2016-02-13 21:05:04 -05:00
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.
2015-10-12 21:15:17 -04:00
```coffeescript
2015-12-18 02:32:17 -05:00
# Client-side, which assumes you've already requested the right to send web notifications
2015-11-15 15:09:14 -05:00
App.cable.subscriptions.create { channel: "ChatChannel", room: "Best Room" },
2015-10-12 21:15:17 -04:00
received: (data) ->
2015-12-11 17:09:02 -05:00
@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 >
"""
2015-10-12 21:15:17 -04:00
```
```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
2015-12-18 02:32:17 -05:00
# Client-side, which assumes you've already requested the right to send web notifications
2015-12-11 17:09:02 -05:00
App.chatChannel = App.cable.subscriptions.create { channel: "ChatChannel", room: "Best Room" },
2015-10-12 21:15:17 -04:00
received: (data) ->
2015-12-11 17:09:02 -05:00
# data => { sent_by: "Paul", body: "This is a cool chat app." }
2015-10-12 21:15:17 -04:00
2015-12-11 17:09:02 -05:00
App.chatChannel.send({ sent_by: "Paul", body: "This is a cool chat app." })
2015-10-12 21:15:17 -04:00
```
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
2015-07-12 02:31:17 -04:00
2016-05-06 11:07:27 -04:00
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.
2015-07-08 10:10:28 -04:00
2016-06-04 16:06:35 -04:00
## Download and installation
The latest version of Action Cable can be installed with RubyGems:
$ gem install actioncable
Source code can be downloaded as part of the Rails project on GitHub
* https://github.com/rails/rails/tree/master/actioncable
2015-07-08 10:10:28 -04:00
## License
2015-07-08 10:53:37 -04:00
Action Cable is released under the MIT license:
2015-07-08 10:10:28 -04:00
* http://www.opensource.org/licenses/MIT
## Support
2015-12-21 14:31:32 -05:00
API documentation is at:
2015-07-08 10:10:28 -04:00
2015-12-21 14:31:32 -05:00
* http://api.rubyonrails.org
Bug reports can be filed for the Ruby on Rails project here:
* 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