/* Jappix - An open social platform These are the favorites JS scripts for Jappix ------------------------------------------------- License: AGPL Author: Valérian Saliou */ // Bundle var Favorites = (function () { /** * Alias of this * @private */ var self = {}; /** * Opens the favorites popup * @public * @return {undefined} */ self.open = function() { try { // Popup HTML content var html = '
' + Common._e("Manage favorite rooms") + '
' + '
' + '
' + '
' + '
' + Common._e("Change favorites") + '
' + '' + '
' + '
' + '
' + '
' + '
' + Common._e("Select a favorite") + '
' + '' + '
' + '
' + '
' + '' + '' + '
' + '
' + '' + '' + '
' + '
' + '' + '' + '
' + '
' + '' + '' + '
' + '
' + '' + '' + '
' + '
' + '' + '' + '
' + '' + '
' + '
' + '' + '
' + '
' + '
' + '
' + '' + Common._e("Close") + '' + '
'; // Create the popup Popup.create('favorites', html); // Load the favorites self.load(); // Associate the events self.instance(); } catch(e) { Console.error('Favorites.open', e); } }; /** * Resets the favorites elements * @public * @return {undefined} */ self.reset = function() { try { var path = '#favorites '; $(path + '.wait, ' + path + '.fedit-terminate').hide(); $(path + '.fedit-add').show(); $(path + '.fsearch-oneresult').remove(); $(path + 'input').val(''); $(path + '.please-complete').removeClass('please-complete'); $(path + '.fedit-nick').val(Name.getNick()); $(path + '.fsearch-head-server, ' + path + '.fedit-server').val(HOST_MUC); $(path + '.fedit-autojoin').removeAttr('checked'); } catch(e) { Console.error('Favorites.reset', e); } }; /** * Quits the favorites popup * @public * @return {boolean} */ self.quit = function() { try { // Destroy the popup Popup.destroy('favorites'); } catch(e) { Console.error('Favorites.quit', e); } finally { return false; } }; /** * Adds a room to the favorites * @public * @param {string} roomXID * @param {string} roomName * @return {boolean} */ self.addThis = function(roomXID, roomName) { try { // Button path var button = '#favorites .fsearch-results div[data-xid="' + escape(roomXID) + '"] a.one-button'; // Add a remove button instead of the add one $(button + '.add').replaceWith('' + Common._e("Remove") + ''); // Click event $(button + '.remove').click(function() { return self.removeThis(roomXID, roomName); }); // Hide the add button in the (opened?) groupchat $('#' + hex_md5(roomXID) + ' .tools-add').hide(); // Add the database entry self.display(roomXID, Common.explodeThis(' (', roomName, 0), Name.getNick(), '0', ''); // Publish the favorites self.publish(); } catch(e) { Console.error('Favorites.addThis', e); } finally { return false; } }; /** * Removes a room from the favorites * @public * @param {string} roomXID * @param {string} roomName * @return {boolean} */ self.removeThis = function(roomXID, roomName) { try { // Button path var button = '#favorites .fsearch-results div[data-xid="' + escape(roomXID) + '"] a.one-button'; // Add a remove button instead of the add one $(button + '.remove').replaceWith('' + Common._e("Add") + ''); // Click event $(button + '.add').click(function() { return self.addThis(roomXID, roomName); }); // Show the add button in the (opened?) groupchat $('#' + hex_md5(roomXID) + ' .tools-add').show(); // Remove the favorite self.remove(roomXID, true); // Publish the favorites self.publish(); } catch(e) { Console.error('Favorites.removeThis', e); } finally { return false; } }; /** * Edits a favorite * @public * @return {undefined} */ self.edit = function() { try { // Path to favorites var favorites = '#favorites .'; // Reset the favorites self.reset(); // Show the edit/remove button, hide the others $(favorites + 'fedit-terminate').hide(); $(favorites + 'fedit-edit').show(); $(favorites + 'fedit-remove').show(); // We retrieve the values var xid = $(favorites + 'fedit-head-select').val(); var data = Common.XMLFromString(DataStore.getDB(Connection.desktop_hash, 'favorites', xid)); // If this is not the default room if(xid != 'none') { // We apply the values $(favorites + 'fedit-title').val($(data).find('name').text()); $(favorites + 'fedit-nick').val($(data).find('nick').text()); $(favorites + 'fedit-chan').val(Common.getXIDNick(xid)); $(favorites + 'fedit-server').val(Common.getXIDHost(xid)); $(favorites + 'fedit-password').val($(data).find('password').text()); if($(data).find('autojoin').text() == 'true') $(favorites + 'fedit-autojoin').attr('checked', true); } } catch(e) { Console.error('Favorites.edit', e); } }; /** * Terminate a favorite editing * @public * @param {string} type * @return {boolean} */ self.terminateThis = function(type) { try { // Path to favorites var favorites = '#favorites '; // We get the values of the current edited groupchat var old_xid = $(favorites + '.fedit-head-select').val(); var title = $(favorites + '.fedit-title').val(); var nick = $(favorites + '.fedit-nick').val(); var room = $(favorites + '.fedit-chan').val(); var server = $(favorites + '.fedit-server').val(); var xid = room + '@' + server; var password = $(favorites + '.fedit-password').val(); var autojoin = 'false'; if($(favorites + '.fedit-autojoin').filter(':checked').size()) autojoin = 'true'; // We check the missing values and send this if okay if((type == 'add') || (type == 'edit')) { if(title && nick && room && server) { // Remove the edited room if(type == 'edit') self.remove(old_xid, true); // Display the favorites self.display(xid, title, nick, autojoin, password); // Reset the inputs self.reset(); } else { $(favorites + 'input[required]').each(function() { var select = $(this); if(!select.val()) $(document).oneTime(10, function() { select.addClass('please-complete').focus(); }); else select.removeClass('please-complete'); }); } } // Must remove a favorite? else if(type == 'remove') { self.remove(old_xid, true); // Reset the inputs self.reset(); } // Publish the new favorites self.publish(); Console.info('Action on this bookmark: ' + room + '@' + server + ' / ' + type); } catch(e) { Console.error('Favorites.terminateThis', e); } finally { return false; } }; /** * Removes a favorite * @public * @param {string} xid * @param {boolean} database * @return {undefined} */ self.remove = function(xid, database) { try { // We remove the target favorite everywhere needed $('.buddy-conf-groupchat-select option[value="' + xid + '"]').remove(); $('.fedit-head-select option[value="' + xid + '"]').remove(); // Must remove it from database? if(database) { DataStore.removeDB(Connection.desktop_hash, 'favorites', xid); } } catch(e) { Console.error('Favorites.remove', e); } }; /** * Sends a favorite to the XMPP server * @public * @return {undefined} */ self.publish = function() { try { var iq = new JSJaCIQ(); iq.setType('set'); var query = iq.setQuery(NS_PRIVATE); var storage = query.appendChild(iq.buildNode('storage', {'xmlns': NS_BOOKMARKS})); // We generate the XML var db_regex = new RegExp(('^' + Connection.desktop_hash + '_') + 'favorites_(.+)'); for(var i = 0; i < DataStore.storageDB.length; i++) { // Get the pointer values var current = DataStore.storageDB.key(i); // If the pointer is on a stored favorite if(current.match(db_regex)) { var data = Common.XMLFromString(DataStore.storageDB.getItem(current)); var xid = $(data).find('xid').text(); var rName = $(data).find('name').text(); var nick = $(data).find('nick').text(); var password = $(data).find('password').text(); var autojoin = $(data).find('autojoin').text(); // We create the node for this groupchat var item = storage.appendChild(iq.buildNode('conference', {'name': rName, 'jid': xid, 'autojoin': autojoin, xmlns: NS_BOOKMARKS})); item.appendChild(iq.buildNode('nick', {xmlns: NS_BOOKMARKS}, nick)); if(password) item.appendChild(iq.buildNode('password', {xmlns: NS_BOOKMARKS}, password)); Console.info('Bookmark sent: ' + xid); } } con.send(iq); } catch(e) { Console.error('Favorites.publish', e); } }; /** * Gets a list of the MUC items on a given server * @public * @return {undefined} */ self.getGCList = function() { try { var path = '#favorites .'; var gcServer = $('.fsearch-head-server').val(); // We reset some things $(path + 'fsearch-oneresult').remove(); $(path + 'fsearch-noresults').hide(); $(path + 'wait').show(); var iq = new JSJaCIQ(); iq.setType('get'); iq.setTo(gcServer); iq.setQuery(NS_DISCO_ITEMS); con.send(iq, self.handleGCList); } catch(e) { Console.error('Favorites.getGCList', e); } }; /** * Handles the MUC items list * @public * @param {object} iq * @return {undefined} */ self.handleGCList = function(iq) { try { var path = '#favorites .'; var from = Common.fullXID(Common.getStanzaFrom(iq)); if(!iq || (iq.getType() != 'result')) { Board.openThisError(3); $(path + 'wait').hide(); Console.error('Error while retrieving the rooms: ' + from); } else { var handleXML = iq.getQuery(); if($(handleXML).find('item').size()) { // Initialize the HTML code var html = ''; $(handleXML).find('item').each(function() { var roomXID = $(this).attr('jid'); var roomName = $(this).attr('name'); if(roomXID && roomName) { // Escaped values var escaped_xid = Utils.encodeOnclick(roomXID); var escaped_name = Utils.encodeOnclick(roomName); // Initialize the room HTML html += '
' + '
' + roomName.htmlEnc() + '
' + '' + Common._e("Join") + ''; // This room is yet a favorite if(DataStore.existDB('favorites', roomXID)) html += '' + Common._e("Remove") + ''; else html += '' + Common._e("Add") + ''; // Close the room HTML html += '
'; } }); // Append this code to the popup $(path + 'fsearch-results').append(html); } else $(path + 'fsearch-noresults').show(); Console.info('Rooms retrieved: ' + from); } $(path + 'wait').hide(); } catch(e) { Console.error('Favorites.handleGCList', e); } }; /** * Joins a groupchat from favorites * @public * @param {string} room * @return {boolean} */ self.join = function(room) { try { self.quit(); Chat.checkCreate(room, 'groupchat', '', '', Common.getXIDNick(room)); } catch(e) { Console.error('Favorites.join', e); } finally { return false; } }; /** * Displays a given favorite * @public * @param {string} xid * @param {string} name * @param {string} nick * @param {boolean} autojoin * @param {string} password * @return {undefined} */ self.display = function(xid, name, nick, autojoin, password) { try { // Generate the HTML code var html = ''; // Remove the existing favorite self.remove(xid, false); // We complete the select forms $('#roster .gc-join-first-option, #favorites .fedit-head-select-first-option').after(html); // We store the informations var value = '' + xid.htmlEnc() + '' + name.htmlEnc() + '' + nick.htmlEnc() + '' + autojoin.htmlEnc() + '' + password.htmlEnc() + ''; DataStore.setDB(Connection.desktop_hash, 'favorites', xid, value); } catch(e) { Console.error('Favorites.display', e); } }; /** * Loads the favorites for the popup * @public * @return {undefined} */ self.load = function() { try { // Initialize the HTML code var html = ''; // Read the database var db_regex = new RegExp(('^' + Connection.desktop_hash + '_') + 'favorites_(.+)'); for(var i = 0; i < DataStore.storageDB.length; i++) { // Get the pointer values var current = DataStore.storageDB.key(i); // If the pointer is on a stored favorite if(current.match(db_regex)) { var data = Common.XMLFromString(DataStore.storageDB.getItem(current)); // Add the current favorite to the HTML code html += ''; } } // Generate specific HTML code var favorites_bubble = '' + html; var favorites_popup = '' + html; // Append the HTML code $('#roster .buddy-conf-groupchat-select').html(favorites_bubble); $('#favorites .fedit-head-select').html(favorites_popup); } catch(e) { Console.error('Favorites.load', e); } }; /** * Plugin launcher * @public * @return {undefined} */ self.instance = function() { try { var path = '#favorites .'; // Keyboard events $(path + 'fsearch-head-server').keyup(function(e) { if(e.keyCode == 13) { // No value? if(!$(this).val()) $(this).val(HOST_MUC); // Get the list self.getGCList(); } }); $(path + 'fedit-line input').keyup(function(e) { if(e.keyCode == 13) { // Edit a favorite if($(path + 'fedit-edit').is(':visible')) self.terminateThis('edit'); // Add a favorite else self.terminateThis('add'); } }); // Change events $('.fedit-head-select').change(self.edit); // Click events $(path + 'room-switcher').click(function() { $(path + 'favorites-content').hide(); self.reset(); }); $(path + 'room-list').click(function() { $(path + 'favorites-edit').show(); }); $(path + 'room-search').click(function() { $(path + 'favorites-search').show(); self.getGCList(); }); $(path + 'fedit-add').click(function() { return self.terminateThis('add'); }); $(path + 'fedit-edit').click(function() { return self.terminateThis('edit'); }); $(path + 'fedit-remove').click(function() { return self.terminateThis('remove'); }); $(path + 'bottom .finish').click(function() { return self.quit(); }); } catch(e) { Console.error('Favorites.instance', e); } }; /** * Return class scope */ return self; })();