0

我有一个带有websocket-rails gem 的 Rails 应用程序。

在我的应用程序中有一个守护进程,我使用它启动rails runner MyDaemon.start

我正在使用websocket-rails Synchronization,所以我config/initializers/websocket_rails.rb看起来像这样:

WebsocketRails.setup do |config|
  config.log_internal_events = false
  config.standalone = false
  config.synchronize = true
end

在内部MyDaemon,使用同步,我可以触发将同时到达我WebsocketRails::BaseController和我的 javascript的事件WebSocketRails

我想做的是找到一种方法来绑定我的事件MyDaemon

我尝试使用faye-websocket-rubywebsocket-client-simple来实现一个普通的 WebSocket 客户端,但是在我的头在键盘上敲了一段时间之后,我发现有某种“握手”过程使用connection_idclient_connected消息中。基本上这个其他问题中提供的解决方案都不适合我。

我需要了解是否MyDaemon可以在我的内部直接订阅一些WebsocketRails回调,甚至在 EventMachine 内部,或者我应该如何在 Ruby 本身中实现 ​​Websocket 客户端。

我最后一次尝试拥有一个 ruby​​ 客户端可以在这个 gist中找到,这是一个示例输出:

ruby client.rb ws://localhost:3000/websocket
[:open, {"upgrade"=>"websocket", "connection"=>"Upgrade", "sec-websocket-accept"=>"zNTdGvxFKJeP+1PyGf27T4x2PGo="}]

JSON message is
[["client_connected", {"id"=>nil, "channel"=>nil, "user_id"=>nil, "data"=>{"connection_id"=>"4b7b91001befb160d17b"}, "success"=>nil, "result"=>nil, "token"=>nil, "server_token"=>nil}]]

client id is 4b7b91001befb160d17b
[:message, "[[\"client_connected\",{\"id\":null,\"channel\":null,\"user_id\":null,\"data\":{\"connection_id\":\"4b7b91001befb160d17b\"},\"success\":null,\"result\":null,\"token\":null,\"server_token\":null}]]"]

JSON message is
[["websocket_rails.ping", {"id"=>nil, "channel"=>nil, "user_id"=>nil, "data"=>{}, "success"=>nil, "result"=>nil, "token"=>nil, "server_token"=>nil}]]

Sending ["pong",{}]
[:message, "[[\"websocket_rails.ping\",{\"id\":null,\"channel\":null,\"user_id\":null,\"data\":{},\"success\":null,\"result\":null,\"token\":null,\"server_token\":null}]]"]
[:close, 1006, ""]

虽然日志websocket-rails是:

I [2015-06-27 02:08:45.250] [ConnectionManager] Connection opened: #<Connection::2b3dddaf3ec4ed5e3550>
I [2015-06-27 02:08:45.251] [Dispatcher] Started Event: client_connected
I [2015-06-27 02:08:45.251] [Dispatcher] Name: client_connected
I [2015-06-27 02:08:45.251] [Dispatcher] Data: {"connection_id"=>"2b3dddaf3ec4ed5e3550"}
I [2015-06-27 02:08:45.251] [Dispatcher] Connection: #<Connection::2b3dddaf3ec4ed5e3550>
I [2015-06-27 02:08:45.251] [Dispatcher] Event client_connected Finished in 0.000174623 seconds
I [2015-06-27 02:09:05.252] [ConnectionManager] Connection closed: #<Connection::2b3dddaf3ec4ed5e3550>
I [2015-06-27 02:09:05.252] [Dispatcher] Started Event: client_disconnected
I [2015-06-27 02:09:05.252] [Dispatcher] Name: client_disconnected
I [2015-06-27 02:09:05.252] [Dispatcher] Connection: #<Connection::2b3dddaf3ec4ed5e3550>
I [2015-06-27 02:09:05.253] [Dispatcher] Event client_disconnected Finished in 0.000236669 seconds

可能我错过了一些非常愚蠢的东西,所以我在这里寻求您的帮助!

4

1 回答 1

0

您可以使用 Iodine 作为 websocket 客户端(我是作者):

require 'iodine/http'
# prevents the Iodine's server from running
Iodine.protocol = :timer
# starts Iodine while the script is still running
Iodine.force_start!
options = {}
options[:on_open] = Proc.new {puts 'Connection Open'; write "Hello World!" }
options[:on_close] = Proc.new {puts 'Connection Closed'}
options[:on_message] = Proc.new {|data| puts "I got: #{data}" }

# connect to an echo server for demo. Use the blocking method:
websocket = Iodine::Http::WebsocketClient.connect "wss://echo.websocket.org/", options
websocket << "sending data"
sleep 0.5
websocket.close

顺便说一句,在阅读时我注意到websocket-rails gem 并没有更新太多。看到这个问题

作为替代方案,您可以使用Plezi 框架(我是作者)在 Rails 应用程序中运行 websockets。

在同一台服务器上同时使用这两个框架非常容易。这样您就可以在 Plezi Websocket 控制器中使用 Rails 模型的代码。

因为 Plezi 将管理 websockets 而 Rails 可能会呈现 404 Not Found 页面,所以 Plezi 的路由将优先......但只要你的路由不相互覆盖,你就是黄金。

请注意,为了让两个应用程序一起运行,Plezi 将强制您使用Iodine 服务器作为您的 Rack 服务器。为避免这种情况,您可以使用 Placebo API 并在不同的进程上运行 Plezi。

您可以阅读更多框架的README 文件

于 2015-07-24T23:47:14.223 回答