2012-04-22 06:45:45 -04:00
/ * *
2016-07-11 05:58:15 -04:00
* PrivateBin
2012-04-23 10:30:02 -04:00
*
2012-04-30 16:58:08 -04:00
* a zero - knowledge paste bin
*
2017-01-14 09:29:12 -05:00
* @ see { @ link https : //github.com/PrivateBin/PrivateBin}
* @ copyright 2012 Sébastien SAUVAGE ( { @ link http : //sebsauvage.net})
* @ license { @ link https : //www.opensource.org/licenses/zlib-license.php The zlib/libpng License}
2016-12-26 06:13:50 -05:00
* @ version 1.1
2017-01-14 09:29:12 -05:00
* @ name PrivateBin
* @ namespace
2012-04-22 06:45:45 -04:00
* /
2012-04-21 15:59:45 -04:00
2016-07-11 09:47:42 -04:00
/** global: Base64 */
/** global: FileReader */
/** global: RawDeflate */
/** global: history */
/** global: navigator */
/** global: prettyPrint */
/** global: prettyPrintOne */
/** global: showdown */
/** global: sjcl */
2015-09-06 07:07:46 -04:00
2012-04-21 15:59:45 -04:00
// Immediately start random number generator collector.
sjcl . random . startCollectors ( ) ;
2017-02-08 14:12:22 -05:00
jQuery . PrivateBin = function ( $ , sjcl , Base64 , RawDeflate ) {
2017-02-12 12:08:08 -05:00
'use strict' ;
2017-02-08 14:11:04 -05:00
/ * *
2017-02-08 14:12:22 -05:00
* static helper methods
2017-02-08 14:11:04 -05:00
*
2017-02-08 14:12:22 -05:00
* @ param { object } window
* @ param { object } document
* @ class
2017-02-08 14:11:04 -05:00
* /
2017-02-08 14:12:22 -05:00
var helper = ( function ( window , document ) {
var me = { } ;
/ * *
* character to HTML entity lookup table
*
* @ see { @ link https : //github.com/janl/mustache.js/blob/master/mustache.js#L60}
* @ private
* @ enum { Object }
* @ readonly
* /
var entityMap = {
'&' : '&' ,
'<' : '<' ,
'>' : '>' ,
'"' : '"' ,
"'" : ''' ,
'/' : '/' ,
'`' : '`' ,
'=' : '='
} ;
2015-09-05 11:12:11 -04:00
2017-02-08 14:12:22 -05:00
/ * *
* cache for script location
*
* @ private
* @ enum { string | null }
* /
var scriptLocation = null ;
/ * *
* converts a duration ( in seconds ) into human friendly approximation
*
* @ name helper . secondsToHuman
* @ function
* @ param { number } seconds
* @ return { Array }
* /
me . secondsToHuman = function ( seconds )
2017-02-08 14:11:04 -05:00
{
2017-02-08 14:12:22 -05:00
var v ;
if ( seconds < 60 )
{
v = Math . floor ( seconds ) ;
return [ v , 'second' ] ;
}
if ( seconds < 60 * 60 )
{
v = Math . floor ( seconds / 60 ) ;
return [ v , 'minute' ] ;
}
if ( seconds < 60 * 60 * 24 )
{
v = Math . floor ( seconds / ( 60 * 60 ) ) ;
return [ v , 'hour' ] ;
}
// If less than 2 months, display in days:
if ( seconds < 60 * 60 * 24 * 60 )
{
v = Math . floor ( seconds / ( 60 * 60 * 24 ) ) ;
return [ v , 'day' ] ;
}
v = Math . floor ( seconds / ( 60 * 60 * 24 * 30 ) ) ;
return [ v , 'month' ] ;
} ;
/ * *
* text range selection
*
* @ see { @ link https : //stackoverflow.com/questions/985272/jquery-selecting-text-in-an-element-akin-to-highlighting-with-your-mouse}
* @ name helper . selectText
* @ function
* @ param { HTMLElement } element
* /
me . selectText = function ( element )
2017-02-08 14:11:04 -05:00
{
2017-02-08 14:12:22 -05:00
var range , selection ;
2015-09-05 11:12:11 -04:00
2017-02-08 14:12:22 -05:00
// MS
if ( document . body . createTextRange )
{
range = document . body . createTextRange ( ) ;
range . moveToElementText ( element ) ;
range . select ( ) ;
}
// all others
else if ( window . getSelection )
{
selection = window . getSelection ( ) ;
range = document . createRange ( ) ;
range . selectNodeContents ( element ) ;
selection . removeAllRanges ( ) ;
selection . addRange ( range ) ;
}
} ;
2015-09-05 11:12:11 -04:00
2017-02-08 14:12:22 -05:00
/ * *
* set text of a jQuery element ( required for IE ) ,
*
* @ name helper . setElementText
* @ function
* @ param { jQuery } $element - a jQuery element
* @ param { string } text - the text to enter
* /
me . setElementText = function ( $element , text )
2015-09-12 11:33:16 -04:00
{
2017-02-13 05:35:04 -05:00
// @TODO: Can we drop IE 10 support? This function looks crazy and checking oldienotice slows everything down…
// I cannot really say, whether this IE10 method is XSS-safe…
2017-02-08 14:12:22 -05:00
// For IE<10: Doesn't support white-space:pre-wrap; so we have to do this...
if ( $ ( '#oldienotice' ) . is ( ':visible' ) ) {
var html = me . htmlEntities ( text ) . replace ( /\n/ig , '\r\n<br>' ) ;
$element . html ( '<pre>' + html + '</pre>' ) ;
}
// for other (sane) browsers:
else
{
$element . text ( text ) ;
}
} ;
2015-09-12 11:33:16 -04:00
2017-02-08 14:12:22 -05:00
/ * *
* convert URLs to clickable links .
* URLs to handle :
* < pre >
* magnet : ? xt . 1 = urn : sha1 : YNCKHTQCWBTRNJIV4WNAE52SJUQCZO5C & xt . 2 = urn : sha1 : TXGCZQTH26NL6OUQAJJPFALHG2LTGBC7
* http : //example.com:8800/zero/?6f09182b8ea51997#WtLEUO5Epj9UHAV9JFs+6pUQZp13TuspAUjnF+iM+dM=
* http : //user:example.com@localhost:8800/zero/?6f09182b8ea51997#WtLEUO5Epj9UHAV9JFs+6pUQZp13TuspAUjnF+iM+dM=
* < / p r e >
*
* @ name helper . urls2links
* @ function
* @ param { Object } element - a jQuery DOM element
* /
me . urls2links = function ( element )
2017-02-08 14:11:04 -05:00
{
2017-02-08 14:12:22 -05:00
var markup = '<a href="$1" rel="nofollow">$1</a>' ;
element . html (
element . html ( ) . replace (
/((http|https|ftp):\/\/[\w?=&.\/-;#@~%+-]+(?![\w\s?&.\/;#~%"=-]*>))/ig ,
markup
)
) ;
element . html (
element . html ( ) . replace (
/((magnet):[\w?=&.\/-;#@~%+-]+)/ig ,
markup
)
) ;
} ;
2017-02-08 14:11:04 -05:00
2017-02-08 14:12:22 -05:00
/ * *
* minimal sprintf emulation for % s and % d formats
*
* @ see { @ link https : //stackoverflow.com/questions/610406/javascript-equivalent-to-printf-string-format#4795914}
* @ name helper . sprintf
* @ function
* @ param { string } format
* @ param { ... * } args - one or multiple parameters injected into format string
* @ return { string }
* /
me . sprintf = function ( )
2017-02-08 14:11:04 -05:00
{
2017-02-08 14:12:22 -05:00
var args = arguments ;
if ( typeof arguments [ 0 ] === 'object' )
{
args = arguments [ 0 ] ;
}
var format = args [ 0 ] ,
i = 1 ;
return format . replace ( /%((%)|s|d)/g , function ( m ) {
// m is the matched format, e.g. %s, %d
var val ;
if ( m [ 2 ] ) {
val = m [ 2 ] ;
} else {
val = args [ i ] ;
// A switch statement so that the formatter can be extended.
switch ( m )
{
case '%d' :
val = parseFloat ( val ) ;
if ( isNaN ( val ) ) {
val = 0 ;
}
break ;
default :
// Default is %s
}
++ i ;
}
return val ;
} ) ;
} ;
/ * *
* get value of cookie , if it was set , empty string otherwise
*
* @ see { @ link http : //www.w3schools.com/js/js_cookies.asp}
* @ name helper . getCookie
* @ function
* @ param { string } cname
* @ return { string }
* /
me . getCookie = function ( cname ) {
var name = cname + '=' ,
ca = document . cookie . split ( ';' ) ;
for ( var i = 0 ; i < ca . length ; ++ i ) {
var c = ca [ i ] ;
while ( c . charAt ( 0 ) === ' ' )
2016-07-11 09:47:42 -04:00
{
2017-02-08 14:12:22 -05:00
c = c . substring ( 1 ) ;
}
if ( c . indexOf ( name ) === 0 )
{
return c . substring ( name . length , c . length ) ;
2016-07-11 09:47:42 -04:00
}
2015-09-19 05:21:13 -04:00
}
2017-02-08 14:12:22 -05:00
return '' ;
} ;
2016-07-19 10:12:11 -04:00
2017-02-08 14:12:22 -05:00
/ * *
* get the current script location ( without search or hash part of the URL ) ,
* eg . http : //example.com/path/?aaaa#bbbb --> http://example.com/path/
*
* @ name helper . scriptLocation
* @ function
* @ return { string } current script location
* /
me . scriptLocation = function ( )
{
// check for cached version
if ( scriptLocation !== null ) {
return scriptLocation ;
2017-02-08 07:20:51 -05:00
}
2017-02-08 14:12:22 -05:00
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 )
2017-02-05 08:47:03 -05:00
{
2017-02-08 14:12:22 -05:00
scriptLocation = scriptLocation . substring ( 0 , hashIndex ) ;
2017-02-05 08:47:03 -05:00
}
2017-02-08 07:20:51 -05:00
2017-02-05 08:47:03 -05:00
return scriptLocation ;
2017-02-08 14:12:22 -05:00
} ;
2017-02-08 14:11:04 -05:00
2017-02-08 14:12:22 -05:00
/ * *
* get the pastes unique identifier from the URL ,
* eg . http : //example.com/path/?c05354954c49a487#c05354954c49a487 returns c05354954c49a487
*
* @ name helper . pasteId
* @ function
* @ return { string } unique identifier
* /
me . pasteId = function ( )
2017-02-05 08:47:03 -05:00
{
2017-02-08 14:12:22 -05:00
return window . location . search . substring ( 1 ) ;
} ;
2017-02-05 08:47:03 -05:00
2017-02-08 14:12:22 -05:00
/ * *
* return the deciphering key stored in anchor part of the URL
*
* @ name helper . pageKey
* @ function
* @ return { string } key
* /
me . pageKey = function ( )
2017-02-05 08:47:03 -05:00
{
2017-02-08 14:12:22 -05:00
var key = window . location . hash . substring ( 1 ) ,
i = key . indexOf ( '&' ) ;
2015-09-05 11:12:11 -04:00
2017-02-08 14:12:22 -05:00
// Some web 2.0 services and redirectors add data AFTER the anchor
// (such as &utm_source=...). We will strip any additional data.
if ( i > - 1 )
{
key = key . substring ( 0 , i ) ;
}
2017-02-08 14:11:04 -05:00
2017-02-08 14:12:22 -05:00
return key ;
} ;
2017-02-08 14:11:04 -05:00
2017-02-08 14:12:22 -05:00
/ * *
* convert all applicable characters to HTML entities
*
* @ see { @ link https : //www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet#RULE_.231_-_HTML_Escape_Before_Inserting_Untrusted_Data_into_HTML_Element_Content}
* @ name helper . htmlEntities
* @ function
* @ param { string } str
* @ return { string } escaped HTML
* /
me . htmlEntities = function ( str ) {
return String ( str ) . replace (
/[&<>"'`=\/]/g , function ( s ) {
return entityMap [ s ] ;
} ) ;
} ;
2017-02-08 14:11:04 -05:00
2017-02-08 14:12:22 -05:00
return me ;
} ) ( window , document ) ;
2015-09-06 07:07:46 -04:00
2017-02-08 14:11:04 -05:00
/ * *
2017-02-08 14:12:22 -05:00
* internationalization methods
2017-02-08 14:11:04 -05:00
*
2017-02-08 14:12:22 -05:00
* @ param { object } window
* @ param { object } document
* @ class
2017-02-08 14:11:04 -05:00
* /
2017-02-08 14:12:22 -05:00
var i18n = ( function ( window , document ) {
var me = { } ;
/ * *
* supported languages , minus the built in 'en'
*
* @ private
* @ prop { string [ ] }
* @ readonly
* /
var supportedLanguages = [ 'de' , 'es' , 'fr' , 'it' , 'no' , 'pl' , 'oc' , 'ru' , 'sl' , 'zh' ] ;
/ * *
* built in language
*
* @ private
* @ prop { string }
* /
var language = 'en' ;
/ * *
* translation cache
*
* @ private
* @ enum { Object }
* /
var translations = { } ;
/ * *
* translate a string , alias for i18n . translate ( )
*
* @ name i18n . _
* @ function
* @ param { string } messageId
* @ param { ... * } args - one or multiple parameters injected into placeholders
* @ return { string }
* /
me . _ = function ( )
2017-02-08 14:11:04 -05:00
{
2017-02-08 14:12:22 -05:00
return me . translate ( arguments ) ;
} ;
/ * *
* translate a string
*
* @ name i18n . translate
* @ function
* @ param { string } messageId
* @ param { ... * } args - one or multiple parameters injected into placeholders
* @ return { string }
* /
me . translate = function ( )
2017-02-08 14:11:04 -05:00
{
2017-02-08 14:12:22 -05:00
var args = arguments , messageId ;
if ( typeof arguments [ 0 ] === 'object' )
2015-09-06 09:54:43 -04:00
{
2017-02-08 14:12:22 -05:00
args = arguments [ 0 ] ;
2015-09-06 09:54:43 -04:00
}
2017-02-08 14:12:22 -05:00
var usesPlurals = $ . isArray ( args [ 0 ] ) ;
if ( usesPlurals )
2015-09-06 09:54:43 -04:00
{
2017-02-08 14:12:22 -05:00
// use the first plural form as messageId, otherwise the singular
messageId = ( args [ 0 ] . length > 1 ? args [ 0 ] [ 1 ] : args [ 0 ] [ 0 ] ) ;
2015-09-06 07:07:46 -04:00
}
2017-02-08 14:12:22 -05:00
else
{
messageId = args [ 0 ] ;
}
if ( messageId . length === 0 )
{
return messageId ;
}
if ( ! translations . hasOwnProperty ( messageId ) )
{
if ( language !== 'en' )
{
console . error (
'Missing ' + language + ' translation for: ' + messageId
) ;
}
translations [ messageId ] = args [ 0 ] ;
}
if ( usesPlurals && $ . isArray ( translations [ messageId ] ) )
{
var n = parseInt ( args [ 1 ] || 1 , 10 ) ,
key = me . getPluralForm ( n ) ,
maxKey = translations [ messageId ] . length - 1 ;
if ( key > maxKey )
{
key = maxKey ;
}
args [ 0 ] = translations [ messageId ] [ key ] ;
args [ 1 ] = n ;
}
else
{
args [ 0 ] = translations [ messageId ] ;
}
return helper . sprintf ( args ) ;
} ;
2017-02-08 07:20:51 -05:00
2017-02-08 14:12:22 -05:00
/ * *
* per language functions to use to determine the plural form
*
* @ see { @ link http : //localization-guide.readthedocs.org/en/latest/l10n/pluralforms.html}
* @ name i18n . getPluralForm
* @ function
* @ param { number } n
* @ return { number } array key
* /
me . getPluralForm = function ( n ) {
switch ( language )
{
case 'fr' :
case 'oc' :
case 'zh' :
return ( n > 1 ? 1 : 0 ) ;
case 'pl' :
return ( n === 1 ? 0 : ( n % 10 >= 2 && n % 10 <= 4 && ( n % 100 < 10 || n % 100 >= 20 ) ? 1 : 2 ) ) ;
case 'ru' :
return ( n % 10 === 1 && n % 100 !== 11 ? 0 : ( n % 10 >= 2 && n % 10 <= 4 && ( n % 100 < 10 || n % 100 >= 20 ) ? 1 : 2 ) ) ;
case 'sl' :
return ( n % 100 === 1 ? 1 : ( n % 100 === 2 ? 2 : ( n % 100 === 3 || n % 100 === 4 ? 3 : 0 ) ) ) ;
// de, en, es, it, no
default :
return ( n !== 1 ? 1 : 0 ) ;
}
} ;
2017-02-08 07:20:51 -05:00
2017-02-08 14:12:22 -05:00
/ * *
* load translations into cache , then trigger controller initialization
*
* @ name i18n . loadTranslations
* @ function
* /
me . loadTranslations = function ( )
2017-02-08 14:11:04 -05:00
{
2017-02-08 14:12:22 -05:00
var newLanguage = helper . getCookie ( 'lang' ) ;
2017-02-08 07:20:51 -05:00
2017-02-08 14:12:22 -05:00
// auto-select language based on browser settings
if ( newLanguage . length === 0 )
{
newLanguage = ( navigator . language || navigator . userLanguage ) . substring ( 0 , 2 ) ;
}
2015-09-06 07:07:46 -04:00
2017-02-08 14:12:22 -05:00
// if language is already used (e.g, default 'en'), skip update
2017-02-12 12:08:08 -05:00
if ( newLanguage === language ) {
2017-02-08 14:12:22 -05:00
return ;
}
2015-09-06 09:54:43 -04:00
2017-02-08 14:12:22 -05:00
// if language is not supported, show error
2017-02-12 12:08:08 -05:00
if ( supportedLanguages . indexOf ( newLanguage ) === - 1 ) {
2017-02-08 14:12:22 -05:00
console . error ( 'Language \'%s\' is not supported. Translation failed, fallback to English.' , newLanguage ) ;
}
2017-02-08 14:11:04 -05:00
2017-02-08 14:12:22 -05:00
// load strongs from JSON
$ . getJSON ( 'i18n/' + newLanguage + '.json' , function ( data ) {
language = newLanguage ;
translations = data ;
} ) . fail ( function ( data , textStatus , errorMsg ) {
console . error ( 'Language \'%s\' could not be loaded (%s: %s). Translation failed, fallback to English.' , newLanguage , textStatus , errorMsg ) ;
} ) ;
} ;
2015-09-06 07:07:46 -04:00
2017-02-08 14:12:22 -05:00
return me ;
} ) ( window , document ) ;
2017-02-08 14:11:04 -05:00
/ * *
2017-02-12 15:13:04 -05:00
* handles everything related to en / decryption
2017-02-08 14:11:04 -05:00
*
2017-02-08 14:12:22 -05:00
* @ class
2017-02-08 14:11:04 -05:00
* /
2017-02-12 12:08:08 -05:00
var cryptTool = ( function ( ) {
2017-02-08 14:12:22 -05:00
var me = { } ;
/ * *
* compress a message ( deflate compression ) , returns base64 encoded data
*
2017-02-12 12:08:08 -05:00
* @ name cryptToolcompress
2017-02-08 14:12:22 -05:00
* @ function
2017-02-12 12:08:08 -05:00
* @ private
2017-02-08 14:12:22 -05:00
* @ param { string } message
* @ return { string } base64 data
* /
2017-02-12 12:08:08 -05:00
function compress ( message )
2015-09-05 11:12:11 -04:00
{
2017-02-08 14:12:22 -05:00
return Base64 . toBase64 ( RawDeflate . deflate ( Base64 . utob ( message ) ) ) ;
2017-02-12 12:08:08 -05:00
}
2017-02-08 14:12:22 -05:00
/ * *
2017-02-12 12:08:08 -05:00
* decompress a message compressed with cryptToolcompress ( )
2017-02-08 14:12:22 -05:00
*
2017-02-12 12:08:08 -05:00
* @ name cryptTooldecompress
2017-02-08 14:12:22 -05:00
* @ function
2017-02-12 12:08:08 -05:00
* @ private
2017-02-08 14:12:22 -05:00
* @ param { string } data - base64 data
* @ return { string } message
* /
2017-02-12 12:08:08 -05:00
function decompress ( data )
2015-09-05 11:12:11 -04:00
{
2017-02-08 14:12:22 -05:00
return Base64 . btou ( RawDeflate . inflate ( Base64 . fromBase64 ( data ) ) ) ;
2017-02-12 12:08:08 -05:00
}
2017-02-08 14:12:22 -05:00
/ * *
* compress , then encrypt message with given key and password
*
2017-02-12 15:13:04 -05:00
* @ name cryptTool . cipher
2017-02-08 14:12:22 -05:00
* @ function
* @ param { string } key
* @ param { string } password
* @ param { string } message
* @ return { string } data - JSON with encrypted data
* /
me . cipher = function ( key , password , message )
{
// Galois Counter Mode, keysize 256 bit, authentication tag 128 bit
2017-02-13 15:12:00 -05:00
var options = {
mode : 'gcm' ,
ks : 256 ,
ts : 128
} ;
2017-02-08 14:12:22 -05:00
if ( ( password || '' ) . trim ( ) . length === 0 )
2015-09-05 11:12:11 -04:00
{
2017-02-12 12:08:08 -05:00
return sjcl . encrypt ( key , compress ( message ) , options ) ;
2015-09-05 11:12:11 -04:00
}
2017-02-13 15:12:00 -05:00
return sjcl . encrypt ( key + sjcl . codec . hex . fromBits ( sjcl . hash . sha256 . hash ( password ) ) , compress ( message ) , options ) ;
2017-02-12 12:08:08 -05:00
} ;
2017-02-08 14:12:22 -05:00
/ * *
* decrypt message with key , then decompress
*
2017-02-12 15:13:04 -05:00
* @ name cryptTool . decipher
2017-02-08 14:12:22 -05:00
* @ function
* @ param { string } key
* @ param { string } password
* @ param { string } data - JSON with encrypted data
* @ return { string } decrypted message
* /
me . decipher = function ( key , password , data )
{
if ( data !== undefined )
2015-09-05 11:12:11 -04:00
{
try
{
2017-02-12 12:08:08 -05:00
return decompress ( sjcl . decrypt ( key , data ) ) ;
2015-09-05 11:12:11 -04:00
}
2017-02-08 14:12:22 -05:00
catch ( err )
2015-09-05 11:12:11 -04:00
{
2017-02-08 14:12:22 -05:00
try
{
2017-02-12 12:08:08 -05:00
return decompress ( sjcl . decrypt ( key + sjcl . codec . hex . fromBits ( sjcl . hash . sha256 . hash ( password ) ) , data ) ) ;
2017-02-08 14:12:22 -05:00
}
catch ( e )
{
// ignore error, because ????? @TODO
}
2015-08-31 15:14:12 -04:00
}
}
2017-02-08 14:12:22 -05:00
return '' ;
2017-02-12 12:08:08 -05:00
} ;
2017-02-08 07:20:51 -05:00
2017-02-13 15:12:00 -05:00
/ * *
* checks whether the crypt tool is ready .
*
* @ name cryptTool . isReady
* @ function
* @ return { bool }
* /
me . isEntropyReady = function ( )
{
return sjcl . random . isReady ( ) ;
} ;
/ * *
* checks whether the crypt tool is ready .
*
* @ name cryptTool . isReady
* @ function
* @ param { function } - the function to add
* /
me . addEntropySeedListener = function ( func )
{
sjcl . random . addEventListener ( 'seeded' , func ) ;
} ;
/ * *
* returns a random symmetric key
*
* @ name cryptTool . getSymmetricKey
* @ function
* @ return { string }
* /
me . getSymmetricKey = function ( func )
{
return sjcl . codec . base64 . fromBits ( sjcl . random . randomWords ( 8 , 0 ) , 0 ) ;
} ;
/ * *
* initialize crypt tool
*
* @ name cryptTool . init
* @ function
* /
me . init = function ( )
{
// will fail earlier as sjcl is already passed as a parameter
// if (typeof sjcl !== 'object') {
// alert.showError(
// i18n._('The library %s is not available.', 'sjcl') +
// i18n._('Messages cannot be decrypted or encrypted.')
// );
// }
} ;
2017-02-08 14:12:22 -05:00
return me ;
2017-02-12 12:08:08 -05:00
} ) ( ) ;
2017-02-08 14:11:04 -05:00
2017-02-12 15:13:04 -05:00
/ * *
* Data source ( aka MVC )
*
* @ param { object } window
* @ param { object } document
* @ class
* /
var modal = ( function ( window , document ) {
var me = { } ;
var $cipherData ;
/ * *
* check if cipher data was supplied
*
* @ name modal . getCipherData
* @ function
* @ return boolean
* /
me . hasCipherData = function ( )
{
return ( me . getCipherData ( ) . length > 0 ) ;
} ;
/ * *
* returns the cipher data
*
* @ name modal . getCipherData
* @ function
* @ return string
* /
me . getCipherData = function ( )
{
return $cipherData . text ( ) ;
} ;
2017-02-13 05:35:04 -05:00
/ * *
* returns the expiration set in the HTML
*
* @ name modal . getExpirationDefault
* @ function
* @ return string
* @ TODO the template can be simplified as # pasteExpiration is no longer modified ( only default value )
* /
me . getExpirationDefault = function ( )
{
return $ ( '#pasteExpiration' ) . val ( ) ;
} ;
/ * *
* returns the format set in the HTML
*
* @ name modal . getFormatDefault
* @ function
* @ return string
* @ TODO the template can be simplified as # pasteFormatter is no longer modified ( only default value )
* /
me . getFormatDefault = function ( )
{
return $ ( '#pasteFormatter' ) . val ( ) ;
} ;
2017-02-12 15:13:04 -05:00
/ * *
* init navigation manager
*
* preloads jQuery elements
*
* @ name modal . init
* @ function
* /
me . init = function ( )
{
$cipherData = $ ( '#cipherdata' ) ;
} ;
return me ;
} ) ( window , document ) ;
2017-02-08 14:11:04 -05:00
/ * *
2017-02-12 12:08:08 -05:00
* User interface manager
2017-02-08 14:11:04 -05:00
*
2017-02-08 14:12:22 -05:00
* @ param { object } window
* @ param { object } document
* @ class
2017-02-08 14:11:04 -05:00
* /
2017-02-12 12:08:08 -05:00
var uiMan = ( function ( window , document ) {
2017-02-08 14:12:22 -05:00
var me = { } ;
// jQuery pre-loaded objects
2017-02-12 15:13:04 -05:00
var $clearText ,
2017-02-08 14:12:22 -05:00
$clonedFile ,
$comments ,
$discussion ,
$image ,
$prettyMessage ,
$prettyPrint ,
2017-02-13 05:35:04 -05:00
$editorTabs ,
2017-02-08 14:12:22 -05:00
$remainingTime ,
2017-02-12 12:08:08 -05:00
$replyStatus ;
2015-09-05 11:12:11 -04:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* handle history ( pop ) state changes
*
* currently this does only handle redirects to the home page .
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name controller . historyChange
2017-02-08 14:12:22 -05:00
* @ function
2017-02-13 05:35:04 -05:00
* @ param { Event } event
2017-02-08 14:12:22 -05:00
* /
2017-02-13 05:35:04 -05:00
me . historyChange = function ( event )
2017-02-08 14:12:22 -05:00
{
2017-02-13 05:35:04 -05:00
var currentLocation = helper . scriptLocation ( ) ;
if ( event . originalEvent . state === null && // no state object passed
event . originalEvent . target . location . href === currentLocation && // target location is home page
window . location . href === currentLocation // and we are not already on the home page
) {
// redirect to home page
window . location . href = currentLocation ;
}
} ;
2017-02-08 14:12:22 -05:00
2017-02-13 05:35:04 -05:00
/ * *
* reload the page
*
* This takes the user to the PrivateBin home page .
*
* @ name controller . reloadPage
* @ function
* @ param { Event } event
* /
me . reloadPage = function ( event )
{
window . location . href = helper . scriptLocation ( ) ;
event . preventDefault ( ) ;
} ;
2017-02-08 07:20:51 -05:00
2017-02-13 05:35:04 -05:00
/ * *
* main UI manager
*
* @ name controller . init
* @ function
* /
me . init = function ( )
{
// hide "no javascript" message
$ ( '#noscript' ) . hide ( ) ;
2017-02-08 07:20:51 -05:00
2017-02-13 05:35:04 -05:00
// bind events
$ ( '.reloadlink' ) . click ( me . reloadPage ) ;
$ ( window ) . on ( 'popstate' , me . historyChange ) ;
2017-02-08 14:12:22 -05:00
} ;
2015-09-12 11:33:16 -04:00
2017-02-13 05:35:04 -05:00
return me ;
} ) ( window , document ) ;
/ * *
2017-02-13 15:12:00 -05:00
* alert / notification manager
2017-02-13 05:35:04 -05:00
*
* @ param { object } window
* @ param { object } document
* @ class
* /
2017-02-13 15:12:00 -05:00
var alert = ( function ( window , document ) {
2017-02-13 05:35:04 -05:00
var me = { } ;
2017-02-13 15:12:00 -05:00
var $attachment ,
$attachmentLink ,
$errorMessage ,
$clonedFile ,
$fileWrap ,
$status ,
$pasteSuccess ,
$shortenButton ,
$pasteUrl ;
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 15:12:00 -05:00
* display a status message
2017-02-08 14:12:22 -05:00
*
2017-02-13 15:12:00 -05:00
* @ name controller . showStatus
2017-02-08 14:12:22 -05:00
* @ function
2017-02-13 15:12:00 -05:00
* @ param { string } message - text to display
* @ param { boolean } [ spin = false ] - ( optional ) tell if the "spinning" animation should be displayed , defaults to false
2017-02-08 14:12:22 -05:00
* /
2017-02-13 15:12:00 -05:00
me . showStatus = function ( message , spin )
2017-02-08 14:12:22 -05:00
{
2017-02-13 15:12:00 -05:00
// spin is ignored for now
$status . text ( message ) ;
2017-02-13 05:35:04 -05:00
} ;
2017-02-08 14:12:22 -05:00
2017-02-13 05:35:04 -05:00
/ * *
2017-02-13 15:12:00 -05:00
* display a status message for replying to comments
2017-02-13 05:35:04 -05:00
*
2017-02-13 15:12:00 -05:00
* @ name controller . showStatus
2017-02-13 05:35:04 -05:00
* @ function
2017-02-13 15:12:00 -05:00
* @ param { string } message - text to display
* @ param { boolean } [ spin = false ] - ( optional ) tell if the "spinning" animation should be displayed , defaults to false
2017-02-13 05:35:04 -05:00
* /
2017-02-13 15:12:00 -05:00
me . showReplyStatus = function ( message , spin )
2017-02-13 05:35:04 -05:00
{
2017-02-13 15:12:00 -05:00
if ( spin || false ) {
$replyalert . find ( '.spinner' ) . removeClass ( 'hidden' )
}
$replyalert . text ( message ) ;
2017-02-13 05:35:04 -05:00
} ;
2015-09-05 11:12:11 -04:00
2017-02-13 05:35:04 -05:00
/ * *
2017-02-13 15:12:00 -05:00
* hides any status messages
2017-02-13 05:35:04 -05:00
*
2017-02-13 15:12:00 -05:00
* @ name controller . hideMessages
2017-02-13 05:35:04 -05:00
* @ function
* /
2017-02-13 15:12:00 -05:00
me . hideMessages = function ( )
2017-02-13 05:35:04 -05:00
{
2017-02-13 15:12:00 -05:00
$status . html ( ' ' ) ;
2017-02-13 05:35:04 -05:00
} ;
2017-02-08 14:12:22 -05:00
2017-02-13 05:35:04 -05:00
/ * *
2017-02-13 15:12:00 -05:00
* display an error message
2017-02-13 05:35:04 -05:00
*
2017-02-13 15:12:00 -05:00
* @ name alert . showError
2017-02-13 05:35:04 -05:00
* @ function
2017-02-13 15:12:00 -05:00
* @ param { string } message - text to display
2017-02-13 05:35:04 -05:00
* /
2017-02-13 15:12:00 -05:00
me . showError = function ( message )
2017-02-13 05:35:04 -05:00
{
2017-02-13 15:12:00 -05:00
$errorMessage . removeClass ( 'hidden' ) ;
$errorMessage . find ( ':last' ) . text ( message ) ;
2017-02-13 05:35:04 -05:00
} ;
2017-02-08 14:12:22 -05:00
2017-02-13 05:35:04 -05:00
/ * *
2017-02-13 15:12:00 -05:00
* display an error message
2017-02-13 05:35:04 -05:00
*
2017-02-13 15:12:00 -05:00
* @ name alert . showError
2017-02-13 05:35:04 -05:00
* @ function
* @ param { string } message - text to display
* /
2017-02-13 15:12:00 -05:00
me . showReplyError = function ( message )
2017-02-13 05:35:04 -05:00
{
2017-02-13 15:12:00 -05:00
$replyalert . addClass ( 'alert-danger' ) ;
$replyalert . addClass ( $errorMessage . attr ( 'class' ) ) ; // @TODO ????
$replyalert . text ( message ) ;
2017-02-08 14:12:22 -05:00
} ;
/ * *
2017-02-13 15:12:00 -05:00
* removes the existing attachment
2017-02-08 14:12:22 -05:00
*
2017-02-13 15:12:00 -05:00
* @ name alert . removeAttachment
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-13 15:12:00 -05:00
me . removeAttachment = function ( )
2017-02-08 14:12:22 -05:00
{
2017-02-13 15:12:00 -05:00
$clonedFile . addClass ( 'hidden' ) ;
// removes the saved decrypted file data
$attachmentLink . attr ( 'href' , '' ) ;
// the only way to deselect the file is to recreate the input // @TODO really?
$fileWrap . html ( $fileWrap . html ( ) ) ;
$fileWrap . removeClass ( 'hidden' ) ;
2017-02-08 14:12:22 -05:00
} ;
/ * *
2017-02-13 15:12:00 -05:00
* checks if there is an attachment
2017-02-12 12:08:08 -05:00
*
2017-02-13 15:12:00 -05:00
* @ name alert . hasAttachment
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-13 15:12:00 -05:00
me . hasAttachment = function ( )
2015-09-01 16:33:07 -04:00
{
2017-02-13 15:12:00 -05:00
return typeof $attachmentLink . attr ( 'href' ) !== 'undefined'
2017-02-12 12:08:08 -05:00
} ;
2015-09-05 11:12:11 -04:00
2017-02-12 12:08:08 -05:00
/ * *
2017-02-13 15:12:00 -05:00
* return the attachment
2017-02-12 12:08:08 -05:00
*
2017-02-13 15:12:00 -05:00
* @ name alert . getAttachment
2017-02-12 12:08:08 -05:00
* @ function
2017-02-13 15:12:00 -05:00
* @ returns { array }
2017-02-12 12:08:08 -05:00
* /
2017-02-13 15:12:00 -05:00
me . getAttachment = function ( )
2017-02-12 12:08:08 -05:00
{
2017-02-13 15:12:00 -05:00
return [
$attachmentLink . attr ( 'href' ) ,
$attachmentLink . attr ( 'download' )
] ;
2017-02-12 12:08:08 -05:00
} ;
2017-02-08 14:12:22 -05:00
2017-02-12 12:08:08 -05:00
/ * *
2017-02-13 15:12:00 -05:00
* forward to URL shortener
2017-02-12 12:08:08 -05:00
*
2017-02-13 15:12:00 -05:00
* @ private
2017-02-12 12:08:08 -05:00
* @ function
2017-02-13 15:12:00 -05:00
* @ param { Event } event
2017-02-12 12:08:08 -05:00
* /
2017-02-13 15:12:00 -05:00
function sendToShortener ( event )
{
window . location . href = $shortenButton . data ( 'shortener' )
+ encodeURIComponent ( $pasteUrl . attr ( 'href' ) ) ;
}
/ * *
* reload the page
*
* This takes the user to the PrivateBin home page .
*
* @ name controller . createPasteNotification
* @ function
* @ param { string } url
* @ param { string } deleteUrl
* /
me . createPasteNotification = function ( url , deleteUrl )
2017-02-12 12:08:08 -05:00
{
2017-02-13 15:12:00 -05:00
$ ( '#pastelink' ) . find ( ':first' ) . html (
i18n . _ (
'Your paste is <a id="pasteurl" href="%s">%s</a> <span id="copyhint">(Hit [Ctrl]+[c] to copy)</span>' ,
url , url
)
) ;
// save newly created element
$pasteUrl = $ ( '#pasteurl' ) ;
// and add click event
$pasteUrl . click ( pasteLinkClick ) ;
// shorten button
$ ( '#deletelink' ) . html ( '<a href="' + deleteUrl + '">' + i18n . _ ( 'Delete data' ) + '</a>' ) ;
2017-02-13 05:35:04 -05:00
2017-02-13 15:12:00 -05:00
// show result
$pasteSuccess . removeClass ( 'hidden' ) ;
// we pre-select the link so that the user only has to [Ctrl]+[c] the link
helper . selectText ( $pasteUrl [ 0 ] ) ;
2017-02-12 12:08:08 -05:00
} ;
2012-04-21 15:59:45 -04:00
2017-02-13 15:12:00 -05:00
/ * *
* Forces opening the paste if the link does not do this automatically .
*
* This is necessary as browsers will not reload the page when it is
* already loaded ( which is fake as it is set via history . pushState ( ) ) .
*
* @ name controller . pasteLinkClick
* @ function
* @ param { Event } event
* /
function pasteLinkClick ( event )
{
// check if location is (already) shown in URL bar
if ( window . location . href === $pasteUrl . attr ( 'href' ) ) {
// if so we need to load link by reloading the current site
window . location . reload ( true ) ;
}
}
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* init status manager
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* preloads jQuery elements
*
2017-02-13 15:12:00 -05:00
* @ name alert . init
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-12 12:08:08 -05:00
me . init = function ( )
2017-02-08 14:12:22 -05:00
{
2017-02-12 12:08:08 -05:00
// hide "no javascript" message
$ ( '#noscript' ) . hide ( ) ;
2017-02-08 14:12:22 -05:00
2017-02-13 15:12:00 -05:00
$shortenButton = $ ( '#shortenbutton' ) ;
$attachment = $ ( '#attachment' ) ;
$attachmentLink = $ ( '#attachment a' ) ;
$clonedFile = $ ( '#clonedfile' ) ;
2017-02-13 05:35:04 -05:00
$errorMessage = $ ( '#errormessage' ) ;
2017-02-13 15:12:00 -05:00
$fileWrap = $ ( '#filewrap' ) ;
$pasteSuccess = $ ( '#pasteSuccess' ) ;
// $pasteUrl is saved in submitPasteUpload() if/after it is
// actually created
2017-02-13 05:35:04 -05:00
$status = $ ( '#status' ) ;
// @TODO $replyStatus …
2017-02-08 14:12:22 -05:00
2017-02-13 15:12:00 -05:00
// bind elements
$shortenButton . click ( sendToShortener ) ;
2017-02-13 05:35:04 -05:00
// display status returned by php code, if any (eg. paste was properly deleted)
// @TODO remove this by handling errors in a different way
if ( $status . text ( ) . length > 0 )
{
me . showStatus ( $status . text ( ) ) ;
return ;
}
2015-09-05 11:12:11 -04:00
2017-02-13 05:35:04 -05:00
// keep line height even if content empty
$status . html ( ' ' ) ; // @TODO what? remove?
2017-02-12 12:08:08 -05:00
2017-02-13 05:35:04 -05:00
// display error message from php code
if ( $errorMessage . text ( ) . length > 1 ) {
me . showError ( $errorMessage . text ( ) ) ;
}
2017-02-08 14:12:22 -05:00
} ;
2017-02-08 07:20:51 -05:00
2017-02-12 12:08:08 -05:00
return me ;
} ) ( window , document ) ;
/ * *
2017-02-13 05:35:04 -05:00
* Passwort prompt
2017-02-12 12:08:08 -05:00
*
* @ param { object } window
* @ param { object } document
* @ class
* /
2017-02-13 05:35:04 -05:00
var prompt = ( function ( window , document ) {
2017-02-12 12:08:08 -05:00
var me = { } ;
2017-02-13 15:12:00 -05:00
var $passwordModal ,
2017-02-13 05:35:04 -05:00
$passwordForm ,
$passwordDecrypt ;
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* ask the user for the password and set it
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name controller . requestPassword
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-13 05:35:04 -05:00
me . requestPassword = function ( )
2017-02-08 14:12:22 -05:00
{
2017-02-13 05:35:04 -05:00
if ( $passwordModal . length === 0 ) {
2017-02-13 15:12:00 -05:00
// old method for page template
2017-02-13 05:35:04 -05:00
var password = prompt ( i18n . _ ( 'Please enter the password for this paste:' ) , '' ) ;
if ( password === null )
{
2017-02-13 15:12:00 -05:00
// @TODO when does this happen?
2017-02-13 05:35:04 -05:00
throw 'password prompt canceled' ;
}
if ( password . length === 0 )
{
// recursive…
me . requestPassword ( ) ;
} else {
$passwordInput . val ( password ) ;
me . displayMessages ( ) ;
}
} else {
2017-02-13 15:12:00 -05:00
// new bootstrap method
2017-02-13 05:35:04 -05:00
$passwordModal . modal ( ) ;
}
2017-02-08 14:12:22 -05:00
} ;
2017-02-05 16:09:46 -05:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* decrypt using the password from the modal dialog
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name controller . decryptPasswordModal
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-13 15:12:00 -05:00
me . getPassword = function ( )
2017-02-06 16:39:45 -05:00
{
2017-02-13 15:12:00 -05:00
if ( $passwordDecrypt . val ( ) . length === 0 ) {
me . requestPassword ( ) ;
}
return $passwordDecrypt . val ( ) ;
// $passwordInput.val($passwordDecrypt.val());
// me.displayMessages();
2017-02-08 14:12:22 -05:00
} ;
/ * *
2017-02-13 05:35:04 -05:00
* submit a password in the modal dialog
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name controller . submitPasswordModal
2017-02-08 14:12:22 -05:00
* @ function
2017-02-13 05:35:04 -05:00
* @ param { Event } event
2017-02-08 14:12:22 -05:00
* /
2017-02-13 05:35:04 -05:00
me . submitPasswordModal = function ( event )
2015-09-05 11:12:11 -04:00
{
2017-02-13 05:35:04 -05:00
event . preventDefault ( ) ;
$passwordModal . modal ( 'hide' ) ;
2017-02-08 14:11:04 -05:00
} ;
2012-04-21 15:59:45 -04:00
2017-02-13 05:35:04 -05:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* init status manager
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* preloads jQuery elements
*
* @ name controller . init
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-13 05:35:04 -05:00
me . init = function ( )
2017-02-08 14:12:22 -05:00
{
2017-02-13 05:35:04 -05:00
$passwordModal = $ ( '#passwordmodal' ) ;
$passwordForm = $ ( '#passwordform' ) ;
$passwordDecrypt = $ ( '#passworddecrypt' ) ;
2017-02-08 14:12:22 -05:00
2017-02-13 05:35:04 -05:00
// bind events
2017-02-08 14:12:22 -05:00
2017-02-13 05:35:04 -05:00
// focus password input when it is shown
$passwordModal . on ( 'shown.bs.modal' , function ( ) {
$passwordDecrypt . focus ( ) ;
} ) ;
// handle modal password request on decryption
$passwordModal . on ( 'hidden.bs.modal' , me . decryptPasswordModal ) ;
$passwordForm . submit ( me . submitPasswordModal ) ;
2017-02-08 14:12:22 -05:00
} ;
2015-09-05 11:12:11 -04:00
2017-02-12 12:08:08 -05:00
return me ;
} ) ( window , document ) ;
/ * *
2017-02-13 05:35:04 -05:00
* Manage paste / message input
2017-02-12 12:08:08 -05:00
*
* @ param { object } window
* @ param { object } document
* @ class
* /
2017-02-13 05:35:04 -05:00
var editor = ( function ( window , document ) {
2017-02-12 12:08:08 -05:00
var me = { } ;
2017-02-13 05:35:04 -05:00
var $message ,
$messageEdit ,
$messagePreview ,
$editorTabs ;
var isPreview = false ;
2017-02-12 12:08:08 -05:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* support input of tab character
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name editor . supportTabs
2017-02-08 14:12:22 -05:00
* @ function
2017-02-13 05:35:04 -05:00
* @ param { Event } event
* @ TODO doc what is @ this here ?
* @ TODO replace this with $message ? ?
2017-02-08 14:12:22 -05:00
* /
2017-02-13 05:35:04 -05:00
function supportTabs ( event )
{
var keyCode = event . keyCode || event . which ;
// tab was pressed
if ( keyCode === 9 )
{
// prevent the textarea to lose focus
event . preventDefault ( ) ;
// get caret position & selection
var val = this . value ,
start = this . selectionStart ,
end = this . selectionEnd ;
// set textarea value to: text before caret + tab + text after caret
this . value = val . substring ( 0 , start ) + '\t' + val . substring ( end ) ;
// put caret at right position again
this . selectionStart = this . selectionEnd = start + 1 ;
}
}
/ * *
* view the editor tab
*
* @ name editor . viewEditor
* @ function
* @ param { Event } event - optional
* /
function viewEditor ( event )
{
// toggle buttons
$messageEdit . addClass ( 'active' ) ;
$messagePreview . removeClass ( 'active' ) ;
pasteViewer . hide ( ) ;
// reshow input
$message . removeClass ( 'hidden' ) ;
me . focusInput ( ) ;
// me.stateNewPaste();
// finish
isPreview = false ;
// if (typeof event === 'undefined') {
// event.preventDefault();
// } // @TODO confirm this is not needed
}
/ * *
* view the preview tab
*
* @ name editor . viewPreview
* @ function
* @ param { Event } event
* /
function viewPreview ( event )
{
// toggle buttons
$messageEdit . removeClass ( 'active' ) ;
$messagePreview . addClass ( 'active' ) ;
// hide input as now preview is shown
$message . addClass ( 'hidden' ) ;
// show preview
2017-02-13 15:12:00 -05:00
$ ( '#errormessage' ) . find ( ':last' )
2017-02-13 05:35:04 -05:00
pasteViewer . setText ( $message . val ( ) ) ;
pasteViewer . trigger ( ) ;
// finish
isPreview = true ;
// if (typeof event === 'undefined') {
// event.preventDefault();
// } // @TODO confirm this is not needed
}
/ * *
* get the state of the preview
*
* @ name editor . isPreview
* @ function
* /
me . isPreview = function ( )
{
return isPreview ;
}
/ * *
* reset the editor view
*
* @ name editor . resetInput
* @ function
* /
me . resetInput = function ( )
2015-09-05 11:12:11 -04:00
{
2017-02-13 05:35:04 -05:00
// go back to input
if ( isPreview ) {
viewEditor ( ) ;
}
// clear content
$message . val ( '' ) ;
2017-02-08 14:12:22 -05:00
} ;
2017-02-08 14:11:04 -05:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* shows the editor
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name editor . show
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-13 05:35:04 -05:00
me . show = function ( )
2016-08-11 05:31:34 -04:00
{
2017-02-13 05:35:04 -05:00
$message . removeClass ( 'hidden' ) ;
$editorTabs . removeClass ( 'hidden' ) ;
2017-02-08 14:12:22 -05:00
} ;
/ * *
2017-02-13 05:35:04 -05:00
* hides the editor
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name editor . reset
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-13 05:35:04 -05:00
me . hide = function ( )
2015-09-05 11:12:11 -04:00
{
2017-02-13 05:35:04 -05:00
$message . addClass ( 'hidden' ) ;
$editorTabs . addClass ( 'hidden' ) ;
2017-02-08 14:12:22 -05:00
} ;
2012-04-21 15:59:45 -04:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* focuses the message input
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name editor . focusInput
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-13 05:35:04 -05:00
me . focusInput = function ( )
2017-02-08 14:12:22 -05:00
{
2017-02-13 05:35:04 -05:00
$message . focus ( ) ;
2017-02-08 14:12:22 -05:00
} ;
2012-04-21 15:59:45 -04:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* returns the current text
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name editor . getText
2017-02-08 14:12:22 -05:00
* @ function
2017-02-13 05:35:04 -05:00
* @ return { string }
2017-02-08 14:12:22 -05:00
* /
2017-02-13 05:35:04 -05:00
me . getText = function ( )
2017-02-08 14:12:22 -05:00
{
2017-02-13 05:35:04 -05:00
return $message . val ( )
2017-02-08 14:12:22 -05:00
} ;
2016-08-11 05:40:37 -04:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-12 12:08:08 -05:00
* init status manager
2017-02-08 14:12:22 -05:00
*
2017-02-12 12:08:08 -05:00
* preloads jQuery elements
*
2017-02-13 05:35:04 -05:00
* @ name editor . init
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-12 12:08:08 -05:00
me . init = function ( )
2017-02-08 14:12:22 -05:00
{
2017-02-13 05:35:04 -05:00
$message = $ ( '#message' ) ;
$editorTabs = $ ( '#editorTabs' ) ;
2017-02-12 12:08:08 -05:00
2017-02-13 05:35:04 -05:00
// bind events
$message . keydown ( supportTabs ) ;
2017-02-12 15:13:04 -05:00
2017-02-13 05:35:04 -05:00
// bind click events to tab switchers (a), but save parent of them
// (li)
$messageEdit = $ ( '#messageedit' ) . click ( viewEditor ) . parent ( ) ;
$messagePreview = $ ( '#messagepreview' ) . click ( viewPreview ) . parent ( ) ;
2017-02-08 14:12:22 -05:00
} ;
2016-07-11 05:09:41 -04:00
2017-02-12 12:08:08 -05:00
return me ;
} ) ( window , document ) ;
/ * *
2017-02-13 05:35:04 -05:00
* Parse and show paste .
2017-02-12 12:08:08 -05:00
*
* @ param { object } window
* @ param { object } document
* @ class
* /
2017-02-13 05:35:04 -05:00
var pasteViewer = ( function ( window , document ) {
2017-02-12 12:08:08 -05:00
var me = { } ;
2017-02-13 05:35:04 -05:00
var $clearText ,
$comments ,
$discussion ,
$image ,
$placeholder ,
$prettyMessage ,
$prettyPrint ,
$remainingTime ;
var text ,
format = 'plaintext' ,
isDisplayed = false ,
isChanged = true ; // by default true as nothing was parsed yet
2017-02-12 12:08:08 -05:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* apply the set format on paste and displays it
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name pasteViewer . parsePaste
* @ private
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-13 05:35:04 -05:00
function parsePaste ( )
2016-07-11 05:09:41 -04:00
{
2017-02-13 05:35:04 -05:00
// skip parsing if no text is given
if ( text === '' ) {
return ;
2017-02-12 12:08:08 -05:00
}
2017-02-13 05:35:04 -05:00
// set text
helper . setElementText ( $clearText , text ) ;
helper . setElementText ( $prettyPrint , text ) ;
switch ( format ) {
case 'markdown' :
var converter = new showdown . Converter ( {
strikethrough : true ,
tables : true ,
tablesHeaderId : true
} ) ;
$clearText . html (
converter . makeHtml ( text )
) ;
// add table classes from bootstrap css
$clearText . find ( 'table' ) . addClass ( 'table-condensed table-bordered' ) ;
break ;
case 'syntaxhighlighting' :
// @TODO is this really needed or is "one" enough?
if ( typeof prettyPrint === 'function' )
{
prettyPrint ( ) ;
}
$prettyPrint . html (
prettyPrintOne (
helper . htmlEntities ( text ) , null , true
)
) ;
// fall through, as the rest is the same
default : // = 'plaintext'
// convert URLs to clickable links
helper . urls2links ( $clearText ) ;
helper . urls2links ( $prettyPrint ) ;
$prettyPrint . css ( 'white-space' , 'pre-wrap' ) ;
$prettyPrint . css ( 'word-break' , 'normal' ) ;
$prettyPrint . removeClass ( 'prettyprint' ) ;
}
}
2017-02-05 08:47:03 -05:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* displays the paste
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name pasteViewer . show
* @ private
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-13 05:35:04 -05:00
function showPaste ( )
2017-02-05 15:22:09 -05:00
{
2017-02-13 05:35:04 -05:00
// instead of "nothing" better display a placeholder
if ( text === '' ) {
$placeholder . removeClass ( 'hidden' )
return ;
}
// otherwise hide the placeholder
$placeholder . addClass ( 'hidden' )
switch ( format ) {
case 'markdown' :
$clearText . removeClass ( 'hidden' ) ;
$prettyMessage . addClass ( 'hidden' ) ;
break ;
default :
$clearText . addClass ( 'hidden' ) ;
$prettyMessage . removeClass ( 'hidden' ) ;
break ;
}
}
/ * *
* show decrypted text in the display area , including discussion ( if open )
*
* @ name pasteViewer . displayPaste
* @ function
* @ param { Object } [ paste ] - ( optional ) object including comments to display ( items = array with keys ( 'data' , 'meta' ) )
* /
me . displayPaste = function ( paste )
{
paste = paste || $ . parseJSON ( modal . getCipherData ( ) ) ;
var key = helper . pageKey ( ) ,
password = $passwordInput . val ( ) ;
if ( ! $prettyPrint . hasClass ( 'prettyprinted' ) ) {
// Try to decrypt the paste.
try
{
if ( paste . attachment )
{
var attachment = cryptTool . decipher ( key , password , paste . attachment ) ;
if ( attachment . length === 0 )
{
if ( password . length === 0 )
{
me . requestPassword ( ) ;
return ;
}
attachment = cryptTool . decipher ( key , password , paste . attachment ) ;
}
if ( attachment . length === 0 )
{
throw 'failed to decipher attachment' ;
}
if ( paste . attachmentname )
{
var attachmentname = cryptTool . decipher ( key , password , paste . attachmentname ) ;
if ( attachmentname . length > 0 )
{
$attachmentLink . attr ( 'download' , attachmentname ) ;
}
}
$attachmentLink . attr ( 'href' , attachment ) ;
$attachment . removeClass ( 'hidden' ) ;
// if the attachment is an image, display it
var imagePrefix = 'data:image/' ;
if ( attachment . substring ( 0 , imagePrefix . length ) === imagePrefix )
{
$image . html (
$ ( document . createElement ( 'img' ) )
. attr ( 'src' , attachment )
. attr ( 'class' , 'img-thumbnail' )
) ;
$image . removeClass ( 'hidden' ) ;
}
}
var cleartext = cryptTool . decipher ( key , password , paste . data ) ;
if ( cleartext . length === 0 && password . length === 0 && ! paste . attachment )
{
me . requestPassword ( ) ;
return ;
}
if ( cleartext . length === 0 && ! paste . attachment )
{
throw 'failed to decipher message' ;
}
$passwordInput . val ( password ) ;
if ( cleartext . length > 0 )
{
pasteViewer . setFormat ( paste . meta . formatter ) ;
me . formatPaste ( paste . meta . formatter , cleartext ) ;
}
}
catch ( err )
{
me . stateOnlyNewPaste ( ) ;
me . showError ( i18n . _ ( 'Could not decrypt data (Wrong key?)' ) ) ;
return ;
}
}
// display paste expiration / for your eyes only
if ( paste . meta . expire _date )
{
var expiration = helper . secondsToHuman ( paste . meta . remaining _time ) ,
expirationLabel = [
'This document will expire in %d ' + expiration [ 1 ] + '.' ,
'This document will expire in %d ' + expiration [ 1 ] + 's.'
] ;
2017-02-13 15:12:00 -05:00
$remainingTime . find ( ':last' ) . text ( i18n . _ ( expirationLabel , expiration [ 0 ] ) ) ;
2017-02-13 05:35:04 -05:00
$remainingTime . removeClass ( 'foryoureyesonly' )
2017-02-13 15:12:00 -05:00
. removeClass ( 'hidden' ) ;
2017-02-13 05:35:04 -05:00
}
if ( paste . meta . burnafterreading )
{
// unfortunately many web servers don't support DELETE (and PUT) out of the box
$ . ajax ( {
type : 'POST' ,
url : helper . scriptLocation ( ) + '?' + helper . pasteId ( ) ,
data : { deletetoken : 'burnafterreading' } ,
dataType : 'json' ,
headers : headers
} )
. fail ( function ( ) {
controller . showError ( i18n . _ ( 'Could not delete the paste, it was not stored in burn after reading mode.' ) ) ;
} ) ;
2017-02-13 15:12:00 -05:00
$remainingTime . find ( ':last' ) . text ( i18n . _ (
2017-02-13 05:35:04 -05:00
'FOR YOUR EYES ONLY. Don\'t close this window, this message can\'t be displayed again.'
) ) ;
$remainingTime . addClass ( 'foryoureyesonly' )
. removeClass ( 'hidden' ) ;
// discourage cloning (as it can't really be prevented)
$cloneButton . addClass ( 'hidden' ) ;
}
2017-02-08 14:11:04 -05:00
2017-02-13 05:35:04 -05:00
// if the discussion is opened on this paste, display it
if ( paste . meta . opendiscussion )
{
$comments . html ( '' ) ;
2017-02-08 14:11:04 -05:00
2017-02-13 05:35:04 -05:00
var $divComment ;
2017-02-12 12:08:08 -05:00
2017-02-13 05:35:04 -05:00
// iterate over comments
for ( var i = 0 ; i < paste . comments . length ; ++ i )
{
var $place = $comments ,
comment = paste . comments [ i ] ,
commentText = cryptTool . decipher ( key , password , comment . data ) ,
$parentComment = $ ( '#comment_' + comment . parentid ) ;
2017-02-12 12:08:08 -05:00
2017-02-13 05:35:04 -05:00
$divComment = $ ( '<article><div class="comment" id="comment_' + comment . id
+ '"><div class="commentmeta"><span class="nickname"></span>'
+ '<span class="commentdate"></span></div>'
+ '<div class="commentdata"></div>'
+ '<button class="btn btn-default btn-sm">'
+ i18n . _ ( 'Reply' ) + '</button></div></article>' ) ;
var $divCommentData = $divComment . find ( 'div.commentdata' ) ;
2017-02-12 12:08:08 -05:00
2017-02-13 05:35:04 -05:00
// if parent comment exists
if ( $parentComment . length )
{
// shift comment to the right
$place = $parentComment ;
}
$divComment . find ( 'button' ) . click ( { commentid : comment . id } , me . openReply ) ;
helper . setElementText ( $divCommentData , commentText ) ;
helper . urls2links ( $divCommentData ) ;
2017-02-08 14:11:04 -05:00
2017-02-13 05:35:04 -05:00
// try to get optional nickname
var nick = cryptTool . decipher ( key , password , comment . meta . nickname ) ;
if ( nick . length > 0 )
{
$divComment . find ( 'span.nickname' ) . text ( nick ) ;
}
else
{
divComment . find ( 'span.nickname' ) . html ( '<i>' + i18n . _ ( 'Anonymous' ) + '</i>' ) ;
}
$divComment . find ( 'span.commentdate' )
. text ( ' (' + ( new Date ( comment . meta . postdate * 1000 ) . toLocaleString ( ) ) + ')' )
. attr ( 'title' , 'CommentID: ' + comment . id ) ;
2017-02-12 12:08:08 -05:00
2017-02-13 05:35:04 -05:00
// if an avatar is available, display it
if ( comment . meta . vizhash )
{
$divComment . find ( 'span.nickname' )
. before (
'<img src="' + comment . meta . vizhash + '" class="vizhash" title="' +
i18n . _ ( 'Anonymous avatar (Vizhash of the IP address)' ) + '" /> '
) ;
}
2017-02-12 12:08:08 -05:00
2017-02-13 05:35:04 -05:00
$place . append ( $divComment ) ;
}
2017-02-12 12:08:08 -05:00
2017-02-13 05:35:04 -05:00
// add 'add new comment' area
$divComment = $ (
'<div class="comment"><button class="btn btn-default btn-sm">' +
i18n . _ ( 'Add comment' ) + '</button></div>'
) ;
$divComment . find ( 'button' ) . click ( { commentid : helper . pasteId ( ) } , me . openReply ) ;
$comments . append ( $divComment ) ;
$discussion . removeClass ( 'hidden' ) ;
2017-02-08 14:12:22 -05:00
}
2017-02-13 05:35:04 -05:00
} ;
2017-02-08 14:11:04 -05:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* open the comment entry when clicking the "Reply" button of a comment
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name pasteViewer . openReply
2017-02-08 14:12:22 -05:00
* @ function
* @ param { Event } event
* /
2017-02-13 05:35:04 -05:00
me . openReply = function ( event )
2016-11-13 12:12:10 -05:00
{
2017-02-08 14:12:22 -05:00
event . preventDefault ( ) ;
2017-02-13 05:35:04 -05:00
// remove any other reply area
$ ( 'div.reply' ) . remove ( ) ;
var source = $ ( event . target ) ,
commentid = event . data . commentid ,
hint = i18n . _ ( 'Optional nickname...' ) ,
$reply = $ ( '#replytemplate' ) ;
$reply . find ( 'button' ) . click (
{ parentid : commentid } ,
me . sendComment
) ;
source . after ( $reply ) ;
$replyStatus = $ ( '#replystatus' ) ; // when ID --> put into HTML
$ ( '#replymessage' ) . focus ( ) ;
} ;
2017-02-08 14:11:04 -05:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* sets the format in which the text is shown
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name pasteViewer . setFormat
2017-02-08 14:12:22 -05:00
* @ function
2017-02-13 05:35:04 -05:00
* @ param { string } the the new format
2017-02-08 14:12:22 -05:00
* /
2017-02-13 05:35:04 -05:00
me . setFormat = function ( newFormat )
2017-02-08 14:12:22 -05:00
{
2017-02-13 05:35:04 -05:00
if ( format !== newFormat ) {
format = newFormat ;
isChanged = true ;
}
} ;
2017-02-08 14:11:04 -05:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* returns the current format
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name pasteViewer . setFormat
2017-02-08 14:12:22 -05:00
* @ function
2017-02-13 05:35:04 -05:00
* @ return { string }
2017-02-08 14:12:22 -05:00
* /
2017-02-13 05:35:04 -05:00
me . getFormat = function ( )
2017-02-08 14:12:22 -05:00
{
2017-02-13 05:35:04 -05:00
return format ;
2017-02-08 14:12:22 -05:00
} ;
2017-02-08 14:11:04 -05:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* sets the text to show
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name editor . init
2017-02-08 14:12:22 -05:00
* @ function
2017-02-13 05:35:04 -05:00
* @ param { string } the text to show
2017-02-08 14:12:22 -05:00
* /
2017-02-13 05:35:04 -05:00
me . setText = function ( newText )
2017-02-08 14:12:22 -05:00
{
2017-02-13 05:35:04 -05:00
if ( text !== newText ) {
text = newText ;
isChanged = true ;
}
2017-02-08 14:12:22 -05:00
} ;
2017-02-08 14:11:04 -05:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* show / update the parsed text ( preview )
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name pasteViewer . trigger
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-13 05:35:04 -05:00
me . trigger = function ( )
2017-02-08 14:12:22 -05:00
{
2017-02-13 05:35:04 -05:00
if ( isChanged ) {
parsePaste ( ) ;
isChanged = false ;
}
if ( ! isDisplayed ) {
showPaste ( ) ;
isDisplayed = true ;
}
2017-02-08 14:12:22 -05:00
} ;
2017-02-08 14:11:04 -05:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* hide parsed text ( preview )
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name pasteViewer . hide
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-13 05:35:04 -05:00
me . hide = function ( )
2017-02-08 14:12:22 -05:00
{
2017-02-13 05:35:04 -05:00
if ( ! isDisplayed ) {
console . warn ( 'pasteViewer was called to hide the parsed view, but it is already hidden.' ) ;
}
$clearText . addClass ( 'hidden' ) ;
$prettyMessage . addClass ( 'hidden' ) ;
$placeholder . addClass ( 'hidden' ) ;
isDisplayed = false ;
2017-02-08 14:12:22 -05:00
} ;
2017-02-08 14:11:04 -05:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-12 12:08:08 -05:00
* init status manager
2017-02-08 14:12:22 -05:00
*
2017-02-12 12:08:08 -05:00
* preloads jQuery elements
*
* @ name editor . init
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-12 12:08:08 -05:00
me . init = function ( )
2017-02-08 14:12:22 -05:00
{
2017-02-13 05:35:04 -05:00
$clearText = $ ( '#cleartext' ) ;
$comments = $ ( '#comments' ) ;
$discussion = $ ( '#discussion' ) ;
$image = $ ( '#image' ) ;
$placeholder = $ ( '#placeholder' ) ;
$prettyMessage = $ ( '#prettymessage' ) ;
$prettyPrint = $ ( '#prettyprint' ) ;
$remainingTime = $ ( '#remainingtime' ) ;
2017-02-12 12:08:08 -05:00
2017-02-13 05:35:04 -05:00
// check requirements
if ( typeof prettyPrintOne !== 'function' ) {
2017-02-13 15:12:00 -05:00
alert . showError (
2017-02-13 05:35:04 -05:00
i18n . _ ( 'The library %s is not available.' , 'pretty print' ) +
i18n . _ ( 'This may cause display errors.' )
) ;
}
if ( typeof showdown !== 'object' ) {
2017-02-13 15:12:00 -05:00
alert . showError (
2017-02-13 05:35:04 -05:00
i18n . _ ( 'The library %s is not available.' , 'showdown' ) +
i18n . _ ( 'This may cause display errors.' )
) ;
}
// get default option from template/HTML or fall back to set value
format = modal . getFormatDefault ( ) || format ;
2017-02-08 14:12:22 -05:00
} ;
2017-02-08 14:11:04 -05:00
2017-02-12 12:08:08 -05:00
return me ;
} ) ( window , document ) ;
/ * *
* Manage top ( navigation ) bar
*
* @ param { object } window
* @ param { object } document
* @ name state
* @ class
* /
var topNav = ( function ( window , document ) {
var me = { } ;
2017-02-12 15:13:04 -05:00
var createButtonsDisplayed = false ;
var viewButtonsDisplayed = false ;
2017-02-12 12:08:08 -05:00
var $attach ,
$burnAfterReading ,
$burnAfterReadingOption ,
$cloneButton ,
$expiration ,
$fileRemoveButton ,
$formatter ,
$newButton ,
2017-02-13 05:35:04 -05:00
$openDiscussionOption ,
2017-02-12 12:08:08 -05:00
$openDiscussion ,
2017-02-12 15:13:04 -05:00
$password ,
2017-02-13 15:12:00 -05:00
$passwordInput ,
2017-02-12 12:08:08 -05:00
$rawTextButton ,
2017-02-13 15:12:00 -05:00
$sendButton ,
$loadingIndicator ;
2017-02-12 12:08:08 -05:00
2017-02-13 05:35:04 -05:00
var pasteExpiration = '1week' ;
2017-02-12 12:08:08 -05:00
/ * *
2017-02-13 05:35:04 -05:00
* set the expiration on bootstrap templates in dropdown
2017-02-12 12:08:08 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name topNav . updateExpiration
2017-02-12 12:08:08 -05:00
* @ function
* @ param { Event } event
* /
2017-02-13 05:35:04 -05:00
function updateExpiration ( event )
2017-02-12 12:08:08 -05:00
{
2017-02-13 05:35:04 -05:00
// get selected option
2017-02-12 12:08:08 -05:00
var target = $ ( event . target ) ;
2017-02-13 05:35:04 -05:00
// update dropdown display and save new expiration time
2017-02-12 12:08:08 -05:00
$ ( '#pasteExpirationDisplay' ) . text ( target . text ( ) ) ;
2017-02-13 05:35:04 -05:00
pasteExpiration = target . data ( 'expiration' ) ;
event . preventDefault ( ) ;
2017-02-12 12:08:08 -05:00
}
/ * *
2017-02-13 05:35:04 -05:00
* set the format on bootstrap templates in dropdown
2017-02-12 12:08:08 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name topNav . updateFormat
2017-02-12 12:08:08 -05:00
* @ function
* @ param { Event } event
* /
2017-02-13 05:35:04 -05:00
function updateFormat ( event )
2017-02-12 12:08:08 -05:00
{
2017-02-13 05:35:04 -05:00
// get selected option
var $target = $ ( event . target ) ;
2017-02-12 12:08:08 -05:00
2017-02-13 05:35:04 -05:00
// update dropdown display and save new format
var newFormat = $target . data ( 'format' ) ;
$ ( '#pasteFormatterDisplay' ) . text ( $target . text ( ) ) ;
pasteViewer . setFormat ( newFormat ) ;
// update preview
if ( editor . isPreview ( ) ) {
pasteViewer . trigger ( ) ;
2017-02-12 12:08:08 -05:00
}
2017-02-13 05:35:04 -05:00
2017-02-12 12:08:08 -05:00
event . preventDefault ( ) ;
2017-02-13 05:35:04 -05:00
}
2017-02-08 14:12:22 -05:00
/ * *
2017-02-12 12:08:08 -05:00
* when "burn after reading" is checked , disable discussion
2017-02-08 14:12:22 -05:00
*
2017-02-12 12:08:08 -05:00
* @ name topNav . changeBurnAfterReading
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-12 12:08:08 -05:00
function changeBurnAfterReading ( )
2017-02-08 14:11:04 -05:00
{
2017-02-13 05:35:04 -05:00
if ( $burnAfterReading . is ( ':checked' ) ) {
$openDiscussionOption . addClass ( 'buttondisabled' ) ;
$openDiscussion . prop ( 'checked' , false ) ;
// if button is actually disabled, force-enable it and uncheck other button
$burnAfterReadingOption . removeClass ( 'buttondisabled' ) ;
} else {
$openDiscussionOption . removeClass ( 'buttondisabled' ) ;
2017-02-08 14:12:22 -05:00
}
2017-02-12 12:08:08 -05:00
}
2015-09-05 11:12:11 -04:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-12 12:08:08 -05:00
* when discussion is checked , disable "burn after reading"
2017-02-08 14:12:22 -05:00
*
2017-02-13 05:35:04 -05:00
* @ name topNav . changeOpenDiscussion
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-13 05:35:04 -05:00
function changeOpenDiscussion ( )
2015-09-05 11:12:11 -04:00
{
2017-02-13 05:35:04 -05:00
if ( $openDiscussion . is ( ':checked' ) ) {
2017-02-12 12:08:08 -05:00
$burnAfterReadingOption . addClass ( 'buttondisabled' ) ;
2017-02-13 05:35:04 -05:00
$burnAfterReading . prop ( 'checked' , false ) ;
// if button is actually disabled, force-enable it and uncheck other button
$openDiscussionOption . removeClass ( 'buttondisabled' ) ;
} else {
2017-02-12 12:08:08 -05:00
$burnAfterReadingOption . removeClass ( 'buttondisabled' ) ;
2017-02-08 14:12:22 -05:00
}
2017-02-12 12:08:08 -05:00
}
/ * *
* return raw text
*
* @ name topNav . rawText
* @ function
* @ param { Event } event
* /
function rawText ( event )
{
2017-02-13 05:35:04 -05:00
var paste = pasteViewer . getFormat ( ) === 'markdown' ?
2017-02-12 12:08:08 -05:00
$prettyPrint . text ( ) : $clearText . text ( ) ;
history . pushState (
null , document . title , helper . scriptLocation ( ) + '?' +
helper . pasteId ( ) + '#' + helper . pageKey ( )
) ;
// we use text/html instead of text/plain to avoid a bug when
// reloading the raw text view (it reverts to type text/html)
var newDoc = document . open ( 'text/html' , 'replace' ) ;
newDoc . write ( '<pre>' + helper . htmlEntities ( paste ) + '</pre>' ) ;
newDoc . close ( ) ;
event . preventDefault ( ) ;
}
/ * *
* set the language in a cookie and reload the page
*
* @ name topNav . setLanguage
* @ function
* @ param { Event } event
* /
function setLanguage ( event )
{
document . cookie = 'lang=' + $ ( event . target ) . data ( 'lang' ) ;
me . reloadPage ( event ) ;
}
2017-02-08 14:12:22 -05:00
/ * *
2017-02-12 12:08:08 -05:00
* Shows all elements belonging to viwing an existing pastes
2017-02-08 14:12:22 -05:00
*
2017-02-12 12:08:08 -05:00
* @ name topNav . hideAllElem
2017-02-08 14:12:22 -05:00
* @ function
* /
2017-02-12 12:08:08 -05:00
me . showViewButtons = function ( )
2015-09-05 11:12:11 -04:00
{
2017-02-12 15:13:04 -05:00
if ( viewButtonsDisplayed ) {
console . log ( 'showViewButtons: view buttons are already displayed' ) ;
return ;
}
2017-02-12 12:08:08 -05:00
$cloneButton . removeClass ( 'hidden' ) ;
$rawTextButton . removeClass ( 'hidden' ) ;
2017-02-12 15:13:04 -05:00
viewButtonsDisplayed = true ;
2017-02-12 12:08:08 -05:00
} ;
2017-02-08 14:12:22 -05:00
2017-02-12 12:08:08 -05:00
/ * *
* Hides all elements belonging to existing pastes
*
* @ name topNav . hideAllElem
* @ function
* /
me . hideViewButtons = function ( )
{
2017-02-12 15:13:04 -05:00
if ( ! viewButtonsDisplayed ) {
console . log ( 'hideViewButtons: view buttons are already hidden' ) ;
return ;
}
2017-02-12 12:08:08 -05:00
$cloneButton . addClass ( 'hidden' ) ;
$rawTextButton . addClass ( 'hidden' ) ;
2017-02-12 15:13:04 -05:00
viewButtonsDisplayed = false ;
2017-02-12 12:08:08 -05:00
} ;
2017-02-08 14:12:22 -05:00
2017-02-12 12:08:08 -05:00
/ * *
* shows all elements needed when creating a new paste
*
* @ name topNav . setLanguage
* @ function
* /
me . showCreateButtons = function ( )
{
2017-02-12 15:13:04 -05:00
if ( createButtonsDisplayed ) {
console . log ( 'showCreateButtons: create buttons are already displayed' ) ;
return ;
}
2017-02-12 12:08:08 -05:00
$sendButton . removeClass ( 'hidden' ) ;
$expiration . removeClass ( 'hidden' ) ;
$formatter . removeClass ( 'hidden' ) ;
$burnAfterReadingOption . removeClass ( 'hidden' ) ;
2017-02-13 05:35:04 -05:00
$openDiscussionOption . removeClass ( 'hidden' ) ;
2017-02-12 12:08:08 -05:00
$newButton . removeClass ( 'hidden' ) ;
$password . removeClass ( 'hidden' ) ;
$attach . removeClass ( 'hidden' ) ;
2017-02-13 05:35:04 -05:00
// $clonedFile.removeClass('hidden'); // @TODO
2017-02-12 15:13:04 -05:00
createButtonsDisplayed = true ;
2017-02-12 12:08:08 -05:00
} ;
2017-02-08 14:12:22 -05:00
2017-02-12 12:08:08 -05:00
/ * *
* shows all elements needed when creating a new paste
*
* @ name topNav . setLanguage
* @ function
* /
me . hideCreateButtons = function ( )
{
2017-02-12 15:13:04 -05:00
if ( ! createButtonsDisplayed ) {
console . log ( 'hideCreateButtons: create buttons are already hidden' ) ;
return ;
}
2017-02-12 12:08:08 -05:00
$sendButton . addClass ( 'hidden' ) ;
$expiration . addClass ( 'hidden' ) ;
$formatter . addClass ( 'hidden' ) ;
$burnAfterReadingOption . addClass ( 'hidden' ) ;
2017-02-13 05:35:04 -05:00
$openDiscussionOption . addClass ( 'hidden' ) ;
2017-02-12 12:08:08 -05:00
$newButton . addClass ( 'hidden' ) ;
$password . addClass ( 'hidden' ) ;
$attach . addClass ( 'hidden' ) ;
2017-02-13 05:35:04 -05:00
// $clonedFile.addClass('hidden'); // @TODO
2017-02-12 15:13:04 -05:00
createButtonsDisplayed = false ;
2017-02-12 12:08:08 -05:00
} ;
2012-04-23 10:30:02 -04:00
2017-02-12 12:08:08 -05:00
/ * *
* only shows the "new paste" button
*
* @ name topNav . setLanguage
* @ function
* /
me . showNewPasteButton = function ( )
{
$newButton . addClass ( 'hidden' ) ;
2017-02-08 14:12:22 -05:00
} ;
2012-04-23 10:30:02 -04:00
2017-02-08 14:12:22 -05:00
/ * *
2017-02-12 12:08:08 -05:00
* shows a loading message , optionally with a percentage
2017-02-08 14:12:22 -05:00
*
2017-02-12 12:08:08 -05:00
* @ name topNav . showLoading
2017-02-08 14:12:22 -05:00
* @ function
2017-02-13 15:12:00 -05:00
* @ param { string } message optional , default : 'Loading…'
* @ param { int } percentage optional , default : null
2017-02-08 14:12:22 -05:00
* /
2017-02-12 12:08:08 -05:00
me . showLoading = function ( message , percentage )
2017-02-08 14:11:04 -05:00
{
2017-02-13 15:12:00 -05:00
// default message text
if ( typeof message === 'undefined' ) {
message = i18n . _ ( 'Loading…' ) ;
}
console . log ( $loadingIndicator ) ;
// currently percentage parameter is ignored
if ( message !== null ) {
$loadingIndicator . find ( ':last' ) . text ( message ) ;
}
2017-02-12 12:08:08 -05:00
$loadingIndicator . removeClass ( 'hidden' ) ;
} ;
/ * *
* hides the loading message
*
* @ name topNav . hideLoading
* @ function
* /
me . hideLoading = function ( )
{
2017-02-13 15:12:00 -05:00
$loadingIndicator . addClass ( 'hidden' ) ;
} ;
/ * *
* collapses the navigation bar if nedded
*
* @ name topNav . collapseBar
* @ function
* /
me . collapseBar = function ( )
{
var $bar = $ ( '.navbar-toggle' ) ;
// check if bar is expanded
if ( $bar . hasClass ( 'collapse in' ) ) {
// if so, toggle it
$bar . click ( ) ;
}
2017-02-12 12:08:08 -05:00
} ;
2017-02-08 14:12:22 -05:00
2017-02-13 05:35:04 -05:00
/ * *
* returns the currently set expiration time
*
* @ name topNav . getExpiration
* @ function
* @ return { int }
* /
me . getExpiration = function ( )
{
return pasteExpiration ;
} ;
2017-02-13 15:12:00 -05:00
/ * *
* returns the currently selected file ( s )
*
* @ name topNav . getFileList
* @ function
* @ return { FileList | null }
* /
me . getFileList = function ( )
{
var $file = $ ( '#file' ) ;
// if no file given, return null
if ( ! $file . length || ! $file [ 0 ] . files . length ) {
return null ;
}
// @TODO is this really necessary
if ( ! ( $file [ 0 ] . files && $file [ 0 ] . files [ 0 ] ) ) {
return null ;
}
return $file [ 0 ] . files ;
} ;
/ * *
* returns the state of the burn after reading checkbox
*
* @ name topNav . getExpiration
* @ function
* @ return { bool }
* /
me . getBurnAfterReading = function ( )
{
return $burnAfterReading . is ( ':checked' ) ;
} ;
/ * *
* returns the state of the discussion checkbox
*
* @ name topNav . getOpenDiscussion
* @ function
* @ return { bool }
* /
me . getOpenDiscussion = function ( )
{
return $openDiscussion . is ( ':checked' ) ;
} ;
/ * *
* returns the entered password
*
* @ name topNav . getPassword
* @ function
* @ return { string }
* /
me . getPassword = function ( )
{
return $passwordInput . val ( ) ;
} ;
2017-02-12 12:08:08 -05:00
/ * *
* init navigation manager
*
* preloads jQuery elements
*
* @ name topNav . init
* @ function
* /
me . init = function ( )
{
2017-02-08 14:12:22 -05:00
$attach = $ ( '#attach' ) ;
$burnAfterReading = $ ( '#burnafterreading' ) ;
$burnAfterReadingOption = $ ( '#burnafterreadingoption' ) ;
$cloneButton = $ ( '#clonebutton' ) ;
$expiration = $ ( '#expiration' ) ;
$fileRemoveButton = $ ( '#fileremovebutton' ) ;
$formatter = $ ( '#formatter' ) ;
$newButton = $ ( '#newbutton' ) ;
2017-02-13 05:35:04 -05:00
$openDiscussionOption = $ ( '#opendiscussionoption' ) ;
2017-02-08 14:12:22 -05:00
$openDiscussion = $ ( '#opendiscussion' ) ;
2017-02-12 15:13:04 -05:00
$password = $ ( '#password' ) ;
2017-02-13 15:12:00 -05:00
$passwordInput = $ ( '#passwordinput' ) ;
2017-02-08 14:12:22 -05:00
$rawTextButton = $ ( '#rawtextbutton' ) ;
$sendButton = $ ( '#sendbutton' ) ;
2017-02-13 15:12:00 -05:00
$loadingIndicator = $ ( '#loadingindicator' ) ;
2013-10-31 20:15:14 -04:00
2017-02-12 12:08:08 -05:00
// bootstrap template drop down
$ ( '#language ul.dropdown-menu li a' ) . click ( me . setLanguage ) ;
// page template drop down
$ ( '#language select option' ) . click ( me . setLanguage ) ;
// bind events
$burnAfterReading . change ( changeBurnAfterReading ) ;
2017-02-13 05:35:04 -05:00
$openDiscussionOption . change ( changeOpenDiscussion ) ;
2017-02-12 15:13:04 -05:00
$newButton . click ( controller . newPaste ) ;
2017-02-13 15:12:00 -05:00
$sendButton . click ( controller . submitPaste ) ;
2017-02-12 12:08:08 -05:00
$cloneButton . click ( controller . clonePaste ) ;
2017-02-12 15:13:04 -05:00
$rawTextButton . click ( rawText ) ;
2017-02-12 12:08:08 -05:00
$fileRemoveButton . click ( me . removeAttachment ) ;
2017-02-13 05:35:04 -05:00
// bootstrap template drop downs
$ ( 'ul.dropdown-menu li a' , $ ( '#expiration' ) . parent ( ) ) . click ( updateExpiration ) ;
$ ( 'ul.dropdown-menu li a' , $ ( '#formatter' ) . parent ( ) ) . click ( updateFormat ) ;
2017-02-12 12:08:08 -05:00
// initiate default state of checkboxes
changeBurnAfterReading ( ) ;
2017-02-13 05:35:04 -05:00
changeOpenDiscussion ( ) ;
// get default value from template or fall back to set value
pasteExpiration = modal . getExpirationDefault ( ) || pasteExpiration ;
2017-02-12 12:08:08 -05:00
} ;
return me ;
} ) ( window , document ) ;
/ * *
2017-02-13 15:12:00 -05:00
* Responsible for AJAX requests , transparently handles encryption …
2017-02-12 12:08:08 -05:00
*
2017-02-13 15:12:00 -05:00
* @ name state
2017-02-12 12:08:08 -05:00
* @ class
* /
2017-02-13 15:12:00 -05:00
var uploader = ( function ( ) {
2017-02-12 12:08:08 -05:00
var me = { } ;
2017-02-13 15:12:00 -05:00
var successFunc = null ,
failureFunc = null ;
var url = helper . scriptLocation ( ) ,
data = { } ,
randomKey ,
password ;
// public variable ('constant') to prevent magic numbers
me . error = {
okay : 0 ,
custom : 1 ,
unknown : 2 ,
serverError : 3
} ;
2017-02-12 12:08:08 -05:00
/ * *
2017-02-13 15:12:00 -05:00
* ajaxHeaders to send in AJAX requests
2017-02-12 12:08:08 -05:00
*
* @ private
2017-02-13 15:12:00 -05:00
* @ readonly
2017-02-12 12:08:08 -05:00
* @ enum { Object }
* /
2017-02-13 15:12:00 -05:00
var ajaxHeaders = { 'X-Requested-With' : 'JSONHttpRequest' } ;
2017-02-12 12:08:08 -05:00
/ * *
2017-02-13 15:12:00 -05:00
* called after successful upload
2017-02-12 12:08:08 -05:00
*
2017-02-13 15:12:00 -05:00
* @ function
* @ param { int } status
* @ param { int } data - optional
2017-02-12 12:08:08 -05:00
* /
2017-02-13 15:12:00 -05:00
function success ( status , result )
{
// add useful data to result
result . encryptionKey = randomKey ;
result . requestData = data ;
if ( successFunc !== null ) {
successFunc ( status , result ) ;
}
}
2017-02-12 12:08:08 -05:00
/ * *
2017-02-13 15:12:00 -05:00
* called after a upload failure
2017-02-12 12:08:08 -05:00
*
2017-02-13 15:12:00 -05:00
* @ name uploader . submitPasteUpload
* @ function
* @ param { int } status - internal code
* @ param { int } data - original error code
2017-02-12 12:08:08 -05:00
* /
2017-02-13 15:12:00 -05:00
function fail ( status , result )
{
if ( failureFunc !== null ) {
failureFunc ( status , result ) ;
}
}
/ * *
* actually uploads the data
*
* @ name uploader . submitPasteUpload
* @ function
* /
me . trigger = function ( )
{
console . log ( data ) ;
$ . ajax ( {
type : 'POST' ,
url : url ,
data : data ,
dataType : 'json' ,
headers : ajaxHeaders ,
success : function ( result ) {
if ( result . status === 0 ) {
success ( 0 , result ) ;
} else if ( result . status === 1 ) {
fail ( 1 , result ) ;
} else {
fail ( 2 , result ) ;
}
}
} )
. fail ( function ( jqXHR , textStatus , errorThrown ) {
console . error ( textStatus , errorThrown ) ;
fail ( 3 , jqXHR ) ;
} ) ;
} ;
/ * *
* set success function
*
* @ name uploader . setSuccess
* @ function
* @ param { function } func
* /
me . setSuccess = function ( func )
{
successFunc = func ;
} ;
/ * *
* set failure function
*
* @ name uploader . setSuccess
* @ function
* @ param { function } func
* /
me . setFailure = function ( func )
{
failureFunc = func ;
} ;
/ * *
* prepares a new upload
*
* @ name uploader . prepare
* @ function
* @ param { string } newPassword
* @ return { object }
* /
me . prepare = function ( newPassword )
{
// set password
password = newPassword ;
// entropy should already be checked
// @TODO maybe move it here?
// generate a new random key
randomKey = cryptTool . getSymmetricKey ( ) ;
// reset data
data = { } ;
} ;
/ * *
* encrypts and sets the data
*
* @ name uploader . setData
* @ function
* @ param { string } index
* @ param { mixed } element
* /
me . setData = function ( index , element )
{
data [ index ] = cryptTool . cipher ( randomKey , password , element ) ;
} ;
/ * *
* set the additional metadata to send unencrypted
*
* @ name uploader . setUnencryptedData
* @ function
* @ param { string } index
* @ param { mixed } element
* /
me . setUnencryptedData = function ( index , element )
{
data [ index ] = element ;
} ;
/ * *
* set the additional metadata to send unencrypted passed at once
*
* @ name uploader . setUnencryptedData
* @ function
* @ param { object } newData
* /
me . setUnencryptedBulkData = function ( newData )
{
$ . extend ( data , newData ) ;
} ;
/ * *
* init uploader
*
* @ name uploader . init
* @ function
* /
me . init = function ( )
{
// nothing yet
} ;
return me ;
} ) ( ) ;
/ * *
* PrivateBin logic
*
* @ param { object } window
* @ param { object } document
* @ name controller
* @ class
* /
var controller = ( function ( window , document ) {
var me = { } ;
/ * *
* called after successful upload
*
* @ function
* @ param { int } status
* @ param { int } data
* /
function showCreatedPaste ( status , data ) {
topNav . hideLoading ( ) ;
console . log ( data ) ;
var url = helper . scriptLocation ( ) + '?' + data . id + '#' + data . encryptionKey ,
deleteUrl = helper . scriptLocation ( ) + '?pasteid=' + data . id + '&deletetoken=' + data . deletetoken ;
alert . hideMessages ( ) ;
// show notification
alert . createPasteNotification ( url , deleteUrl )
// show new URL in browser bar
history . pushState ( { type : 'newpaste' } , document . title , url ) ;
topNav . showViewButtons ( ) ;
editor . hide ( ) ;
// parse and show text
// (preparation already done in me.submitPaste())
pasteViewer . trigger ( ) ;
}
2017-02-12 12:08:08 -05:00
/ * *
* send a reply in a discussion
*
* @ name controller . sendComment
* @ function
* @ param { Event } event
* /
me . sendComment = function ( event )
{
event . preventDefault ( ) ;
$errorMessage . addClass ( 'hidden' ) ;
// do not send if no data
var replyMessage = $ ( '#replymessage' ) ;
if ( replyMessage . val ( ) . length === 0 )
{
return ;
}
me . showStatus ( i18n . _ ( 'Sending comment...' ) , true ) ;
var parentid = event . data . parentid ,
key = helper . pageKey ( ) ,
2017-02-12 15:13:04 -05:00
cipherdata = cryptTool . cipher ( key , $passwordInput . val ( ) , replyMessage . val ( ) ) ,
2017-02-12 12:08:08 -05:00
ciphernickname = '' ,
nick = $ ( '#nickname' ) . val ( ) ;
if ( nick . length > 0 )
{
2017-02-12 15:13:04 -05:00
ciphernickname = cryptTool . cipher ( key , $passwordInput . val ( ) , nick ) ;
2017-02-12 12:08:08 -05:00
}
2017-02-13 15:12:00 -05:00
var dataToSend = {
2017-02-12 12:08:08 -05:00
data : cipherdata ,
parentid : parentid ,
pasteid : helper . pasteId ( ) ,
nickname : ciphernickname
} ;
$ . ajax ( {
type : 'POST' ,
url : helper . scriptLocation ( ) ,
2017-02-13 15:12:00 -05:00
data : dataToSend ,
2017-02-12 12:08:08 -05:00
dataType : 'json' ,
2017-02-13 15:12:00 -05:00
headers : ajaxHeaders ,
success : function ( data ) {
2017-02-12 12:08:08 -05:00
if ( data . status === 0 )
{
controller . showStatus ( i18n . _ ( 'Comment posted.' ) ) ;
$ . ajax ( {
type : 'GET' ,
url : helper . scriptLocation ( ) + '?' + helper . pasteId ( ) ,
dataType : 'json' ,
2017-02-13 15:12:00 -05:00
headers : ajaxHeaders ,
success : function ( data ) {
2017-02-12 12:08:08 -05:00
if ( data . status === 0 )
{
2017-02-13 15:12:00 -05:00
me . displayMessages ( data ) ;
2017-02-12 12:08:08 -05:00
}
else if ( data . status === 1 )
{
2017-02-13 15:12:00 -05:00
alert . showError ( i18n . _ ( 'Could not refresh display: %s' , data . message ) ) ;
2017-02-12 12:08:08 -05:00
}
else
{
2017-02-13 15:12:00 -05:00
alert . showError ( i18n . _ ( 'Could not refresh display: %s' , i18n . _ ( 'unknown status' ) ) ) ;
2017-02-12 12:08:08 -05:00
}
}
} )
. fail ( function ( ) {
controller . showError ( i18n . _ ( 'Could not refresh display: %s' , i18n . _ ( 'server error or not responding' ) ) ) ;
} ) ;
}
else if ( data . status === 1 )
{
controller . showError ( i18n . _ ( 'Could not post comment: %s' , data . message ) ) ;
}
else
{
controller . showError ( i18n . _ ( 'Could not post comment: %s' , i18n . _ ( 'unknown status' ) ) ) ;
}
}
} )
. fail ( function ( ) {
controller . showError ( i18n . _ ( 'Could not post comment: %s' , i18n . _ ( 'server error or not responding' ) ) ) ;
} ) ;
} ;
/ * *
2017-02-13 15:12:00 -05:00
* sends a new paste to server
2017-02-12 12:08:08 -05:00
*
2017-02-13 15:12:00 -05:00
* @ name controller . submitPaste
2017-02-12 12:08:08 -05:00
* @ function
* /
2017-02-13 15:12:00 -05:00
me . submitPaste = function ( )
2017-02-12 12:08:08 -05:00
{
2017-02-13 15:12:00 -05:00
// UI loading state
topNav . hideCreateButtons ( ) ;
topNav . showLoading ( i18n . _ ( 'Sending paste...' ) , 0 ) ;
topNav . collapseBar ( ) ;
2017-02-12 12:08:08 -05:00
2017-02-13 15:12:00 -05:00
// get data
var plainText = editor . getText ( ) ;
// do not send if there is no data
if ( plainText . length === 0 && files === null ) {
// revert loading status…
topNav . hideLoading ( ) ;
topNav . showCreateButtons ( ) ;
2017-02-12 12:08:08 -05:00
return ;
}
2017-02-13 15:12:00 -05:00
topNav . showLoading ( i18n . _ ( 'Sending paste...' ) , 10 ) ;
// check entropy
if ( ! cryptTool . isEntropyReady ( ) ) {
// display a message and wait
alert . showStatus ( i18n . _ ( 'Please move your mouse for more entropy...' ) ) ;
cryptTool . addEntropySeedListener ( function ( ) {
me . submitPaste ( event ) ;
2017-02-12 12:08:08 -05:00
} ) ;
}
2017-02-13 15:12:00 -05:00
// prepare uploader
uploader . prepare ( topNav . getPassword ( ) ) ;
2017-02-12 12:08:08 -05:00
2017-02-13 15:12:00 -05:00
// encrypt cipher data
uploader . setData ( 'data' , plainText ) ;
2017-02-12 12:08:08 -05:00
2017-02-13 15:12:00 -05:00
// encrypt attachments
var files = topNav . getFileList ( ) ;
if ( files !== null ) {
2017-02-12 12:08:08 -05:00
var reader = new FileReader ( ) ;
2017-02-13 15:12:00 -05:00
2017-02-12 12:08:08 -05:00
// closure to capture the file information
2017-02-13 15:12:00 -05:00
reader . onload = ( function ( file ) {
return function ( event ) {
uploader . setData ( 'attachment' , event . target . result ) ;
uploader . setData ( 'attachmentname' , file . name ) ;
2017-02-12 12:08:08 -05:00
} ;
} ) ( files [ 0 ] ) ;
2017-02-13 15:12:00 -05:00
// actually read first file
2017-02-12 12:08:08 -05:00
reader . readAsDataURL ( files [ 0 ] ) ;
2017-02-13 15:12:00 -05:00
} else if ( alert . hasAttachment ( ) ) {
var attachment = alert . getAttachment ( ) ;
2017-02-12 12:08:08 -05:00
2017-02-13 15:12:00 -05:00
uploader . setData ( 'attachment' , attachment [ 0 ] ) ;
uploader . setUnencryptedData ( 'attachmentname' , attachment [ 1 ] ) ; // @TODO does not encrypt file name??!
2017-02-12 12:08:08 -05:00
}
2017-02-13 15:12:00 -05:00
// set success/fail functions
uploader . setSuccess ( showCreatedPaste ) ;
uploader . setFailure ( function ( status , data ) {
2017-02-12 12:08:08 -05:00
// revert loading status…
2017-02-13 15:12:00 -05:00
topNav . hideLoading ( ) ;
topNav . showCreateButtons ( ) ;
// show error message
switch ( status ) {
case uploader . error [ 'custom' ] :
alert . showError ( i18n . _ ( 'Could not create paste: %s' , data . message ) ) ;
break ;
case uploader . error [ 'unknown' ] :
alert . showError ( i18n . _ ( 'Could not create paste: %s' , i18n . _ ( 'unknown status' ) ) ) ;
break ;
case uploader . error [ 'serverError' ] :
alert . showError ( i18n . _ ( 'Could not create paste: %s' , i18n . _ ( 'server error or not responding' ) ) ) ;
break ;
default :
alert . showError ( i18n . _ ( 'Could not create paste: %s' , i18n . _ ( 'unknown error' ) ) ) ;
break ;
}
2017-02-12 12:08:08 -05:00
} ) ;
2017-02-13 15:12:00 -05:00
// fill it with unencrypted submitted options
var format = pasteViewer . getFormat ( ) ;
uploader . setUnencryptedBulkData ( {
expire : topNav . getExpiration ( ) ,
formatter : format ,
burnafterreading : topNav . getBurnAfterReading ( ) ? 1 : 0 ,
opendiscussion : topNav . getOpenDiscussion ( ) ? 1 : 0
} ) ;
2017-02-12 12:08:08 -05:00
2017-02-13 15:12:00 -05:00
// prepare PasteViewer for later preview
pasteViewer . setText ( plainText ) ;
pasteViewer . setFormat ( format ) ;
// send data
uploader . trigger ( ) ;
2017-02-12 12:08:08 -05:00
} ;
2017-02-12 15:13:04 -05:00
/ * *
* creates a new paste
*
* @ name controller . newPaste
* @ function
* /
me . newPaste = function ( )
{
2017-02-13 05:35:04 -05:00
topNav . hideViewButtons ( ) ;
2017-02-12 15:13:04 -05:00
topNav . showCreateButtons ( ) ;
editor . resetInput ( ) ;
editor . show ( ) ;
editor . focusInput ( ) ;
} ;
2017-02-12 12:08:08 -05:00
/ * *
* clone the current paste
*
* @ name controller . clonePaste
* @ function
* @ param { Event } event
* /
me . clonePaste = function ( event )
{
me . stateNewPaste ( ) ;
// erase the id and the key in url
history . replaceState ( null , document . title , helper . scriptLocation ( ) ) ;
2017-02-13 15:12:00 -05:00
alert . hideMessages ( ) ;
2017-02-12 12:08:08 -05:00
if ( $attachmentLink . attr ( 'href' ) )
{
$clonedFile . removeClass ( 'hidden' ) ;
$fileWrap . addClass ( 'hidden' ) ;
}
2017-02-12 15:13:04 -05:00
$message . val (
2017-02-13 05:35:04 -05:00
pasteViewer . getFormat ( ) === 'markdown' ?
2017-02-12 15:13:04 -05:00
$prettyPrint . val ( ) : $clearText . val ( )
2017-02-12 12:08:08 -05:00
) ;
$ ( '.navbar-toggle' ) . click ( ) ;
event . preventDefault ( ) ;
} ;
/ * *
* application start
*
* @ name controller . init
* @ function
* /
me . init = function ( )
{
// first load translations
i18n . loadTranslations ( ) ;
2017-02-12 15:13:04 -05:00
// initialize other modules/"classes"
2017-02-13 15:12:00 -05:00
alert . init ( ) ;
uploader . init ( ) ;
2017-02-12 15:13:04 -05:00
modal . init ( ) ;
2017-02-13 15:12:00 -05:00
cryptTool . init ( ) ;
2017-02-12 12:08:08 -05:00
uiMan . init ( ) ;
2017-02-12 15:13:04 -05:00
topNav . init ( ) ;
editor . init ( ) ;
2017-02-13 05:35:04 -05:00
pasteViewer . init ( ) ;
2017-02-12 15:13:04 -05:00
prompt . init ( ) ;
2017-02-08 14:11:04 -05:00
2017-02-08 14:12:22 -05:00
// display an existing paste
2017-02-12 15:13:04 -05:00
if ( modal . hasCipherData ( ) ) {
2017-02-08 14:12:22 -05:00
// missing decryption key in URL?
if ( window . location . hash . length === 0 )
{
2017-02-13 15:12:00 -05:00
alert . showError ( i18n . _ ( 'Cannot decrypt paste: Decryption key missing in URL (Did you use a redirector or an URL shortener which strips part of the URL?)' ) ) ;
2017-02-08 14:12:22 -05:00
return ;
}
// show proper elements on screen
2017-02-13 15:12:00 -05:00
// topNav.hideCreateButtons(); // they should not be visible in the first place
topNav . showViewButtons ( ) ;
2017-02-08 14:12:22 -05:00
me . displayMessages ( ) ;
2017-02-12 15:13:04 -05:00
return ;
2017-02-08 14:12:22 -05:00
}
2017-02-12 15:13:04 -05:00
2017-02-13 15:12:00 -05:00
// check requirements for upload
if ( typeof FileReader === 'undefined' ) {
alert . showError ( i18n . _ ( 'Your browser does not support uploading encrypted files. Please use a newer browser.' ) ) ;
return ;
}
2017-02-12 15:13:04 -05:00
// otherwise create a new paste
me . newPaste ( ) ;
2017-02-08 14:12:22 -05:00
} ;
return me ;
} ) ( window , document ) ;
2017-02-12 15:13:04 -05:00
jQuery ( document ) . ready ( function ( ) {
/ * *
* main application start , called when DOM is fully loaded and
* runs controller initalization
* /
$ ( controller . init ) ;
} ) ;
2017-02-08 14:12:22 -05:00
return {
helper : helper ,
i18n : i18n ,
2017-02-12 15:13:04 -05:00
cryptTool : cryptTool ,
2017-02-13 15:12:00 -05:00
topNav : topNav ,
alert : alert ,
uploader : uploader ,
2017-02-08 14:12:22 -05:00
controller : controller
} ;
} ( jQuery , sjcl , Base64 , RawDeflate ) ;