ComunicAPI/RestControllers/CallsController.php

217 lines
5.5 KiB
PHP
Raw Normal View History

2019-01-22 16:39:45 +00:00
<?php
/**
* Calls controller
*
* @author Pierre HUBERT
*/
class CallsController {
2019-01-24 08:22:50 +00:00
/**
* Single user response to call
*/
const USER_RESPONSE_TO_CALL = array(
CallMemberInformation::USER_ACCEPTED => "accepted",
CallMemberInformation::USER_REJECTED => "rejected",
2019-01-25 18:12:06 +00:00
CallMemberInformation::USER_UNKNOWN => "unknown",
CallMemberInformation::USER_HANG_UP => "hang_up"
2019-01-24 08:22:50 +00:00
);
2019-01-22 16:39:45 +00:00
/**
* Get call configuration
*
* @url POST /calls/config
*/
public function getConfig(){
user_login_required();
return self::CallsConfigToAPI(components()->calls->getConfig());
}
2019-01-24 08:22:50 +00:00
/**
* 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);
}
2019-01-24 17:09:36 +00:00
/**
* 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);
}
2019-01-22 16:39:45 +00:00
2019-01-25 08:34:40 +00:00
/**
* 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;
}
2019-01-22 16:39:45 +00:00
/**
* 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;
}
2019-01-24 08:22:50 +00:00
/**
* 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(),
2019-01-25 18:16:57 +00:00
"status" => self::USER_RESPONSE_TO_CALL[$member->get_status()]
2019-01-24 08:22:50 +00:00
);
}
2019-01-22 16:39:45 +00:00
}