123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678 |
- /*
- Copyright (c) 2009 Anant Garg (anantgarg.com | inscripts.com)
- This script may be used for non-commercial purposes only. For any
- commercial purposes, please contact the author at
- anant.garg@inscripts.com
- Changes and Chamilo Integration: Julio Montoya <gugli100@gmail.com>
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- OTHER DEALINGS IN THE SOFTWARE.
- */
- var windowFocus = true;
- var username;
- var chatHeartbeatCount = 0;
- var minChatHeartbeat = 4000;
- var maxChatHeartbeat = 33000;
- var chatHeartbeatTime = minChatHeartbeat;
- var originalTitle;
- var blinkOrder = 0;
- var chatboxFocus = new Array();
- var newMessages = new Array();
- var newMessagesWin = new Array();
- var chatBoxes = new Array();
- var timer;
- var user_status = 0;
- //var ajax_url = 'chat.php'; // This variable is loaded in the template/layout/head.tpl file
- function set_user_status(status) {
- $.ajax({
- url: ajax_url+"?action=set_status",
- data: "status="+status,
- cache: false,
- success: function(data) {
- }
- });
- user_status = status;
- }
- $(document).ready(function() {
- originalTitle = document.title;
- startChatSession();
- $([window, document]).blur(function() {
- windowFocus = false;
- }).focus(function(){
- windowFocus = true;
- document.title = originalTitle;
- });
- /* "On" conditions, divs are created dynamically */
- // User name header toogle
- $('body').on('click', '#chatboxtitlemain', function() {
- if (user_status == 1) {
- stopChatHeartBeat();
- $('.user_status_main').html(offline_button);
- $('#chatboxtitlemain').html(disconnect_lang);
- set_user_status(0);
- } else {
- startChatHeartBeat();
- $('.user_status_main').html(online_button);
- $('#chatboxtitlemain').html(connect_lang);
- set_user_status(1);
- }
- });
- // User name header toogle
- $('body').on('click', '.chatboxtitle', function(){
- chatbox = $(this).parents(".chatbox");
- var chat_id = chatbox.attr('id');
- chat_id = chat_id.split('_')[1];
- toggleChatBoxGrowth(chat_id);
- });
- // Minimize button
- $('body').on('click', '.chatboxhead .togglelink', function(){
- var chat_id = $(this).attr('rel');
- toggleChatBoxGrowth(chat_id);
- });
- // Close button
- $('body').on('click', '.chatboxhead .closelink', function(){
- var chat_id = $(this).attr('rel');
- closeChatBox(chat_id);
- });
- });
- function showChatConnect() {
- if (user_status == 1) {
- button = online_button;
- label = connect_lang;
- } else {
- button = offline_button;
- label = disconnect_lang;
- }
- $("<div />" ).attr("id","chatmain")
- .addClass("chatboxmain")
- .html('<div class="chatboxheadmain"><div class="user_status_main">'+button+'</div><div id="chatboxtitlemain">'+label+'</div><div class="chatboxoptions"></div></div>')
- .appendTo($( "body" ));
- }
- /**
- * Start chat session
- */
- function startChatSession() {
- /* fix bug BT#5728 whereby users cannot move to the next question in IE9 */
- if (typeof ajax_url != 'undefined') {
- $.ajax({
- url: ajax_url+"?action=startchatsession",
- cache: false,
- dataType: "json",
- success: function(data) {
- if (data) {
- username = data.me;
- user_status = data.user_status;
- showChatConnect();
- if (user_status == 1) {
- startChatHeartBeat();
- } else {
- stopChatHeartBeat();
- }
- $.each(data.items, function(my_user_id, user_items) {
- my_items = user_items['items'];
- $.each(my_items, function(i, item) {
- if (item) { // fix strange ie bug
- //my_user_id = item.f;
- if ($("#chatbox_"+my_user_id).length <= 0) {
- createChatBox(my_user_id, user_items.user_info.user_name, 1, user_items.user_info.online);
- }
- if (item.s == 1) {
- //item.f = username;
- }
- if (item.s == 2) {
- $("#chatbox_"+my_user_id+" .chatboxcontent").append('<div class="chatboxmessage"><span class="chatboxinfo">'+item.m+'</span></div>');
- } else {
- $("#chatbox_"+my_user_id+" .chatboxcontent").append('<div class="chatboxmessage">\n\
- <span class="chatboxmessagefrom">'+item.username+': </span>\n\
- <span class="chatboxmessagecontent">'+item.m+'</span></div>');
- }
- }
- });
- });
- for (i=0;i<chatBoxes.length;i++) {
- my_user_id = chatBoxes[i];
- $("#chatbox_"+my_user_id+" .chatboxcontent").scrollTop($("#chatbox_"+my_user_id+" .chatboxcontent")[0].scrollHeight);
- }
- }
- }});
- }
- }
- function stopChatHeartBeat() {
- clearInterval(timer);
- timer = null;
- }
- function startChatHeartBeat() {
- timer = setInterval('chatHeartbeat();', chatHeartbeatTime);
- }
- /*
- * Shows the user messages in all windows
- *
- * Item array structure :
- *
- * item.s = type of message: 1 = message, 2 = "sent at" string
- * item.m = message
- * item.f = from_user
- *
- **/
- function chatHeartbeat() {
- var itemsfound = 0;
- if (windowFocus == false) {
- var blinkNumber = 0;
- var titleChanged = 0;
- for (x in newMessagesWin) {
- if (newMessagesWin[x].status == true) {
- ++blinkNumber;
- if (blinkNumber >= blinkOrder) {
- document.title = newMessagesWin[x].username+' says...';
- titleChanged = 1;
- break;
- }
- }
- }
- if (titleChanged == 0) {
- document.title = originalTitle;
- blinkOrder = 0;
- } else {
- ++blinkOrder;
- }
- } else {
- for (x in newMessagesWin) {
- newMessagesWin[x].status = false;
- }
- }
- for (x in newMessages) {
- if (newMessages[x] == true) {
- if (chatboxFocus[x] == false) {
- //FIXME: add toggle all or none policy, otherwise it looks funny
- $('#chatbox_'+x+' .chatboxhead').toggleClass('chatboxblink');
- }
- }
- }
- $.ajax({
- url: ajax_url+"?action=chatheartbeat",
- cache: false,
- dataType: "json",
- success: function(data) {
- $.each(data.items, function(my_user_id, user_items) {
- my_items = user_items['items'];
- $.each(my_items, function(i, item) {
- if (item) { // fix strange ie bug
- if ($("#chatbox_"+my_user_id).length <= 0) {
- createChatBox(my_user_id, user_items.user_info.user_name, 0, user_items.user_info.online);
- }
- if ($("#chatbox_"+my_user_id).css('display') == 'none') {
- $("#chatbox_"+my_user_id).css('display','block');
- restructureChatBoxes();
- }
- if (item.s == 1) {
- //item.f = username;
- }
- update_online_user(my_user_id, user_items.user_info.online);
- if (item.s == 2) {
- $("#chatbox_"+my_user_id+" .chatboxcontent").append('<div class="chatboxmessage"><span class="chatboxinfo">'+item.m+'</span></div>');
- } else {
- newMessages[my_user_id] = {'status':true, 'username':item.username};
- newMessagesWin[my_user_id] = {'status':true, 'username':item.username};
- $("#chatbox_"+my_user_id+" .chatboxcontent").append('<div class="chatboxmessage">\n\
- <span class="chatboxmessagefrom">'+item.username+': </span>\n\
- <span class="chatboxmessagecontent">'+item.m+'</span></div>');
- }
- $("#chatbox_"+my_user_id+" .chatboxcontent").scrollTop($("#chatbox_"+my_user_id+" .chatboxcontent")[0].scrollHeight);
- if ($('#chatbox_'+my_user_id+' .chatboxcontent').css('display') == 'none') {
- $('#chatbox_'+my_user_id+' .chatboxhead').toggleClass('chatboxblink');
- }
- itemsfound += 1;
- }
- });
- });
- chatHeartbeatCount++;
- if (itemsfound > 0) {
- chatHeartbeatTime = minChatHeartbeat;
- chatHeartbeatCount = 1;
- } else if (chatHeartbeatCount >= 10) {
- chatHeartbeatTime *= 2;
- chatHeartbeatCount = 1;
- if (chatHeartbeatTime > maxChatHeartbeat) {
- chatHeartbeatTime = maxChatHeartbeat;
- }
- }
- //timer = setTimeout('chatHeartbeat();',chatHeartbeatTime);
- }
- }); //ajax
- }
- function closeChatBox(user_id) {
- $('#chatbox_'+user_id).css('display','none');
- restructureChatBoxes();
- $.post(ajax_url+"?action=closechat", {chatbox: user_id} , function(data){
- });
- }
- function restructureChatBoxes() {
- align = 0;
- for (x in chatBoxes) {
- user_id = chatBoxes[x];
- if ($("#chatbox_"+user_id).css('display') != 'none') {
- if (align == 0) {
- $("#chatbox_"+user_id).css('right', '245px');
- } else {
- width = (align)*(225+7)+20 + 225;
- $("#chatbox_"+user_id).css('right', width+'px');
- }
- align++;
- }
- }
- }
- /**
- * Function that fires the chat with an user (creates a chat bloclk)
- * @param int user id
- * @param string user's firstname + lastname
- * @param status
- *
- **/
- function chatWith(user_id, user_name, status, userImage) {
- createChatBox(user_id, user_name, 0, status, userImage);
- $("#chatbox_"+user_id+" .chatboxtextarea").focus();
- }
- function chatNotYetWith(message) {
- $("#js_alerts").html(message);
- $("#js_alerts").css('display', 'block');
- $("#js_alerts").attr('class', 'alert alert-warning');
- $('#js_alerts').alert()
- }
- /**
- * Creates a div
- */
- function createChatBox(user_id, chatboxtitle, minimizeChatBox, online, userImage) {
- if ($("#chatbox_"+user_id).length > 0) {
- if ($("#chatbox_"+user_id).css('display') == 'none') {
- $("#chatbox_"+user_id).css('display','block');
- restructureChatBoxes();
- }
- $("#chatbox_"+user_id+" .chatboxtextarea").focus();
- return;
- }
- user_is_online = return_online_user(user_id, online, userImage);
- var chatbox = $('<div>')
- .attr({
- id: 'chatbox_' + user_id
- })
- .addClass('chatbox')
- .css('bottom', 0);
- var chatboxHead = $('<div>')
- .addClass('chatboxhead')
- .append(user_is_online);
- $('<div>')
- .addClass('chatimage')
- .append('<img src="'+userImage+'"/>')
- .appendTo(chatboxHead);
- $('<div>')
- .addClass('chatboxtitle')
- .append(chatboxtitle)
- .appendTo(chatboxHead);
- var chatboxoptions = $('<div>')
- .addClass('chatboxoptions')
- .appendTo(chatboxHead);
- if (!!Modernizr.prefixed('RTCPeerConnection', window)) {
- $('<a>')
- .addClass('btn btn-xs')
- .attr({
- href: '#'
- })
- .html('<i class="fa fa-video-camera"></i>')
- .on('click', function(e) {
- e.preventDefault();
- var createForm = $.get(
- ajax_url,
- {
- action: 'start_video',
- to: user_id
- }
- );
- $.when(createForm).done(function(response) {
- $('#global-modal')
- .find('.modal-dialog')
- .removeClass('modal-lg');
- $('#global-modal')
- .find('.modal-body')
- .html(response);
- $('#global-modal').modal('show');
- });
- })
- .appendTo(chatboxoptions);
- }
- $('<a>')
- .addClass('btn btn-xs togglelink')
- .attr({
- href: 'javascript:void(0)',
- rel: user_id
- })
- .html('<i class="fa fa-toggle-down"></i>')
- .appendTo(chatboxoptions);
- $('<a>')
- .addClass('btn btn-xs closelink')
- .attr({
- href: 'javascript:void(0)',
- rel: user_id
- })
- .html('<i class="fa fa-close"></i>')
- .appendTo(chatboxoptions);
- $('<br>')
- .attr('clear', 'all')
- .appendTo(chatboxHead);
- var chatboxContent = $('<div>')
- .addClass('chatboxcontent');
- var chatboxInput = $('<div>')
- .addClass('chatboxinput');
- $('<textarea>')
- .addClass('chatboxtextarea')
- .on('keydown', function(e) {
- return checkChatBoxInputKey(e.originalEvent, this, user_id);
- })
- .appendTo(chatboxInput);
- chatbox
- .append(chatboxHead)
- .append(chatboxContent)
- .append(chatboxInput)
- .appendTo('body');
- chatBoxeslength = 0;
- for (x in chatBoxes) {
- if ($("#chatbox_"+chatBoxes[x]).css('display') != 'none') {
- chatBoxeslength++;
- }
- }
- if (chatBoxeslength == 0) {
- $("#chatbox_"+user_id).css('right', '245px');
- } else {
- width = (chatBoxeslength)*(225+7)+20 +225;
- $("#chatbox_"+user_id).css('right', width+'px');
- }
- chatBoxes.push(user_id);
- if (minimizeChatBox == 1) {
- minimizedChatBoxes = new Array();
- if ($.cookie('chatbox_minimized')) {
- minimizedChatBoxes = $.cookie('chatbox_minimized').split(/\|/);
- }
- minimize = 0;
- for (j=0;j<minimizedChatBoxes.length;j++) {
- if (minimizedChatBoxes[j] == user_id) {
- minimize = 1;
- }
- }
- if (minimize == 1) {
- $('.togglelink').html('<i class="fa fa-toggle-up"></i>');
- $('#chatbox_'+user_id+' .chatboxcontent').css('display','none');
- $('#chatbox_'+user_id+' .chatboxinput').css('display','none');
- }
- }
- chatboxFocus[user_id] = false;
- $("#chatbox_"+user_id+" .chatboxtextarea").blur(function(){
- chatboxFocus[user_id] = false;
- $("#chatbox_"+user_id+" .chatboxtextarea").removeClass('chatboxtextareaselected');
- }).focus(function(){
- chatboxFocus[user_id] = true;
- newMessages[user_id] = false;
- $('#chatbox_'+user_id+' .chatboxhead').removeClass('chatboxblink');
- $("#chatbox_"+user_id+" .chatboxtextarea").addClass('chatboxtextareaselected');
- });
- $("#chatbox_"+user_id).click(function() {
- if ($('#chatbox_'+user_id+' .chatboxcontent').css('display') != 'none') {
- $("#chatbox_"+user_id+" .chatboxtextarea").focus();
- }
- });
- $("#chatbox_"+user_id).show();
- }
- /**
- * Creates the div user status (green/gray button next to the user name)
- * @param int user id
- * @param int status 1 or 0
- */
- function return_online_user(user_id, status, userImage) {
- var div_wrapper = $("<div />" );
- var new_div = $("<div />" );
- new_div.attr("id","online_"+user_id);
- new_div.attr("class","user_status");
- if (status == '1' || status == 1) {
- new_div.html(online_button);
- } else {
- new_div.html(offline_button);
- }
- div_wrapper.append(new_div);
- return div_wrapper.html();
- }
- /**
- * Updates the user status (green/gray button next to the user name)
- */
- function update_online_user(user_id, status) {
- if ($("#online_" +user_id).length > 0) {
- if (status == 1) {
- $("#online_" +user_id).html(online_button);
- } else {
- $("#online_" +user_id).html(offline_button);
- }
- }
- }
- function toggleChatBoxGrowth(user_id) {
- if ($('#chatbox_'+user_id+' .chatboxcontent').css('display') == 'none') {
- var minimizedChatBoxes = new Array();
- if ($.cookie('chatbox_minimized')) {
- minimizedChatBoxes = $.cookie('chatbox_minimized').split(/\|/);
- }
- var newCookie = '';
- for (i=0;i<minimizedChatBoxes.length;i++) {
- if (minimizedChatBoxes[i] != user_id) {
- newCookie += user_id+'|';
- }
- }
- newCookie = newCookie.slice(0, -1);
- $.cookie('chatbox_minimized', newCookie);
- $('#chatbox_'+user_id+' .chatboxcontent').css('display','block');
- $('#chatbox_'+user_id+' .chatboxinput').css('display','block');
- $("#chatbox_"+user_id+" .chatboxcontent").scrollTop($("#chatbox_"+user_id+" .chatboxcontent")[0].scrollHeight);
- $('.togglelink').html('<i class="fa fa-toggle-down"></i>');
- } else {
- var newCookie = user_id;
- if ($.cookie('chatbox_minimized')) {
- newCookie += '|'+$.cookie('chatbox_minimized');
- }
- $.cookie('chatbox_minimized',newCookie);
- $('#chatbox_'+user_id+' .chatboxcontent').css('display','none');
- $('#chatbox_'+user_id+' .chatboxinput').css('display','none');
- $('.togglelink').html('<i class="fa fa-toggle-up"></i>');
- }
- }
- function checkChatBoxInputKey(event, chatboxtextarea, user_id) {
- if(event.keyCode == 13 && event.shiftKey == 0) {
- message = $(chatboxtextarea).val();
- message = message.replace(/^\s+|\s+$/g,"");
- $(chatboxtextarea).val('');
- $(chatboxtextarea).focus();
- $(chatboxtextarea).css('height','44px');
- if (message != '') {
- $.post(ajax_url + "?action=sendchat", {to: user_id, message: message} , function(data) {
- message = message.replace(/</g,"<").replace(/>/g,">").replace(/\"/g,""");
- $("#chatbox_"+user_id+" .chatboxcontent").append('<div class="chatboxmessage">\n\
- <span class="chatboxmessagefrom">'+username+': </span>\n\
- <span class="chatboxmessagecontent">'+message+'</span></div>');
- $("#chatbox_"+user_id+" .chatboxcontent").scrollTop($("#chatbox_"+user_id+" .chatboxcontent")[0].scrollHeight);
- });
- }
- chatHeartbeatTime = minChatHeartbeat;
- chatHeartbeatCount = 1;
- return false;
- }
- var adjustedHeight = chatboxtextarea.clientHeight;
- var maxHeight = 94;
- if (maxHeight > adjustedHeight) {
- adjustedHeight = Math.max(chatboxtextarea.scrollHeight, adjustedHeight);
- if (maxHeight)
- adjustedHeight = Math.min(maxHeight, adjustedHeight);
- if (adjustedHeight > chatboxtextarea.clientHeight)
- $(chatboxtextarea).css('height',adjustedHeight+8 +'px');
- } else {
- $(chatboxtextarea).css('overflow','auto');
- }
- }
- /**
- * Cookie plugin
- *
- * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
- * Dual licensed under the MIT and GPL licenses:
- * http://www.opensource.org/licenses/mit-license.php
- * http://www.gnu.org/licenses/gpl.html
- *
- */
- jQuery.cookie = function(name, value, options) {
- if (typeof value != 'undefined') { // name and value given, set cookie
- options = options || {};
- if (value === null) {
- value = '';
- options.expires = -1;
- }
- var expires = '';
- if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
- var date;
- if (typeof options.expires == 'number') {
- date = new Date();
- date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
- } else {
- date = options.expires;
- }
- expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
- }
- // CAUTION: Needed to parenthesize options.path and options.domain
- // in the following expressions, otherwise they evaluate to undefined
- // in the packed version for some reason...
- var path = options.path ? '; path=' + (options.path) : '';
- var domain = options.domain ? '; domain=' + (options.domain) : '';
- var secure = options.secure ? '; secure' : '';
- document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
- } else { // only name given, get cookie
- var cookieValue = null;
- if (document.cookie && document.cookie != '') {
- var cookies = document.cookie.split(';');
- for (var i = 0; i < cookies.length; i++) {
- var cookie = jQuery.trim(cookies[i]);
- // Does this cookie string begin with the name we want?
- if (cookie.substring(0, name.length + 1) == (name + '=')) {
- cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
- break;
- }
- }
- }
- return cookieValue;
- }
- };
|