57 lines
1.4 KiB
Ruby
57 lines
1.4 KiB
Ruby
|
class Dyte
|
||
|
BASE_URL = 'https://api.cluster.dyte.in/v1'.freeze
|
||
|
API_KEY_HEADER = 'Authorization'.freeze
|
||
|
|
||
|
def initialize(api_key, organization_id)
|
||
|
@api_key = api_key
|
||
|
@organization_id = organization_id
|
||
|
end
|
||
|
|
||
|
def create_a_meeting(title)
|
||
|
payload = {
|
||
|
'title': title,
|
||
|
'presetName': 'AV_Participant',
|
||
|
'authorization': {
|
||
|
'waitingRoom': false,
|
||
|
'closed': false
|
||
|
},
|
||
|
'recordOnStart': false,
|
||
|
'liveStreamOnStart': false
|
||
|
}
|
||
|
path = "organizations/#{@organization_id}/meeting"
|
||
|
response = post(path, payload)
|
||
|
process_response(response)
|
||
|
end
|
||
|
|
||
|
def add_participant_to_meeting(meeting_id, client_id, name, avatar_url)
|
||
|
payload = {
|
||
|
'clientSpecificId': client_id,
|
||
|
'userDetails': {
|
||
|
'name': name,
|
||
|
'picture': avatar_url
|
||
|
},
|
||
|
'presetName': 'AV_Participant'
|
||
|
}
|
||
|
path = "organizations/#{@organization_id}/meetings/#{meeting_id}/participant"
|
||
|
response = post(path, payload)
|
||
|
process_response(response)
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def process_response(response)
|
||
|
return response.parsed_response if response.success?
|
||
|
|
||
|
{ error: response.parsed_response, status: response.code }
|
||
|
end
|
||
|
|
||
|
def post(path, payload)
|
||
|
HTTParty.post(
|
||
|
"#{BASE_URL}/#{path}", {
|
||
|
headers: { API_KEY_HEADER => @api_key, 'Content-Type' => 'application/json' },
|
||
|
body: payload.to_json
|
||
|
}
|
||
|
)
|
||
|
end
|
||
|
end
|