2022-10-22 22:30:40 +01:00
|
|
|
require "digest/sha2"
|
|
|
|
require "json"
|
|
|
|
require "waitutil"
|
|
|
|
|
2023-07-26 16:38:36 +01:00
|
|
|
require_relative "driver"
|
2022-10-22 22:30:40 +01:00
|
|
|
require_relative "error"
|
2023-07-26 14:37:35 +01:00
|
|
|
require_relative "logger"
|
2023-07-26 16:38:36 +01:00
|
|
|
require_relative "mixin"
|
2022-10-22 22:30:40 +01:00
|
|
|
|
|
|
|
module OBSWS
|
|
|
|
class Base
|
2023-07-26 14:37:35 +01:00
|
|
|
include Logging
|
2023-07-26 16:38:36 +01:00
|
|
|
include Driver
|
2022-10-22 22:30:40 +01:00
|
|
|
include Mixin::OPCodes
|
|
|
|
|
2023-07-26 10:51:38 +01:00
|
|
|
attr_reader :closed
|
|
|
|
attr_writer :updater
|
2022-10-22 22:30:40 +01:00
|
|
|
|
|
|
|
def initialize(**kwargs)
|
|
|
|
host = kwargs[:host] || "localhost"
|
|
|
|
port = kwargs[:port] || 4455
|
|
|
|
@password = kwargs[:password] || ""
|
|
|
|
@subs = kwargs[:subs] || 0
|
2023-07-26 16:38:36 +01:00
|
|
|
setup_driver(host, port)
|
2022-10-23 04:39:22 +01:00
|
|
|
start_driver
|
2022-10-22 22:30:40 +01:00
|
|
|
WaitUtil.wait_for_condition(
|
2022-11-25 17:57:56 +00:00
|
|
|
"successful identification",
|
2022-10-22 22:30:40 +01:00
|
|
|
delay_sec: 0.01,
|
2022-10-23 04:39:22 +01:00
|
|
|
timeout_sec: 3
|
2022-10-23 23:33:30 +01:00
|
|
|
) { @identified }
|
2022-10-22 22:30:40 +01:00
|
|
|
end
|
|
|
|
|
2023-07-26 10:51:38 +01:00
|
|
|
private
|
|
|
|
|
2022-10-22 22:30:40 +01:00
|
|
|
def auth_token(salt:, challenge:)
|
|
|
|
Digest::SHA256.base64digest(
|
|
|
|
Digest::SHA256.base64digest(@password + salt) + challenge
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2022-10-25 00:03:43 +01:00
|
|
|
def identify(auth)
|
2022-11-25 18:05:10 +00:00
|
|
|
payload = {
|
|
|
|
op: Mixin::OPCodes::IDENTIFY,
|
|
|
|
d: {
|
|
|
|
rpcVersion: 1,
|
|
|
|
eventSubscriptions: @subs
|
|
|
|
}
|
|
|
|
}
|
2022-11-25 17:57:56 +00:00
|
|
|
if auth
|
|
|
|
if @password.empty?
|
|
|
|
raise OBSWSError("auth enabled but no password provided")
|
|
|
|
end
|
2023-07-26 14:37:35 +01:00
|
|
|
logger.info("initiating authentication")
|
2022-11-25 17:57:56 +00:00
|
|
|
payload[:d][:authentication] = auth_token(**auth)
|
|
|
|
end
|
2022-10-22 22:30:40 +01:00
|
|
|
@driver.text(JSON.generate(payload))
|
|
|
|
end
|
|
|
|
|
|
|
|
def msg_handler(data)
|
2022-10-23 23:33:30 +01:00
|
|
|
case data[:op]
|
2022-10-22 22:30:40 +01:00
|
|
|
when Mixin::OPCodes::HELLO
|
2022-10-25 00:03:43 +01:00
|
|
|
identify(data[:d][:authentication])
|
2022-10-22 22:30:40 +01:00
|
|
|
when Mixin::OPCodes::IDENTIFIED
|
2022-10-23 23:33:30 +01:00
|
|
|
@identified = true
|
2022-10-22 22:30:40 +01:00
|
|
|
when Mixin::OPCodes::EVENT, Mixin::OPCodes::REQUESTRESPONSE
|
2023-07-26 10:51:38 +01:00
|
|
|
@updater.call(data[:op], data[:d])
|
2022-10-22 22:30:40 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-07-26 10:51:38 +01:00
|
|
|
public def req(id, type_, data = nil)
|
2022-10-22 22:30:40 +01:00
|
|
|
payload = {
|
|
|
|
op: Mixin::OPCodes::REQUEST,
|
|
|
|
d: {
|
|
|
|
requestType: type_,
|
|
|
|
requestId: id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
payload[:d][:requestData] = data if data
|
2023-07-26 14:37:35 +01:00
|
|
|
logger.debug("sending request: #{payload}")
|
2023-07-21 06:04:09 +01:00
|
|
|
@driver.text(JSON.generate(payload))
|
2022-10-22 22:30:40 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|