2018-02-18 17:43:58 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Notifications helper
|
|
|
|
*
|
|
|
|
* @author Pierre HUBERT
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete all the notifications related to a post targeting a user
|
|
|
|
*
|
|
|
|
* @param int $userID Target user ID
|
|
|
|
* @param int $postID Target post
|
|
|
|
* @return bool TRUE in case of success / FALSE else
|
|
|
|
*/
|
2018-02-18 17:47:59 +00:00
|
|
|
function delete_user_notifications_over_post(int $userID, int $postID) : bool {
|
|
|
|
|
|
|
|
user_login_required();
|
2018-02-18 17:43:58 +00:00
|
|
|
|
|
|
|
$notification = new Notification();
|
|
|
|
$notification->set_on_elem_type(Notification::POST);
|
|
|
|
$notification->set_on_elem_id($postID);
|
|
|
|
$notification->set_dest_user_id($userID);
|
|
|
|
return components()->notifications->delete($notification);
|
|
|
|
|
2018-03-03 13:03:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete all the notifications related to a friendship request between two
|
|
|
|
* users
|
|
|
|
*
|
|
|
|
* @param int $userOne The first user
|
|
|
|
* @param int $userTwo The second user
|
|
|
|
* @return bool TRUE for a success / FALSE else
|
|
|
|
*/
|
|
|
|
function delete_notifications_friendship_request(int $userOne, int $userTwo) : bool {
|
|
|
|
|
|
|
|
user_login_required();
|
|
|
|
|
|
|
|
//Create notification object
|
|
|
|
$notification = new Notification();
|
|
|
|
$notification->set_on_elem_type(Notification::FRIENDSHIP_REQUEST);
|
|
|
|
$notification->set_on_elem_id(0);
|
|
|
|
|
|
|
|
//Delete notifications in the two ways
|
|
|
|
$notification->set_dest_user_id($userOne);
|
|
|
|
$notification->set_from_user_id($userTwo);
|
2018-03-03 13:28:29 +00:00
|
|
|
$notification->set_on_elem_id($userTwo);
|
2018-03-03 13:03:27 +00:00
|
|
|
if(!components()->notifications->delete($notification))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
$notification->set_dest_user_id($userTwo);
|
|
|
|
$notification->set_from_user_id($userOne);
|
2018-03-03 13:28:29 +00:00
|
|
|
$notification->set_on_elem_id($userOne);
|
2018-03-03 13:03:27 +00:00
|
|
|
if(!components()->notifications->delete($notification))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
2018-03-03 13:28:29 +00:00
|
|
|
}
|
|
|
|
|
2018-08-02 06:57:49 +00:00
|
|
|
/**
|
|
|
|
* Delete all the notifications related to a group membership
|
|
|
|
*
|
|
|
|
* @param int $userID The ID of the target user
|
|
|
|
* @param int $groupID The ID of the target group
|
|
|
|
* @return bool TRUE for a success / FALSE else
|
|
|
|
*/
|
|
|
|
function delete_notifications_group_membership(int $userID, int $groupID) : bool {
|
|
|
|
|
|
|
|
user_login_required();
|
|
|
|
|
|
|
|
//Create notification object
|
|
|
|
$notification = new Notification();
|
|
|
|
$notification->set_on_elem_type(Notification::GROUP_MEMBERSHIP);
|
|
|
|
$notification->set_on_elem_id($groupID);
|
|
|
|
|
|
|
|
//Delete notifications
|
|
|
|
$notification->set_dest_user_id($userID);
|
|
|
|
$notification->set_from_user_id(-1);
|
|
|
|
if(!components()->notifications->delete($notification))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
$notification->set_dest_user_id(-1);
|
|
|
|
$notification->set_from_user_id($userID);
|
|
|
|
if(!components()->notifications->delete($notification))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-03 13:28:29 +00:00
|
|
|
/**
|
|
|
|
* Create and push a friendship request notification
|
|
|
|
*
|
|
|
|
* @param int $fromUser The ID of the user generating the notification
|
|
|
|
* @param int $destUser The target user for the notification
|
|
|
|
* @param string $kind The kind of notification to create
|
|
|
|
* @return bool TRUE in case of success / FALSE else
|
|
|
|
*/
|
|
|
|
function create_friendship_notification(int $fromUser, int $destUser, string $kind) : bool {
|
|
|
|
|
|
|
|
//Delete all the previous notifications
|
|
|
|
if(!delete_notifications_friendship_request($fromUser, $destUser))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
//Create the notification
|
|
|
|
$notif = new Notification();
|
|
|
|
$notif->set_time_create(time());
|
|
|
|
$notif->set_from_user_id($fromUser);
|
|
|
|
$notif->set_dest_user_id($destUser);
|
|
|
|
$notif->set_on_elem_id($fromUser); //Same as from_user_id
|
|
|
|
$notif->set_on_elem_type(Notification::FRIENDSHIP_REQUEST);
|
|
|
|
$notif->set_type($kind);
|
|
|
|
|
2018-08-02 06:57:49 +00:00
|
|
|
//Try to push the notification
|
|
|
|
return components()->notifications->push($notif);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create and push a group membership notification
|
|
|
|
*
|
|
|
|
* @param int $userID The ID of the target user for the membershp
|
|
|
|
* @param int $moderatorID The ID of the moderator creating the notification (0 if it is the user)
|
|
|
|
* @param int $groupID The ID of the target group
|
|
|
|
* @param string $kind The kind of notification to create
|
|
|
|
* @return bool TRUE in case of success / FALSE else
|
|
|
|
*/
|
|
|
|
function create_group_membership_notification(int $userID, int $moderatorID, int $groupID, string $kind) : bool {
|
|
|
|
|
|
|
|
//Delete all the previous notifications
|
|
|
|
if(!delete_notifications_group_membership($userID, $groupID))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
//Create the notification
|
|
|
|
$notif = new Notification();
|
|
|
|
$notif->set_time_create(time());
|
|
|
|
$notif->set_on_elem_id($groupID);
|
|
|
|
$notif->set_on_elem_type(Notification::GROUP_MEMBERSHIP);
|
|
|
|
$notif->set_type($kind);
|
|
|
|
|
|
|
|
if($moderatorID < 1){
|
|
|
|
|
|
|
|
//The notification must be sent to all the moderators of the group
|
|
|
|
$notif->set_from_user_id($userID);
|
|
|
|
$notif->set_dest_user_id(-1);
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
//We specify both the source and the destination of the notification not
|
|
|
|
//to broadcast the notification to all the group members
|
|
|
|
$notif->set_from_user_id($moderatorID);
|
|
|
|
$notif->set_dest_user_id($userID);
|
|
|
|
}
|
|
|
|
|
2018-03-03 13:28:29 +00:00
|
|
|
//Try to push the notification
|
|
|
|
return components()->notifications->push($notif);
|
2018-02-18 17:43:58 +00:00
|
|
|
}
|