Dyte is sunsetting its existing infrastructure after the Cloudflare acquisition, so this migrates Chatwoot’s video call integration to Cloudflare RealtimeKit. The integration now uses Cloudflare Account ID, RealtimeKit App ID, and a Cloudflare API token with Realtime Admin permissions. Meeting creation and participant token generation now call Cloudflare’s RealtimeKit APIs, while the existing Chatwoot call experience remains unchanged for agents and customers. This also adds setup-time credential validation, so admins get clearer errors when the API token is invalid, the Cloudflare account or permissions are incorrect, or the RealtimeKit App ID does not belong to the selected account. Fixes https://linear.app/chatwoot/issue/PLA-176/migrate-dyte-integration-to-cloudflare-realtimekit **How to test** 1. Go to Settings → Integrations → Cloudflare RealtimeKit. 2. Add a Cloudflare Account ID, RealtimeKit App ID, and API token with Realtime Admin permissions. 3. Confirm the integration saves successfully with valid credentials. 4. Try invalid credentials and confirm the error identifies whether the token, account/permissions, or app ID is wrong. 5. Start a video call from a conversation and confirm the RealtimeKit meeting opens. --------- Co-authored-by: Muhsin <12408980+muhsin-k@users.noreply.github.com> Co-authored-by: Sony Mathew <sony@chatwoot.com>
105 lines
3.1 KiB
Ruby
105 lines
3.1 KiB
Ruby
module Integrations::Cloudflare::RealtimeKitCredentialsValidator
|
|
Result = Data.define(:success?, :error)
|
|
|
|
BASE_URL = 'https://api.cloudflare.com/client/v4'.freeze
|
|
TIMEOUT_SECONDS = 5
|
|
APPS_PAGE_SIZE = 50
|
|
|
|
def self.valid?(account_id, app_id, api_token)
|
|
validate(account_id, app_id, api_token).success?
|
|
end
|
|
|
|
def self.validate(account_id, app_id, api_token)
|
|
return failure(:missing_credentials) if account_id.blank? || app_id.blank? || api_token.blank?
|
|
|
|
token_result = validate_token(api_token)
|
|
return token_result unless token_result.success?
|
|
|
|
validate_realtimekit_app(account_id, app_id, api_token)
|
|
rescue Faraday::Error => e
|
|
Rails.logger.warn("[cloudflare-realtimekit-credentials-validator] #{e.class}: #{e.message}")
|
|
failure(:verification_failed)
|
|
end
|
|
|
|
def self.validate_token(api_token)
|
|
response = connection.get("#{BASE_URL}/user/tokens/verify") do |req|
|
|
req.headers['Authorization'] = "Bearer #{api_token}"
|
|
end
|
|
|
|
return failure(:verification_failed) if transient_error?(response)
|
|
|
|
body = parse_response(response)
|
|
return success if response.status == 200 && body['success'] == true && body.dig('result', 'status') == 'active'
|
|
|
|
failure(:invalid_api_token)
|
|
end
|
|
private_class_method :validate_token
|
|
|
|
def self.validate_realtimekit_app(account_id, app_id, api_token)
|
|
page_no = 1
|
|
|
|
loop do
|
|
response = fetch_realtimekit_apps(account_id, api_token, page_no)
|
|
return failure(:verification_failed) if transient_error?(response)
|
|
return failure(:invalid_account_or_permissions) unless response.status == 200
|
|
|
|
body = parse_response(response)
|
|
apps = body['data'] || []
|
|
return success if apps.any? { |app| app['id'] == app_id }
|
|
break unless next_apps_page?(body, page_no, apps)
|
|
|
|
page_no += 1
|
|
end
|
|
|
|
failure(:app_not_found)
|
|
end
|
|
private_class_method :validate_realtimekit_app
|
|
|
|
def self.fetch_realtimekit_apps(account_id, api_token, page_no)
|
|
connection.get("#{BASE_URL}/accounts/#{account_id}/realtime/kit/apps") do |req|
|
|
req.headers['Authorization'] = "Bearer #{api_token}"
|
|
req.params['page_no'] = page_no
|
|
req.params['per_page'] = APPS_PAGE_SIZE
|
|
end
|
|
end
|
|
private_class_method :fetch_realtimekit_apps
|
|
|
|
def self.next_apps_page?(body, page_no, apps)
|
|
total_count = body.dig('paging', 'total_count') || body.dig('result_info', 'total_count')
|
|
return page_no * APPS_PAGE_SIZE < total_count.to_i if total_count.present?
|
|
|
|
apps.size == APPS_PAGE_SIZE
|
|
end
|
|
private_class_method :next_apps_page?
|
|
|
|
def self.connection
|
|
Faraday.new do |f|
|
|
f.options.timeout = TIMEOUT_SECONDS
|
|
f.options.open_timeout = TIMEOUT_SECONDS
|
|
end
|
|
end
|
|
private_class_method :connection
|
|
|
|
def self.parse_response(response)
|
|
JSON.parse(response.body)
|
|
rescue JSON::ParserError
|
|
{}
|
|
end
|
|
private_class_method :parse_response
|
|
|
|
def self.transient_error?(response)
|
|
response.status >= 500
|
|
end
|
|
private_class_method :transient_error?
|
|
|
|
def self.success
|
|
Result.new(true, nil)
|
|
end
|
|
private_class_method :success
|
|
|
|
def self.failure(error)
|
|
Result.new(false, error)
|
|
end
|
|
private_class_method :failure
|
|
end
|