refactoring zerobin js, adding JSDoc
This commit is contained in:
parent
52630374e5
commit
d92d8658a5
456
lib/zerobin.js
456
lib/zerobin.js
|
@ -1,9 +1,19 @@
|
||||||
/* ZeroBin 0.15 - http://sebsauvage.net/wiki/doku.php?id=php:zerobin */
|
/**
|
||||||
|
* ZeroBin 0.15
|
||||||
|
*
|
||||||
|
* @link http://sebsauvage.net/wiki/doku.php?id=php:zerobin
|
||||||
|
* @author sebsauvage
|
||||||
|
*/
|
||||||
|
|
||||||
// Immediately start random number generator collector.
|
// Immediately start random number generator collector.
|
||||||
sjcl.random.startCollectors();
|
sjcl.random.startCollectors();
|
||||||
|
|
||||||
// Converts a duration (in seconds) into human readable format.
|
/**
|
||||||
|
* Converts a duration (in seconds) into human readable format.
|
||||||
|
*
|
||||||
|
* @param int seconds
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
function secondsToHuman(seconds)
|
function secondsToHuman(seconds)
|
||||||
{
|
{
|
||||||
if (seconds<60) { var v=Math.floor(seconds); return v+' second'+((v>1)?'s':''); }
|
if (seconds<60) { var v=Math.floor(seconds); return v+' second'+((v>1)?'s':''); }
|
||||||
|
@ -13,217 +23,269 @@ function secondsToHuman(seconds)
|
||||||
if (seconds<60*60*24*60) { var v=Math.floor(seconds/(60*60*24)); return v+' day'+((v>1)?'s':''); }
|
if (seconds<60*60*24*60) { var v=Math.floor(seconds/(60*60*24)); return v+' day'+((v>1)?'s':''); }
|
||||||
var v=Math.floor(seconds/(60*60*24*30)); return v+' month'+((v>1)?'s':'');
|
var v=Math.floor(seconds/(60*60*24*30)); return v+' month'+((v>1)?'s':'');
|
||||||
}
|
}
|
||||||
// Compress a message (deflate compression). Returns base64 encoded data.
|
|
||||||
function compress(message) { return Base64.toBase64(RawDeflate.deflate(Base64.utob(message))); }
|
|
||||||
|
|
||||||
// Decompress a message compressed with compress().
|
/**
|
||||||
function decompress(data) { return Base64.btou(RawDeflate.inflate(Base64.fromBase64(data))) }
|
* Compress a message (deflate compression). Returns base64 encoded data.
|
||||||
|
*
|
||||||
|
* @param string message
|
||||||
|
* @return base64 string data
|
||||||
|
*/
|
||||||
|
function compress(message) {
|
||||||
|
return Base64.toBase64( RawDeflate.deflate( Base64.utob(message) ) );
|
||||||
|
}
|
||||||
|
|
||||||
// Compress, then encrypt message with key.
|
/**
|
||||||
function zeroCipher(key,message)
|
* Decompress a message compressed with compress().
|
||||||
{
|
*/
|
||||||
|
function decompress(data) {
|
||||||
|
return Base64.btou( RawDeflate.inflate( Base64.fromBase64(data) ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compress, then encrypt message with key.
|
||||||
|
*
|
||||||
|
* @param string key
|
||||||
|
* @param string message
|
||||||
|
* @return encrypted string data
|
||||||
|
*/
|
||||||
|
function zeroCipher(key, message) {
|
||||||
return sjcl.encrypt(key,compress(message));
|
return sjcl.encrypt(key,compress(message));
|
||||||
}
|
}
|
||||||
// Decrypt message with key, then decompress.
|
/**
|
||||||
function zeroDecipher(key,data)
|
* Decrypt message with key, then decompress.
|
||||||
{
|
*
|
||||||
|
* @param key
|
||||||
|
* @param encrypted string data
|
||||||
|
* @return string readable message
|
||||||
|
*/
|
||||||
|
function zeroDecipher(key, data) {
|
||||||
return decompress(sjcl.decrypt(key,data));
|
return decompress(sjcl.decrypt(key,data));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Returns the current script location (without search or hash part of the URL).
|
/**
|
||||||
// eg. http://server.com/zero/?aaaa#bbbb --> http://server.com/zero/
|
* @return the current script location (without search or hash part of the URL).
|
||||||
function scriptLocation()
|
* eg. http://server.com/zero/?aaaa#bbbb --> http://server.com/zero/
|
||||||
{
|
*/
|
||||||
|
function scriptLocation() {
|
||||||
return window.location.href.substring(0,window.location.href.length
|
return window.location.href.substring(0,window.location.href.length
|
||||||
-window.location.search.length -window.location.hash.length);
|
-window.location.search.length -window.location.hash.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Returns the paste unique identifier from the URL
|
/**
|
||||||
// eg. 'c05354954c49a487'
|
* @return the paste unique identifier from the URL
|
||||||
function pasteID()
|
* eg. 'c05354954c49a487'
|
||||||
{
|
*/
|
||||||
|
function pasteID() {
|
||||||
return window.location.search.substring(1);
|
return window.location.search.substring(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set text of a DOM element (required for IE)
|
/**
|
||||||
// This is equivalent to element.text(text)
|
* Set text of a DOM element (required for IE)
|
||||||
// Input: element : a DOM element.
|
* This is equivalent to element.text(text)
|
||||||
// text : the text to enter.
|
* @param object element : a DOM element.
|
||||||
function setElementText(element,text)
|
* @param string text : the text to enter.
|
||||||
{
|
*/
|
||||||
if ($('div#oldienotice').is(":visible")) // For IE<10.
|
function setElementText(element, text) {
|
||||||
{
|
// For IE<10.
|
||||||
|
if ($('div#oldienotice').is(":visible")) {
|
||||||
// IE<10 do not support white-space:pre-wrap; so we have to do this BIG UGLY STINKING THING.
|
// IE<10 do not support white-space:pre-wrap; so we have to do this BIG UGLY STINKING THING.
|
||||||
element.text(text.replace(/\n/ig,'{BIG_UGLY_STINKING_THING__OH_GOD_I_HATE_IE}'));
|
element.text(text.replace(/\n/ig,'{BIG_UGLY_STINKING_THING__OH_GOD_I_HATE_IE}'));
|
||||||
element.html(element.text().replace(/{BIG_UGLY_STINKING_THING__OH_GOD_I_HATE_IE}/ig,"\r\n<br>"));
|
element.html(element.text().replace(/{BIG_UGLY_STINKING_THING__OH_GOD_I_HATE_IE}/ig,"\r\n<br>"));
|
||||||
}
|
}
|
||||||
else // for other (sane) browsers:
|
// for other (sane) browsers:
|
||||||
{
|
else {
|
||||||
element.text(text);
|
element.text(text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Show decrypted text in the display area, including discussion (if open)
|
/**
|
||||||
// Input: messages (Array) : Array of messages to display (items = array with keys ('data','meta')
|
* Show decrypted text in the display area, including discussion (if open)
|
||||||
// key (string): decryption key
|
*
|
||||||
function displayMessages(key,comments)
|
* @param string key : decryption key
|
||||||
{
|
* @param array comments : Array of messages to display (items = array with keys ('data','meta')
|
||||||
|
*/
|
||||||
|
function displayMessages(key, comments) {
|
||||||
try { // Try to decrypt the paste.
|
try { // Try to decrypt the paste.
|
||||||
var cleartext = zeroDecipher(key,comments[0].data);
|
var cleartext = zeroDecipher(key, comments[0].data);
|
||||||
} catch(err) {
|
} catch(err) {
|
||||||
$('div#cleartext').hide();
|
$('div#cleartext').hide();
|
||||||
$('button#clonebutton').hide();
|
$('button#clonebutton').hide();
|
||||||
showError('Could not decrypt data (Wrong key ?)');
|
showError('Could not decrypt data (Wrong key ?)');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
setElementText($('div#cleartext'),cleartext);
|
setElementText($('div#cleartext'), cleartext);
|
||||||
urls2links($('div#cleartext')); // Convert URLs to clickable links.
|
urls2links($('div#cleartext')); // Convert URLs to clickable links.
|
||||||
|
|
||||||
// Display paste expiration.
|
// Display paste expiration.
|
||||||
if (comments[0].meta.expire_date) $('div#remainingtime').removeClass('foryoureyesonly').text('This document will expire in '+secondsToHuman(comments[0].meta.remaining_time)+'.').show();
|
if (comments[0].meta.expire_date) $('div#remainingtime').removeClass('foryoureyesonly').text('This document will expire in '+secondsToHuman(comments[0].meta.remaining_time)+'.').show();
|
||||||
if (comments[0].meta.burnafterreading)
|
if (comments[0].meta.burnafterreading) {
|
||||||
{
|
|
||||||
$('div#remainingtime').addClass('foryoureyesonly').text('FOR YOUR EYES ONLY. Don\'t close this window, this message can\'t be displayed again.').show();
|
$('div#remainingtime').addClass('foryoureyesonly').text('FOR YOUR EYES ONLY. Don\'t close this window, this message can\'t be displayed again.').show();
|
||||||
$('button#clonebutton').hide(); // Discourage cloning (as it can't really be prevented).
|
$('button#clonebutton').hide(); // Discourage cloning (as it can't really be prevented).
|
||||||
}
|
}
|
||||||
|
|
||||||
// If the discussion is opened on this paste, display it.
|
// If the discussion is opened on this paste, display it.
|
||||||
if (comments[0].meta.opendiscussion)
|
if (comments[0].meta.opendiscussion) {
|
||||||
{
|
|
||||||
$('div#comments').html('');
|
$('div#comments').html('');
|
||||||
for (var i = 1; i < comments.length; i++) // For each comment.
|
// For each comment.
|
||||||
{
|
for (var i = 1; i < comments.length; i++) {
|
||||||
var comment=comments[i];
|
var comment=comments[i];
|
||||||
var cleartext="[Could not decrypt comment ; Wrong key ?]";
|
var cleartext="[Could not decrypt comment ; Wrong key ?]";
|
||||||
try { cleartext = zeroDecipher(key,comment.data); } catch(err) { }
|
try {
|
||||||
|
cleartext = zeroDecipher(key, comment.data);
|
||||||
|
} catch(err) { }
|
||||||
var place = $('div#comments');
|
var place = $('div#comments');
|
||||||
// If parent comment exists, display below (CSS will automatically shift it right.)
|
// If parent comment exists, display below (CSS will automatically shift it right.)
|
||||||
var cname = 'div#comment_'+comment.meta.parentid
|
var cname = 'div#comment_'+comment.meta.parentid
|
||||||
if ($(cname).length) place = $(cname); // If the element exists in page
|
|
||||||
var divComment = $('<div class="comment" id="comment_'+comment.meta.commentid+'">'
|
// If the element exists in page
|
||||||
+'<div class="commentmeta"><span class="nickname"></span><span class="commentdate"></span></div><div class="commentdata"></div>'
|
if ($(cname).length) {
|
||||||
+'<button onclick="open_reply($(this),\''+comment.meta.commentid+'\');return false;">Reply</button>'
|
place = $(cname);
|
||||||
+'</div>');
|
}
|
||||||
setElementText(divComment.find('div.commentdata'),cleartext);
|
var divComment = $('<div class="comment" id="comment_' + comment.meta.commentid+'">'
|
||||||
urls2links(divComment.find('div.commentdata')); // Convert URLs to clickable links in comment.
|
+ '<div class="commentmeta"><span class="nickname"></span><span class="commentdate"></span></div><div class="commentdata"></div>'
|
||||||
|
+ '<button onclick="open_reply($(this),\'' + comment.meta.commentid + '\');return false;">Reply</button>'
|
||||||
|
+ '</div>');
|
||||||
|
setElementText(divComment.find('div.commentdata'), cleartext);
|
||||||
|
// Convert URLs to clickable links in comment.
|
||||||
|
urls2links(divComment.find('div.commentdata'));
|
||||||
divComment.find('span.nickname').html('<i>(Anonymous)</i>');
|
divComment.find('span.nickname').html('<i>(Anonymous)</i>');
|
||||||
|
|
||||||
// Try to get optional nickname:
|
// Try to get optional nickname:
|
||||||
try { divComment.find('span.nickname').text(zeroDecipher(key,comment.meta.nickname));} catch(err) { }
|
try {
|
||||||
divComment.find('span.commentdate').text(' ('+(new Date(comment.meta.postdate*1000).toUTCString())+')').attr('title','CommentID: '+comment.meta.commentid);
|
divComment.find('span.nickname').text(zeroDecipher(key, comment.meta.nickname));
|
||||||
|
} catch(err) { }
|
||||||
|
divComment.find('span.commentdate').text(' ('+(new Date(comment.meta.postdate*1000).toUTCString())+')').attr('title','CommentID: ' + comment.meta.commentid);
|
||||||
|
|
||||||
// If an avatar is available, display it.
|
// If an avatar is available, display it.
|
||||||
if (comment.meta.vizhash)
|
if (comment.meta.vizhash) {
|
||||||
divComment.find('span.nickname').before('<img src="'+comment.meta.vizhash+'" class="vizhash" title="Anonymous avatar (Vizhash of the IP address)" />');
|
divComment.find('span.nickname').before('<img src="' + comment.meta.vizhash + '" class="vizhash" title="Anonymous avatar (Vizhash of the IP address)" />');
|
||||||
|
}
|
||||||
|
|
||||||
place.append(divComment);
|
place.append(divComment);
|
||||||
}
|
}
|
||||||
$('div#comments').append('<div class="comment"><button onclick="open_reply($(this),\''+pasteID()+'\');return false;">Add comment</button></div>');
|
$('div#comments').append('<div class="comment"><button onclick="open_reply($(this),\'' + pasteID() + '\');return false;">Add comment</button></div>');
|
||||||
$('div#discussion').show();
|
$('div#discussion').show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Open the comment entry when clicking the "Reply" button of a comment.
|
/**
|
||||||
// source = element which emitted the event.
|
* Open the comment entry when clicking the "Reply" button of a comment.
|
||||||
// commentid = identifier of the comment we want to reply to.
|
* @param object source : element which emitted the event.
|
||||||
function open_reply(source,commentid)
|
* @param string commentid = identifier of the comment we want to reply to.
|
||||||
{
|
*/
|
||||||
|
function open_reply(source, commentid) {
|
||||||
$('div.reply').remove(); // Remove any other reply area.
|
$('div.reply').remove(); // Remove any other reply area.
|
||||||
source.after('<div class="reply">'
|
source.after('<div class="reply">'
|
||||||
+'<input type="text" id="nickname" title="Optional nickname..." value="Optional nickname..." />'
|
+ '<input type="text" id="nickname" title="Optional nickname..." value="Optional nickname..." />'
|
||||||
+'<textarea id="replymessage" class="replymessage" cols="80" rows="7"></textarea>'
|
+ '<textarea id="replymessage" class="replymessage" cols="80" rows="7"></textarea>'
|
||||||
+'<br><button id="replybutton" onclick="send_comment(\''+commentid+'\');return false;">Post comment</button>'
|
+ '<br><button id="replybutton" onclick="send_comment(\'' + commentid + '\');return false;">Post comment</button>'
|
||||||
+'<div id="replystatus"> </div>'
|
+ '<div id="replystatus"> </div>'
|
||||||
+'</div>');
|
+ '</div>');
|
||||||
$('input#nickname').focus(function() {
|
$('input#nickname').focus(function() {
|
||||||
$(this).css('color', '#000');
|
$(this).css('color', '#000');
|
||||||
if($(this).val()==$(this).attr('title')) $(this).val('');
|
if ($(this).val() == $(this).attr('title')) {
|
||||||
|
$(this).val('');
|
||||||
|
}
|
||||||
});
|
});
|
||||||
$('textarea#replymessage').focus();
|
$('textarea#replymessage').focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Send a reply in a discussion.
|
/**
|
||||||
// Input: parentid : the comment identifier we want to send a reply to.
|
* Send a reply in a discussion.
|
||||||
function send_comment(parentid)
|
* @param string parentid : the comment identifier we want to send a reply to.
|
||||||
{
|
*/
|
||||||
if ($('textarea#replymessage').val().length==0) return; // Do not send if no data.
|
function send_comment(parentid) {
|
||||||
showStatus('Sending comment...',spin=true);
|
// Do not send if no data.
|
||||||
var cipherdata=zeroCipher(pageKey(), $('textarea#replymessage').val());
|
if ($('textarea#replymessage').val().length==0) {
|
||||||
var ciphernickname='';
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
showStatus('Sending comment...', spin=true);
|
||||||
|
var cipherdata = zeroCipher(pageKey(), $('textarea#replymessage').val());
|
||||||
|
var ciphernickname = '';
|
||||||
var nick=$('input#nickname').val();
|
var nick=$('input#nickname').val();
|
||||||
if (nick!='' && nick!='Optional nickname...') ciphernickname=ciphernickname=zeroCipher(pageKey(),nick);
|
if (nick != '' && nick != 'Optional nickname...') {
|
||||||
|
ciphernickname = ciphernickname = zeroCipher(pageKey(), nick);
|
||||||
|
}
|
||||||
var data_to_send = { data:cipherdata,
|
var data_to_send = { data:cipherdata,
|
||||||
parentid: parentid,
|
parentid: parentid,
|
||||||
pasteid: pasteID(),
|
pasteid: pasteID(),
|
||||||
nickname: ciphernickname
|
nickname: ciphernickname
|
||||||
};
|
};
|
||||||
$.post(scriptLocation(), data_to_send ,'json' )
|
|
||||||
.error( function() { showError('Comment could not be sent (serveur error or not responding).'); } )
|
$
|
||||||
.success(function(data)
|
.post(scriptLocation(), data_to_send, 'json')
|
||||||
{
|
.error(function() {
|
||||||
if (data.status==0)
|
showError('Comment could not be sent (serveur error or not responding).');
|
||||||
{
|
})
|
||||||
|
.success(function(data) {
|
||||||
|
if (data.status == 0) {
|
||||||
showStatus('Comment posted.');
|
showStatus('Comment posted.');
|
||||||
location.reload();
|
location.reload();
|
||||||
}
|
}
|
||||||
else if (data.status==1)
|
else if (data.status==1) {
|
||||||
{
|
|
||||||
showError('Could not post comment: '+data.message);
|
showError('Could not post comment: '+data.message);
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
showError('Could not post comment.');
|
showError('Could not post comment.');
|
||||||
}
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Send a new paste to server
|
/**
|
||||||
function send_data()
|
* Send a new paste to server
|
||||||
{
|
*/
|
||||||
if ($('textarea#message').val().length==0) return; // Do not send if no data.
|
function send_data() {
|
||||||
showStatus('Sending paste...',spin=true);
|
// Do not send if no data.
|
||||||
var randomkey = sjcl.codec.base64.fromBits(sjcl.random.randomWords(8,0),0);
|
if ($('textarea#message').val().length == 0) {
|
||||||
var cipherdata = zeroCipher(randomkey,$('textarea#message').val());
|
return;
|
||||||
var data_to_send = { data:cipherdata,
|
}
|
||||||
expire:$('select#pasteExpiration').val(),
|
showStatus('Sending paste...', spin=true);
|
||||||
opendiscussion:$('input#opendiscussion').is(':checked')?1:0
|
var randomkey = sjcl.codec.base64.fromBits(sjcl.random.randomWords(8, 0), 0);
|
||||||
|
var cipherdata = zeroCipher(randomkey, $('textarea#message').val());
|
||||||
|
var data_to_send = { data: cipherdata,
|
||||||
|
expire: $('select#pasteExpiration').val(),
|
||||||
|
opendiscussion: $('input#opendiscussion').is(':checked') ? 1 : 0
|
||||||
};
|
};
|
||||||
$.post(scriptLocation(), data_to_send ,'json' )
|
$
|
||||||
.error( function() { showError('Data could not be sent (serveur error or not responding).'); } )
|
.post(scriptLocation(), data_to_send, 'json')
|
||||||
.success(function(data)
|
.error(function() {
|
||||||
{
|
showError('Data could not be sent (serveur error or not responding).');
|
||||||
if (data.status==0)
|
})
|
||||||
{
|
.success(function(data) {
|
||||||
|
if (data.status == 0) {
|
||||||
stateExistingPaste();
|
stateExistingPaste();
|
||||||
var url=scriptLocation()+"?"+data.id+'#'+randomkey;
|
var url = scriptLocation() + "?" + data.id + '#' + randomkey;
|
||||||
showStatus('');
|
showStatus('');
|
||||||
$('div#pastelink').html('Your paste is <a href="'+url+'">'+url+'</a>');
|
$('div#pastelink').html('Your paste is <a href="' + url + '">' + url + '</a>');
|
||||||
$('div#pastelink').append(' <button id="shortenbutton" onclick="document.location=\''+shortenUrl(url)+'\'"><img src="lib/icon_shorten.png" width="13" height="15" />Shorten URL</button>').show();
|
$('div#pastelink')
|
||||||
setElementText($('div#cleartext'),$('textarea#message').val());
|
.append(' <button id="shortenbutton" onclick="document.location=\'' + shortenUrl(url) + '\'"><img src="lib/icon_shorten.png" width="13" height="15" />Shorten URL</button>')
|
||||||
|
.show();
|
||||||
|
setElementText($('div#cleartext'), $('textarea#message').val());
|
||||||
urls2links($('div#cleartext'));
|
urls2links($('div#cleartext'));
|
||||||
showStatus('');
|
showStatus('');
|
||||||
}
|
}
|
||||||
else if (data.status==1)
|
else if (data.status==1) {
|
||||||
{
|
|
||||||
showError('Could not create paste: '+data.message);
|
showError('Could not create paste: '+data.message);
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
showError('Could not create paste.');
|
showError('Could not create paste.');
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Put the screen in "New paste" mode.
|
/**
|
||||||
function stateNewPaste()
|
* Put the screen in "New paste" mode.
|
||||||
{
|
*/
|
||||||
$('button#sendbutton').show();
|
function stateNewPaste() {
|
||||||
$('button#clonebutton').hide();
|
$('#sendbutton').show();
|
||||||
|
$('#clonebutton').hide();
|
||||||
$('div#expiration').show();
|
$('div#expiration').show();
|
||||||
$('div#remainingtime').hide();
|
$('div#remainingtime').hide();
|
||||||
$('div#language').hide(); // $('#language').show();
|
$('div#language').hide(); // $('#language').show();
|
||||||
$('input#password').hide(); //$('#password').show();
|
$('input#password').hide(); //$('#password').show();
|
||||||
$('div#opendisc').show();
|
$('div#opendisc').show();
|
||||||
$('button#newbutton').show();
|
$('#newbutton').show();
|
||||||
$('div#pastelink').hide();
|
$('div#pastelink').hide();
|
||||||
$('textarea#message').text('');
|
$('textarea#message').text('');
|
||||||
$('textarea#message').show();
|
$('textarea#message').show();
|
||||||
|
@ -232,90 +294,116 @@ function stateNewPaste()
|
||||||
$('div#discussion').hide();
|
$('div#discussion').hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Put the screen in "Existing paste" mode.
|
/**
|
||||||
function stateExistingPaste()
|
* Put the screen in "Existing paste" mode.
|
||||||
{
|
*/
|
||||||
$('button#sendbutton').hide();
|
function stateExistingPaste() {
|
||||||
if (!$('div#oldienotice').is(":visible")) $('button#clonebutton').show(); // No "clone" for IE<10.
|
$('#sendbutton').hide();
|
||||||
$('button#clonebutton').show();// FIXME
|
|
||||||
|
// No "clone" for IE<10.
|
||||||
|
if (!$('div#oldienotice').is(":visible")) {
|
||||||
|
$('button#clonebutton').show();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @FIXME
|
||||||
|
*/
|
||||||
|
$('#clonebutton').show();
|
||||||
|
|
||||||
$('div#expiration').hide();
|
$('div#expiration').hide();
|
||||||
$('div#language').hide();
|
$('div#language').hide();
|
||||||
$('input#password').hide();
|
$('input#password').hide();
|
||||||
$('div#opendisc').hide();
|
$('div#opendisc').hide();
|
||||||
$('button#newbutton').show();
|
$('#newbutton').show();
|
||||||
$('div#pastelink').hide();
|
$('div#pastelink').hide();
|
||||||
$('textarea#message').hide();
|
$('textarea#message').hide();
|
||||||
$('div#cleartext').show();
|
$('div#cleartext').show();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clone the current paste.
|
/**
|
||||||
function clonePaste()
|
* Clone the current paste.
|
||||||
{
|
*/
|
||||||
|
function clonePaste() {
|
||||||
stateNewPaste();
|
stateNewPaste();
|
||||||
showStatus('');
|
showStatus('');
|
||||||
$('textarea#message').text($('div#cleartext').text());
|
$('textarea#message').text($('div#cleartext').text());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create a new paste.
|
/**
|
||||||
function newPaste()
|
* Create a new paste.
|
||||||
{
|
*/
|
||||||
|
function newPaste() {
|
||||||
stateNewPaste();
|
stateNewPaste();
|
||||||
showStatus('');
|
showStatus('');
|
||||||
$('textarea#message').text('');
|
$('textarea#message').text('');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Display an error message
|
/**
|
||||||
// (We use the same function for paste and reply to comments)
|
* Display an error message
|
||||||
function showError(message)
|
* (We use the same function for paste and reply to comments)
|
||||||
{
|
*/
|
||||||
|
function showError(message) {
|
||||||
$('div#status').addClass('errorMessage').text(message);
|
$('div#status').addClass('errorMessage').text(message);
|
||||||
$('div#replystatus').addClass('errorMessage').text(message);
|
$('div#replystatus').addClass('errorMessage').text(message);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Display status
|
/**
|
||||||
// (We use the same function for paste and reply to comments)
|
* Display status
|
||||||
// message (string) = text to display
|
* (We use the same function for paste and reply to comments)
|
||||||
// spin (boolean, optional) = tell if the "spinning" animation should be displayed.
|
*
|
||||||
function showStatus(message,spin)
|
* @param string message : text to display
|
||||||
{
|
* @param boolean spin (optional) : tell if the "spinning" animation should be displayed.
|
||||||
|
*/
|
||||||
|
function showStatus(message, spin) {
|
||||||
$('div#replystatus').removeClass('errorMessage');
|
$('div#replystatus').removeClass('errorMessage');
|
||||||
$('div#replystatus').text(message);
|
$('div#replystatus').text(message);
|
||||||
if (!message) { $('div#status').html(' '); return; }
|
if (!message) {
|
||||||
if (message=='') { $('div#status').html(' '); return; }
|
$('div#status').html(' ');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (message == '') {
|
||||||
|
$('div#status').html(' ');
|
||||||
|
return;
|
||||||
|
}
|
||||||
$('div#status').removeClass('errorMessage');
|
$('div#status').removeClass('errorMessage');
|
||||||
$('div#status').text(message);
|
$('div#status').text(message);
|
||||||
if (spin)
|
if (spin) {
|
||||||
{
|
var img = '<img src="img/busy.gif" style="width:16px;height:9px;margin:0px 4px 0px 0px;" />';
|
||||||
var img = '<img src="lib/busy.gif" style="width:16px;height:9px;margin:0px 4px 0px 0px;" />';
|
|
||||||
$('div#status').prepend(img);
|
$('div#status').prepend(img);
|
||||||
$('div#replystatus').prepend(img);
|
$('div#replystatus').prepend(img);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Generate link to URL shortener.
|
/**
|
||||||
function shortenUrl(url)
|
* Generate link to URL shortener.
|
||||||
{
|
*/
|
||||||
return 'http://snipurl.com/site/snip?link='+encodeURIComponent(url);
|
function shortenUrl(url) {
|
||||||
|
return 'http://snipurl.com/site/snip?link=' + encodeURIComponent(url);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Convert URLs to clickable links.
|
/**
|
||||||
// Input: element : a jQuery DOM element.
|
* Convert URLs to clickable links.
|
||||||
// Example URLs to handle:
|
* URLs to handle:
|
||||||
// magnet:?xt.1=urn:sha1:YNCKHTQCWBTRNJIV4WNAE52SJUQCZO5C&xt.2=urn:sha1:TXGCZQTH26NL6OUQAJJPFALHG2LTGBC7
|
* <code>
|
||||||
// http://localhost:8800/zero/?6f09182b8ea51997#WtLEUO5Epj9UHAV9JFs+6pUQZp13TuspAUjnF+iM+dM=
|
* magnet:?xt.1=urn:sha1:YNCKHTQCWBTRNJIV4WNAE52SJUQCZO5C&xt.2=urn:sha1:TXGCZQTH26NL6OUQAJJPFALHG2LTGBC7
|
||||||
// http://user:password@localhost:8800/zero/?6f09182b8ea51997#WtLEUO5Epj9UHAV9JFs+6pUQZp13TuspAUjnF+iM+dM=
|
* http://localhost:8800/zero/?6f09182b8ea51997#WtLEUO5Epj9UHAV9JFs+6pUQZp13TuspAUjnF+iM+dM=
|
||||||
// FIXME: add ppa & apt links.
|
* http://user:password@localhost:8800/zero/?6f09182b8ea51997#WtLEUO5Epj9UHAV9JFs+6pUQZp13TuspAUjnF+iM+dM=
|
||||||
function urls2links(element)
|
* </code>
|
||||||
{
|
*
|
||||||
|
* @param object element : a jQuery DOM element.
|
||||||
|
* @FIXME: add ppa & apt links.
|
||||||
|
*/
|
||||||
|
function urls2links(element) {
|
||||||
var re = /((http|https|ftp):\/\/[\w?=&.\/-;#@~%+-]+(?![\w\s?&.\/;#~%"=-]*>))/ig;
|
var re = /((http|https|ftp):\/\/[\w?=&.\/-;#@~%+-]+(?![\w\s?&.\/;#~%"=-]*>))/ig;
|
||||||
element.html(element.html().replace(re,'<a href="$1" rel="nofollow">$1</a>'));
|
element.html(element.html().replace(re,'<a href="$1" rel="nofollow">$1</a>'));
|
||||||
var re = /((magnet):[\w?=&.\/-;#@~%+-]+)/ig;
|
var re = /((magnet):[\w?=&.\/-;#@~%+-]+)/ig;
|
||||||
element.html(element.html().replace(re,'<a href="$1">$1</a>'));
|
element.html(element.html().replace(re,'<a href="$1">$1</a>'));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return the deciphering key stored in anchor part of the URL
|
/**
|
||||||
function pageKey()
|
* Return the deciphering key stored in anchor part of the URL
|
||||||
{
|
*/
|
||||||
|
function pageKey() {
|
||||||
var key = window.location.hash.substring(1); // Get key
|
var key = window.location.hash.substring(1); // Get key
|
||||||
|
|
||||||
// Some stupid web 2.0 services and redirectors add data AFTER the anchor
|
// Some stupid web 2.0 services and redirectors add data AFTER the anchor
|
||||||
|
@ -334,31 +422,41 @@ function pageKey()
|
||||||
return key;
|
return key;
|
||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(function() {
|
||||||
|
|
||||||
$('select#pasteExpiration').change(function() {
|
$('select#pasteExpiration').change(function() {
|
||||||
if ($(this).val()=='burn') { $('div#opendisc').addClass('buttondisabled'); $('input#opendiscussion').attr('disabled',true); }
|
if ($(this).val() == 'burn') {
|
||||||
else { $('div#opendisc').removeClass('buttondisabled'); $('input#opendiscussion').removeAttr('disabled'); }
|
$('div#opendisc').addClass('buttondisabled');
|
||||||
|
$('input#opendiscussion').attr('disabled',true);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$('div#opendisc').removeClass('buttondisabled');
|
||||||
|
$('input#opendiscussion').removeAttr('disabled');
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
if ($('div#cipherdata').text().length>1) // Display an existing paste
|
// Display an existing paste
|
||||||
{
|
if ($('div#cipherdata').text().length > 1) {
|
||||||
if (window.location.hash.length==0) // Missing decryption key in URL ?
|
// Missing decryption key in URL ?
|
||||||
{
|
if (window.location.hash.length == 0) {
|
||||||
showError('Cannot decrypt paste: Decryption key missing in URL (Did you use a redirector or an URL shortener which strips part of the URL ?)');
|
showError('Cannot decrypt paste: Decryption key missing in URL (Did you use a redirector or an URL shortener which strips part of the URL ?)');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var messages = jQuery.parseJSON($('div#cipherdata').text()); // List of messages to display
|
|
||||||
stateExistingPaste(); // Show proper elements on screen.
|
// List of messages to display
|
||||||
displayMessages(pageKey(),messages);
|
var messages = jQuery.parseJSON($('div#cipherdata').text());
|
||||||
|
|
||||||
|
// Show proper elements on screen.
|
||||||
|
stateExistingPaste();
|
||||||
|
|
||||||
|
displayMessages(pageKey(), messages);
|
||||||
}
|
}
|
||||||
else if ($('div#errormessage').text().length>1) // Display error message from php code.
|
// Display error message from php code.
|
||||||
{
|
else if ($('div#errormessage').text().length>1) {
|
||||||
showError($('div#errormessage').text());
|
showError($('div#errormessage').text());
|
||||||
}
|
}
|
||||||
else // Create a new paste.
|
// Create a new paste.
|
||||||
{
|
else {
|
||||||
newPaste();
|
newPaste();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue