whoisonline.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Who is online list
  5. */
  6. // language files that should be included
  7. $language_file = array('index', 'registration', 'messages', 'userInfo');
  8. if (!isset($_GET['cidReq'])) {
  9. $cidReset = true;
  10. }
  11. // including necessary files
  12. require_once './main/inc/global.inc.php';
  13. if (isset($_GET['cidReq']) && strlen($_GET['cidReq']) > 0 ) {
  14. api_protect_course_script(true);
  15. }
  16. require_once api_get_path(LIBRARY_PATH).'fileManage.lib.php';
  17. $_SESSION['who_is_online_counter'] = 2;
  18. $htmlHeadXtra[] = api_get_js('jquery.endless-scroll.js');
  19. //social tab
  20. $this_section = SECTION_SOCIAL;
  21. // table definitions
  22. $track_user_table = Database::get_main_table(TABLE_MAIN_USER);
  23. $htmlHeadXtra[] = '<script>
  24. function show_image(image,width,height) {
  25. width = parseInt(width) + 20;
  26. height = parseInt(height) + 20;
  27. window_x = window.open(image,\'windowX\',\'width=\'+ width + \', height=\'+ height + \'\');
  28. }
  29. $(document).ready(function (){
  30. $("input#id_btn_send_invitation").bind("click", function(){
  31. if (confirm("'.get_lang('SendMessageInvitation', '').'")) {
  32. $("#form_register_friend").submit();
  33. }
  34. });
  35. });
  36. function display_hide () {
  37. setTimeout("hide_display_message()",3000);
  38. }
  39. function hide_display_message () {
  40. $("div#display_response_id").html("");
  41. try {
  42. $("#txt_subject_id").val("");
  43. $("#txt_area_invite").val("");
  44. }catch(e) {
  45. $("#txt_area_invite").val("");
  46. }
  47. }
  48. function show_icon_edit(element_html) {
  49. ident="#edit_image";
  50. $(ident).show();
  51. }
  52. function hide_icon_edit(element_html) {
  53. ident="#edit_image";
  54. $(ident).hide();
  55. }
  56. $(document).ready(function() {
  57. $("#link_load_more_items").live("click", function() {
  58. page = $("#link_load_more_items").attr("data_link");
  59. $.ajax({
  60. beforeSend: function(objeto) {
  61. $("#display_response_id").html("'.addslashes(get_lang('Loading')).'");
  62. },
  63. type: "GET",
  64. url: "main/inc/ajax/online.ajax.php?a=load_online_user",
  65. data: "online_page_nr="+page,
  66. success: function(data) {
  67. $("#display_response_id").html("");
  68. if (data != "end") {
  69. $("#link_load_more_items").remove();
  70. var last = $("#online_grid_container li:last");
  71. last.after(data);
  72. } else {
  73. $("#link_load_more_items").remove();
  74. }
  75. }
  76. });
  77. });
  78. });
  79. </script>';
  80. if ($_GET['chatid'] != '') {
  81. //send out call request
  82. $time = time();
  83. $time = date("Y-m-d H:i:s", $time);
  84. $chatid = intval($_GET['chatid']);
  85. if ($_GET['chatid'] == strval(intval($_GET['chatid']))) {
  86. $sql = "update $track_user_table set chatcall_user_id = ".intval($_user['user_id']).", chatcall_date = '".Database::escape_string($time)."', chatcall_text = '' where (user_id = ".(int)Database::escape_string($chatid).")";
  87. $result = Database::query($sql);
  88. //redirect caller to chat
  89. header("Location: ".api_get_path(WEB_CODE_PATH)."chat/chat.php?".api_get_cidreq()."&origin=whoisonline&target=".Security::remove_XSS($chatid));
  90. exit;
  91. }
  92. }
  93. // This if statement prevents users accessing the who's online feature when it has been disabled.
  94. if ((api_get_setting('showonline', 'world') == 'true' && !$_user['user_id']) || ((api_get_setting('showonline', 'users') == 'true' || api_get_setting('showonline', 'course') == 'true') && $_user['user_id'])) {
  95. if(isset($_GET['cidReq']) && strlen($_GET['cidReq']) > 0 ) {
  96. $user_list = who_is_online_in_this_course(0, 9, api_get_user_id(), api_get_setting('time_limit_whosonline'), $_GET['cidReq']);
  97. } else {
  98. $user_list = who_is_online(0, 9);
  99. }
  100. if (!isset($_GET['id'])) {
  101. if (api_get_setting('allow_social_tool') == 'true') {
  102. if (!api_is_anonymous()) {
  103. //this include the social menu div
  104. $social_left_content = SocialManager::show_social_menu('whoisonline');
  105. }
  106. }
  107. }
  108. if ($user_list) {
  109. if (!isset($_GET['id'])) {
  110. if (api_get_setting('allow_social_tool') == 'true') {
  111. if (!api_is_anonymous()) {
  112. $query = isset($_GET['q']) ? $_GET['q']: null;
  113. $social_right_content .= '<div class="span9">'.UserManager::get_search_form($query).'</div>';
  114. }
  115. }
  116. $social_right_content .= SocialManager::display_user_list($user_list);
  117. }
  118. }
  119. if (isset($_GET['id'])) {
  120. if (api_get_setting('allow_social_tool') == 'true' && api_user_is_login()) {
  121. header("Location: ".api_get_path(WEB_CODE_PATH)."social/profile.php?u=".intval($_GET['id']));
  122. exit;
  123. } else {
  124. $social_right_content .= SocialManager::display_individual_user($_GET['id']);
  125. }
  126. }
  127. } else {
  128. api_not_allowed();
  129. exit;
  130. }
  131. $tpl = new Template(get_lang('UsersOnLineList'));
  132. if (api_get_setting('allow_social_tool') == 'true' && !api_is_anonymous()) {
  133. $tpl->assign('social_left_content', $social_left_content);
  134. $tpl->assign('social_right_content', $social_right_content);
  135. $social_layout = $tpl->get_template('layout/social_layout.tpl');
  136. $tpl->display($social_layout);
  137. } else {
  138. $content = $social_right_content;
  139. $tpl->assign('actions', $actions);
  140. $tpl->assign('message', $show_message);
  141. $tpl->assign('header', get_lang('UsersOnLineList'));
  142. $tpl->assign('content', $content);
  143. $tpl->display_one_col_template();
  144. }