2015-12-18 15:04:38 -05:00
|
|
|
Action Cable Overview
|
|
|
|
=====================
|
|
|
|
|
|
|
|
In this guide you will learn how Action Cable works and how to use WebSockets to
|
|
|
|
incorporate real-time features into your Rails application.
|
|
|
|
|
|
|
|
After reading this guide, you will know:
|
|
|
|
|
2016-06-07 20:34:28 -04:00
|
|
|
* What Action Cable is and its integration on backend and frontend
|
2015-12-18 15:04:38 -05:00
|
|
|
* How to setup Action Cable
|
|
|
|
* How to setup channels
|
2016-06-07 20:34:28 -04:00
|
|
|
* Deployment and Architecture setup for running Action Cable
|
2016-02-23 22:36:37 -05:00
|
|
|
|
2015-12-18 15:04:38 -05:00
|
|
|
Introduction
|
|
|
|
------------
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
Action Cable seamlessly integrates
|
|
|
|
[WebSockets](https://en.wikipedia.org/wiki/WebSocket) with the rest of your
|
|
|
|
Rails application. 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 domain model written with Active Record or your ORM of
|
|
|
|
choice.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
What is Pub/Sub
|
|
|
|
---------------
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
[Pub/Sub](https://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern), or
|
|
|
|
Publish-Subscribe, refers to a message queue paradigm whereby senders of
|
|
|
|
information (publishers), send data to an abstract class of recipients
|
|
|
|
(subscribers), without specifying individual recipients. Action Cable uses this
|
|
|
|
approach to communicate between the server and many clients.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
## Server-Side Components
|
|
|
|
|
|
|
|
### Connections
|
2016-02-28 09:37:58 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
*Connections* form the foundation of the client-server relationship. For every
|
|
|
|
WebSocket accepted by the server, a connection object is instantiated. This
|
|
|
|
object becomes the parent of all the *channel subscriptions* that are created
|
|
|
|
from there on. The connection itself does not deal with any specific application
|
|
|
|
logic beyond authentication and authorization. The client of a WebSocket
|
|
|
|
connection is called the connection *consumer*. An individual user will create
|
|
|
|
one consumer-connection pair per browser tab, window, or device they have open.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
Connections are instances of `ApplicationCable::Connection`. In this class, you
|
|
|
|
authorize the incoming connection, and proceed to establish it if the user can
|
|
|
|
be identified.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
#### Connection Setup
|
2016-02-28 09:37:58 -05:00
|
|
|
|
2015-12-18 15:04:38 -05: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
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
def find_verified_user
|
|
|
|
if current_user = User.find_by(id: cookies.signed[:user_id])
|
|
|
|
current_user
|
|
|
|
else
|
|
|
|
reject_unauthorized_connection
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
```
|
2016-02-28 09:37:58 -05:00
|
|
|
|
2015-12-18 15:04:38 -05:00
|
|
|
Here `identified_by` is a connection identifier that can be used to find the
|
2016-04-05 11:25:58 -04:00
|
|
|
specific connection later. Note that anything marked as an identifier will automatically
|
2016-02-28 09:37:58 -05:00
|
|
|
create a delegate by the same name on any channel instances created off the connection.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
2016-02-28 09:37:58 -05:00
|
|
|
This example relies on the fact that you will already have handled authentication of the user
|
2016-04-05 11:25:58 -04:00
|
|
|
somewhere else in your application, and that a successful authentication sets a signed
|
2016-05-14 17:55:07 -04:00
|
|
|
cookie with the user ID.
|
2016-02-28 09:37:58 -05:00
|
|
|
|
|
|
|
The cookie is then automatically sent to the connection instance when a new connection
|
2015-12-18 15:04:38 -05:00
|
|
|
is attempted, and you use that to set the `current_user`. By identifying the connection
|
2016-05-14 17:55:07 -04:00
|
|
|
by this same current user, you're also ensuring that you can later retrieve all open
|
2015-12-18 15:04:38 -05:00
|
|
|
connections by a given user (and potentially disconnect them all if the user is deleted
|
2016-05-28 16:40:10 -04:00
|
|
|
or unauthorized).
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
### Channels
|
2016-02-28 09:37:58 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
A *channel* encapsulates a logical unit of work, similar to what a controller does in a
|
2016-04-05 11:25:58 -04:00
|
|
|
regular MVC setup. By default, Rails creates a parent `ApplicationCable::Channel` class
|
|
|
|
for encapsulating shared logic between your channels.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
#### Parent Channel Setup
|
2016-02-28 09:37:58 -05:00
|
|
|
|
2015-12-18 15:04:38 -05:00
|
|
|
```ruby
|
|
|
|
# app/channels/application_cable/channel.rb
|
|
|
|
module ApplicationCable
|
|
|
|
class Channel < ActionCable::Channel::Base
|
|
|
|
end
|
|
|
|
end
|
|
|
|
```
|
2016-02-28 09:37:58 -05:00
|
|
|
|
|
|
|
Then you would create your own channel classes. For example, you could have a
|
2016-05-14 17:55:07 -04:00
|
|
|
`ChatChannel` and an `AppearanceChannel`:
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
```ruby
|
2016-04-10 08:35:37 -04:00
|
|
|
# app/channels/chat_channel.rb
|
2015-12-18 15:04:38 -05:00
|
|
|
class ChatChannel < ApplicationCable::Channel
|
|
|
|
end
|
|
|
|
|
2016-04-10 08:35:37 -04:00
|
|
|
# app/channels/appearance_channel.rb
|
2015-12-18 15:04:38 -05:00
|
|
|
class AppearanceChannel < ApplicationCable::Channel
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
2016-02-28 09:37:58 -05:00
|
|
|
A consumer could then be subscribed to either or both of these channels.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
#### Subscriptions
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
Consumers subscribe to channels, acting as *subscribers*. Their connection is
|
|
|
|
called a *subscription*. Produced messages are then routed to these channel
|
|
|
|
subscriptions based on an identifier sent by the cable consumer.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
```ruby
|
2016-04-10 08:35:37 -04:00
|
|
|
# app/channels/chat_channel.rb
|
2015-12-18 15:04:38 -05:00
|
|
|
class ChatChannel < ApplicationCable::Channel
|
2016-05-14 17:55:07 -04:00
|
|
|
# Called when the consumer has successfully
|
|
|
|
# become a subscriber of this channel.
|
2015-12-18 15:04:38 -05:00
|
|
|
def subscribed
|
|
|
|
end
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
|
|
|
## Client-Side Components
|
2016-02-28 09:37:58 -05:00
|
|
|
|
2015-12-18 15:04:38 -05:00
|
|
|
### Connections
|
2016-02-28 09:37:58 -05:00
|
|
|
|
2015-12-18 15:04:38 -05:00
|
|
|
Consumers require an instance of the connection on their side. This can be
|
2016-05-14 17:55:07 -04:00
|
|
|
established using the following JavaScript, which is generated by default by Rails:
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
#### Connect Consumer
|
2016-02-28 09:37:58 -05:00
|
|
|
|
2016-05-06 23:12:27 -04:00
|
|
|
```js
|
|
|
|
// app/assets/javascripts/cable.js
|
|
|
|
//= require action_cable
|
|
|
|
//= require_self
|
|
|
|
//= require_tree ./channels
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
this.App || (this.App = {});
|
2015-12-18 15:04:38 -05:00
|
|
|
|
2016-05-06 23:12:27 -04:00
|
|
|
App.cable = ActionCable.createConsumer();
|
|
|
|
}).call(this);
|
2015-12-18 15:04:38 -05:00
|
|
|
```
|
2016-02-28 09:37:58 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
This will ready a consumer that'll connect against `/cable` on your server by default.
|
2016-02-28 09:37:58 -05:00
|
|
|
The connection won't be established until you've also specified at least one subscription
|
|
|
|
you're interested in having.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
#### Subscriber
|
2016-02-28 09:37:58 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
A consumer becomes a subscriber by creating a subscription to a given channel:
|
2016-02-28 09:37:58 -05:00
|
|
|
|
2015-12-18 15:04:38 -05:00
|
|
|
```coffeescript
|
|
|
|
# app/assets/javascripts/cable/subscriptions/chat.coffee
|
|
|
|
App.cable.subscriptions.create { channel: "ChatChannel", room: "Best Room" }
|
|
|
|
|
|
|
|
# app/assets/javascripts/cable/subscriptions/appearance.coffee
|
|
|
|
App.cable.subscriptions.create { channel: "AppearanceChannel" }
|
|
|
|
```
|
|
|
|
|
|
|
|
While this creates the subscription, the functionality needed to respond to
|
|
|
|
received data will be described later on.
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
A consumer 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:
|
|
|
|
|
|
|
|
```coffeescript
|
|
|
|
App.cable.subscriptions.create { channel: "ChatChannel", room: "1st Room" }
|
|
|
|
App.cable.subscriptions.create { channel: "ChatChannel", room: "2nd Room" }
|
|
|
|
```
|
|
|
|
|
2015-12-18 15:04:38 -05:00
|
|
|
## Client-Server Interactions
|
|
|
|
|
|
|
|
### Streams
|
2016-02-28 09:37:58 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
*Streams* provide the mechanism by which channels route published content
|
|
|
|
(broadcasts) to their subscribers.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
```ruby
|
2016-04-10 08:35:37 -04:00
|
|
|
# app/channels/chat_channel.rb
|
2015-12-18 15:04:38 -05:00
|
|
|
class ChatChannel < ApplicationCable::Channel
|
|
|
|
def subscribed
|
|
|
|
stream_from "chat_#{params[:room]}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
2016-02-23 22:05:46 -05:00
|
|
|
If you have a stream that is related to a model, then the broadcasting used
|
|
|
|
can be generated from the model and channel. The following example would
|
|
|
|
subscribe to a broadcasting like `comments:Z2lkOi8vVGVzdEFwcC9Qb3N0LzE`
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
class CommentsChannel < ApplicationCable::Channel
|
|
|
|
def subscribed
|
|
|
|
post = Post.find(params[:id])
|
|
|
|
stream_for post
|
|
|
|
end
|
|
|
|
end
|
|
|
|
```
|
2016-02-28 09:37:58 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
You can then broadcast to this channel like this:
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
CommentsChannel.broadcast_to(@post, @comment)
|
|
|
|
```
|
2016-02-23 22:05:46 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
### Broadcasting
|
2015-12-18 15:04:38 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
A *broadcasting* is a pub/sub link where anything transmitted by a publisher
|
2015-12-18 15:04:38 -05:00
|
|
|
is routed directly to the channel subscribers who are streaming that named
|
2016-02-28 09:12:39 -05:00
|
|
|
broadcasting. Each channel can be streaming zero or more broadcastings.
|
2016-05-14 17:55:07 -04:00
|
|
|
|
|
|
|
Broadcastings are purely an online queue and time dependent. If a consumer is
|
|
|
|
not streaming (subscribed to a given channel), they'll not get the broadcast
|
|
|
|
should they connect later.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
Broadcasts are called elsewhere in your Rails application:
|
2016-04-05 11:25:58 -04:00
|
|
|
|
2015-12-18 15:04:38 -05:00
|
|
|
```ruby
|
2016-05-14 17:55:07 -04:00
|
|
|
WebNotificationsChannel.broadcast_to(
|
|
|
|
current_user,
|
|
|
|
title: 'New things!',
|
|
|
|
body: 'All the news fit to print'
|
|
|
|
)
|
2015-12-18 15:04:38 -05:00
|
|
|
```
|
|
|
|
|
2016-02-23 21:21:05 -05:00
|
|
|
The `WebNotificationsChannel.broadcast_to` call places a message in the current
|
2015-12-18 15:04:38 -05:00
|
|
|
subscription adapter (Redis by default)'s 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`.
|
|
|
|
|
|
|
|
The channel has been instructed to stream everything that arrives at
|
2016-05-14 17:55:07 -04:00
|
|
|
`web_notifications_1` directly to the client by invoking the `received`
|
2015-12-18 15:04:38 -05:00
|
|
|
callback.
|
|
|
|
|
|
|
|
### Subscriptions
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
When a consumer is subscribed to a channel, they act as a subscriber. This
|
|
|
|
connection is called a subscription. Incoming messages are then routed to
|
|
|
|
these channel subscriptions based on an identifier sent by the cable consumer.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
```coffeescript
|
|
|
|
# app/assets/javascripts/cable/subscriptions/chat.coffee
|
|
|
|
# Assumes you've already requested the right to send web notifications
|
|
|
|
App.cable.subscriptions.create { channel: "ChatChannel", room: "Best Room" },
|
|
|
|
received: (data) ->
|
|
|
|
@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>
|
|
|
|
"""
|
|
|
|
```
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
### Passing Parameters to Channels
|
2015-12-18 15:04:38 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
You can pass parameters from the client side to the server side when creating a
|
|
|
|
subscription. For example:
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
```ruby
|
|
|
|
# app/channels/chat_channel.rb
|
|
|
|
class ChatChannel < ApplicationCable::Channel
|
|
|
|
def subscribed
|
|
|
|
stream_from "chat_#{params[:room]}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
An object passed as the first argument to `subscriptions.create` becomes the
|
|
|
|
params hash in the cable channel. The keyword `channel` is required:
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
```coffeescript
|
|
|
|
# app/assets/javascripts/cable/subscriptions/chat.coffee
|
|
|
|
App.cable.subscriptions.create { channel: "ChatChannel", room: "Best Room" },
|
|
|
|
received: (data) ->
|
|
|
|
@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>
|
|
|
|
"""
|
|
|
|
```
|
|
|
|
|
|
|
|
```ruby
|
2016-05-14 17:55:07 -04:00
|
|
|
# Somewhere in your app this is called, perhaps
|
|
|
|
# from a NewCommentJob.
|
|
|
|
ChatChannel.broadcast_to(
|
|
|
|
"chat_#{room}",
|
|
|
|
sent_by: 'Paul',
|
|
|
|
body: 'This is a cool chat app.'
|
|
|
|
)
|
2015-12-18 15:04:38 -05:00
|
|
|
```
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
### Rebroadcasting a Message
|
2015-12-18 15:04:38 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
A common use case is to *rebroadcast* a message sent by one client to any
|
2015-12-18 15:04:38 -05:00
|
|
|
other connected clients.
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
# app/channels/chat_channel.rb
|
|
|
|
class ChatChannel < ApplicationCable::Channel
|
|
|
|
def subscribed
|
|
|
|
stream_from "chat_#{params[:room]}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def receive(data)
|
2016-05-14 17:55:07 -04:00
|
|
|
ChatChannel.broadcast_to("chat_#{params[:room]}", data)
|
2015-12-18 15:04:38 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
|
|
|
```coffeescript
|
|
|
|
# app/assets/javascripts/cable/subscriptions/chat.coffee
|
|
|
|
App.chatChannel = App.cable.subscriptions.create { channel: "ChatChannel", room: "Best Room" },
|
|
|
|
received: (data) ->
|
|
|
|
# data => { sent_by: "Paul", body: "This is a cool chat app." }
|
|
|
|
|
|
|
|
App.chatChannel.send({ sent_by: "Paul", body: "This is a cool chat app." })
|
|
|
|
```
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
## Full-Stack Examples
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
The following setup steps are common to both examples:
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
1. [Setup your connection](#connection-setup).
|
|
|
|
2. [Setup your parent channel](#parent-channel-setup).
|
|
|
|
3. [Connect your consumer](#connect-consumer).
|
|
|
|
|
|
|
|
### Example 1: User Appearances
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
Here's a simple example of a channel that tracks whether a user is online or not
|
|
|
|
and what page they're on. (This is useful for creating presence features like showing
|
|
|
|
a green dot next to a user name if they're online).
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
Create the server-side appearance channel:
|
2015-12-18 15:04:38 -05: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)
|
2016-05-14 17:55:07 -04:00
|
|
|
current_user.appear(on: data['appearing_on'])
|
2015-12-18 15:04:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def away
|
|
|
|
current_user.away
|
|
|
|
end
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
When a subscription is initiated the `subscribed` callback gets fired and we
|
|
|
|
take that opportunity to say "the current user has indeed appeared". That
|
|
|
|
appear/disappear API could be backed by Redis, a database, or whatever else.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
Create the client-side appearance channel subscription:
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
```coffeescript
|
|
|
|
# app/assets/javascripts/cable/subscriptions/appearance.coffee
|
|
|
|
App.cable.subscriptions.create "AppearanceChannel",
|
2016-05-14 17:55:07 -04:00
|
|
|
# Called when the subscription is ready for use on the server.
|
2015-12-18 15:04:38 -05:00
|
|
|
connected: ->
|
|
|
|
@install()
|
|
|
|
@appear()
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
# Called when the WebSocket connection is closed.
|
2015-12-18 15:04:38 -05:00
|
|
|
disconnected: ->
|
|
|
|
@uninstall()
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
# Called when the subscription is rejected by the server.
|
2015-12-18 15:04:38 -05:00
|
|
|
rejected: ->
|
|
|
|
@uninstall()
|
|
|
|
|
|
|
|
appear: ->
|
2016-05-14 17:55:07 -04:00
|
|
|
# Calls `AppearanceChannel#appear(data)` on the server.
|
2015-12-18 15:04:38 -05:00
|
|
|
@perform("appear", appearing_on: $("main").data("appearing-on"))
|
|
|
|
|
|
|
|
away: ->
|
2016-05-14 17:55:07 -04:00
|
|
|
# Calls `AppearanceChannel#away` on the server.
|
2015-12-18 15:04:38 -05:00
|
|
|
@perform("away")
|
|
|
|
|
|
|
|
|
|
|
|
buttonSelector = "[data-behavior~=appear_away]"
|
|
|
|
|
|
|
|
install: ->
|
|
|
|
$(document).on "page:change.appearance", =>
|
|
|
|
@appear()
|
|
|
|
|
|
|
|
$(document).on "click.appearance", buttonSelector, =>
|
|
|
|
@away()
|
|
|
|
false
|
|
|
|
|
|
|
|
$(buttonSelector).show()
|
|
|
|
|
|
|
|
uninstall: ->
|
|
|
|
$(document).off(".appearance")
|
|
|
|
$(buttonSelector).hide()
|
|
|
|
```
|
|
|
|
|
|
|
|
##### Client-Server Interaction
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
1. **Client** connects to the **Server** via `App.cable =
|
|
|
|
ActionCable.createConsumer("ws://cable.example.com")`. (`cable.js`). The
|
|
|
|
**Server** identifies this connection by `current_user`.
|
|
|
|
|
|
|
|
2. **Client** subscribes to the appearance channel via
|
|
|
|
`App.cable.subscriptions.create(channel: "AppearanceChannel")`. (`appearance.coffee`)
|
|
|
|
|
|
|
|
3. **Server** recognizes a new subscription has been initiated for the
|
|
|
|
appearance channel and runs its `subscribed` callback, calling the `appear`
|
|
|
|
method on `current_user`. (`appearance_channel.rb`)
|
|
|
|
|
|
|
|
4. **Client** recognizes that a subscription has been established and calls
|
|
|
|
`connected` (`appearance.coffee`) which in turn calls `@install` and `@appear`.
|
|
|
|
`@appear` calls `AppearanceChannel#appear(data)` on the server, and supplies a
|
|
|
|
data hash of `{ appearing_on: $("main").data("appearing-on") }`. This is
|
|
|
|
possible because the server-side channel instance automatically exposes all
|
|
|
|
public methods declared on the class (minus the callbacks), so that these can be
|
|
|
|
reached as remote procedure calls via a subscription's `perform` method.
|
|
|
|
|
|
|
|
5. **Server** receives the request for the `appear` action on the appearance
|
|
|
|
channel for the connection identified by `current_user`
|
|
|
|
(`appearance_channel.rb`). **Server** retrieves the data with the
|
|
|
|
`:appearing_on` key from the data hash and sets it as the value for the `:on`
|
|
|
|
key being passed to `current_user.appear`.
|
|
|
|
|
|
|
|
### Example 2: Receiving New Web Notifications
|
2015-12-18 15:04:38 -05: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
|
2016-02-28 09:12:39 -05:00
|
|
|
where the server invokes an action on the client.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
This is a web notification channel that allows you to trigger client-side
|
|
|
|
web notifications when you broadcast to the right streams:
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
Create the server-side web notifications channel:
|
2016-02-28 09:12:39 -05:00
|
|
|
|
2015-12-18 15:04:38 -05:00
|
|
|
```ruby
|
|
|
|
# app/channels/web_notifications_channel.rb
|
|
|
|
class WebNotificationsChannel < ApplicationCable::Channel
|
|
|
|
def subscribed
|
2016-02-28 09:37:58 -05:00
|
|
|
stream_for current_user
|
2015-12-18 15:04:38 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
Create the client-side web notifications channel subscription:
|
|
|
|
|
2015-12-18 15:04:38 -05:00
|
|
|
```coffeescript
|
|
|
|
# app/assets/javascripts/cable/subscriptions/web_notifications.coffee
|
2016-05-14 17:55:07 -04:00
|
|
|
# Client-side which assumes you've already requested
|
|
|
|
# the right to send web notifications.
|
2015-12-18 15:04:38 -05:00
|
|
|
App.cable.subscriptions.create "WebNotificationsChannel",
|
|
|
|
received: (data) ->
|
|
|
|
new Notification data["title"], body: data["body"]
|
|
|
|
```
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
Broadcast content to a web notification channel instance from elsewhere in your
|
|
|
|
application:
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
```ruby
|
|
|
|
# Somewhere in your app this is called, perhaps from a NewCommentJob
|
2016-05-14 17:55:07 -04:00
|
|
|
WebNotificationsChannel.broadcast_to(
|
|
|
|
current_user,
|
|
|
|
title: 'New things!',
|
|
|
|
body: 'All the news fit to print'
|
|
|
|
)
|
2015-12-18 15:04:38 -05:00
|
|
|
```
|
|
|
|
|
2016-02-23 21:21:05 -05:00
|
|
|
The `WebNotificationsChannel.broadcast_to` call places a message in the current
|
2016-05-14 17:55:07 -04:00
|
|
|
subscription adapter's 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".
|
2016-02-28 09:37:58 -05:00
|
|
|
|
2015-12-18 15:04:38 -05:00
|
|
|
The channel has been instructed to stream everything that arrives at
|
2016-05-14 17:55:07 -04:00
|
|
|
"web_notifications_1" directly to the client by invoking the `received`
|
|
|
|
callback. The data passed as argument 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-12-18 15:04:38 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
### More Complete Examples
|
2015-12-18 15:04:38 -05:00
|
|
|
|
2016-05-06 11:07:27 -04:00
|
|
|
See the [rails/actioncable-examples](https://github.com/rails/actioncable-examples)
|
2015-12-18 15:04:38 -05:00
|
|
|
repository for a full example of how to setup Action Cable in a Rails app and adding channels.
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
2016-02-28 09:37:58 -05:00
|
|
|
Action Cable has two required configurations: a subscription adapter and allowed request origins.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
### Subscription Adapter
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
By default, Action Cable looks for a configuration file in `config/cable.yml`.
|
|
|
|
The file must specify an adapter and a URL for each Rails environment. See the
|
|
|
|
[Dependencies](#dependencies) section for additional information on adapters.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
```yaml
|
2016-05-14 17:55:07 -04:00
|
|
|
development:
|
2016-02-28 09:37:58 -05:00
|
|
|
adapter: async
|
2015-12-18 15:04:38 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
test:
|
|
|
|
adapter: async
|
2015-12-18 15:04:38 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
production:
|
|
|
|
adapter: redis
|
|
|
|
url: redis://10.10.3.153:6381
|
2015-12-18 15:04:38 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
### Allowed Request Origins
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
```ruby
|
2016-05-14 17:55:07 -04:00
|
|
|
config.action_cable.allowed_request_origins = ['http://rubyonrails.com', %r{http://ruby.*}]
|
2015-12-18 15:04:38 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
To disable and allow requests from any origin:
|
|
|
|
|
|
|
|
```ruby
|
2016-05-14 17:55:07 -04:00
|
|
|
config.action_cable.disable_request_forgery_protection = true
|
2015-12-18 15:04:38 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
By default, Action Cable allows all requests from localhost:3000 when running
|
|
|
|
in the development environment.
|
|
|
|
|
|
|
|
### Consumer Configuration
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
To configure the URL, add a call to `action_cable_meta_tag` in your HTML layout
|
|
|
|
HEAD. This uses a URL or path typically set via `config.action_cable.url` in the
|
|
|
|
environment configuration files.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
### Other Configurations
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
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:
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
```ruby
|
2016-05-14 17:55:07 -04:00
|
|
|
config.action_cable.log_tags = [
|
2015-12-18 15:04:38 -05:00
|
|
|
-> request { request.env['bc.account_id'] || "no-account" },
|
|
|
|
:action_cable,
|
|
|
|
-> request { request.uuid }
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
For a full list of all configuration options, see the
|
|
|
|
`ActionCable::Server::Configuration` class.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
Also note that your server must provide at least the same number of database
|
2016-05-27 03:43:56 -04:00
|
|
|
connections as you have workers. The default worker pool size is set to 4, so
|
2016-05-14 17:55:07 -04:00
|
|
|
that means you have to make at least that available. You can change that in
|
|
|
|
`config/database.yml` through the `pool` attribute.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
## Running Standalone Cable Servers
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
### In App
|
|
|
|
|
|
|
|
Action Cable can run alongside your Rails application. For example, to
|
2016-04-15 04:14:33 -04:00
|
|
|
listen for WebSocket requests on `/websocket`, specify that path to
|
|
|
|
`config.action_cable.mount_path`:
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
```ruby
|
2016-04-15 04:14:33 -04:00
|
|
|
# config/application.rb
|
|
|
|
class Application < Rails::Application
|
|
|
|
config.action_cable.mount_path = '/websocket'
|
2015-12-18 15:04:38 -05:00
|
|
|
end
|
|
|
|
```
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
You can use `App.cable = ActionCable.createConsumer()` to connect to the cable
|
|
|
|
server if `action_cable_meta_tag` is invoked in the layout. A custom path is
|
|
|
|
specified as first argument to `createConsumer` (e.g. `App.cable =
|
|
|
|
ActionCable.createConsumer("/websocket")`).
|
2015-12-18 15:04:38 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
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.
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
### Standalone
|
2016-02-28 09:46:56 -05:00
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
The cable servers can be separated from your normal application server. It's
|
|
|
|
still a Rack application, but it is its own Rack application. The recommended
|
|
|
|
basic setup is as follows:
|
2015-12-18 15:04:38 -05:00
|
|
|
|
|
|
|
```ruby
|
|
|
|
# cable/config.ru
|
2016-05-29 10:22:53 -04:00
|
|
|
require_relative '../config/environment'
|
2015-12-18 15:04:38 -05:00
|
|
|
Rails.application.eager_load!
|
|
|
|
|
|
|
|
run ActionCable.server
|
|
|
|
```
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
Then you start the server using a binstub in `bin/cable` ala:
|
2016-02-28 10:19:16 -05:00
|
|
|
|
2015-12-18 15:04:38 -05:00
|
|
|
```
|
|
|
|
#!/bin/bash
|
|
|
|
bundle exec puma -p 28080 cable/config.ru
|
|
|
|
```
|
|
|
|
|
|
|
|
The above will start a cable server on port 28080.
|
|
|
|
|
|
|
|
### Notes
|
|
|
|
|
|
|
|
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).
|
|
|
|
|
|
|
|
## Dependencies
|
|
|
|
|
|
|
|
Action Cable provides a subscription adapter interface to process its
|
|
|
|
pubsub internals. By default, asynchronous, inline, PostgreSQL, evented
|
|
|
|
Redis, and non-evented Redis adapters are included. The default adapter
|
|
|
|
in new Rails applications is the asynchronous (`async`) adapter.
|
|
|
|
|
|
|
|
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).
|
|
|
|
|
|
|
|
## Deployment
|
|
|
|
|
|
|
|
Action Cable is powered by a combination of WebSockets and threads. Both the
|
2016-02-28 09:12:39 -05:00
|
|
|
framework plumbing and user-specified channel work are handled internally by
|
|
|
|
utilizing Ruby's native thread support. This means you can use all your regular
|
2015-12-18 15:04:38 -05:00
|
|
|
Rails models with no problem, as long as you haven't committed any thread-safety sins.
|
|
|
|
|
2016-02-28 09:12:39 -05:00
|
|
|
The Action Cable server implements the Rack socket hijacking API,
|
2015-12-18 15:04:38 -05:00
|
|
|
thereby allowing the use of a multithreaded pattern for managing connections
|
|
|
|
internally, irrespective of whether the application server is multi-threaded or not.
|
|
|
|
|
2016-05-14 17:55:07 -04:00
|
|
|
Accordingly, Action Cable works with popular servers like Unicorn, Puma, and
|
|
|
|
Passenger.
|