ComunicAPI/RestControllers/conversationsController.php

49 lines
1.2 KiB
PHP
Raw Normal View History

2017-06-10 08:07:03 +00:00
<?php
/**
* Conversations controller
*
* @author Pierre HUBERT
*/
class conversationsController{
/**
* Create a new conversation
*
* @url POST /conversations/create
*/
public function createConversation(){
user_login_required();
//Check for parametres
if(!check_post_parametres(array("name", "follow", "users")))
Rest_fatal_error(501, "Please check parametres passed with the request !");
//Extract parametres
$conversationName = ($_POST["name"] == "false" ? false : $_POST['name']);
$followConversation = ($_POST['follow'] == "true" ? true : false);
2017-06-10 13:04:45 +00:00
$usersList = users_list_to_array($_POST['users']);
//Add current user (if not present)
if(!isset($usersList[userID]))
$usersList[userID] = userID;
2017-06-10 08:07:03 +00:00
//Check users
2017-06-10 13:04:45 +00:00
if(count($usersList) < 1)
Rest_fatal_error(501, "Please select at least one user !");
2017-06-10 08:07:03 +00:00
2017-06-10 13:04:45 +00:00
//Try to create the conversation
$conversationID = CS::get()->components->conversations->create(userID, $followConversation, $usersList, $conversationName);
2017-06-10 08:07:03 +00:00
2017-06-10 13:04:45 +00:00
//Check for errors
if($conversationID == 0)
Rest_fatal_error(500, "Couldn't create the conversation !");
//Success
return array(
"conversationID" => $conversationID,
"success" => "The conversation was successfully created !"
);
2017-06-10 08:07:03 +00:00
}
}