aboutsummaryrefslogblamecommitdiffstats
path: root/actioncable/lib/action_cable/connection/web_socket.rb
blob: 11f28c37e80293ac2b9fca796f7a2864a89be9e7 (plain) (tree)
1
2
3
4
5
6
7
8
                          
 

                   
                                                                   
                   

                                                                                                                                  






                   
                                     


                        






                               



                          

                               

         
               



                              
require 'websocket/driver'

module ActionCable
  module Connection
    # Wrap the real socket to minimize the externally-presented API
    class WebSocket
      def initialize(env, event_target, event_loop, client_socket_class, protocols: ActionCable::INTERNAL[:protocols])
        @websocket = ::WebSocket::Driver.websocket?(env) ? client_socket_class.new(env, event_target, event_loop, protocols) : nil
      end

      def possible?
        websocket
      end

      def alive?
        websocket && websocket.alive?
      end

      def transmit(data)
        websocket.transmit data
      end

      def close
        websocket.close
      end

      def protocol
        websocket.protocol
      end

      def rack_response
        websocket.rack_response
      end

      protected
        attr_reader :websocket
    end
  end
end