ComunicAPI/classes/components/conversations.php

372 lines
11 KiB
PHP
Raw Normal View History

2017-06-10 08:07:03 +00:00
<?php
/**
* Conversations component
*
* @author Pierre HUBERT
*/
class conversations {
2017-06-10 13:04:45 +00:00
/**
* @var String $conversationsListTable Name of the conversation list table
2017-06-10 13:04:45 +00:00
*/
private $conversationsListTable;
2017-06-10 13:04:45 +00:00
/**
* @var String $conversationsUsersTable Name of the conversation users table
2017-06-10 13:04:45 +00:00
*/
private $conversationsUsersTable;
2017-06-10 13:04:45 +00:00
/**
* Public constructor
*/
public function __construct(){
$this->conversationsListTable = CS::get()->config->get("dbprefix")."conversations_list";
$this->conversationsUsersTable = CS::get()->config->get("dbprefix")."conversations_users";
2017-06-10 13:04:45 +00:00
}
2017-06-11 13:09:54 +00:00
/**
* Get the conversations list of a specified user
* or get informations of a specific conversation
2017-06-11 13:09:54 +00:00
*
* @param Integer $userID The ID of the user to get the list
* @param Integer $conversationID Optionnal, the ID of conversation to get informatios from
2017-06-11 13:09:54 +00:00
* @return Mixed Array in case of result / False else
*/
public function getList($userID, $conversationID = 0){
2017-06-11 13:09:54 +00:00
//Prepare database request
$tablesName = $this->conversationsListTable.", ".$this->conversationsUsersTable;
2017-06-11 13:09:54 +00:00
//Prepare conditions
$tableJoinCondition = $this->conversationsListTable.".ID = ".$this->conversationsUsersTable.".ID_".$this->conversationsListTable."";
$userCondition = $this->conversationsUsersTable.".ID_utilisateurs = ?";
$orderResults = "ORDER BY ".$this->conversationsListTable.".last_active DESC";
2017-06-11 13:09:54 +00:00
//Specify conditions values
2017-06-11 13:09:54 +00:00
$conditionsValues = array($userID);
//Check if we have to get informations about just one conversation
if($conversationID != 0){
$specificConditions = "AND ".$this->conversationsListTable.".ID = ?";
$conditionsValues[] = $conversationID;
}
else
$specificConditions = ""; //Nothing now
//Compile conditions
$conditions = "WHERE ".$tableJoinCondition." AND (".$userCondition.") ".$specificConditions." ".$orderResults;
2017-06-11 13:09:54 +00:00
//Fields list
$requiredFields = array(
$this->conversationsListTable.".ID",
$this->conversationsListTable.".last_active",
$this->conversationsListTable.".name",
$this->conversationsListTable.".ID_utilisateurs AS ID_owner",
$this->conversationsUsersTable.".following",
$this->conversationsUsersTable.".saw_last_message",
2017-06-11 13:09:54 +00:00
);
//Perform database request
$results = CS::get()->db->select($tablesName, $conditions, $conditionsValues, $requiredFields);
//Check for errors
if($results === false)
return false; //An error occurred
//Process results
$conversationsList = array();
foreach($results as $processConversation){
$conversationsList[] = array(
"ID" => $processConversation["ID"],
"ID_owner" => $processConversation["ID_owner"],
"last_active" => $processConversation["last_active"],
"name" => ($processConversation["name"] == "" ? false : $processConversation["name"]),
"following" => $processConversation["following"],
"saw_last_message" => $processConversation["saw_last_message"],
//Get and add conversation members
2017-06-13 09:35:30 +00:00
"members" => $this->getConversationMembers($processConversation["ID"]),
2017-06-11 13:09:54 +00:00
);
}
//Return results
return $conversationsList;
}
/**
* Get a conversation members
*
* @param Integer $conversationID The ID of the conversation
* @return Array A list of the conversation members (empty arary may means that an error occured)
*/
public function getConversationMembers($conversationID) : array {
//Perform a request on the database
$tableName = $this->conversationsUsersTable;
$conditions = "WHERE ID_".$this->conversationsListTable." = ?";
$conditionsValues = array($conversationID*1);
$getFields = array("ID_utilisateurs as userID");
//Perform the request
$results = CS::get()->db->select($tableName, $conditions, $conditionsValues, $getFields);
if($results === false)
return array(); //An error occured
//Process results
$membersList = array();
foreach($results as $processUser)
$membersList[] = $processUser["userID"];
//Return result
return $membersList;
}
2017-06-10 08:07:03 +00:00
/**
* Create a new conversation
*
* @param Integer $userID The ID of the user creating the conversation
* @param Boolean $follow Defines if the user creating the conversation will follow it
* @param Array $usersList The list of users following the conversation
* @param Mixed $name Optionnal, the name of the conversation
2017-06-10 13:04:45 +00:00
* @return Integer 0 for a fail else the ID of the newly created conversation
2017-06-10 08:07:03 +00:00
*/
2017-06-10 13:04:45 +00:00
public function create($userID, $follow, array $usersList, $name){
$mainInformations = array(
"ID_utilisateurs" => $userID*1,
"name" => ($name ? $name : ""),
"last_active" => time(),
"creation_time" => time()
);
//First, insert the conversation in the main table
if(!CS::get()->db->addLine($this->conversationsListTable, $mainInformations))
2017-06-10 13:04:45 +00:00
return 0; //An error occured
//Get the last inserted ID
$conversationID = CS::get()->db->getLastInsertedID();
//Check for errors
if($conversationID == 0)
return 0;
//Insert users registrattions
foreach($usersList as $processUser){
//Make user follow the conversation if required
$processUserFollowing = false;
2017-06-10 13:04:45 +00:00
if($userID == $processUser)
$processUserFollowing = $follow;
2017-06-10 13:04:45 +00:00
//Try to insert user in conversation
if(!$this->addMember($conversationID, $processUser, $processUserFollowing))
2017-06-10 13:04:45 +00:00
return 0; //Error
}
//Conversation creation is a success
return $conversationID;
}
2017-06-10 08:07:03 +00:00
/**
* Check if a user is a member of a conversation or not
*
* @param Integer $userID The ID of the user to check
* @param Integer $conversationID The ID of the conversation to check
* @return Boolean True if the user belongs to the conversation
*/
public function userBelongsTo($userID, $conversationID){
//Prepare a request on the database
$tableName = $this->conversationsUsersTable;
$conditions = "WHERE ID_".$this->conversationsListTable." = ? AND ID_utilisateurs = ?";
$values = array(
$conversationID,
$userID
);
//Peform a request on the database
$result = CS::get()->db->count($tableName, $conditions, $values);
//Check if request failed
if($result === false)
return false; // An error occured
//Analyse result and return it
return $result != 0;
}
/**
* Change the follow state of a user on conversation
*
* @param Integer $userID The ID to update
* @param Integer $conversationID The ID of the conversation
* @param Boolean $follow Specify if the conversation is followed or not
* @return Boolean True for a success
*/
public function changeFollowState($userID, $conversationID, $follow){
//Prepare the request on the database
$tableName = $this->conversationsUsersTable;
$conditions = "ID_".$this->conversationsListTable." = ? AND ID_utilisateurs = ?";
$condVals = array(
$conversationID,
$userID
);
//Defines modifications
$modifs = array(
"following" => $follow ? 1 : 0,
);
//Update the table
if(!CS::get()->db->updateDB($tableName, $conditions, $modifs, $condVals))
return false; //An error occured
//Success
return true;
}
2017-06-18 08:41:43 +00:00
/**
* Change conversation name
*
* @param Integer $conversationID The ID of the conversation
* @param String $conversationName The name of the conversation
* @return Boolean True for a success
*/
public function changeName($conversationID, $conversationName){
//Prepare database request
$tableName = $this->conversationsListTable;
$conditions = "ID = ?";
$condVals = array($conversationID);
//Changes
$changes = array(
"name" => $conversationName,
);
//Try to perform request
if(!CS::get()->db->updateDB($tableName, $conditions, $changes, $condVals))
return false; //An error occured
//Success
return true;
}
/**
* Update conversation members list
*
* @param Integer $conversationID The ID of the conversation to update
* @param Array $conversationMembers The new list of conversation members
* @return Boolean True for a success
*/
public function updateMembers($conversationID, array $conversationMembers){
//Get the current conversation list
$currentMembers = $this->getConversationMembers($conversationID);
//Determinate entries to add
$toAdd = array_diff($conversationMembers, $currentMembers);
//Determinate entries to remove
$toRemove = array_diff($currentMembers, $conversationMembers);
//Add new member
foreach($toAdd as $processInsert){
if(!$this->addMember($conversationID, $processInsert))
return false; //An error occured
}
//Remove old members
foreach($toRemove as $processDelete){
if(!$this->removeMember($conversationID, $processDelete))
return false; //An error occured
}
//Success
return true;
}
/**
* Add a member to the list
*
* @param Integer $conversationID The ID of the target conversation
* @param Integer $userID The ID of the user to add to the conversation
* @param Boolean $follow Optionnal, specify if the user will follow or not the conversation
* @return Boolean True for a success
*/
private function addMember($conversationID, $userID, $follow = false){
//Prepare database request
$tableName = $this->conversationsUsersTable;
$values = array(
"ID_".$this->conversationsListTable => $conversationID,
"ID_utilisateurs" => $userID,
"time_add" => time(),
"following" => $follow ? 1 : 0,
"saw_last_message" => 1
);
//Try to perform request
return CS::get()->db->addLine($tableName, $values);
}
/**
* Remove a member from the list
*
* @param Integer $conversationID The ID of the target conversation
* @param Integer $userID The ID of the user to remove from the conversation
* @return Boolean True for a success
*/
private function removeMember($conversationID, $userID){
//Prepare database request
$tableName = $this->conversationsUsersTable;
$conditions = "ID_".$this->conversationsListTable." = ? AND ID_utilisateurs = ?";
$values = array(
$conversationID,
$userID
);
//Try to perform request
return CS::get()->db->deleteEntry($tableName, $conditions, $values);
}
/**
* Check if a user is a conversation moderator or not
*
* @param Integer $userID The ID of the user to check
* @param Integer $conversationID The ID of the conversation to check
2017-06-18 08:41:43 +00:00
* @return Boolean True if the user is a conversation moderator / false else
*/
2017-06-18 08:41:43 +00:00
public function userIsModerator($userID, $conversationID){
//Prepare database request
$tableName = $this->conversationsListTable;
$conditions = "WHERE ID = ?";
$values = array($conversationID);
$requiredFields = array(
"ID_utilisateurs"
);
//Peform a request on the database
$results = CS::get()->db->select($tableName, $conditions, $values, $requiredFields);
//Check for errors
if($results === false)
return false; // An error occured
//Check if there was results
if(count($results) === 0)
return false;
//Check the first result only
return $results[0]["ID_utilisateurs"] == $userID;
}
2017-06-10 08:07:03 +00:00
}
//Register component
Components::register("conversations", new conversations());