ComunicAPI/classes/components/posts.php

614 lines
17 KiB
PHP
Raw Normal View History

2017-12-24 15:35:50 +00:00
<?php
/**
* Posts management class
*
* @author Pierre HUBERT
*/
class Posts {
2017-12-24 16:45:05 +00:00
/**
* Visibility levels
*/
//Posts that can be seen by anyone
const VISIBILITY_PUBLIC = 1;
//Posts that can be seen by the friends of the user
const VISIBILITY_FRIENDS = 2;
//Posts that can be seen by the user only
const VISIBILITY_USER = 3;
2018-01-04 12:59:48 +00:00
/**
* Access level to a post
*/
//When a user can't access to a post
const NO_ACCESS = 0;
//When a user can see a post and perform basic actions such as liking
const BASIC_ACCESS = 1;
//When a user has intermediate access to the post (delete post)
const INTERMEDIATE_ACCESS = 2;
//When a user has a full access to the post
const FULL_ACCESS = 3;
2018-01-07 15:41:24 +00:00
/**
* Kinds of posts page
*/
//Post on user page
const PAGE_KIND_USER = "user";
/**
* Kinds of post
*/
const POST_KIND_TEXT = "text";
const POST_KIND_IMAGE = "image";
const POST_KIND_WEBLINK = "weblink";
const POST_KIND_PDF = "pdf";
const POST_KIND_MOVIE = "movie";
const POST_KIND_COUNTDOWN = "countdown";
const POST_KIND_SURVEY = "survey";
const POST_KIND_YOUTUBE = "youtube";
2017-12-24 16:45:05 +00:00
/**
2017-12-25 07:56:51 +00:00
* Table informations
2017-12-24 16:45:05 +00:00
*/
2017-12-25 07:56:51 +00:00
//Name of the table
2017-12-24 16:45:05 +00:00
const TABLE_NAME = "texte";
2017-12-25 07:56:51 +00:00
//Translation of posts types between the API language and the database structure
2018-01-07 15:41:24 +00:00
const POSTS_DB_TYPES = array(
"texte" => Posts::POST_KIND_TEXT,
"image" => Posts::POST_KIND_IMAGE,
"webpage_link" => Posts::POST_KIND_WEBLINK,
"pdf" => Posts::POST_KIND_PDF,
"video" => Posts::POST_KIND_MOVIE,
"count_down" => Posts::POST_KIND_COUNTDOWN,
"sondage" => Posts::POST_KIND_SURVEY,
"youtube" => Posts::POST_KIND_YOUTUBE
2017-12-25 07:56:51 +00:00
);
2017-12-24 16:45:05 +00:00
/**
* Get the visibility level of a user other another user
*
* @param int $userID The ID of the user to fetch
* @param int $targetID The ID of the user target
* @return int Visibility level
*/
public function getUserVisibility(int $userID, int $targetID) : int {
//If the user making the request and the target user are the same
if($userID == $targetID)
return $this::VISIBILITY_USER;
//Check user if is signed out
if($userID == 0)
return $this::VISIBILITY_PUBLIC;
//Check if the two users are friends or not
if(CS::get()->components->friends->are_friend($userID, $targetID))
//Users are friends
return $this::VISIBILITY_FRIENDS;
else
//Users are not friend
return $this::VISIBILITY_PUBLIC;
}
/**
* Get a list of post of a user
*
* @param int $userID The ID of the user making the request
* @param int $targetID The ID of the target user
* @param int $startPoint The startpoint for the request (0 stands for none)
2017-12-25 07:56:51 +00:00
* @param int $limit The maximum number of messages to fetch
2018-04-22 12:38:26 +00:00
* @return array The list of posts of the user
2017-12-24 16:45:05 +00:00
*/
2017-12-31 16:48:26 +00:00
public function getUserPosts(int $userID, int $targetID, int $startPoint = 0, int $limit = 10) : array {
2017-12-25 07:56:51 +00:00
//Check the value of limit (security)
if($limit < 1){
throw new Exception("The limit of the query must absolutly be positive !");
}
2017-12-24 16:45:05 +00:00
2017-12-31 16:48:26 +00:00
//Get user visibility level
$visibilityLevel = $this->getUserVisibility($userID, $targetID);
2017-12-24 16:45:05 +00:00
//Prepare the request on the database
$conditions = "WHERE ID_personne = ? AND (";
$dataConds = array($targetID);
//Add the visibility level conditions
$conditions .= "(niveau_visibilite <= ?)";
$dataConds[] = $visibilityLevel;
//If user is signed in, include all the posts that he has created
if($userID > 0){
$conditions .= " OR (ID_amis = ?) ";
$dataConds[] = $userID;
}
2017-12-25 07:56:51 +00:00
//Close permissions conditions
2017-12-24 16:45:05 +00:00
$conditions .= ")";
2017-12-25 07:56:51 +00:00
//Add startpoint condition if required (and get older messages)
if($startPoint != 0){
$conditions .= " AND ID <= ? ";
$dataConds[] = $startPoint;
}
//Specify order and limit
$conditions.= " ORDER BY ID DESC LIMIT ".$limit;
2017-12-24 16:45:05 +00:00
//Perform the request
2017-12-25 07:56:51 +00:00
$list = CS::get()->db->select(
2017-12-24 16:45:05 +00:00
$this::TABLE_NAME,
$conditions,
$dataConds
);
2017-12-25 07:56:51 +00:00
2017-12-25 08:58:30 +00:00
//Check if the user allow comments on his page or not
$getComments = CS::get()->components->user->allowComments($targetID);
2017-12-25 07:56:51 +00:00
//Parse posts
$posts = array();
foreach($list as $post){
2018-04-22 10:48:20 +00:00
$posts[] = $this->dbToPost($post, $getComments);
2017-12-25 07:56:51 +00:00
}
return $posts;
}
2018-02-03 14:40:55 +00:00
/**
* Get the list of latest posts for a user
*
* @param int $userID The ID of the user requesting its list of posts
* @param int $startPoint The startpoint of the research (default: 0 = none)
* @param int $limit The limit of the research (default: 10)
* @return array The list of newest posts for the user
*/
public function get_latest(int $userID, int $startPoint = 0, int $limit = 10) : array {
//Check the value of limit (security)
if($limit < 1){
throw new Exception("The limit of the query must absolutly be positive !");
}
//Arbitrary visibility level
$visibilityLevel = self::VISIBILITY_FRIENDS;
//Get the list of friends of the user
$friendsList = components()->friends->getList($userID);
//Prepare the request on the database
//Add the visibility level conditions
$conditions = "WHERE niveau_visibilite <= ? AND (ID_personne = ?";
$dataConds = array($visibilityLevel, $userID);
//Process the list of friends of the user
foreach($friendsList as $friend){
$friendID = $friend->getFriendID();
$conditions .= " OR ID_personne = ?";
$dataConds[] = $friendID;
}
//Close user list conditions
$conditions .= ")";
//Add startpoint condition if required (and get older messages)
if($startPoint != 0){
$conditions .= " AND ID <= ? ";
$dataConds[] = $startPoint;
}
//Specify order and limit
$conditions.= " ORDER BY ID DESC LIMIT ".$limit;
//Perform the request
$list = CS::get()->db->select(
$this::TABLE_NAME,
$conditions,
$dataConds
);
//Parse the list of posts
$posts = array();
foreach($list as $row){
//Check if the user allow the comments
$allow_comments = CS::get()->components->user->allowComments($row["ID_personne"]);
//Parse post informations
2018-04-22 10:48:20 +00:00
$posts[] = $this->dbToPost($row, $allow_comments);
2018-02-03 14:40:55 +00:00
}
//Return the list of posts
return $posts;
}
2018-01-04 12:59:48 +00:00
/**
* Check whether a post exists or not
*
* @param int $postID The ID of the post to check
* @return bool TRUE if the post exists / FALSE else
*/
public function exist(int $postID) : bool {
//Perform a request on the database
return CS::get()->db->count($this::TABLE_NAME, "WHERE ID = ?", array($postID)) != 0;
}
/**
* Get the access level of a user about a post
*
* @param int $postID The ID of the post to get
* @param int $userID The ID of the user to check
* @return int The access level over the post
*/
public function access_level(int $postID, int $userID) : int {
//Get informations about the post
$post_infos = $this->get_single($postID);
2018-01-09 05:44:34 +00:00
return $this->access_level_with_infos($post_infos, $userID);
}
/**
* Get the access level of a user about a post
*
* This function requires the informations about the post
*
2018-04-22 10:31:48 +00:00
* @param Post $post_info Informations about the post
2018-01-09 05:44:34 +00:00
* @param int $userID The ID of the user to check
* @return int The access level over the post
*/
2018-04-22 10:31:48 +00:00
public function access_level_with_infos(Post $post_info, int $userID) : int {
//Check the validity of the Post object
if(!$post_info->isValid())
return $this::NO_ACCESS;
2018-01-09 05:44:34 +00:00
2018-01-04 12:59:48 +00:00
//Check if the user is the owner of the post
2018-04-22 10:31:48 +00:00
if($post_info->get_userID() == $userID)
2018-01-04 12:59:48 +00:00
return $this::FULL_ACCESS;
//Check if the post was made on the user page
2018-04-22 10:31:48 +00:00
if($post_info->get_user_page_id() == $userID)
2018-01-04 12:59:48 +00:00
return $this::INTERMEDIATE_ACCESS;
//Check if the post is private
2018-04-22 10:31:48 +00:00
if($post_info->get_visibility_level() == $this::VISIBILITY_USER)
2018-01-04 12:59:48 +00:00
return $this::NO_ACCESS;
//Check if the post is for friends only
2018-04-22 10:31:48 +00:00
if($post_info->get_visibility_level() == $this::VISIBILITY_FRIENDS){
2018-01-04 12:59:48 +00:00
//Check if user is signed in
if($userID == 0)
return $this::NO_ACCESS;
//Check if this user and the owner of the page are friends or not
2018-04-22 10:31:48 +00:00
else if(!CS::get()->components->friends->are_friend($userID, $post_info->get_user_page_id()))
2018-01-04 12:59:48 +00:00
return $this::NO_ACCESS;
else
//User can access the post
return $this::BASIC_ACCESS;
}
//Check if the post is public
2018-04-22 10:31:48 +00:00
if($post_info->get_visibility_level() == $this::VISIBILITY_PUBLIC){
2018-01-04 12:59:48 +00:00
//Check if the two personns are friend
if($userID != 0){
2018-04-22 10:31:48 +00:00
if(CS::get()->components->friends->are_friend($userID, $post_info->get_user_page_id()))
2018-01-04 12:59:48 +00:00
return $this::BASIC_ACCESS;
}
//Get user visibility level
2018-04-22 10:31:48 +00:00
$visibilityLevel = CS::get()->components->user->getVisibility($post_info->get_user_page_id());
2018-01-04 12:59:48 +00:00
//If the page is open, access is free
if($visibilityLevel == UserComponent::USER_PAGE_OPEN)
2018-01-04 12:59:48 +00:00
return $this::BASIC_ACCESS;
//Else check if the user is signed in and the page is public
else if($userID != 0 AND $visibilityLevel == UserComponent::USER_PAGE_PUBLIC)
2018-01-04 12:59:48 +00:00
return $this::BASIC_ACCESS;
else
return $this::NO_ACCESS;
}
//Not implemented
return $this::NO_ACCESS;
}
2018-01-07 17:05:05 +00:00
/**
2018-01-07 17:11:41 +00:00
* Create a new post
2018-01-07 17:05:05 +00:00
*
2018-04-22 12:38:26 +00:00
* @param Post $post Information about the post to create
2018-01-07 17:05:05 +00:00
* @return int The ID of the created post or -1 in case of failure
*/
2018-04-22 12:38:26 +00:00
public function create(Post $post) : int {
//Generate new post informations
//Get the corresponding kind of post for the database
2018-04-22 12:38:26 +00:00
$post_kind_db = array_flip($this::POSTS_DB_TYPES)[$post->get_kind()];
//Generate valid date form for time_end value
2018-04-22 12:38:26 +00:00
if($post->get_time_end() != 0){
$date_end = date("d/m/Y", $post->get_time_end());
$array_date_end = explode("/", $date_end);
//Save the values
$day_end = $array_date_end[0];
$month_end = $array_date_end[1];
$year_end = $array_date_end[2];
}
//Process user page posts
2018-04-22 12:38:26 +00:00
if($post->get_kind_page() == $this::PAGE_KIND_USER){
//Determine who is creating the post
2018-04-22 12:38:26 +00:00
$post_user_id = $post->get_kind_page_id();
$post_friend_id = $post->get_kind_page_id() == $post->get_userID() ? 0 : $post->get_userID();
}
else {
2018-04-22 12:38:26 +00:00
throw new Exception("Unsupported kind of page : ".$post->get_kind_page()." !");
}
//Generate database entry
$data = array(
"ID_personne" => $post_user_id,
"ID_amis" => $post_friend_id,
"date_envoi" => mysql_date(),
2018-04-22 12:38:26 +00:00
"texte" => $post->has_content() ? $post->get_content() : "",
"niveau_visibilite" => $post->get_visibility_level(),
"type" => $post_kind_db,
//Generic files informations
2018-04-22 12:38:26 +00:00
"size" => $post->has_file_size() ? $post->get_file_size() : null,
"file_type" => $post->has_file_type() ? $post->get_file_type() : null,
"path" => $post->has_file_path() ? $post->get_file_path() : null,
//Movie posts
2018-04-22 12:38:26 +00:00
"idvideo" => $post->has_movie_id() ? $post->get_movie_id() : null,
//Countdown timer
"jour_fin" => isset($day_end) ? $day_end : null,
"mois_fin" => isset($month_end) ? $month_end : null,
"annee_fin" => isset($year_end) ? $year_end : null,
//Weblink page
2018-04-22 12:38:26 +00:00
"url_page" => $post->has_link_url() ? $post->get_link_url() : null,
"titre_page" => $post->has_link_title() ? $post->get_link_title() : null,
"description_page" => $post->has_link_description() ? $post->get_link_description() : null,
"image_page" => $post->has_link_image() ? $post->get_link_image() : null
);
//Insert the post
if(!CS::get()->db->addLine($this::TABLE_NAME, $data))
return -1;
//Get post ID
$postID = CS::get()->db->getLastInsertedID();
//Create the survey if required
2018-04-22 12:38:26 +00:00
if($post->get_kind() == $this::POST_KIND_SURVEY){
2018-04-22 12:05:14 +00:00
//Complete the request
2018-04-22 12:38:26 +00:00
$survey = $post->get_survey();
2018-04-22 12:05:14 +00:00
$survey->set_postID($postID);
2018-04-22 12:38:26 +00:00
$survey->set_userID($post->get_userID());
2018-04-22 12:05:14 +00:00
components()->survey->create($survey);
}
2018-01-07 17:05:05 +00:00
return $postID;
2018-01-07 17:05:05 +00:00
}
2018-01-10 19:12:01 +00:00
/**
* Update the visibility level of a post
*
* @param int $postID The ID of the post to update
* @param int $level The new level for the post
* @return bool TRUE in case of success / FALSE in case of failure
*/
public function update_level(int $postID, int $level) : bool {
//Set the new values
$new_values = array(
"niveau_visibilite" => $level
);
2018-01-16 05:39:52 +00:00
//Perform update
return $this->perform_update($postID, $new_values);
}
/**
* Update the content of a post
*
* @param int $postID The ID of the post to update
* @param string $new_content The new content for the post
* @return bool TRUE in case of success / FALSE else
*/
public function update_content(int $postID, string $new_content) : bool {
//Make a request on the database
$new_values = array(
"texte" => $new_content
);
//Perform update
return $this->perform_update($postID, $new_values);
}
/**
* Perform the update of some informations of a post
*
* @param int $postID The ID of the post to update
* @param array $new_values The informations to change in the post
* @return bool TRUE for a success / FALSE for a failure
*/
private function perform_update(int $postID, array $new_values) : bool {
2018-01-10 19:12:01 +00:00
//Set the conditions
$conditions = "ID = ?";
$condValues = array($postID);
//Perform the request
return CS::get()->db->updateDB($this::TABLE_NAME, $conditions, $new_values, $condValues);
}
2018-01-13 18:38:38 +00:00
/**
* Delete a post
*
* @param int $postID The ID of the post to delete
* @return bool TRUE for a success / FALSE for a failure
*/
public function delete(int $postID) : bool {
//Get informations about the post
2018-04-22 10:48:20 +00:00
$post_info = $this->get_single($postID);
2018-01-13 18:38:38 +00:00
//Check if we didn't get informations about the post
2018-04-22 10:48:20 +00:00
if(!$post_info->isValid())
2018-01-13 18:38:38 +00:00
return false;
//Delete the likes associated to the post
if(!components()->likes->delete_all($postID, Likes::LIKE_POST))
return false;
//Delete all the comments associated to the post
if(!components()->comments->delete_all($postID))
return false;
//Delete the associated image or PDF (if any)
2018-04-22 10:48:20 +00:00
if($post_info->get_kind() == $this::POST_KIND_IMAGE
|| $post_info->get_kind() == $this::POST_KIND_PDF){
2018-01-13 18:38:38 +00:00
//Determine file path
2018-04-22 10:48:20 +00:00
$file_path = path_user_data($post_info->get_file_path(), true);
2018-01-13 18:38:38 +00:00
//Check if the file exists
if(file_exists($file_path)){
//Try to delete it
if(!unlink($file_path))
return false;
}
}
//Delete the associated survey (if any)
2018-04-22 10:48:20 +00:00
if($post_info->get_kind() == $this::POST_KIND_SURVEY){
2018-01-13 18:38:38 +00:00
//Check the post has an associated survey
if(components()->survey->exists($postID)){
//Try to delete survey
if(!components()->survey->delete($postID))
return false;
}
}
//Delete the post
return CS::get()->db->deleteEntry($this::TABLE_NAME, "ID = ?", array($postID));
}
2018-01-04 12:59:48 +00:00
/**
* Fetch a single post from the database
*
* @param int $postID The ID of the post to get
2018-01-16 05:59:24 +00:00
* @param bool $load_comments Specify if the comments should be loaded or not
* (no by default)
2018-04-22 10:31:48 +00:00
* @return Post Information about the post / invalid Post object
2018-01-04 12:59:48 +00:00
* if the post was not found
*/
2018-04-22 10:31:48 +00:00
public function get_single(int $postID, bool $load_comments = false) : Post {
2018-01-04 12:59:48 +00:00
//Perform a request on the database
$conditions = "WHERE ID = ?";
$values = array($postID);
$result = CS::get()->db->select($this::TABLE_NAME, $conditions, $values);
//Check if we got a response
if(count($result) == 0)
2018-04-22 10:31:48 +00:00
return new Post(); //Empty array = error
2018-01-04 12:59:48 +00:00
//Return parsed response
2018-04-22 10:31:48 +00:00
return $this->dbToPost($result[0], $load_comments);
2018-01-04 12:59:48 +00:00
}
2018-04-22 10:31:48 +00:00
/**
* Turn a database entry into a Post object
*
* @param array $entry The database entry to parse
* @param bool $load_comments Load the comments, if required
* @return Post Generated Post object
*/
private function dbToPost(array $entry, bool $load_comments) : Post {
$post = new Post();
//General information
$post->set_id($entry["ID"]);
$post->set_userID($entry["ID_amis"] == 0 ? $entry["ID_personne"] : $entry["ID_amis"]);
$post->set_user_page_id($entry["ID_personne"]);
$post->set_time_sent(strtotime($entry["date_envoi"]));
$post->set_content($entry["texte"]);
$post->set_visibility_level($entry["niveau_visibilite"]);
$post->set_kind($this::POSTS_DB_TYPES[$entry["type"]]);
//File specific
$post->set_file_size($entry["size"] != null ? $entry["size"] : -1);
$post->set_file_type($entry["file_type"] != null ? $entry["file_type"] : "");
$post->set_file_path($entry["path"] != null ? $entry["path"] : "");
2018-04-22 10:48:20 +00:00
$post->set_file_path_url($post->has_file_path() ? path_user_data($post->get_file_path()) : "");
2018-04-22 10:31:48 +00:00
//Movie specific
$post->set_movie_id($entry["idvideo"] == null ? -1 : $entry["idvideo"]);
if($post->has_movie_id())
2018-04-22 10:48:20 +00:00
$post->set_movie(components()->movies->get_info($post->get_movie_id()));
2018-04-22 10:31:48 +00:00
//Countdown timer - specific
if($entry['annee_fin'] != 0)
$post->set_time_end(strtotime($entry["annee_fin"]."/".$entry['mois_fin']."/".$entry["jour_fin"]));
//Web link
$post->set_link_url($entry["url_page"] != null ? $entry["url_page"] : "");
$post->set_link_title($entry["titre_page"] != null ? $entry["titre_page"] : "");
$post->set_link_description($entry["description_page"] != null ? $entry["description_page"] : "");
$post->set_link_image($entry["image_page"] != null ? $entry["image_page"] : "");
//Survey specific
if($post->get_kind() == "survey")
$post->set_survey(components()->survey->get_infos($post->get_id()));
//Get information about likes
$post->set_likes(components()->likes->count($post->get_id(), Likes::LIKE_POST));
$post->set_userLike(user_signed_in() ? components()->likes->is_liking(userID, $post->get_id(), Likes::LIKE_POST) : false);
//Load comments, if requested
if($load_comments)
$post->set_comments(components()->comments->get($post->get_id()));
return $post;
}
2017-12-24 15:35:50 +00:00
}
//Register component
Components::register("posts", new Posts());