Last active
January 21, 2025 22:41
-
-
Save ccutrer/5657b52239c00f53fedb3ec4558c9c7b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# frozen_string_literal: true | |
require "json" | |
require "websocket-eventmachine-client" | |
EM.run do | |
ws = WebSocket::EventMachine::Client.connect(:uri => ARGV[0] || "ws://localhost:3000") | |
ws.onopen do | |
puts "Connected" | |
end | |
ws.onmessage do |msg, type| | |
if type == :text | |
message = JSON.parse(msg) | |
if message["type"] == "version" | |
ws.send({ command: "initialize", schemaVersion: 40, additionalUserAgentComponents: "ruby/0.1" }.to_json) | |
ws.send({ command: "start_listening" }.to_json) | |
end | |
if message["type"] == "result" && message["success"] && message["result"].key?("state") | |
puts "received state" | |
File.write("state.json", msg) | |
next | |
end | |
end | |
puts "Received message: #{msg} (#{type.inspect})" | |
end | |
ws.onclose do |code, reason| | |
puts "Disconnected with status code: #{code} (#{reason})" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment