mirror of
https://github.com/pierre42100/ComunicAPI
synced 2024-11-23 22:09:29 +00:00
217 lines
5.5 KiB
PHP
217 lines
5.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Calls controller
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
class CallsController {
|
|
|
|
/**
|
|
* Single user response to call
|
|
*/
|
|
const USER_RESPONSE_TO_CALL = array(
|
|
CallMemberInformation::USER_ACCEPTED => "accepted",
|
|
CallMemberInformation::USER_REJECTED => "rejected",
|
|
CallMemberInformation::USER_UNKNOWN => "unknown",
|
|
CallMemberInformation::USER_HANG_UP => "hang_up"
|
|
);
|
|
|
|
/**
|
|
* Get call configuration
|
|
*
|
|
* @url POST /calls/config
|
|
*/
|
|
public function getConfig(){
|
|
user_login_required();
|
|
return self::CallsConfigToAPI(components()->calls->getConfig());
|
|
}
|
|
|
|
/**
|
|
* Create a call for a conversation
|
|
*
|
|
* @url POST /calls/createForConversation
|
|
*/
|
|
public function createForConversation(){
|
|
|
|
user_login_required();
|
|
|
|
//Get conversation ID
|
|
$conversationID = getPostConversationID("conversationID");
|
|
|
|
//Check if the user belongs to the conversation
|
|
if(!components()->conversations->userBelongsTo(userID, $conversationID))
|
|
Rest_fatal_error(401, "Specified user doesn't belongs to the conversation number ".$conversationID." !");
|
|
|
|
//First, check if a call alreay exists for this conversation
|
|
$call = components()->calls->getForConversation($conversationID, true);
|
|
|
|
//If could not get a call, try to create a new one
|
|
if(!$call->isValid()){
|
|
|
|
//Try to create the call
|
|
if(!components()->calls->createForConversation($conversationID))
|
|
Rest_fatal_error(500, "Could not create the call");
|
|
|
|
//Get the conversation again
|
|
$call = components()->calls->getForConversation($conversationID, true);
|
|
|
|
if(!$call->isValid())
|
|
Rest_fatal_error(500, "Could not get information about created call!");
|
|
}
|
|
|
|
//The user automatically accept the call
|
|
components()->calls->setMemberResponse($call->get_id(), userID, true);
|
|
|
|
//Returns information about the call
|
|
return self::CallInformationToAPI($call);
|
|
|
|
}
|
|
|
|
/**
|
|
* Get information about a single call
|
|
*
|
|
* @url POST /calls/getInfo
|
|
*/
|
|
public function getInfo(){
|
|
|
|
user_login_required();
|
|
|
|
//Get target call ID
|
|
$call_id = $this->GetSafeCallIDFromRequest("call_id");
|
|
|
|
//Get information about the call
|
|
$call = components()->calls->get($call_id, true);
|
|
|
|
if(!$call->isValid())
|
|
Rest_fatal_error(500, "Could not get information about the call!");
|
|
|
|
//Update last activity of the call
|
|
components()->calls->updateLastActivity($call_id);
|
|
|
|
return self::CallInformationToAPI($call);
|
|
}
|
|
|
|
/**
|
|
* Get the next pending call
|
|
*
|
|
* @url POST /calls/nextPending
|
|
*/
|
|
public function GetNextPendingCall(){
|
|
user_login_required();
|
|
|
|
//Get the next pending call for the user
|
|
$call = components()->calls->getNextPendingForUser(userID, TRUE);
|
|
|
|
if(!$call->isValid())
|
|
return array("notice" => "No pending call.");
|
|
|
|
return self::CallInformationToAPI($call);
|
|
}
|
|
|
|
/**
|
|
* Respond to a call
|
|
*
|
|
* @url POST /calls/respond
|
|
*/
|
|
public function respondToCall(){
|
|
user_login_required();
|
|
|
|
//Get target call ID
|
|
$call_id = $this->GetSafeCallIDFromRequest("call_id");
|
|
|
|
//Get target response
|
|
$accept = postBool("accept");
|
|
|
|
//Set user response to call
|
|
if(!components()->calls->setMemberResponse($call_id, userID, $accept))
|
|
Rest_fatal_error(500, "Could not set response of user to call!");
|
|
|
|
return array(
|
|
"success" => "User response to call has been successfully set!"
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get safely the ID of a call from the request
|
|
*
|
|
* @param $name The name of the POST field containing call ID
|
|
* @return int The ID of the call
|
|
*/
|
|
private function GetSafeCallIDFromRequest(string $name) : int {
|
|
|
|
//Get call ID
|
|
$call_id = postInt($name);
|
|
|
|
if($call_id < 1)
|
|
Rest_fatal_error(401, "Invalid call id !");
|
|
|
|
//Check if the user belongs to the call or not
|
|
if(!components()->calls->doesUserBelongToCall($call_id, userID))
|
|
Rest_fatal_error(401, "You do not belong to this call!");
|
|
|
|
return $call_id;
|
|
}
|
|
|
|
/**
|
|
* Turn a CallsConfig object into an API entry
|
|
*
|
|
* @param $config The config to convert
|
|
* @return array Generated API entry
|
|
*/
|
|
private static function CallsConfigToAPI(CallsConfig $config) : array {
|
|
|
|
$data = array();
|
|
|
|
$data["enabled"] = $config->get_enabled();
|
|
|
|
//Give full configuration calls are enabled
|
|
if($config->get_enabled()){
|
|
$data["signal_server_name"] = $config->get_signal_server_name();
|
|
$data["signal_server_port"] = $config->get_signal_server_port();
|
|
$data["stun_server"] = $config->get_stun_server();
|
|
$data["turn_server"] = $config->get_turn_server();
|
|
$data["turn_username"] = $config->get_turn_username();
|
|
$data["turn_password"] = $config->get_turn_password();
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* Turn a CallInformation object into an API entry
|
|
*
|
|
* @param $call The call to convert
|
|
* @return array Generated API entry
|
|
*/
|
|
private static function CallInformationToAPI(CallInformation $call) : array {
|
|
$data = array(
|
|
"id" => $call->get_id(),
|
|
"conversation_id" => $call->get_conversation_id(),
|
|
"last_active" => $call->get_last_active(),
|
|
"members" => array()
|
|
);
|
|
|
|
foreach($call->get_members() as $member)
|
|
$data["members"][] = self::CallMemberInformationToAPI($member);
|
|
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* Turn a CallMemberInformation object into an API entry
|
|
*
|
|
* @param $member Member information
|
|
* @return array User information API entry
|
|
*/
|
|
private static function CallMemberInformationToAPI(CallMemberInformation $member) : array {
|
|
return array(
|
|
"id" => $member->get_id(),
|
|
"userID" => $member->get_userID(),
|
|
"call_id" => $member->get_call_id(),
|
|
"user_call_id" => $member->get_user_call_id(),
|
|
"status" => self::USER_RESPONSE_TO_CALL[$member->get_status()]
|
|
);
|
|
}
|
|
} |