123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <?php
- /* For licensing terms, see /license.txt */
- use Chamilo\UserBundle\Entity\User;
- $_dont_save_user_course_access = true;
- /**
- * Responses to AJAX calls.
- */
- require_once __DIR__.'/../global.inc.php';
- $action = $_GET['a'];
- switch ($action) {
- case 'get_notifications_inbox':
- $userId = api_get_user_id();
- $listInbox = [];
- if (api_get_setting('allow_message_tool') == 'true') {
- $list = MessageManager::getMessageData(
- 0,
- 10,
- null,
- null,
- ['actions' => ['read'], 'type' => MessageManager::MESSAGE_TYPE_INBOX]
- );
- foreach ($list as $row) {
- $user = api_get_user_info($row['0']);
- $temp['title'] = $row['1'];
- $temp['date'] = $row['2'];
- $temp['fullname'] = $user['complete_name'];
- $temp['email'] = $user['email'];
- $temp['url'] = $row['1'];
- $listInbox[] = $temp;
- }
- }
- header('Content-type:application/json');
- echo json_encode($listInbox);
- break;
- case 'get_notifications_friends':
- $userId = api_get_user_id();
- $listInvitations = [];
- $temp = [];
- if (api_get_setting('allow_social_tool') == 'true') {
- $list = SocialManager::get_list_invitation_of_friends_by_user_id($userId, 3);
- foreach ($list as $row) {
- $user = api_get_user_info($row['user_sender_id']);
- $temp['title'] = $row['title'];
- $temp['content'] = $row['content'];
- $temp['date'] = $row['send_date'];
- $temp['user_id'] = $user['id'];
- $temp['fullname'] = $user['complete_name'];
- $temp['email'] = $user['email'];
- $temp['avatar'] = $user['avatar_small'];
- $listInvitations[] = $temp;
- }
- }
- header('Content-type:application/json');
- echo json_encode($listInvitations);
- break;
- case 'get_count_message':
- $userId = api_get_user_id();
- $invitations = [];
- // Setting notifications
- $count_unread_message = 0;
- if (api_get_setting('allow_message_tool') === 'true') {
- // get count unread message and total invitations
- $count_unread_message = MessageManager::getCountNewMessagesFromDB($userId);
- }
- if (api_get_setting('allow_social_tool') === 'true') {
- $number_of_new_messages_of_friend = SocialManager::get_message_number_invitation_by_user_id(
- $userId
- );
- $usergroup = new UserGroup();
- $group_pending_invitations = $usergroup->get_groups_by_user(
- $userId,
- GROUP_USER_PERMISSION_PENDING_INVITATION,
- false
- );
- if (!empty($group_pending_invitations)) {
- $group_pending_invitations = count($group_pending_invitations);
- } else {
- $group_pending_invitations = 0;
- }
- $invitations = [
- 'ms_friends' => $number_of_new_messages_of_friend,
- 'ms_groups' => $group_pending_invitations,
- 'ms_inbox' => $count_unread_message,
- ];
- }
- header('Content-type:application/json');
- echo json_encode($invitations);
- break;
- case 'send_message':
- api_block_anonymous_users(false);
- $subject = isset($_REQUEST['subject']) ? trim($_REQUEST['subject']) : null;
- $messageContent = isset($_REQUEST['content']) ? trim($_REQUEST['content']) : null;
- if (empty($subject) || empty($messageContent)) {
- echo Display::return_message(get_lang('There was an error while trying to send the message.'), 'error');
- exit;
- }
- $courseId = isset($_REQUEST['course_id']) ? (int) $_REQUEST['course_id'] : 0;
- $sessionId = isset($_REQUEST['session_id']) ? (int) $_REQUEST['session_id'] : 0;
- // Add course info
- if (!empty($courseId)) {
- $courseInfo = api_get_course_info_by_id($courseId);
- if (!empty($courseInfo)) {
- if (empty($sessionId)) {
- $courseNotification = sprintf(get_lang('This e-mail was sent via course %s'), $courseInfo['title']);
- } else {
- $sessionInfo = api_get_session_info($sessionId);
- if (!empty($sessionInfo)) {
- $courseNotification = sprintf(
- get_lang('This e-mail was sent via course %sInSessionX'),
- $courseInfo['title'],
- $sessionInfo['name']
- );
- }
- }
- $messageContent .= '<br /><br />'.$courseNotification;
- }
- }
- $result = MessageManager::send_message($_REQUEST['user_id'], $subject, $messageContent);
- if ($result) {
- echo Display::return_message(get_lang('Your message has been sent.'), 'confirmation');
- } else {
- echo Display::return_message(get_lang('There was an error while trying to send the message.'), 'confirmation');
- }
- break;
- case 'send_invitation':
- api_block_anonymous_users(false);
- $subject = isset($_REQUEST['subject']) ? trim($_REQUEST['subject']) : null;
- $invitationContent = isset($_REQUEST['content']) ? trim($_REQUEST['content']) : null;
- SocialManager::sendInvitationToUser($_REQUEST['user_id'], $subject, $invitationContent);
- break;
- case 'find_users':
- if (api_is_anonymous()) {
- echo '';
- break;
- }
- $repo = UserManager::getRepository();
- $users = $repo->findUsersToSendMessage(
- api_get_user_id(),
- $_REQUEST['q'],
- $_REQUEST['page_limit']
- );
- $showEmail = api_get_setting('show_email_addresses') === 'true';
- $return = ['items' => []];
- /** @var User $user */
- foreach ($users as $user) {
- $userName = UserManager::formatUserFullName($user, true);
- if ($showEmail) {
- $userName .= " ({$user->getEmail()})";
- }
- $return['items'][] = [
- 'text' => $userName,
- 'id' => $user->getId(),
- ];
- }
- header('Content-type:application/json');
- echo json_encode($return);
- break;
- default:
- echo '';
- }
- exit;
|