1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jappix_ynh.git synced 2024-09-03 19:26:19 +02:00
jappix_ynh/source/app/javascripts/favorites.js

721 lines
25 KiB
JavaScript
Raw Normal View History

2014-03-12 14:52:47 +01:00
/*
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 = {};
2014-04-08 20:14:28 +02:00
/**
2014-03-12 14:52:47 +01:00
* Opens the favorites popup
* @public
* @return {undefined}
*/
self.open = function() {
try {
// Popup HTML content
var html =
'<div class="top">' + Common._e("Manage favorite rooms") + '</div>' +
'<div class="content">' +
'<div class="switch-fav">' +
'<div class="room-switcher room-list">' +
'<div class="icon list-icon talk-images"></div>' +
Common._e("Change favorites") +
'</div>' +
'<div class="room-switcher room-search">' +
'<div class="icon search-icon talk-images"></div>' +
Common._e("Search a room") +
'</div>' +
'</div>' +
'<div class="static-fav">' +
'<div class="favorites-edit favorites-content">' +
'<div class="head fedit-head static-fav-head">' +
'<div class="head-text fedit-head-text">' + Common._e("Select a favorite") + '</div>' +
'<select name="fedit-head-select" class="head-select fedit-head-select"></select>' +
'</div>' +
'<div class="results fedit-results static-fav-results">' +
'<div class="fedit-line">' +
'<label>' + Common._e("Name") + '</label>' +
'<input class="fedit-title" type="text" required="" />' +
'</div>' +
'<div class="fedit-line">' +
'<label>' + Common._e("Nickname") + '</label>' +
'<input class="fedit-nick" type="text" value="' + Name.getNick() + '" required="" />' +
'</div>' +
'<div class="fedit-line">' +
'<label>' + Common._e("Room") + '</label>' +
'<input class="fedit-chan" type="text" required="" />' +
'</div>' +
'<div class="fedit-line">' +
'<label>' + Common._e("Server") + '</label>' +
'<input class="fedit-server" type="text" value="' + HOST_MUC + '" required="" />' +
'</div>' +
'<div class="fedit-line">' +
'<label>' + Common._e("Password") + '</label>' +
'<input class="fedit-password" type="password" />' +
'</div>' +
'<div class="fedit-line">' +
'<label>' + Common._e("Automatic") + '</label>' +
'<input type="checkbox" class="fedit-autojoin" />' +
'</div>' +
'<div class="fedit-actions">' +
'<a href="#" class="fedit-terminate fedit-add add one-button talk-images">' + Common._e("Add") + '</a>' +
'<a href="#" class="fedit-terminate fedit-edit one-button talk-images">' + Common._e("Edit") + '</a>' +
'<a href="#" class="fedit-terminate fedit-remove remove one-button talk-images">' + Common._e("Remove") + '</a>' +
'</div>' +
'</div>' +
'</div>' +
'<div class="favorites-search favorites-content">' +
'<div class="head fsearch-head static-fav-head">' +
'<div class="head-text fsearch-head-text">' + Common._e("Search a room on") + '</div>' +
'<input type="text" class="head-input fsearch-head-server" value="' + HOST_MUC + '" />' +
'</div>' +
'<div class="results fsearch-results static-fav-results">' +
'<p class="fsearch-noresults">' + Common._e("No room found on this server.") + '</p>' +
'</div>' +
'</div>' +
'</div>' +
'</div>' +
'<div class="bottom">' +
'<div class="wait wait-medium"></div>' +
'<a href="#" class="finish">' + Common._e("Close") + '</a>' +
'</div>';
// 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('<a href="#" class="one-button remove talk-images">' + Common._e("Remove") + '</a>');
// 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('<a href="#" class="one-button add talk-images">' + Common._e("Add") + '</a>');
// 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;
}
};
2014-04-08 20:14:28 +02:00
/**
2014-03-12 14:52:47 +01:00
* 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);
2014-04-08 20:14:28 +02:00
} finally {
return false;
2014-03-12 14:52:47 +01:00
}
};
/**
* 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);
}
};
2014-04-08 20:14:28 +02:00
/**
2014-03-12 14:52:47 +01:00
* 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 += '<div class="oneresult fsearch-oneresult" data-xid="' + escape(roomXID) + '">' +
'<div class="room-name">' + roomName.htmlEnc() + '</div>' +
'<a href="#" class="one-button join talk-images" onclick="return Favorites.join(\'' + escaped_xid + '\');">' + Common._e("Join") + '</a>';
// This room is yet a favorite
if(DataStore.existDB('favorites', roomXID))
html += '<a href="#" class="one-button remove talk-images" onclick="return Favorites.removeThis(\'' + escaped_xid + '\', \'' + escaped_name + '\');">' + Common._e("Remove") + '</a>';
else
html += '<a href="#" class="one-button add talk-images" onclick="return Favorites.addThis(\'' + escaped_xid + '\', \'' + escaped_name + '\');">' + Common._e("Add") + '</a>';
// Close the room HTML
html += '</div>';
}
});
// 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 = '<option value="' + Common.encodeQuotes(xid) + '">' + name.htmlEnc() + '</option>';
// 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 = '<groupchat><xid>' + xid.htmlEnc() + '</xid><name>' + name.htmlEnc() + '</name><nick>' + nick.htmlEnc() + '</nick><autojoin>' + autojoin.htmlEnc() + '</autojoin><password>' + password.htmlEnc() + '</password></groupchat>';
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 += '<option value="' + Common.encodeQuotes($(data).find('xid').text()) + '">' + $(data).find('name').text().htmlEnc() + '</option>';
}
}
// Generate specific HTML code
var favorites_bubble = '<option value="none" class="gc-join-first-option" selected="">' + Common._e("Select a favorite") + '</option>' + html;
var favorites_popup = '<option value="none" class="fedit-head-select-first-option" selected="">' + Common._e("Select a favorite") + '</option>' + 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'))
2014-04-08 20:14:28 +02:00
self.terminateThis('edit');
2014-03-12 14:52:47 +01:00
// Add a favorite
else
2014-04-08 20:14:28 +02:00
self.terminateThis('add');
2014-03-12 14:52:47 +01:00
}
});
// 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() {
2014-04-08 20:14:28 +02:00
return self.terminateThis('add');
2014-03-12 14:52:47 +01:00
});
$(path + 'fedit-edit').click(function() {
2014-04-08 20:14:28 +02:00
return self.terminateThis('edit');
2014-03-12 14:52:47 +01:00
});
$(path + 'fedit-remove').click(function() {
2014-04-08 20:14:28 +02:00
return self.terminateThis('remove');
2014-03-12 14:52:47 +01:00
});
$(path + 'bottom .finish').click(function() {
return self.quit();
});
} catch(e) {
Console.error('Favorites.instance', e);
}
};
/**
* Return class scope
*/
return self;
})();