Sha256: 1c5935701dc6eac231de81a718a8145739ae57d2b2c94bd70ccfaafe7b1619cf

Contents?: true

Size: 843 Bytes

Versions: 1

Compression:

Stored size: 843 Bytes

Contents

require 'json'
require 'websocket-client-simple'

module Ruboty
  module SlackRTM
    class Client
      def initialize(websocket_url:)
        @client = WebSocket::Client::Simple.connect(websocket_url.to_s)
        @queue = Queue.new
      end

      def send(data)
        data[:id] = Time.now.to_i * 10 + rand(10)
        @queue.enq(data.to_json)
      end

      def on(event, &block)
        @client.on(event) do |message|
          block.call(JSON.parse(message.data))
        end
      end

      def main_loop
        keep_connection

        loop do
          message = @queue.deq
          @client.send(message)
        end
      end

      private

      def keep_connection
        Thread.start do
          loop do
            sleep(30)
            @client.send(type: 'ping')
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruboty-slack_rtm-2.1.0 lib/ruboty/slack_rtm/client.rb