diff --git a/RestControllers/commentsController.php b/RestControllers/commentsController.php index 8926512..3ef01d7 100644 --- a/RestControllers/commentsController.php +++ b/RestControllers/commentsController.php @@ -45,6 +45,18 @@ class commentsController { if($commentID < 1) Rest_fatal_error(500, "An error occured while trying to create comment !"); + + //Create a notification + $notification = new Notification(); + $notification->set_time(time()); + $notification->set_from_user_id(userID); + $notification->set_on_elem_id($postID); + $notification->set_on_elem_type(Notification::POST); + $notification->set_type(Notification::COMMENT_CREATED); + + //Push notification + components()->notifications->push($notification); + //Success return array( "success" => "The comment was created!", diff --git a/classes/components/notifications.php b/classes/components/notifications.php new file mode 100644 index 0000000..b35352f --- /dev/null +++ b/classes/components/notifications.php @@ -0,0 +1,194 @@ +get_on_elem_type() == Notification::POST){ + + //Fetch post informations + $infos_post = components()->posts->get_single($notification->get_on_elem_id()); + + //Update post informations + $notification->set_from_container_type(Notification::USER_PAGE); + $notification->set_from_container_id($infos_post['user_page_id']); + + //Check if the notification is private or not + if($infos_post['visibility_level'] == Posts::VISIBILITY_USER){ + + //Push the notification only to the user, and only if it is not him + if($notification->get_from_user_id() == $infos_post['userID']) + return false; //Nothing to be done + + //Set the target user + $notification->set_dest_user_id($infos_post['user_page_id']); + + //Push the notification + return $notification->push_private($notification); + } + else { + + //Get the list of friends of the user + $friendslist = components()->friends->getList($infos_post['user_page_id']); + + //Generate the list of target users + $target_users = array(); + foreach($friendslist as $friend){ + + //Check if the friend is following his friend + if(!components()->friends->is_following($friend->getFriendID(), $notification->get_from_user_id())){ + continue; + } + + //Check if target user and page owner are friends + if(!components()->friends->are_friend($friend->getFriendID(), $notification->from_container_id())) + continue; + + //Add the user to the list + $target_users[] = $friend->getFriendID(); + + } + + //The notification can be publicy published + return $this->push_public($notification, $target_users); + + } + + } + + //Unsupported element + else { + throw new Exception("The kind of notification ".$notification->get_on_elem_type()." is not currently supported !"); + } + + } + + /** + * Push a notification to several users + * + * @param Notification $notification The notification to push + * @param array $usersID The list of target users + * @return bool FALSE for a failure + */ + private function push_public(Notification $notification, array $usersID) : bool { + + //Process the list of users + foreach($usersID as $current_user){ + + //Set the current user id for the notification + $notification->set_dest_user_id($current_user); + + //Check if a similar notification already exists or not + if($this->similar_exists($notification)) + continue; //A similar notification already exists + + //Create the notification + $this->create($notification); + } + + + + return true; + } + + + /** + * Push a private notification + * + * Warning ! The target user for the notification must be already set !!! + * + * @param Notification $notification The notification to push + * @return bool TRUE if the notification was created / FALSE else + */ + private function push_private(Notification $notification) : bool { + + //Check if a similar notification already exists or not + if($this->similar_exists($notification)) + return false; //A similar notification already exists + + //Create the notification + return $this->create($notification); + + } + + + /** + * Check if a notification similar to the given one exists or not + * + * @param Notification $notification The notification to compare + * @return bool TRUE if a similar notification exists / FALSE else + */ + public function similar_exists(Notification $notification) : bool { + + //Prepare the request + $tableName = self::NOTIFICATIONS_TABLE; + $conditions = array( + + "seen" => $notification->is_seen() ? 1 : 0, + "dest_user_id" => $notification->get_dest_user_id(), + "on_elem_id" => $notification->get_on_elem_id(), + "on_elem_type" => $notification->get_on_elem_type(), + "type" => $notification->get_type() + + ); + + //Make conditions + $process_conditions = CS::get()->db->splitConditionsArray($conditions); + $conditions = "WHERE ".$process_conditions[0]; + $values = $process_conditions[1]; + + //Return the result + return CS::get()->db->count($tableName, $conditions, $values) > 0; + + } + + /** + * Create a notification + * + * @param Notification $notification The notification to create + * @return bool TRUE for a success / FALSE else + */ + private function create(Notification $notification) : bool { + + //Generate notification datas + $values = $this->noticationToDB($notification); + + } + + /** + * Convert a notification object into database array + * + * @param Notification $notification The notification to convert + * @return array The converted array + */ + private function noticationToDB(Notification $notification) : array { + + $data = array(); + + + + return $data; + } + +} + +//Register component +Components::register("notifications", new notificationComponent()); \ No newline at end of file diff --git a/classes/models/Notification.php b/classes/models/Notification.php index 4841dfb..e7b1ce2 100644 --- a/classes/models/Notification.php +++ b/classes/models/Notification.php @@ -10,8 +10,11 @@ class Notification { /** * Elements type */ + const USER_PAGE = "user_page"; const CONVERSATION = "conversation"; - const POST_TEXT = "post"; + const CONVERSATION_MESSAGE = "conversation_message"; + const POST = "post"; + const POST_TEXT = "post_text"; const POST_IMAGE = "post_img"; const POST_YOUTUBE = "post_youtube"; const POST_MOVIE = "post_movie"; @@ -24,9 +27,17 @@ class Notification { /** * Event type */ + const COMMENT_CREATED = "comments"; const ELEM_CREATED = "elem_created"; const ELEM_UPDATED = "elem_updated"; + /** + * Event visibility + */ + const EVENT_PRIVATE = "event_private"; + const EVENT_PUBLIC = "event_public"; + + //Private fields private $id; private $time; @@ -36,9 +47,23 @@ class Notification { private $on_elem_id; private $on_elem_type; private $type; + private $event_visibility; private $from_container_id; private $from_container_type; + /** + * Default constructor of the notification + */ + public function __construct(){ + + //Notification not seen by default + $this->seen = false; + + //By default, the notification does not have any contener + $this->from_container_id = 0; + $this->from_container_type = ""; + + } /** * Set notification id @@ -185,6 +210,24 @@ class Notification { return $this->type; } + /** + * Set notification event visibility + * + * @param string $visibility The visibility of the notification + */ + public function set_event_visibility(string $event_visibility){ + $this->event_visibility = $event_visibility; + } + + /** + * Get notification event visibility + * + * @return string The visibility of the notification + */ + public function get_event_visibility() : string { + return $this->event_visibility; + } + /** * Set notification target container element type (if any) *