2012-04-22 06:45:45 -04:00
/ * *
2012-04-30 16:58:08 -04:00
* ZeroBin
2012-04-23 10:30:02 -04:00
*
2012-04-30 16:58:08 -04:00
* a zero - knowledge paste bin
*
* @ link http : //sebsauvage.net/wiki/doku.php?id=php:zerobin
* @ copyright 2012 Sébastien SAUVAGE ( sebsauvage . net )
* @ license http : //www.opensource.org/licenses/zlib-license.php The zlib/libpng License
2013-07-04 19:14:23 -04:00
* @ version 0.19
2012-04-22 06:45:45 -04:00
* /
2012-04-21 15:59:45 -04:00
// Immediately start random number generator collector.
sjcl . random . startCollectors ( ) ;
2012-04-22 06:45:45 -04:00
/ * *
* Converts a duration ( in seconds ) into human readable format .
2012-04-23 10:30:02 -04:00
*
2012-04-22 06:45:45 -04:00
* @ param int seconds
* @ return string
* /
2015-08-22 11:23:41 -04:00
function secondsToHuman ( seconds ) {
if ( seconds < 60 ) {
var v = Math . floor ( seconds ) ;
return v + ' second' + ( ( v > 1 ) ? 's' : '' ) ;
}
if ( seconds < 60 * 60 ) {
var v = Math . floor ( seconds / 60 ) ;
return v + ' minute' + ( ( v > 1 ) ? 's' : '' ) ;
}
if ( seconds < 60 * 60 * 24 ) {
var v = Math . floor ( seconds / ( 60 * 60 ) ) ;
return v + ' hour' + ( ( v > 1 ) ? 's' : '' ) ;
}
2012-04-21 15:59:45 -04:00
// If less than 2 months, display in days:
2015-08-22 11:23:41 -04:00
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' : '' ) ;
2012-04-21 15:59:45 -04:00
}
2012-07-28 15:35:14 -04:00
/ * *
* Converts an associative array to an encoded string
* for appending to the anchor .
*
* @ param object associative _array Object to be serialized
* @ return string
* /
2015-08-22 11:23:41 -04:00
function hashToParameterString ( associativeArray ) {
var parameterString = ""
for ( key in associativeArray ) {
if ( parameterString === "" ) {
parameterString = encodeURIComponent ( key ) ;
parameterString += "=" + encodeURIComponent ( associativeArray [ key ] ) ;
} else {
parameterString += "&" + encodeURIComponent ( key ) ;
parameterString += "=" + encodeURIComponent ( associativeArray [ key ] ) ;
}
2012-07-28 15:35:14 -04:00
}
2015-08-22 11:23:41 -04:00
//padding for URL shorteners
parameterString += "&p=p" ;
return parameterString ;
2012-07-28 15:35:14 -04:00
}
/ * *
* Converts a string to an associative array .
*
* @ param string parameter _string String containing parameters
* @ return object
* /
2015-08-22 11:23:41 -04:00
function parameterStringToHash ( parameterString ) {
var parameterHash = { } ;
var parameterArray = parameterString . split ( "&" ) ;
for ( var i = 0 ; i < parameterArray . length ; i ++ ) {
//var currentParamterString = decodeURIComponent(parameterArray[i]);
var pair = parameterArray [ i ] . split ( "=" ) ;
var key = decodeURIComponent ( pair [ 0 ] ) ;
var value = decodeURIComponent ( pair [ 1 ] ) ;
parameterHash [ key ] = value ;
}
return parameterHash ;
2012-07-28 15:35:14 -04:00
}
/ * *
* Get an associative array of the parameters found in the anchor
*
* @ return object
* * /
2015-08-22 11:23:41 -04:00
function getParameterHash ( ) {
var hashIndex = window . location . href . indexOf ( "#" ) ;
if ( hashIndex >= 0 ) {
return parameterStringToHash ( window . location . href . substring ( hashIndex + 1 ) ) ;
} else {
return { } ;
}
2012-07-28 15:35:14 -04:00
}
2012-04-22 06:45:45 -04:00
/ * *
* Compress a message ( deflate compression ) . Returns base64 encoded data .
2012-04-23 10:30:02 -04:00
*
2012-04-22 06:45:45 -04:00
* @ param string message
* @ return base64 string data
* /
function compress ( message ) {
2015-08-22 11:23:41 -04:00
return Base64 . toBase64 ( RawDeflate . deflate ( Base64 . utob ( message ) ) ) ;
2012-04-22 06:45:45 -04:00
}
2012-04-21 15:59:45 -04:00
2012-04-22 06:45:45 -04:00
/ * *
* Decompress a message compressed with compress ( ) .
* /
function decompress ( data ) {
2015-08-22 11:23:41 -04:00
return Base64 . btou ( RawDeflate . inflate ( Base64 . fromBase64 ( data ) ) ) ;
2012-04-22 06:45:45 -04:00
}
/ * *
* Compress , then encrypt message with key .
2012-04-23 10:30:02 -04:00
*
2012-04-22 06:45:45 -04:00
* @ param string key
* @ param string message
* @ return encrypted string data
* /
function zeroCipher ( key , message ) {
2015-08-22 11:23:41 -04:00
if ( $ ( 'input#password' ) . val ( ) . length == 0 ) {
return sjcl . encrypt ( key , compress ( message ) ) ;
}
return sjcl . encrypt ( key + sjcl . codec . hex . fromBits ( sjcl . hash . sha256 . hash ( $ ( "input#password" ) . val ( ) ) ) , compress ( message ) ) ;
2012-04-21 15:59:45 -04:00
}
2013-02-23 09:11:45 -05:00
2012-04-22 06:45:45 -04:00
/ * *
* Decrypt message with key , then decompress .
2012-04-23 10:30:02 -04:00
*
2012-04-22 06:45:45 -04:00
* @ param key
* @ param encrypted string data
* @ return string readable message
* /
function zeroDecipher ( key , data ) {
2015-08-22 11:23:41 -04:00
if ( data != undefined ) {
try {
return decompress ( sjcl . decrypt ( key , data ) ) ;
} catch ( err ) {
var password = prompt ( "Please enter the password for this paste." , "" ) ;
return decompress ( sjcl . decrypt ( key + sjcl . codec . hex . fromBits ( sjcl . hash . sha256 . hash ( password ) ) , data ) ) ;
}
}
2012-04-21 15:59:45 -04:00
}
2012-04-22 06:45:45 -04:00
/ * *
* @ return the current script location ( without search or hash part of the URL ) .
* eg . http : //server.com/zero/?aaaa#bbbb --> http://server.com/zero/
* /
function scriptLocation ( ) {
2015-08-22 11:23:41 -04:00
var scriptLocation = window . location . href . substring ( 0 , window . location . href . length
- window . location . search . length - window . location . hash . length ) ;
var hashIndex = scriptLocation . indexOf ( "#" ) ;
if ( hashIndex !== - 1 ) {
scriptLocation = scriptLocation . substring ( 0 , hashIndex )
}
return scriptLocation
2012-04-21 15:59:45 -04:00
}
2012-04-23 10:30:02 -04:00
/ * *
2012-04-22 06:45:45 -04:00
* @ return the paste unique identifier from the URL
* eg . 'c05354954c49a487'
* /
function pasteID ( ) {
2012-04-21 15:59:45 -04:00
return window . location . search . substring ( 1 ) ;
}
2013-07-04 19:14:23 -04:00
function htmlEntities ( str ) {
return String ( str ) . replace ( /&/g , '&' ) . replace ( /</g , '<' ) . replace ( />/g , '>' ) . replace ( /"/g , '"' ) ;
}
2012-04-22 06:45:45 -04:00
/ * *
* Set text of a DOM element ( required for IE )
* This is equivalent to element . text ( text )
* @ param object element : a DOM element .
* @ param string text : the text to enter .
* /
function setElementText ( element , text ) {
// For IE<10.
if ( $ ( 'div#oldienotice' ) . is ( ":visible" ) ) {
2013-02-24 15:59:10 -05:00
// IE<10 does not support white-space:pre-wrap; so we have to do this BIG UGLY STINKING THING.
2015-08-22 11:23:41 -04:00
var html = htmlEntities ( text ) . replace ( /\n/ig , "\r\n<br>" ) ;
element . html ( '<pre>' + html + '</pre>' ) ;
2012-04-21 15:59:45 -04:00
}
2012-04-22 06:45:45 -04:00
// for other (sane) browsers:
else {
2012-04-21 15:59:45 -04:00
element . text ( text ) ;
}
}
2012-04-22 06:45:45 -04:00
/ * *
* Show decrypted text in the display area , including discussion ( if open )
2012-04-23 10:30:02 -04:00
*
2012-04-22 06:45:45 -04:00
* @ param string key : decryption key
* @ param array comments : Array of messages to display ( items = array with keys ( 'data' , 'meta' )
* /
function displayMessages ( key , comments ) {
2012-04-21 15:59:45 -04:00
try { // Try to decrypt the paste.
2012-04-23 10:30:02 -04:00
var cleartext = zeroDecipher ( key , comments [ 0 ] . data ) ;
2015-08-22 11:23:41 -04:00
} catch ( err ) {
2012-08-25 18:49:11 -04:00
$ ( 'div#cleartext' ) . addClass ( 'hidden' ) ;
$ ( 'div#prettymessage' ) . addClass ( 'hidden' ) ;
$ ( 'button#clonebutton' ) . addClass ( 'hidden' ) ;
2012-04-23 10:30:02 -04:00
showError ( 'Could not decrypt data (Wrong key ?)' ) ;
2012-04-21 15:59:45 -04:00
return ;
}
2012-04-22 06:45:45 -04:00
setElementText ( $ ( 'div#cleartext' ) , cleartext ) ;
2012-04-29 12:27:00 -04:00
setElementText ( $ ( 'pre#prettyprint' ) , cleartext ) ;
2012-04-21 15:59:45 -04:00
urls2links ( $ ( 'div#cleartext' ) ) ; // Convert URLs to clickable links.
2012-04-29 12:27:00 -04:00
prettyPrint ( ) ;
2012-04-23 10:30:02 -04:00
2012-04-21 15:59:45 -04:00
// Display paste expiration.
2015-08-22 11:23:41 -04:00
if ( comments [ 0 ] . meta . expire _date ) $ ( 'div#remainingtime' ) . removeClass ( 'foryoureyesonly' ) . text ( 'This document will expire in ' + secondsToHuman ( comments [ 0 ] . meta . remaining _time ) + '.' ) . removeClass ( 'hidden' ) ;
2012-04-22 06:45:45 -04:00
if ( comments [ 0 ] . meta . burnafterreading ) {
2012-08-28 17:28:41 -04:00
$ ( 'div#remainingtime' ) . addClass ( 'foryoureyesonly' ) . text ( 'FOR YOUR EYES ONLY. Don\'t close this window, this message can\'t be displayed again.' ) . removeClass ( 'hidden' ) ;
2012-08-25 18:49:11 -04:00
$ ( 'button#clonebutton' ) . addClass ( 'hidden' ) ; // Discourage cloning (as it can't really be prevented).
2012-04-21 15:59:45 -04:00
}
2012-04-23 10:30:02 -04:00
// If the discussion is opened on this paste, display it.
2012-04-22 06:45:45 -04:00
if ( comments [ 0 ] . meta . opendiscussion ) {
2012-04-21 15:59:45 -04:00
$ ( 'div#comments' ) . html ( '' ) ;
2012-04-23 10:30:02 -04:00
// For each comment.
2012-04-22 06:45:45 -04:00
for ( var i = 1 ; i < comments . length ; i ++ ) {
2015-08-22 11:23:41 -04:00
var comment = comments [ i ] ;
var cleartext = "[Could not decrypt comment ; Wrong key ?]" ;
2012-04-22 06:45:45 -04:00
try {
2012-04-23 10:30:02 -04:00
cleartext = zeroDecipher ( key , comment . data ) ;
2015-08-22 11:23:41 -04:00
} catch ( err ) {
}
2012-04-21 15:59:45 -04:00
var place = $ ( 'div#comments' ) ;
// If parent comment exists, display below (CSS will automatically shift it right.)
2015-08-22 11:23:41 -04:00
var cname = 'div#comment_' + comment . meta . parentid
2012-04-23 10:30:02 -04:00
2012-04-22 06:45:45 -04:00
// If the element exists in page
if ( $ ( cname ) . length ) {
place = $ ( cname ) ;
}
2015-08-22 11:23:41 -04:00
var divComment = $ ( '<article><div class="comment" id="comment_' + comment . meta . commentid + '">'
+ '<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></article>' ) ;
2012-04-22 06:45:45 -04:00
setElementText ( divComment . find ( 'div.commentdata' ) , cleartext ) ;
// Convert URLs to clickable links in comment.
urls2links ( divComment . find ( 'div.commentdata' ) ) ;
2012-04-21 15:59:45 -04:00
divComment . find ( 'span.nickname' ) . html ( '<i>(Anonymous)</i>' ) ;
2012-04-23 10:30:02 -04:00
2012-04-21 15:59:45 -04:00
// Try to get optional nickname:
2012-04-23 10:30:02 -04:00
try {
2012-04-22 06:45:45 -04:00
divComment . find ( 'span.nickname' ) . text ( zeroDecipher ( key , comment . meta . nickname ) ) ;
2015-08-22 11:23:41 -04:00
} catch ( err ) {
}
divComment . find ( 'span.commentdate' ) . text ( ' (' + ( new Date ( comment . meta . postdate * 1000 ) . toString ( ) ) + ')' ) . attr ( 'title' , 'CommentID: ' + comment . meta . commentid ) ;
2012-04-23 10:30:02 -04:00
2012-04-21 15:59:45 -04:00
// If an avatar is available, display it.
2012-04-22 06:45:45 -04:00
if ( comment . meta . vizhash ) {
divComment . find ( 'span.nickname' ) . before ( '<img src="' + comment . meta . vizhash + '" class="vizhash" title="Anonymous avatar (Vizhash of the IP address)" />' ) ;
}
2012-04-23 10:30:02 -04:00
2012-04-21 15:59:45 -04:00
place . append ( divComment ) ;
}
2012-04-22 06:45:45 -04:00
$ ( 'div#comments' ) . append ( '<div class="comment"><button onclick="open_reply($(this),\'' + pasteID ( ) + '\');return false;">Add comment</button></div>' ) ;
2012-08-25 18:49:11 -04:00
$ ( 'div#discussion' ) . removeClass ( 'hidden' ) ;
2012-04-21 15:59:45 -04:00
}
}
2012-04-22 06:45:45 -04:00
/ * *
* Open the comment entry when clicking the "Reply" button of a comment .
* @ param object source : element which emitted the event .
* @ param string commentid = identifier of the comment we want to reply to .
* /
function open _reply ( source , commentid ) {
2012-04-21 15:59:45 -04:00
$ ( 'div.reply' ) . remove ( ) ; // Remove any other reply area.
source . after ( '<div class="reply">'
2015-08-22 11:23:41 -04:00
+ '<input type="text" id="nickname" title="Optional nickname..." value="Optional nickname..." />'
+ '<textarea id="replymessage" class="replymessage" cols="80" rows="7"></textarea>'
+ '<br /><button id="replybutton" onclick="send_comment(\'' + commentid + '\');return false;">Post comment</button>'
+ '<div id="replystatus"> </div>'
+ '</div>' ) ;
$ ( 'input#nickname' ) . focus ( function ( ) {
2012-04-22 06:45:45 -04:00
if ( $ ( this ) . val ( ) == $ ( this ) . attr ( 'title' ) ) {
$ ( this ) . val ( '' ) ;
}
2012-04-23 10:30:02 -04:00
} ) ;
2012-04-21 15:59:45 -04:00
$ ( 'textarea#replymessage' ) . focus ( ) ;
}
2012-04-22 06:45:45 -04:00
/ * *
* Send a reply in a discussion .
* @ param string parentid : the comment identifier we want to send a reply to .
* /
function send _comment ( parentid ) {
// Do not send if no data.
2015-08-22 11:23:41 -04:00
if ( $ ( 'textarea#replymessage' ) . val ( ) . length == 0 ) {
2012-04-22 06:45:45 -04:00
return ;
}
2012-04-23 10:30:02 -04:00
2015-08-22 11:23:41 -04:00
showStatus ( 'Sending comment...' , spin = true ) ;
2012-04-22 06:45:45 -04:00
var cipherdata = zeroCipher ( pageKey ( ) , $ ( 'textarea#replymessage' ) . val ( ) ) ;
var ciphernickname = '' ;
2015-08-22 11:23:41 -04:00
var nick = $ ( 'input#nickname' ) . val ( ) ;
2012-04-22 06:45:45 -04:00
if ( nick != '' && nick != 'Optional nickname...' ) {
2012-04-22 14:43:11 -04:00
ciphernickname = zeroCipher ( pageKey ( ) , nick ) ;
2012-04-22 06:45:45 -04:00
}
2015-08-22 11:23:41 -04:00
var data _to _send = {
data : cipherdata ,
parentid : parentid ,
pasteid : pasteID ( ) ,
nickname : ciphernickname
} ;
2012-04-21 15:59:45 -04:00
2012-04-22 14:43:11 -04:00
$ . post ( scriptLocation ( ) , data _to _send , 'json' )
2015-08-22 11:23:41 -04:00
. error ( function ( ) {
showError ( 'Comment could not be sent (server error or not responding).' ) ;
} )
. success ( function ( data ) {
if ( data . status == 0 ) {
showStatus ( 'Comment posted.' ) ;
location . reload ( ) ;
}
else if ( data . status == 1 ) {
showError ( 'Could not post comment: ' + data . message ) ;
}
else {
showError ( 'Could not post comment.' ) ;
}
} ) ;
2013-02-23 09:11:45 -05:00
}
2012-04-22 06:45:45 -04:00
2013-02-24 15:59:10 -05:00
2012-04-22 06:45:45 -04:00
/ * *
* Send a new paste to server
* /
function send _data ( ) {
// Do not send if no data.
if ( $ ( 'textarea#message' ) . val ( ) . length == 0 ) {
return ;
}
2013-02-24 15:59:10 -05:00
// If sjcl has not collected enough entropy yet, display a message.
2015-08-22 11:23:41 -04:00
if ( ! sjcl . random . isReady ( ) ) {
showStatus ( 'Sending paste (Please move your mouse for more entropy)...' , spin = true ) ;
sjcl . random . addEventListener ( 'seeded' , function ( ) {
send _data ( ) ;
} ) ;
return ;
2013-02-24 15:59:10 -05:00
}
2015-08-22 11:23:41 -04:00
showStatus ( 'Sending paste...' , spin = true ) ;
2013-02-24 15:59:10 -05:00
2012-04-22 06:45:45 -04:00
var randomkey = sjcl . codec . base64 . fromBits ( sjcl . random . randomWords ( 8 , 0 ) , 0 ) ;
var cipherdata = zeroCipher ( randomkey , $ ( 'textarea#message' ) . val ( ) ) ;
2015-08-22 11:23:41 -04:00
var data _to _send = {
data : cipherdata ,
expire : $ ( 'select#pasteExpiration' ) . val ( ) ,
burnafterreading : $ ( 'input#burnafterreading' ) . is ( ':checked' ) ? 1 : 0 ,
opendiscussion : $ ( 'input#opendiscussion' ) . is ( ':checked' ) ? 1 : 0
} ;
2012-04-22 14:43:11 -04:00
$ . post ( scriptLocation ( ) , data _to _send , 'json' )
2015-08-22 11:23:41 -04:00
. error ( function ( ) {
showError ( 'Data could not be sent (serveur error or not responding).' ) ;
} )
. success ( function ( data ) {
if ( data . status == 0 ) {
stateExistingPaste ( ) ;
var url = scriptLocation ( ) + "?" + data . id + '#' + randomkey ;
var deleteUrl = scriptLocation ( ) + "?pasteid=" + data . id + '&deletetoken=' + data . deletetoken ;
showStatus ( '' ) ;
$ ( 'div#pastelink' ) . html ( 'Your paste is <a id="pasteurl" href="' + url + '">' + url + '</a> <span id="copyhint">(Hit CTRL+C to copy)</span>' ) ;
$ ( 'div#deletelink' ) . html ( '<a href="' + deleteUrl + '">Delete data</a>' ) ;
$ ( 'div#pasteresult' ) . removeClass ( 'hidden' ) ;
selectText ( 'pasteurl' ) ; // We pre-select the link so that the user only has to CTRL+C the link.
setElementText ( $ ( 'div#cleartext' ) , $ ( 'textarea#message' ) . val ( ) ) ;
setElementText ( $ ( 'pre#prettyprint' ) , $ ( 'textarea#message' ) . val ( ) ) ;
urls2links ( $ ( 'div#cleartext' ) ) ;
showStatus ( '' ) ;
prettyPrint ( ) ;
}
else if ( data . status == 1 ) {
showError ( 'Could not create paste: ' + data . message ) ;
}
else {
showError ( 'Could not create paste.' ) ;
}
} ) ;
2013-02-23 09:11:45 -05:00
}
/ * * T e x t r a n g e s e l e c t i o n .
* From : http : //stackoverflow.com/questions/985272/jquery-selecting-text-in-an-element-akin-to-highlighting-with-your-mouse
* @ param string element : Indentifier of the element to select ( id = "" ) .
* /
function selectText ( element ) {
var doc = document
, text = doc . getElementById ( element )
, range , selection
2015-08-22 11:23:41 -04:00
;
2013-02-23 09:11:45 -05:00
if ( doc . body . createTextRange ) { //ms
range = doc . body . createTextRange ( ) ;
range . moveToElementText ( text ) ;
range . select ( ) ;
} else if ( window . getSelection ) { //all others
2015-08-22 11:23:41 -04:00
selection = window . getSelection ( ) ;
2013-02-23 09:11:45 -05:00
range = doc . createRange ( ) ;
range . selectNodeContents ( text ) ;
selection . removeAllRanges ( ) ;
selection . addRange ( range ) ;
}
2012-04-21 15:59:45 -04:00
}
2012-04-22 06:45:45 -04:00
/ * *
* Put the screen in "New paste" mode .
* /
function stateNewPaste ( ) {
2012-08-25 18:49:11 -04:00
$ ( 'button#sendbutton' ) . removeClass ( 'hidden' ) ;
$ ( 'button#clonebutton' ) . addClass ( 'hidden' ) ;
2013-02-24 10:29:13 -05:00
$ ( 'button#rawtextbutton' ) . addClass ( 'hidden' ) ;
2012-08-25 18:49:11 -04:00
$ ( 'div#expiration' ) . removeClass ( 'hidden' ) ;
$ ( 'div#remainingtime' ) . addClass ( 'hidden' ) ;
2013-02-24 08:33:51 -05:00
$ ( 'div#burnafterreadingoption' ) . removeClass ( 'hidden' ) ;
2012-08-25 18:49:11 -04:00
$ ( 'div#opendisc' ) . removeClass ( 'hidden' ) ;
2015-08-22 11:23:41 -04:00
$ ( '#password' ) . show ( ) ;
2012-08-25 18:49:11 -04:00
$ ( 'button#newbutton' ) . removeClass ( 'hidden' ) ;
2013-10-31 20:15:14 -04:00
$ ( 'div#pasteresult' ) . addClass ( 'hidden' ) ;
2012-04-21 15:59:45 -04:00
$ ( 'textarea#message' ) . text ( '' ) ;
2012-08-25 18:49:11 -04:00
$ ( 'textarea#message' ) . removeClass ( 'hidden' ) ;
$ ( 'div#cleartext' ) . addClass ( 'hidden' ) ;
$ ( 'textarea#message' ) . focus ( ) ;
$ ( 'div#discussion' ) . addClass ( 'hidden' ) ;
$ ( 'div#prettymessage' ) . addClass ( 'hidden' ) ;
2012-04-21 15:59:45 -04:00
}
2012-04-22 06:45:45 -04:00
/ * *
* Put the screen in "Existing paste" mode .
* /
function stateExistingPaste ( ) {
2012-08-25 18:49:11 -04:00
$ ( 'button#sendbutton' ) . addClass ( 'hidden' ) ;
2012-04-23 10:30:02 -04:00
2012-04-22 06:45:45 -04:00
// No "clone" for IE<10.
2012-04-22 14:43:11 -04:00
if ( $ ( 'div#oldienotice' ) . is ( ":visible" ) ) {
2012-08-25 18:49:11 -04:00
$ ( 'button#clonebutton' ) . addClass ( 'hidden' ) ;
2012-04-22 14:43:11 -04:00
}
else {
2012-08-25 18:49:11 -04:00
$ ( 'button#clonebutton' ) . removeClass ( 'hidden' ) ;
2012-04-22 06:45:45 -04:00
}
2015-08-15 15:39:08 -04:00
$ ( 'button#rawtextbutton' ) . removeClass ( 'hidden' ) ;
2012-04-23 10:30:02 -04:00
2012-08-25 18:49:11 -04:00
$ ( 'div#expiration' ) . addClass ( 'hidden' ) ;
2013-02-24 08:33:51 -05:00
$ ( 'div#burnafterreadingoption' ) . addClass ( 'hidden' ) ;
2012-08-25 18:49:11 -04:00
$ ( 'div#opendisc' ) . addClass ( 'hidden' ) ;
$ ( 'button#newbutton' ) . removeClass ( 'hidden' ) ;
2013-10-31 20:15:14 -04:00
$ ( 'div#pasteresult' ) . addClass ( 'hidden' ) ;
2012-08-25 18:49:11 -04:00
$ ( 'textarea#message' ) . addClass ( 'hidden' ) ;
$ ( 'div#cleartext' ) . addClass ( 'hidden' ) ;
$ ( 'div#prettymessage' ) . removeClass ( 'hidden' ) ;
2012-04-21 15:59:45 -04:00
}
2013-02-24 10:29:13 -05:00
/ * * R e t u r n r a w t e x t
2015-08-22 11:23:41 -04:00
* /
function rawText ( ) {
2014-01-20 15:06:31 -05:00
var paste = $ ( 'div#cleartext' ) . html ( ) ;
var newDoc = document . open ( 'text/html' , 'replace' ) ;
2015-08-22 11:23:41 -04:00
newDoc . write ( '<pre>' + paste + '</pre>' ) ;
2013-02-24 10:29:13 -05:00
newDoc . close ( ) ;
}
2012-04-22 06:45:45 -04:00
/ * *
* Clone the current paste .
* /
function clonePaste ( ) {
2012-04-21 15:59:45 -04:00
stateNewPaste ( ) ;
2015-08-22 11:23:41 -04:00
2012-05-10 14:35:33 -04:00
//Erase the id and the key in url
history . replaceState ( document . title , document . title , scriptLocation ( ) ) ;
2015-08-22 11:23:41 -04:00
2012-04-21 15:59:45 -04:00
showStatus ( '' ) ;
$ ( 'textarea#message' ) . text ( $ ( 'div#cleartext' ) . text ( ) ) ;
}
2012-04-22 06:45:45 -04:00
/ * *
* Create a new paste .
* /
function newPaste ( ) {
2012-04-21 15:59:45 -04:00
stateNewPaste ( ) ;
showStatus ( '' ) ;
$ ( 'textarea#message' ) . text ( '' ) ;
}
2012-04-22 06:45:45 -04:00
/ * *
* Display an error message
* ( We use the same function for paste and reply to comments )
* /
function showError ( message ) {
2012-04-21 15:59:45 -04:00
$ ( 'div#status' ) . addClass ( 'errorMessage' ) . text ( message ) ;
$ ( 'div#replystatus' ) . addClass ( 'errorMessage' ) . text ( message ) ;
}
2012-04-22 06:45:45 -04:00
/ * *
* Display status
* ( We use the same function for paste and reply to comments )
2012-04-23 10:30:02 -04:00
*
2012-04-22 06:45:45 -04:00
* @ param string message : text to display
* @ param boolean spin ( optional ) : tell if the "spinning" animation should be displayed .
* /
function showStatus ( message , spin ) {
2012-04-21 15:59:45 -04:00
$ ( 'div#replystatus' ) . removeClass ( 'errorMessage' ) ;
$ ( 'div#replystatus' ) . text ( message ) ;
2012-04-23 10:30:02 -04:00
if ( ! message ) {
2012-08-25 18:49:11 -04:00
$ ( 'div#status' ) . html ( ' ' ) ;
2012-04-22 06:45:45 -04:00
return ;
}
if ( message == '' ) {
2012-08-25 18:49:11 -04:00
$ ( 'div#status' ) . html ( ' ' ) ;
2012-04-23 10:30:02 -04:00
return ;
2012-04-22 06:45:45 -04:00
}
2012-04-21 15:59:45 -04:00
$ ( 'div#status' ) . removeClass ( 'errorMessage' ) ;
$ ( 'div#status' ) . text ( message ) ;
2012-04-22 06:45:45 -04:00
if ( spin ) {
var img = '<img src="img/busy.gif" style="width:16px;height:9px;margin:0px 4px 0px 0px;" />' ;
2012-04-21 15:59:45 -04:00
$ ( 'div#status' ) . prepend ( img ) ;
$ ( 'div#replystatus' ) . prepend ( img ) ;
}
}
2012-04-22 06:45:45 -04:00
/ * *
* Convert URLs to clickable links .
* URLs to handle :
* < code >
* magnet : ? xt . 1 = urn : sha1 : YNCKHTQCWBTRNJIV4WNAE52SJUQCZO5C & xt . 2 = urn : sha1 : TXGCZQTH26NL6OUQAJJPFALHG2LTGBC7
* http : //localhost:8800/zero/?6f09182b8ea51997#WtLEUO5Epj9UHAV9JFs+6pUQZp13TuspAUjnF+iM+dM=
* http : //user:password@localhost:8800/zero/?6f09182b8ea51997#WtLEUO5Epj9UHAV9JFs+6pUQZp13TuspAUjnF+iM+dM=
* < / c o d e >
2012-04-23 10:30:02 -04:00
*
2012-04-22 06:45:45 -04:00
* @ param object element : a jQuery DOM element .
* @ FIXME : add ppa & apt links .
* /
function urls2links ( element ) {
2012-04-21 15:59:45 -04:00
var re = /((http|https|ftp):\/\/[\w?=&.\/-;#@~%+-]+(?![\w\s?&.\/;#~%"=-]*>))/ig ;
2015-08-22 11:23:41 -04:00
element . html ( element . html ( ) . replace ( re , '<a href="$1" rel="nofollow">$1</a>' ) ) ;
2012-04-21 15:59:45 -04:00
var re = /((magnet):[\w?=&.\/-;#@~%+-]+)/ig ;
2015-08-22 11:23:41 -04:00
element . html ( element . html ( ) . replace ( re , '<a href="$1">$1</a>' ) ) ;
2012-04-21 15:59:45 -04:00
}
2012-04-22 06:45:45 -04:00
/ * *
* Return the deciphering key stored in anchor part of the URL
* /
function pageKey ( ) {
2012-04-21 15:59:45 -04:00
var key = window . location . hash . substring ( 1 ) ; // Get key
2012-04-23 10:30:02 -04:00
2012-04-21 15:59:45 -04:00
// Some stupid web 2.0 services and redirectors add data AFTER the anchor
// (such as &utm_source=...).
// We will strip any additional data.
2012-04-23 10:30:02 -04:00
2012-04-21 15:59:45 -04:00
// First, strip everything after the equal sign (=) which signals end of base64 string.
2015-08-22 11:23:41 -04:00
i = key . indexOf ( '=' ) ;
if ( i > - 1 ) {
key = key . substring ( 0 , i + 1 ) ;
}
2012-04-23 10:30:02 -04:00
2012-04-21 15:59:45 -04:00
// If the equal sign was not present, some parameters may remain:
2015-08-22 11:23:41 -04:00
i = key . indexOf ( '&' ) ;
if ( i > - 1 ) {
key = key . substring ( 0 , i ) ;
}
2012-04-23 10:30:02 -04:00
2012-04-21 15:59:45 -04:00
// Then add trailing equal sign if it's missing
2015-08-22 11:23:41 -04:00
if ( key . charAt ( key . length - 1 ) !== '=' ) key += '=' ;
2012-04-21 15:59:45 -04:00
return key ;
}
2015-08-22 11:23:41 -04:00
$ ( function ( ) {
2012-08-25 18:49:11 -04:00
// hide "no javascript" message
$ ( '#noscript' ) . hide ( ) ;
2013-02-24 08:33:51 -05:00
// If "burn after reading" is checked, disable discussion.
2015-08-22 11:23:41 -04:00
$ ( 'input#burnafterreading' ) . change ( function ( ) {
if ( $ ( this ) . is ( ':checked' ) ) {
2012-04-22 06:45:45 -04:00
$ ( 'div#opendisc' ) . addClass ( 'buttondisabled' ) ;
2013-02-24 08:33:51 -05:00
$ ( 'input#opendiscussion' ) . attr ( { checked : false } ) ;
2015-08-22 11:23:41 -04:00
$ ( 'input#opendiscussion' ) . attr ( 'disabled' , true ) ;
2012-04-22 06:45:45 -04:00
}
else {
$ ( 'div#opendisc' ) . removeClass ( 'buttondisabled' ) ;
$ ( 'input#opendiscussion' ) . removeAttr ( 'disabled' ) ;
}
2012-04-21 15:59:45 -04:00
} ) ;
2013-10-31 20:15:14 -04:00
// Display status returned by php code if any (eg. Paste was properly deleted.)
if ( $ ( 'div#status' ) . text ( ) . length > 0 ) {
2015-08-22 11:23:41 -04:00
showStatus ( $ ( 'div#status' ) . text ( ) , false ) ;
2013-10-31 20:15:14 -04:00
return ;
}
$ ( 'div#status' ) . html ( ' ' ) ; // Keep line height even if content empty.
2012-04-22 06:45:45 -04:00
// Display an existing paste
if ( $ ( 'div#cipherdata' ) . text ( ) . length > 1 ) {
2012-04-23 10:30:02 -04:00
// Missing decryption key in URL ?
2012-04-22 06:45:45 -04:00
if ( window . location . hash . length == 0 ) {
2012-04-21 15:59:45 -04:00
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 ;
}
2012-04-23 10:30:02 -04:00
2012-04-22 06:45:45 -04:00
// List of messages to display
var messages = jQuery . parseJSON ( $ ( 'div#cipherdata' ) . text ( ) ) ;
2012-04-23 10:30:02 -04:00
// Show proper elements on screen.
2012-04-22 06:45:45 -04:00
stateExistingPaste ( ) ;
2012-04-23 10:30:02 -04:00
2012-04-22 06:45:45 -04:00
displayMessages ( pageKey ( ) , messages ) ;
2012-04-21 15:59:45 -04:00
}
2012-04-22 06:45:45 -04:00
// Display error message from php code.
2015-08-22 11:23:41 -04:00
else if ( $ ( 'div#errormessage' ) . text ( ) . length > 1 ) {
2012-04-21 15:59:45 -04:00
showError ( $ ( 'div#errormessage' ) . text ( ) ) ;
}
2012-04-22 06:45:45 -04:00
// Create a new paste.
else {
2012-04-21 15:59:45 -04:00
newPaste ( ) ;
}
} ) ;