privatebin.js 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209
  1. /**
  2. * PrivateBin
  3. *
  4. * a zero-knowledge paste bin
  5. *
  6. * @see {@link https://github.com/PrivateBin/PrivateBin}
  7. * @copyright 2012 Sébastien SAUVAGE ({@link http://sebsauvage.net})
  8. * @license {@link https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License}
  9. * @version 1.1
  10. * @name PrivateBin
  11. * @namespace
  12. */
  13. /** global: Base64 */
  14. /** global: FileReader */
  15. /** global: RawDeflate */
  16. /** global: history */
  17. /** global: navigator */
  18. /** global: prettyPrint */
  19. /** global: prettyPrintOne */
  20. /** global: showdown */
  21. /** global: sjcl */
  22. // Immediately start random number generator collector.
  23. sjcl.random.startCollectors();
  24. // main application start, called when DOM is fully loaded
  25. jQuery(document).ready(function() {
  26. // run main controller
  27. $.PrivateBin.Controller.init();
  28. });
  29. jQuery.PrivateBin = function($, sjcl, Base64, RawDeflate) {
  30. 'use strict';
  31. /**
  32. * static Helper methods
  33. *
  34. * @name Helper
  35. * @class
  36. */
  37. var Helper = (function () {
  38. var me = {};
  39. /**
  40. * character to HTML entity lookup table
  41. *
  42. * @see {@link https://github.com/janl/mustache.js/blob/master/mustache.js#L60}
  43. * @name Helper.entityMap
  44. * @private
  45. * @enum {Object}
  46. * @readonly
  47. */
  48. var entityMap = {
  49. '&': '&',
  50. '<': '&lt;',
  51. '>': '&gt;',
  52. '"': '&quot;',
  53. "'": '&#39;',
  54. '/': '&#x2F;',
  55. '`': '&#x60;',
  56. '=': '&#x3D;'
  57. };
  58. /**
  59. * cache for script location
  60. *
  61. * @name Helper.baseUri
  62. * @private
  63. * @enum {string|null}
  64. */
  65. var baseUri = null;
  66. /**
  67. * converts a duration (in seconds) into human friendly approximation
  68. *
  69. * @name Helper.secondsToHuman
  70. * @function
  71. * @param {number} seconds
  72. * @return {Array}
  73. */
  74. me.secondsToHuman = function(seconds)
  75. {
  76. var v;
  77. if (seconds < 60)
  78. {
  79. v = Math.floor(seconds);
  80. return [v, 'second'];
  81. }
  82. if (seconds < 60 * 60)
  83. {
  84. v = Math.floor(seconds / 60);
  85. return [v, 'minute'];
  86. }
  87. if (seconds < 60 * 60 * 24)
  88. {
  89. v = Math.floor(seconds / (60 * 60));
  90. return [v, 'hour'];
  91. }
  92. // If less than 2 months, display in days:
  93. if (seconds < 60 * 60 * 24 * 60)
  94. {
  95. v = Math.floor(seconds / (60 * 60 * 24));
  96. return [v, 'day'];
  97. }
  98. v = Math.floor(seconds / (60 * 60 * 24 * 30));
  99. return [v, 'month'];
  100. }
  101. /**
  102. * text range selection
  103. *
  104. * @see {@link https://stackoverflow.com/questions/985272/jquery-selecting-text-in-an-element-akin-to-highlighting-with-your-mouse}
  105. * @name Helper.selectText
  106. * @function
  107. * @param {HTMLElement} element
  108. */
  109. me.selectText = function(element)
  110. {
  111. var range, selection;
  112. // MS
  113. if (document.body.createTextRange) {
  114. range = document.body.createTextRange();
  115. range.moveToElementText(element);
  116. range.select();
  117. } else if (window.getSelection){
  118. selection = window.getSelection();
  119. range = document.createRange();
  120. range.selectNodeContents(element);
  121. selection.removeAllRanges();
  122. selection.addRange(range);
  123. }
  124. }
  125. /**
  126. * set text of a jQuery element (required for IE),
  127. *
  128. * @name Helper.setElementText
  129. * @function
  130. * @param {jQuery} $element - a jQuery element
  131. * @param {string} text - the text to enter
  132. */
  133. me.setElementText = function($element, text)
  134. {
  135. // For IE<10: Doesn't support white-space:pre-wrap; so we have to do this...
  136. if ($('#oldienotice').is(':visible')) {
  137. var html = me.htmlEntities(text).replace(/\n/ig, '\r\n<br>');
  138. $element.html('<pre>' + html + '</pre>');
  139. }
  140. // for other (sane) browsers:
  141. else
  142. {
  143. $element.text(text);
  144. }
  145. }
  146. /**
  147. * convert URLs to clickable links.
  148. * URLs to handle:
  149. * <pre>
  150. * magnet:?xt.1=urn:sha1:YNCKHTQCWBTRNJIV4WNAE52SJUQCZO5C&xt.2=urn:sha1:TXGCZQTH26NL6OUQAJJPFALHG2LTGBC7
  151. * http://example.com:8800/zero/?6f09182b8ea51997#WtLEUO5Epj9UHAV9JFs+6pUQZp13TuspAUjnF+iM+dM=
  152. * http://user:example.com@localhost:8800/zero/?6f09182b8ea51997#WtLEUO5Epj9UHAV9JFs+6pUQZp13TuspAUjnF+iM+dM=
  153. * </pre>
  154. *
  155. * @name Helper.urls2links
  156. * @function
  157. * @param {Object} $element - a jQuery DOM element
  158. */
  159. me.urls2links = function($element)
  160. {
  161. var markup = '<a href="$1" rel="nofollow">$1</a>';
  162. $element.html(
  163. $element.html().replace(
  164. /((http|https|ftp):\/\/[\w?=&.\/-;#@~%+*-]+(?![\w\s?&.\/;#~%"=-]*>))/ig,
  165. markup
  166. )
  167. );
  168. $element.html(
  169. $element.html().replace(
  170. /((magnet):[\w?=&.\/-;#@~%+*-]+)/ig,
  171. markup
  172. )
  173. );
  174. }
  175. /**
  176. * minimal sprintf emulation for %s and %d formats
  177. *
  178. * Note that this function needs the parameters in the same order as the
  179. * format strings appear in the string, contrary to the original.
  180. *
  181. * @see {@link https://stackoverflow.com/questions/610406/javascript-equivalent-to-printf-string-format#4795914}
  182. * @name Helper.sprintf
  183. * @function
  184. * @param {string} format
  185. * @param {...*} args - one or multiple parameters injected into format string
  186. * @return {string}
  187. */
  188. me.sprintf = function()
  189. {
  190. var args = Array.prototype.slice.call(arguments);
  191. var format = args[0],
  192. i = 1;
  193. return format.replace(/%(s|d)/g, function (m) {
  194. // m is the matched format, e.g. %s, %d
  195. var val = args[i];
  196. // A switch statement so that the formatter can be extended.
  197. switch (m)
  198. {
  199. case '%d':
  200. val = parseFloat(val);
  201. if (isNaN(val)) {
  202. val = 0;
  203. }
  204. break;
  205. default:
  206. // Default is %s
  207. }
  208. ++i;
  209. return val;
  210. });
  211. }
  212. /**
  213. * get value of cookie, if it was set, empty string otherwise
  214. *
  215. * @see {@link http://www.w3schools.com/js/js_cookies.asp}
  216. * @name Helper.getCookie
  217. * @function
  218. * @param {string} cname - may not be empty
  219. * @return {string}
  220. */
  221. me.getCookie = function(cname) {
  222. var name = cname + '=',
  223. ca = document.cookie.split(';');
  224. for (var i = 0; i < ca.length; ++i) {
  225. var c = ca[i];
  226. while (c.charAt(0) === ' ')
  227. {
  228. c = c.substring(1);
  229. }
  230. if (c.indexOf(name) === 0)
  231. {
  232. return c.substring(name.length, c.length);
  233. }
  234. }
  235. return '';
  236. }
  237. /**
  238. * get the current location (without search or hash part of the URL),
  239. * eg. http://example.com/path/?aaaa#bbbb --> http://example.com/path/
  240. *
  241. * @name Helper.baseUri
  242. * @function
  243. * @return {string}
  244. */
  245. me.baseUri = function()
  246. {
  247. // check for cached version
  248. if (baseUri !== null) {
  249. return baseUri;
  250. }
  251. baseUri = window.location.origin + window.location.pathname;
  252. return baseUri;
  253. }
  254. /**
  255. * convert all applicable characters to HTML entities
  256. *
  257. * @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}
  258. * @name Helper.htmlEntities
  259. * @function
  260. * @param {string} str
  261. * @return {string} escaped HTML
  262. */
  263. me.htmlEntities = function(str) {
  264. return String(str).replace(
  265. /[&<>"'`=\/]/g, function(s) {
  266. return entityMap[s];
  267. });
  268. }
  269. /**
  270. * resets state, used for unit testing
  271. *
  272. * @name Helper.reset
  273. * @function
  274. */
  275. me.reset = function()
  276. {
  277. baseUri = null;
  278. }
  279. return me;
  280. })();
  281. /**
  282. * internationalization module
  283. *
  284. * @name I18n
  285. * @param {object} window
  286. * @param {object} document
  287. * @class
  288. */
  289. var I18n = (function () {
  290. var me = {};
  291. /**
  292. * const for string of loaded language
  293. *
  294. * @name I18n.languageLoadedEvent
  295. * @private
  296. * @prop {string}
  297. * @readonly
  298. */
  299. var languageLoadedEvent = 'languageLoaded';
  300. /**
  301. * supported languages, minus the built in 'en'
  302. *
  303. * @name I18n.supportedLanguages
  304. * @private
  305. * @prop {string[]}
  306. * @readonly
  307. */
  308. var supportedLanguages = ['de', 'es', 'fr', 'it', 'no', 'pl', 'pt', 'oc', 'ru', 'sl', 'zh'];
  309. /**
  310. * built in language
  311. *
  312. * @name I18n.language
  313. * @private
  314. * @prop {string|null}
  315. */
  316. var language = null;
  317. /**
  318. * translation cache
  319. *
  320. * @name I18n.translations
  321. * @private
  322. * @enum {Object}
  323. */
  324. var translations = {};
  325. /**
  326. * translate a string, alias for I18n.translate
  327. *
  328. * @name I18n._
  329. * @function
  330. * @param {jQuery} $element - optional
  331. * @param {string} messageId
  332. * @param {...*} args - one or multiple parameters injected into placeholders
  333. * @return {string}
  334. */
  335. me._ = function()
  336. {
  337. return me.translate.apply(this, arguments);
  338. }
  339. /**
  340. * translate a string
  341. *
  342. * Optionally pass a jQuery element as the first parameter, to automatically
  343. * let the text of this element be replaced. In case the (asynchronously
  344. * loaded) language is not downloadet yet, this will make sure the string
  345. * is replaced when it is actually loaded.
  346. * So for easy translations passing the jQuery object to apply it to is
  347. * more save, especially when they are loaded in the beginning.
  348. *
  349. * @name I18n.translate
  350. * @function
  351. * @param {jQuery} $element - optional
  352. * @param {string} messageId
  353. * @param {...*} args - one or multiple parameters injected into placeholders
  354. * @return {string}
  355. */
  356. me.translate = function()
  357. {
  358. // convert parameters to array
  359. var args = Array.prototype.slice.call(arguments),
  360. messageId,
  361. $element = null;
  362. // parse arguments
  363. if (args[0] instanceof jQuery) {
  364. // optional jQuery element as first parameter
  365. $element = args[0];
  366. args.shift();
  367. }
  368. // extract messageId from arguments
  369. var usesPlurals = $.isArray(args[0]);
  370. if (usesPlurals) {
  371. // use the first plural form as messageId, otherwise the singular
  372. messageId = (args[0].length > 1 ? args[0][1] : args[0][0]);
  373. } else {
  374. messageId = args[0];
  375. }
  376. if (messageId.length === 0) {
  377. return messageId;
  378. }
  379. // if no translation string cannot be found (in translations object)
  380. if (!translations.hasOwnProperty(messageId) || language === null) {
  381. // if language is still loading and we have an elemt assigned
  382. if (language === null && $element !== null) {
  383. // handle the error by attaching the language loaded event
  384. var orgArguments = arguments;
  385. $(document).on(languageLoadedEvent, function () {
  386. // log to show that the previous error could be mitigated
  387. console.log('Fix missing translation of \'' + messageId + '\' with now loaded language ' + language);
  388. // re-execute this function
  389. me.translate.apply(this, orgArguments);
  390. });
  391. // and fall back to English for now until the real language
  392. // file is loaded
  393. }
  394. // for all other langauges than English for which this behaviour
  395. // is expected as it is built-in, log error
  396. if (language !== null && language !== 'en') {
  397. console.error('Missing translation for: \'' + messageId + '\' in language ' + language);
  398. // fallback to English
  399. }
  400. // save English translation (should be the same on both sides)
  401. translations[messageId] = args[0];
  402. }
  403. // lookup plural translation
  404. if (usesPlurals && $.isArray(translations[messageId])) {
  405. var n = parseInt(args[1] || 1, 10),
  406. key = me.getPluralForm(n),
  407. maxKey = translations[messageId].length - 1;
  408. if (key > maxKey) {
  409. key = maxKey;
  410. }
  411. args[0] = translations[messageId][key];
  412. args[1] = n;
  413. } else {
  414. // lookup singular translation
  415. args[0] = translations[messageId];
  416. }
  417. // format string
  418. var output = Helper.sprintf.apply(this, args);
  419. // if $element is given, apply text to element
  420. if ($element !== null) {
  421. // get last text node of element
  422. var content = $element.contents();
  423. if (content.length > 1) {
  424. content[content.length - 1].nodeValue = ' ' + output;
  425. } else {
  426. $element.text(output);
  427. }
  428. }
  429. return output;
  430. }
  431. /**
  432. * per language functions to use to determine the plural form
  433. *
  434. * @see {@link http://localization-guide.readthedocs.org/en/latest/l10n/pluralforms.html}
  435. * @name I18n.getPluralForm
  436. * @function
  437. * @param {int} n
  438. * @return {int} array key
  439. */
  440. me.getPluralForm = function(n) {
  441. switch (language)
  442. {
  443. case 'fr':
  444. case 'oc':
  445. case 'zh':
  446. return (n > 1 ? 1 : 0);
  447. case 'pl':
  448. return (n === 1 ? 0 : (n % 10 >= 2 && n %10 <=4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2));
  449. case 'ru':
  450. return (n % 10 === 1 && n % 100 !== 11 ? 0 : (n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2));
  451. case 'sl':
  452. return (n % 100 === 1 ? 1 : (n % 100 === 2 ? 2 : (n % 100 === 3 || n % 100 === 4 ? 3 : 0)));
  453. // de, en, es, it, no, pt
  454. default:
  455. return (n !== 1 ? 1 : 0);
  456. }
  457. }
  458. /**
  459. * load translations into cache
  460. *
  461. * @name I18n.loadTranslations
  462. * @function
  463. */
  464. me.loadTranslations = function()
  465. {
  466. var newLanguage = Helper.getCookie('lang');
  467. // auto-select language based on browser settings
  468. if (newLanguage.length === 0) {
  469. newLanguage = (navigator.language || navigator.userLanguage).substring(0, 2);
  470. }
  471. // if language is already used skip update
  472. if (newLanguage === language) {
  473. return;
  474. }
  475. // if language is built-in (English) skip update
  476. if (newLanguage === 'en') {
  477. language = 'en';
  478. return;
  479. }
  480. // if language is not supported, show error
  481. if (supportedLanguages.indexOf(newLanguage) === -1) {
  482. console.error('Language \'%s\' is not supported. Translation failed, fallback to English.', newLanguage);
  483. language = 'en';
  484. return;
  485. }
  486. // load strings from JSON
  487. $.getJSON('i18n/' + newLanguage + '.json', function(data) {
  488. language = newLanguage;
  489. translations = data;
  490. $(document).triggerHandler(languageLoadedEvent);
  491. }).fail(function (data, textStatus, errorMsg) {
  492. console.error('Language \'%s\' could not be loaded (%s: %s). Translation failed, fallback to English.', newLanguage, textStatus, errorMsg);
  493. language = 'en';
  494. });
  495. }
  496. /**
  497. * resets state, used for unit testing
  498. *
  499. * @name I18n.reset
  500. * @function
  501. */
  502. me.reset = function(mockLanguage, mockTranslations)
  503. {
  504. language = mockLanguage || null;
  505. translations = mockTranslations || {};
  506. }
  507. return me;
  508. })();
  509. /**
  510. * handles everything related to en/decryption
  511. *
  512. * @name CryptTool
  513. * @class
  514. */
  515. var CryptTool = (function () {
  516. var me = {};
  517. /**
  518. * compress a message (deflate compression), returns base64 encoded data
  519. *
  520. * @name CryptTool.compress
  521. * @function
  522. * @private
  523. * @param {string} message
  524. * @return {string} base64 data
  525. */
  526. function compress(message)
  527. {
  528. return Base64.toBase64( RawDeflate.deflate( Base64.utob(message) ) );
  529. }
  530. /**
  531. * decompress a message compressed with cryptToolcompress()
  532. *
  533. * @name CryptTool.decompress
  534. * @function
  535. * @private
  536. * @param {string} data - base64 data
  537. * @return {string} message
  538. */
  539. function decompress(data)
  540. {
  541. return Base64.btou( RawDeflate.inflate( Base64.fromBase64(data) ) );
  542. }
  543. /**
  544. * compress, then encrypt message with given key and password
  545. *
  546. * @name CryptTool.cipher
  547. * @function
  548. * @param {string} key
  549. * @param {string} password
  550. * @param {string} message
  551. * @return {string} data - JSON with encrypted data
  552. */
  553. me.cipher = function(key, password, message)
  554. {
  555. // Galois Counter Mode, keysize 256 bit, authentication tag 128 bit
  556. var options = {
  557. mode: 'gcm',
  558. ks: 256,
  559. ts: 128
  560. };
  561. if ((password || '').trim().length === 0) {
  562. return sjcl.encrypt(key, compress(message), options);
  563. }
  564. return sjcl.encrypt(key + sjcl.codec.hex.fromBits(sjcl.hash.sha256.hash(password)), compress(message), options);
  565. }
  566. /**
  567. * decrypt message with key, then decompress
  568. *
  569. * @name CryptTool.decipher
  570. * @function
  571. * @param {string} key
  572. * @param {string} password
  573. * @param {string} data - JSON with encrypted data
  574. * @return {string} decrypted message
  575. */
  576. me.decipher = function(key, password, data)
  577. {
  578. if (data !== undefined) {
  579. try {
  580. return decompress(sjcl.decrypt(key, data));
  581. } catch(err) {
  582. try {
  583. return decompress(sjcl.decrypt(key + sjcl.codec.hex.fromBits(sjcl.hash.sha256.hash(password)), data));
  584. } catch(e) {
  585. // ignore error, because ????? @TODO
  586. }
  587. }
  588. }
  589. return '';
  590. }
  591. /**
  592. * checks whether the crypt tool has collected enough entropy
  593. *
  594. * @name CryptTool.isEntropyReady
  595. * @function
  596. * @return {bool}
  597. */
  598. me.isEntropyReady = function()
  599. {
  600. return sjcl.random.isReady();
  601. }
  602. /**
  603. * add a listener function, triggered when enough entropy is available
  604. *
  605. * @name CryptTool.addEntropySeedListener
  606. * @function
  607. * @param {function} func
  608. */
  609. me.addEntropySeedListener = function(func)
  610. {
  611. sjcl.random.addEventListener('seeded', func);
  612. }
  613. /**
  614. * returns a random symmetric key
  615. *
  616. * @name CryptTool.getSymmetricKey
  617. * @function
  618. * @return {string} func
  619. */
  620. me.getSymmetricKey = function()
  621. {
  622. return sjcl.codec.base64.fromBits(sjcl.random.randomWords(8, 0), 0);
  623. }
  624. return me;
  625. })();
  626. /**
  627. * (Model) Data source (aka MVC)
  628. *
  629. * @name Model
  630. * @class
  631. */
  632. var Model = (function () {
  633. var me = {};
  634. var $cipherData,
  635. $templates;
  636. var id = null, symmetricKey = null;
  637. /**
  638. * returns the expiration set in the HTML
  639. *
  640. * @name Model.getExpirationDefault
  641. * @function
  642. * @return string
  643. * @TODO the template can be simplified as #pasteExpiration is no longer modified (only default value)
  644. */
  645. me.getExpirationDefault = function()
  646. {
  647. return $('#pasteExpiration').val();
  648. }
  649. /**
  650. * returns the format set in the HTML
  651. *
  652. * @name Model.getFormatDefault
  653. * @function
  654. * @return string
  655. * @TODO the template can be simplified as #pasteFormatter is no longer modified (only default value)
  656. */
  657. me.getFormatDefault = function()
  658. {
  659. return $('#pasteFormatter').val();
  660. }
  661. /**
  662. * check if cipher data was supplied
  663. *
  664. * @name Model.getCipherData
  665. * @function
  666. * @return boolean
  667. */
  668. me.hasCipherData = function()
  669. {
  670. return (me.getCipherData().length > 0);
  671. }
  672. /**
  673. * returns the cipher data
  674. *
  675. * @name Model.getCipherData
  676. * @function
  677. * @return string
  678. */
  679. me.getCipherData = function()
  680. {
  681. return $cipherData.text();
  682. }
  683. /**
  684. * get the pastes unique identifier from the URL,
  685. * eg. http://example.com/path/?c05354954c49a487#dfdsdgdgdfgdf returns c05354954c49a487
  686. *
  687. * @name Model.getPasteId
  688. * @function
  689. * @return {string} unique identifier
  690. * @throws {string}
  691. */
  692. me.getPasteId = function()
  693. {
  694. if (id === null) {
  695. id = window.location.search.substring(1);
  696. if (id === '') {
  697. throw 'no paste id given';
  698. }
  699. }
  700. return id;
  701. }
  702. /**
  703. * return the deciphering key stored in anchor part of the URL
  704. *
  705. * @name Model.getPasteKey
  706. * @function
  707. * @return {string|null} key
  708. * @throws {string}
  709. */
  710. me.getPasteKey = function()
  711. {
  712. if (symmetricKey === null) {
  713. symmetricKey = window.location.hash.substring(1);
  714. if (symmetricKey === '') {
  715. throw 'no encryption key given';
  716. }
  717. // Some web 2.0 services and redirectors add data AFTER the anchor
  718. // (such as &utm_source=...). We will strip any additional data.
  719. var ampersandPos = symmetricKey.indexOf('&');
  720. if (ampersandPos > -1)
  721. {
  722. symmetricKey = symmetricKey.substring(0, ampersandPos);
  723. }
  724. }
  725. return symmetricKey;
  726. }
  727. /**
  728. * returns a jQuery copy of the HTML template
  729. *
  730. * @name Model.getTemplate
  731. * @function
  732. * @param {string} name - the name of the template
  733. * @return {jQuery}
  734. */
  735. me.getTemplate = function(name)
  736. {
  737. // find template
  738. var $element = $templates.find('#' + name + 'template').clone(true);
  739. // change ID to avoid collisions (one ID should really be unique)
  740. return $element.prop('id', name);
  741. }
  742. /**
  743. * resets state, used for unit testing
  744. *
  745. * @name Model.reset
  746. * @function
  747. */
  748. me.reset = function()
  749. {
  750. $cipherData = $templates = id = symmetricKey = null;
  751. }
  752. /**
  753. * init navigation manager
  754. *
  755. * preloads jQuery elements
  756. *
  757. * @name Model.init
  758. * @function
  759. */
  760. me.init = function()
  761. {
  762. $cipherData = $('#cipherdata');
  763. $templates = $('#templates');
  764. }
  765. return me;
  766. })();
  767. /**
  768. * Helper functions for user interface
  769. *
  770. * everything directly UI-related, which fits nowhere else
  771. *
  772. * @name UiHelper
  773. * @param {object} window
  774. * @param {object} document
  775. * @class
  776. */
  777. var UiHelper = (function (window, document) {
  778. var me = {};
  779. /**
  780. * handle history (pop) state changes
  781. *
  782. * currently this does only handle redirects to the home page.
  783. *
  784. * @name UiHelper.historyChange
  785. * @private
  786. * @function
  787. * @param {Event} event
  788. */
  789. function historyChange(event)
  790. {
  791. var currentLocation = Helper.baseUri();
  792. if (event.originalEvent.state === null && // no state object passed
  793. event.originalEvent.target.location.href === currentLocation && // target location is home page
  794. window.location.href === currentLocation // and we are not already on the home page
  795. ) {
  796. // redirect to home page
  797. window.location.href = currentLocation;
  798. }
  799. }
  800. /**
  801. * reload the page
  802. *
  803. * This takes the user to the PrivateBin homepage.
  804. *
  805. * @name UiHelper.reloadHome
  806. * @function
  807. */
  808. me.reloadHome = function()
  809. {
  810. window.location.href = Helper.baseUri();
  811. }
  812. /**
  813. * checks whether the element is currently visible in the viewport (so
  814. * the user can actually see it)
  815. *
  816. * @see {@link https://stackoverflow.com/a/40658647}
  817. * @name UiHelper.isVisible
  818. * @function
  819. * @param {jQuery} $element The link hash to move to.
  820. */
  821. me.isVisible = function($element)
  822. {
  823. var elementTop = $element.offset().top;
  824. var viewportTop = $(window).scrollTop();
  825. var viewportBottom = viewportTop + $(window).height();
  826. return (elementTop > viewportTop && elementTop < viewportBottom);
  827. }
  828. /**
  829. * scrolls to a specific element
  830. *
  831. * @see {@link https://stackoverflow.com/questions/4198041/jquery-smooth-scroll-to-an-anchor#answer-12714767}
  832. * @name UiHelper.scrollTo
  833. * @function
  834. * @param {jQuery} $element The link hash to move to.
  835. * @param {(number|string)} animationDuration passed to jQuery .animate, when set to 0 the animation is skipped
  836. * @param {string} animationEffect passed to jQuery .animate
  837. * @param {function} finishedCallback function to call after animation finished
  838. */
  839. me.scrollTo = function($element, animationDuration, animationEffect, finishedCallback)
  840. {
  841. var $body = $('html, body'),
  842. margin = 50,
  843. callbackCalled = false;
  844. //calculate destination place
  845. var dest = 0;
  846. // if it would scroll out of the screen at the bottom only scroll it as
  847. // far as the screen can go
  848. if ($element.offset().top > $(document).height() - $(window).height()) {
  849. dest = $(document).height() - $(window).height();
  850. } else {
  851. dest = $element.offset().top - margin;
  852. }
  853. // skip animation if duration is set to 0
  854. if (animationDuration === 0) {
  855. window.scrollTo(0, dest);
  856. } else {
  857. // stop previous animation
  858. $body.stop();
  859. // scroll to destination
  860. $body.animate({
  861. scrollTop: dest
  862. }, animationDuration, animationEffect);
  863. }
  864. // as we have finished we can enable scrolling again
  865. $body.queue(function (next) {
  866. if (!callbackCalled) {
  867. // call user function if needed
  868. if (typeof finishedCallback !== 'undefined') {
  869. finishedCallback();
  870. }
  871. // prevent calling this function twice
  872. callbackCalled = true;
  873. }
  874. next();
  875. });
  876. }
  877. /**
  878. * initialize
  879. *
  880. * @name UiHelper.init
  881. * @function
  882. */
  883. me.init = function()
  884. {
  885. // update link to home page
  886. $('.reloadlink').prop('href', Helper.baseUri());
  887. $(window).on('popstate', historyChange);
  888. }
  889. return me;
  890. })(window, document);
  891. /**
  892. * Alert/error manager
  893. *
  894. * @name Alert
  895. * @class
  896. */
  897. var Alert = (function () {
  898. var me = {};
  899. var $errorMessage,
  900. $loadingIndicator,
  901. $statusMessage,
  902. $remainingTime;
  903. var currentIcon = [
  904. 'glyphicon-time', // loading icon
  905. 'glyphicon-info-sign', // status icon
  906. '', // resevered for warning, not used yet
  907. 'glyphicon-alert' // error icon
  908. ];
  909. var alertType = [
  910. 'loading', // not in bootstrap, but using a good value here
  911. 'info', // status icon
  912. 'warning', // not used yet
  913. 'danger' // error icon
  914. ];
  915. var customHandler;
  916. /**
  917. * forwards a request to the i18n module and shows the element
  918. *
  919. * @name Alert.handleNotification
  920. * @private
  921. * @function
  922. * @param {int} id - id of notification
  923. * @param {jQuery} $element - jQuery object
  924. * @param {string|array} args
  925. * @param {string|null} icon - optional, icon
  926. */
  927. function handleNotification(id, $element, args, icon)
  928. {
  929. // basic parsing/conversion of parameters
  930. if (typeof icon === 'undefined') {
  931. icon = null;
  932. }
  933. if (typeof args === 'undefined') {
  934. args = null;
  935. } else if (typeof args === 'string') {
  936. // convert string to array if needed
  937. args = [args];
  938. }
  939. // pass to custom handler if defined
  940. if (typeof customHandler === 'function') {
  941. var handlerResult = customHandler(alertType[id], $element, args, icon);
  942. if (handlerResult === true) {
  943. // if it returs true, skip own handler
  944. return;
  945. }
  946. if (handlerResult instanceof jQuery) {
  947. // continue processing with new element
  948. $element = handlerResult;
  949. icon = null; // icons not supported in this case
  950. }
  951. }
  952. // handle icon
  953. if (icon !== null && // icon was passed
  954. icon !== currentIcon[id] // and it differs from current icon
  955. ) {
  956. var $glyphIcon = $element.find(':first');
  957. // remove (previous) icon
  958. $glyphIcon.removeClass(currentIcon[id]);
  959. // any other thing as a string (e.g. 'null') (only) removes the icon
  960. if (typeof icon === 'string') {
  961. // set new icon
  962. currentIcon[id] = 'glyphicon-' + icon;
  963. $glyphIcon.addClass(currentIcon[id]);
  964. }
  965. }
  966. // show text
  967. if (args !== null) {
  968. // add jQuery object to it as first parameter
  969. args.unshift($element);
  970. // pass it to I18n
  971. I18n._.apply(this, args);
  972. }
  973. // show notification
  974. $element.removeClass('hidden');
  975. }
  976. /**
  977. * display a status message
  978. *
  979. * This automatically passes the text to I18n for translation.
  980. *
  981. * @name Alert.showStatus
  982. * @function
  983. * @param {string|array} message string, use an array for %s/%d options
  984. * @param {string|null} icon optional, the icon to show,
  985. * default: leave previous icon
  986. * @param {bool} dismissable optional, whether the notification
  987. * can be dismissed (closed), default: false
  988. * @param {bool|int} autoclose optional, after how many seconds the
  989. * notification should be hidden automatically;
  990. * default: disabled (0); use true for default value
  991. */
  992. me.showStatus = function(message, icon, dismissable, autoclose)
  993. {
  994. console.log('status shown: ', message);
  995. // @TODO: implement dismissable
  996. // @TODO: implement autoclose
  997. handleNotification(1, $statusMessage, message, icon);
  998. }
  999. /**
  1000. * display an error message
  1001. *
  1002. * This automatically passes the text to I18n for translation.
  1003. *
  1004. * @name Alert.showError
  1005. * @function
  1006. * @param {string|array} message string, use an array for %s/%d options
  1007. * @param {string|null} icon optional, the icon to show, default:
  1008. * leave previous icon
  1009. * @param {bool} dismissable optional, whether the notification
  1010. * can be dismissed (closed), default: false
  1011. * @param {bool|int} autoclose optional, after how many seconds the
  1012. * notification should be hidden automatically;
  1013. * default: disabled (0); use true for default value
  1014. */
  1015. me.showError = function(message, icon, dismissable, autoclose)
  1016. {
  1017. console.error('error message shown: ', message);
  1018. // @TODO: implement dismissable (bootstrap add-on has it)
  1019. // @TODO: implement autoclose
  1020. handleNotification(3, $errorMessage, message, icon);
  1021. }
  1022. /**
  1023. * display remaining message
  1024. *
  1025. * This automatically passes the text to I18n for translation.
  1026. *
  1027. * @name Alert.showRemaining
  1028. * @function
  1029. * @param {string|array} message string, use an array for %s/%d options
  1030. */
  1031. me.showRemaining = function(message)
  1032. {
  1033. console.log('remaining message shown: ', message);
  1034. handleNotification(1, $remainingTime, message);
  1035. }
  1036. /**
  1037. * shows a loading message, optionally with a percentage
  1038. *
  1039. * This automatically passes all texts to the i10s module.
  1040. *
  1041. * @name Alert.showLoading
  1042. * @function
  1043. * @param {string|array|null} message optional, use an array for %s/%d options, default: 'Loading…'
  1044. * @param {int} percentage optional, default: null
  1045. * @param {string|null} icon optional, the icon to show, default: leave previous icon
  1046. */
  1047. me.showLoading = function(message, percentage, icon)
  1048. {
  1049. if (typeof message !== 'undefined' && message !== null) {
  1050. console.log('status changed: ', message);
  1051. }
  1052. // default message text
  1053. if (typeof message === 'undefined') {
  1054. message = 'Loading…';
  1055. }
  1056. // currently percentage parameter is ignored
  1057. // // @TODO handle it here…
  1058. handleNotification(0, $loadingIndicator, message, icon);
  1059. // show loading status (cursor)
  1060. $('body').addClass('loading');
  1061. }
  1062. /**
  1063. * hides the loading message
  1064. *
  1065. * @name Alert.hideLoading
  1066. * @function
  1067. */
  1068. me.hideLoading = function()
  1069. {
  1070. $loadingIndicator.addClass('hidden');
  1071. // hide loading cursor
  1072. $('body').removeClass('loading');
  1073. }
  1074. /**
  1075. * hides any status/error messages
  1076. *
  1077. * This does not include the loading message.
  1078. *
  1079. * @name Alert.hideMessages
  1080. * @function
  1081. */
  1082. me.hideMessages = function()
  1083. {
  1084. // also possible: $('.statusmessage').addClass('hidden');
  1085. $statusMessage.addClass('hidden');
  1086. $errorMessage.addClass('hidden');
  1087. }
  1088. /**
  1089. * set a custom handler, which gets all notifications.
  1090. *
  1091. * This handler gets the following arguments:
  1092. * alertType (see array), $element, args, icon
  1093. * If it returns true, the own processing will be stopped so the message
  1094. * will not be displayed. Otherwise it will continue.
  1095. * As an aditional feature it can return q jQuery element, which will
  1096. * then be used to add the message there. Icons are not supported in
  1097. * that case and will be ignored.
  1098. * Pass 'null' to reset/delete the custom handler.
  1099. * Note that there is no notification when a message is supposed to get
  1100. * hidden.
  1101. *
  1102. * @name Alert.setCustomHandler
  1103. * @function
  1104. * @param {function|null} newHandler
  1105. */
  1106. me.setCustomHandler = function(newHandler)
  1107. {
  1108. customHandler = newHandler;
  1109. }
  1110. /**
  1111. * init status manager
  1112. *
  1113. * preloads jQuery elements
  1114. *
  1115. * @name Alert.init
  1116. * @function
  1117. */
  1118. me.init = function()
  1119. {
  1120. // hide "no javascript" error message
  1121. $('#noscript').hide();
  1122. // not a reset, but first set of the elements
  1123. $errorMessage = $('#errormessage');
  1124. $loadingIndicator = $('#loadingindicator');
  1125. $statusMessage = $('#status');
  1126. $remainingTime = $('#remainingtime');
  1127. }
  1128. return me;
  1129. })();
  1130. /**
  1131. * handles paste status/result
  1132. *
  1133. * @name PasteStatus
  1134. * @param {object} window
  1135. * @class
  1136. */
  1137. var PasteStatus = (function (window) {
  1138. var me = {};
  1139. var $pasteSuccess,
  1140. $pasteUrl,
  1141. $remainingTime,
  1142. $shortenButton;
  1143. /**
  1144. * forward to URL shortener
  1145. *
  1146. * @name PasteStatus.sendToShortener
  1147. * @private
  1148. * @function
  1149. * @param {Event} event
  1150. */
  1151. function sendToShortener(event)
  1152. {
  1153. window.location.href = $shortenButton.data('shortener')
  1154. + encodeURIComponent($pasteUrl.attr('href'));
  1155. }
  1156. /**
  1157. * Forces opening the paste if the link does not do this automatically.
  1158. *
  1159. * This is necessary as browsers will not reload the page when it is
  1160. * already loaded (which is fake as it is set via history.pushState()).
  1161. *
  1162. * @name PasteStatus.pasteLinkClick
  1163. * @function
  1164. * @param {Event} event
  1165. */
  1166. function pasteLinkClick(event)
  1167. {
  1168. // check if location is (already) shown in URL bar
  1169. if (window.location.href === $pasteUrl.attr('href')) {
  1170. // if so we need to load link by reloading the current site
  1171. window.location.reload(true);
  1172. }
  1173. }
  1174. /**
  1175. * creates a notification after a successfull paste upload
  1176. *
  1177. * @name PasteStatus.createPasteNotification
  1178. * @function
  1179. * @param {string} url
  1180. * @param {string} deleteUrl
  1181. */
  1182. me.createPasteNotification = function(url, deleteUrl)
  1183. {
  1184. $('#pastelink').html(
  1185. I18n._(
  1186. 'Your paste is <a id="pasteurl" href="%s">%s</a> <span id="copyhint">(Hit [Ctrl]+[c] to copy)</span>',
  1187. url, url
  1188. )
  1189. );
  1190. // save newly created element
  1191. $pasteUrl = $('#pasteurl');
  1192. // and add click event
  1193. $pasteUrl.click(pasteLinkClick);
  1194. // shorten button
  1195. $('#deletelink').html('<a href="' + deleteUrl + '">' + I18n._('Delete data') + '</a>');
  1196. // show result
  1197. $pasteSuccess.removeClass('hidden');
  1198. // we pre-select the link so that the user only has to [Ctrl]+[c] the link
  1199. Helper.selectText($pasteUrl[0]);
  1200. }
  1201. /**
  1202. * shows the remaining time
  1203. *
  1204. * @name PasteStatus.showRemainingTime
  1205. * @function
  1206. * @param {object} pasteMetaData
  1207. */
  1208. me.showRemainingTime = function(pasteMetaData)
  1209. {
  1210. if (pasteMetaData.burnafterreading) {
  1211. // display paste "for your eyes only" if it is deleted
  1212. // actually remove paste, before we claim it is deleted
  1213. Controller.removePaste(Model.getPasteId(), 'burnafterreading');
  1214. Alert.showRemaining("FOR YOUR EYES ONLY. Don't close this window, this message can't be displayed again.");
  1215. $remainingTime.addClass('foryoureyesonly');
  1216. // discourage cloning (it cannot really be prevented)
  1217. TopNav.hideCloneButton();
  1218. } else if (pasteMetaData.expire_date) {
  1219. // display paste expiration
  1220. var expiration = Helper.secondsToHuman(pasteMetaData.remaining_time),
  1221. expirationLabel = [
  1222. 'This document will expire in %d ' + expiration[1] + '.',
  1223. 'This document will expire in %d ' + expiration[1] + 's.'
  1224. ];
  1225. Alert.showRemaining([expirationLabel, expiration[0]]);
  1226. $remainingTime.removeClass('foryoureyesonly')
  1227. } else {
  1228. // never expires
  1229. return;
  1230. }
  1231. // in the end, display notification
  1232. $remainingTime.removeClass('hidden');
  1233. }
  1234. /**
  1235. * hides the remaining time and successful upload notification
  1236. *
  1237. * @name PasteStatus.hideRemainingTime
  1238. * @function
  1239. */
  1240. me.hideMessages = function()
  1241. {
  1242. $remainingTime.addClass('hidden');
  1243. $pasteSuccess.addClass('hidden');
  1244. }
  1245. /**
  1246. * init status manager
  1247. *
  1248. * preloads jQuery elements
  1249. *
  1250. * @name PasteStatus.init
  1251. * @function
  1252. */
  1253. me.init = function()
  1254. {
  1255. $pasteSuccess = $('#pasteSuccess');
  1256. // $pasteUrl is saved in me.createPasteNotification() after creation
  1257. $remainingTime = $('#remainingtime');
  1258. $shortenButton = $('#shortenbutton');
  1259. // bind elements
  1260. $shortenButton.click(sendToShortener);
  1261. }
  1262. return me;
  1263. })(window);
  1264. /**
  1265. * password prompt
  1266. *
  1267. * @name Prompt
  1268. * @class
  1269. */
  1270. var Prompt = (function () {
  1271. var me = {};
  1272. var $passwordDecrypt,
  1273. $passwordForm,
  1274. $passwordModal;
  1275. var password = '';
  1276. /**
  1277. * submit a password in the modal dialog
  1278. *
  1279. * @name Prompt.submitPasswordModal
  1280. * @private
  1281. * @function
  1282. * @param {Event} event
  1283. */
  1284. function submitPasswordModal(event)
  1285. {
  1286. event.preventDefault();
  1287. // get input
  1288. password = $passwordDecrypt.val();
  1289. // hide modal
  1290. $passwordModal.modal('hide');
  1291. PasteDecrypter.run();
  1292. }
  1293. /**
  1294. * ask the user for the password and set it
  1295. *
  1296. * @name Prompt.requestPassword
  1297. * @function
  1298. */
  1299. me.requestPassword = function()
  1300. {
  1301. // show new bootstrap method (if available)
  1302. if ($passwordModal.length !== 0) {
  1303. $passwordModal.modal({
  1304. backdrop: 'static',
  1305. keyboard: false
  1306. });
  1307. return;
  1308. }
  1309. // fallback to old method for page template
  1310. var newPassword = prompt(I18n._('Please enter the password for this paste:'), '');
  1311. if (newPassword === null) {
  1312. throw 'password prompt canceled';
  1313. }
  1314. if (password.length === 0) {
  1315. // recursive…
  1316. return me.requestPassword();
  1317. }
  1318. password = newPassword;
  1319. }
  1320. /**
  1321. * getthe cached password
  1322. *
  1323. * If you do not get a password with this function
  1324. * (returns an empty string), use requestPassword.
  1325. *
  1326. * @name Prompt.getPassword
  1327. * @function
  1328. * @return {string}
  1329. */
  1330. me.getPassword = function()
  1331. {
  1332. return password;
  1333. }
  1334. /**
  1335. * init status manager
  1336. *
  1337. * preloads jQuery elements
  1338. *
  1339. * @name Prompt.init
  1340. * @function
  1341. */
  1342. me.init = function()
  1343. {
  1344. $passwordDecrypt = $('#passworddecrypt');
  1345. $passwordForm = $('#passwordform');
  1346. $passwordModal = $('#passwordmodal');
  1347. // bind events
  1348. // focus password input when it is shown
  1349. $passwordModal.on('shown.bs.Model', function () {
  1350. $passwordDecrypt.focus();
  1351. });
  1352. // handle Model password submission
  1353. $passwordForm.submit(submitPasswordModal);
  1354. }
  1355. return me;
  1356. })();
  1357. /**
  1358. * Manage paste/message input, and preview tab
  1359. *
  1360. * Note that the actual preview is handled by PasteViewer.
  1361. *
  1362. * @name Editor
  1363. * @class
  1364. */
  1365. var Editor = (function () {
  1366. var me = {};
  1367. var $editorTabs,
  1368. $messageEdit,
  1369. $messagePreview,
  1370. $message;
  1371. var isPreview = false;
  1372. /**
  1373. * support input of tab character
  1374. *
  1375. * @name Editor.supportTabs
  1376. * @function
  1377. * @param {Event} event
  1378. * @this $message (but not used, so it is jQuery-free, possibly faster)
  1379. */
  1380. function supportTabs(event)
  1381. {
  1382. var keyCode = event.keyCode || event.which;
  1383. // tab was pressed
  1384. if (keyCode === 9) {
  1385. // get caret position & selection
  1386. var val = this.value,
  1387. start = this.selectionStart,
  1388. end = this.selectionEnd;
  1389. // set textarea value to: text before caret + tab + text after caret
  1390. this.value = val.substring(0, start) + '\t' + val.substring(end);
  1391. // put caret at right position again
  1392. this.selectionStart = this.selectionEnd = start + 1;
  1393. // prevent the textarea to lose focus
  1394. event.preventDefault();
  1395. }
  1396. }
  1397. /**
  1398. * view the Editor tab
  1399. *
  1400. * @name Editor.viewEditor
  1401. * @function
  1402. * @param {Event} event - optional
  1403. */
  1404. function viewEditor(event)
  1405. {
  1406. // toggle buttons
  1407. $messageEdit.addClass('active');
  1408. $messagePreview.removeClass('active');
  1409. PasteViewer.hide();
  1410. // reshow input
  1411. $message.removeClass('hidden');
  1412. me.focusInput();
  1413. // finish
  1414. isPreview = false;
  1415. // prevent jumping of page to top
  1416. if (typeof event !== 'undefined') {
  1417. event.preventDefault();
  1418. }
  1419. }
  1420. /**
  1421. * view the preview tab
  1422. *
  1423. * @name Editor.viewPreview
  1424. * @function
  1425. * @param {Event} event
  1426. */
  1427. function viewPreview(event)
  1428. {
  1429. // toggle buttons
  1430. $messageEdit.removeClass('active');
  1431. $messagePreview.addClass('active');
  1432. // hide input as now preview is shown
  1433. $message.addClass('hidden');
  1434. // show preview
  1435. PasteViewer.setText($message.val());
  1436. if (AttachmentViewer.$attachment.length) {
  1437. var attachmentData = AttachmentViewer.attachmentData || AttachmentViewer.$attachmentLink.attr('href');
  1438. AttachmentViewer.handleAttachmentPreview(AttachmentViewer.$attachmentPreview, attachmentData);
  1439. }
  1440. PasteViewer.run();
  1441. // finish
  1442. isPreview = true;
  1443. // prevent jumping of page to top
  1444. if (typeof event !== 'undefined') {
  1445. event.preventDefault();
  1446. }
  1447. }
  1448. /**
  1449. * get the state of the preview
  1450. *
  1451. * @name Editor.isPreview
  1452. * @function
  1453. */
  1454. me.isPreview = function()
  1455. {
  1456. return isPreview;
  1457. }
  1458. /**
  1459. * reset the Editor view
  1460. *
  1461. * @name Editor.resetInput
  1462. * @function
  1463. */
  1464. me.resetInput = function()
  1465. {
  1466. // go back to input
  1467. if (isPreview) {
  1468. viewEditor();
  1469. }
  1470. // clear content
  1471. $message.val('');
  1472. }
  1473. /**
  1474. * shows the Editor
  1475. *
  1476. * @name Editor.show
  1477. * @function
  1478. */
  1479. me.show = function()
  1480. {
  1481. $message.removeClass('hidden');
  1482. $editorTabs.removeClass('hidden');
  1483. }
  1484. /**
  1485. * hides the Editor
  1486. *
  1487. * @name Editor.reset
  1488. * @function
  1489. */
  1490. me.hide = function()
  1491. {
  1492. $message.addClass('hidden');
  1493. $editorTabs.addClass('hidden');
  1494. }
  1495. /**
  1496. * focuses the message input
  1497. *
  1498. * @name Editor.focusInput
  1499. * @function
  1500. */
  1501. me.focusInput = function()
  1502. {
  1503. $message.focus();
  1504. }
  1505. /**
  1506. * sets a new text
  1507. *
  1508. * @name Editor.setText
  1509. * @function
  1510. * @param {string} newText
  1511. */
  1512. me.setText = function(newText)
  1513. {
  1514. $message.val(newText);
  1515. }
  1516. /**
  1517. * returns the current text
  1518. *
  1519. * @name Editor.getText
  1520. * @function
  1521. * @return {string}
  1522. */
  1523. me.getText = function()
  1524. {
  1525. return $message.val()
  1526. }
  1527. /**
  1528. * init status manager
  1529. *
  1530. * preloads jQuery elements
  1531. *
  1532. * @name Editor.init
  1533. * @function
  1534. */
  1535. me.init = function()
  1536. {
  1537. $editorTabs = $('#editorTabs');
  1538. $message = $('#message');
  1539. // bind events
  1540. $message.keydown(supportTabs);
  1541. // bind click events to tab switchers (a), but save parent of them
  1542. // (li)
  1543. $messageEdit = $('#messageedit').click(viewEditor).parent();
  1544. $messagePreview = $('#messagepreview').click(viewPreview).parent();
  1545. }
  1546. return me;
  1547. })();
  1548. /**
  1549. * (view) Parse and show paste.
  1550. *
  1551. * @name PasteViewer
  1552. * @class
  1553. */
  1554. var PasteViewer = (function () {
  1555. var me = {};
  1556. var $placeholder,
  1557. $prettyMessage,
  1558. $prettyPrint,
  1559. $plainText;
  1560. var text,
  1561. format = 'plaintext',
  1562. isDisplayed = false,
  1563. isChanged = true; // by default true as nothing was parsed yet
  1564. /**
  1565. * apply the set format on paste and displays it
  1566. *
  1567. * @name PasteViewer.parsePaste
  1568. * @private
  1569. * @function
  1570. */
  1571. function parsePaste()
  1572. {
  1573. // skip parsing if no text is given
  1574. if (text === '') {
  1575. return;
  1576. }
  1577. // set text
  1578. Helper.setElementText($plainText, text);
  1579. Helper.setElementText($prettyPrint, text);
  1580. switch (format) {
  1581. case 'markdown':
  1582. var converter = new showdown.Converter({
  1583. strikethrough: true,
  1584. tables: true,
  1585. tablesHeaderId: true
  1586. });
  1587. $plainText.html(
  1588. converter.makeHtml(text)
  1589. );
  1590. // add table classes from bootstrap css
  1591. $plainText.find('table').addClass('table-condensed table-bordered');
  1592. break;
  1593. case 'syntaxhighlighting':
  1594. // @TODO is this really needed or is "one" enough?
  1595. if (typeof prettyPrint === 'function')
  1596. {
  1597. prettyPrint();
  1598. }
  1599. $prettyPrint.html(
  1600. prettyPrintOne(
  1601. Helper.htmlEntities(text), null, true
  1602. )
  1603. );
  1604. // fall through, as the rest is the same
  1605. default: // = 'plaintext'
  1606. // convert URLs to clickable links
  1607. Helper.urls2links($plainText);
  1608. Helper.urls2links($prettyPrint);
  1609. $prettyPrint.css('white-space', 'pre-wrap');
  1610. $prettyPrint.css('word-break', 'normal');
  1611. $prettyPrint.removeClass('prettyprint');
  1612. }
  1613. }
  1614. /**
  1615. * displays the paste
  1616. *
  1617. * @name PasteViewer.showPaste
  1618. * @private
  1619. * @function
  1620. */
  1621. function showPaste()
  1622. {
  1623. // instead of "nothing" better display a placeholder
  1624. if (text === '') {
  1625. $placeholder.removeClass('hidden')
  1626. return;
  1627. }
  1628. // otherwise hide the placeholder
  1629. $placeholder.addClass('hidden')
  1630. switch (format) {
  1631. case 'markdown':
  1632. $plainText.removeClass('hidden');
  1633. $prettyMessage.addClass('hidden');
  1634. break;
  1635. default:
  1636. $plainText.addClass('hidden');
  1637. $prettyMessage.removeClass('hidden');
  1638. break;
  1639. }
  1640. }
  1641. /**
  1642. * sets the format in which the text is shown
  1643. *
  1644. * @name PasteViewer.setFormat
  1645. * @function
  1646. * @param {string} newFormat the the new format
  1647. */
  1648. me.setFormat = function(newFormat)
  1649. {
  1650. // skip if there is no update
  1651. if (format === newFormat) {
  1652. return;
  1653. }
  1654. // needs to update display too, if from or to Markdown is switched
  1655. if (format === 'markdown' || newFormat === 'markdown') {
  1656. isDisplayed = false;
  1657. }
  1658. format = newFormat;
  1659. isChanged = true;
  1660. }
  1661. /**
  1662. * returns the current format
  1663. *
  1664. * @name PasteViewer.getFormat
  1665. * @function
  1666. * @return {string}
  1667. */
  1668. me.getFormat = function()
  1669. {
  1670. return format;
  1671. }
  1672. /**
  1673. * returns whether the current view is pretty printed
  1674. *
  1675. * @name PasteViewer.isPrettyPrinted
  1676. * @function
  1677. * @return {bool}
  1678. */
  1679. me.isPrettyPrinted = function()
  1680. {
  1681. return $prettyPrint.hasClass('prettyprinted');
  1682. }
  1683. /**
  1684. * sets the text to show
  1685. *
  1686. * @name PasteViewer.setText
  1687. * @function
  1688. * @param {string} newText the text to show
  1689. */
  1690. me.setText = function(newText)
  1691. {
  1692. if (text !== newText) {
  1693. text = newText;
  1694. isChanged = true;
  1695. }
  1696. }
  1697. /**
  1698. * gets the current cached text
  1699. *
  1700. * @name PasteViewer.getText
  1701. * @function
  1702. * @return {string}
  1703. */
  1704. me.getText = function()
  1705. {
  1706. return text;
  1707. }
  1708. /**
  1709. * show/update the parsed text (preview)
  1710. *
  1711. * @name PasteViewer.run
  1712. * @function
  1713. */
  1714. me.run = function()
  1715. {
  1716. if (isChanged) {
  1717. parsePaste();
  1718. isChanged = false;
  1719. }
  1720. if (!isDisplayed) {
  1721. showPaste();
  1722. isDisplayed = true;
  1723. }
  1724. }
  1725. /**
  1726. * hide parsed text (preview)
  1727. *
  1728. * @name PasteViewer.hide
  1729. * @function
  1730. */
  1731. me.hide = function()
  1732. {
  1733. if (!isDisplayed) {
  1734. console.warn('PasteViewer was called to hide the parsed view, but it is already hidden.');
  1735. }
  1736. $plainText.addClass('hidden');
  1737. $prettyMessage.addClass('hidden');
  1738. $placeholder.addClass('hidden');
  1739. AttachmentViewer.hideAttachmentPreview();
  1740. isDisplayed = false;
  1741. }
  1742. /**
  1743. * init status manager
  1744. *
  1745. * preloads jQuery elements
  1746. *
  1747. * @name PasteViewer.init
  1748. * @function
  1749. */
  1750. me.init = function()
  1751. {
  1752. $placeholder = $('#placeholder');
  1753. $plainText = $('#plaintext');
  1754. $prettyMessage = $('#prettymessage');
  1755. $prettyPrint = $('#prettyprint');
  1756. // check requirements
  1757. if (typeof prettyPrintOne !== 'function') {
  1758. Alert.showError([
  1759. 'The library %s is not available. This may cause display errors.',
  1760. 'pretty print'
  1761. ]);
  1762. }
  1763. if (typeof showdown !== 'object') {
  1764. Alert.showError([
  1765. 'The library %s is not available. This may cause display errors.',
  1766. 'showdown'
  1767. ]);
  1768. }
  1769. // get default option from template/HTML or fall back to set value
  1770. format = Model.getFormatDefault() || format;
  1771. }
  1772. return me;
  1773. })();
  1774. /**
  1775. * (view) Show attachment and preview if possible
  1776. *
  1777. * @name AttachmentViewer
  1778. * @param {object} window
  1779. * @param {object} document
  1780. * @class
  1781. */
  1782. var AttachmentViewer = (function (window, document) {
  1783. var me = {};
  1784. me.$attachmentLink = undefined;
  1785. me.$attachmentPreview = undefined;
  1786. me.$attachment = undefined;
  1787. me.attachmentData = undefined;
  1788. me.file = undefined;
  1789. me.$fileInput = undefined;
  1790. var attachmentHasPreview = false;
  1791. /**
  1792. * sets the attachment but does not yet show it
  1793. *
  1794. * @name AttachmentViewer.setAttachment
  1795. * @function
  1796. * @param {string} attachmentData - base64-encoded data of file
  1797. * @param {string} fileName - optional, file name
  1798. */
  1799. me.setAttachment = function(attachmentData, fileName)
  1800. {
  1801. me.$attachmentLink.attr('href', attachmentData);
  1802. if (typeof fileName !== 'undefined') {
  1803. me.$attachmentLink.attr('download', fileName);
  1804. }
  1805. AttachmentViewer.handleAttachmentPreview(AttachmentViewer.$attachmentPreview, attachmentData);
  1806. attachmentHasPreview = true;
  1807. }
  1808. /**
  1809. * displays the attachment
  1810. *
  1811. * @name AttachmentViewer.showAttachment
  1812. * @function
  1813. */
  1814. me.showAttachment = function()
  1815. {
  1816. me.$attachment.removeClass('hidden');
  1817. if (attachmentHasPreview) {
  1818. me.$attachmentPreview.removeClass('hidden');
  1819. }
  1820. }
  1821. /**
  1822. * removes the attachment
  1823. *
  1824. * This automatically hides the attachment containers to, to
  1825. * prevent an inconsistent display.
  1826. *
  1827. * @name AttachmentViewer.removeAttachment
  1828. * @function
  1829. */
  1830. me.removeAttachment = function()
  1831. {
  1832. if (!me.$attachment.length) {
  1833. return;
  1834. }
  1835. me.hideAttachment();
  1836. me.hideAttachmentPreview();
  1837. me.$attachmentLink.prop('href', '');
  1838. me.$attachmentLink.prop('download', '');
  1839. me.$attachmentPreview.html('');
  1840. AttachmentViewer.file = undefined;
  1841. AttachmentViewer.attachmentData = undefined;
  1842. }
  1843. /**
  1844. * hides the attachment
  1845. *
  1846. * This will not hide the preview (see AttachmentViewer.hideAttachmentPreview
  1847. * for that) nor will it hide the attachment link if it was moved somewhere
  1848. * else (see AttachmentViewer.moveAttachmentTo).
  1849. *
  1850. * @name AttachmentViewer.hideAttachment
  1851. * @function
  1852. */
  1853. me.hideAttachment = function()
  1854. {
  1855. me.$attachment.addClass('hidden');
  1856. }
  1857. /**
  1858. * hides the attachment preview
  1859. *
  1860. * @name AttachmentViewer.hideAttachmentPreview
  1861. * @function
  1862. */
  1863. me.hideAttachmentPreview = function()
  1864. {
  1865. if(me.$attachmentPreview){
  1866. me.$attachmentPreview.addClass('hidden');
  1867. }
  1868. }
  1869. /**
  1870. * checks if there is an attachment
  1871. *
  1872. * @name AttachmentViewer.hasAttachment
  1873. * @function
  1874. */
  1875. me.hasAttachment = function()
  1876. {
  1877. if (!AttachmentViewer.$attachment.length) {
  1878. return false;
  1879. }
  1880. var link = me.$attachmentLink.prop('href');
  1881. return (typeof link !== 'undefined' && link !== '')
  1882. }
  1883. /**
  1884. * return the attachment
  1885. *
  1886. * @name AttachmentViewer.getAttachment
  1887. * @function
  1888. * @returns {array}
  1889. */
  1890. me.getAttachment = function()
  1891. {
  1892. return [
  1893. me.$attachmentLink.prop('href'),
  1894. me.$attachmentLink.prop('download')
  1895. ];
  1896. }
  1897. /**
  1898. * moves the attachment link to another element
  1899. *
  1900. * It is advisable to hide the attachment afterwards (AttachmentViewer.hideAttachment)
  1901. *
  1902. * @name AttachmentViewer.moveAttachmentTo
  1903. * @function
  1904. * @param {jQuery} $element - the wrapper/container element where this should be moved to
  1905. * @param {string} label - the text to show (%s will be replaced with the file name), will automatically be translated
  1906. */
  1907. me.moveAttachmentTo = function($element, label)
  1908. {
  1909. // move elemement to new place
  1910. me.$attachmentLink.appendTo($element);
  1911. // update text
  1912. I18n._(me.$attachmentLink, label, me.$attachmentLink.attr('download'));
  1913. }
  1914. /*
  1915. * Read file data as dataURL using the FileReader API
  1916. * https://developer.mozilla.org/en-US/docs/Web/API/FileReader#readAsDataURL()
  1917. */
  1918. me.readFileData = function (file) {
  1919. if (typeof FileReader === 'undefined') {
  1920. // revert loading status…
  1921. AttachmentViewer.hideAttachment();
  1922. AttachmentViewer.hideAttachmentPreview();
  1923. Alert.showError(I18n._('Your browser does not support uploading encrypted files. Please use a newer browser.'));
  1924. return;
  1925. }
  1926. var fileReader = new FileReader();
  1927. if (file === undefined) {
  1928. file = me.$fileInput[0].files[0];
  1929. $('#dragAndDropFileName').text('');
  1930. } else {
  1931. $('#dragAndDropFileName').text(file.name);
  1932. }
  1933. me.file = file;
  1934. fileReader.onload = function (event) {
  1935. var dataURL = event.target.result;
  1936. me.attachmentData = dataURL;
  1937. if (Editor.isPreview()) {
  1938. me.handleAttachmentPreview(AttachmentViewer.$attachmentPreview, dataURL);
  1939. }
  1940. };
  1941. fileReader.readAsDataURL(file);
  1942. };
  1943. /**
  1944. * Handle the preview of files that can either be an image, video, audio or pdf element.
  1945. * @argument {DOM Element} targetElement where the preview should be appended.
  1946. * @argument {File Data} data of the file to be displayed.
  1947. */
  1948. me.handleAttachmentPreview = function (targetElement, data) {
  1949. if (data) {
  1950. var mimeType = this.getMimeTypeFromDataURL(data);
  1951. if (mimeType.match(/image\//i)) {
  1952. this.showImagePreview(targetElement, data);
  1953. } else if (mimeType.match(/video\//i)) {
  1954. this.showVideoPreview(targetElement, data, mimeType);
  1955. } else if (mimeType.match(/audio\//i)) {
  1956. this.showAudioPreview(targetElement, data, mimeType);
  1957. } else if (mimeType.match(/\/pdf/i)) {
  1958. this.showPDFPreview(targetElement, data);
  1959. }
  1960. //else {
  1961. //console.log("file but no image/video/audio/pdf");
  1962. //}
  1963. }
  1964. };
  1965. /**
  1966. * Get Mime Type from a DataURL
  1967. *
  1968. * @param {type} dataURL
  1969. * @returns Mime Type from a dataURL as obtained for a file using the FileReader API https://developer.mozilla.org/en-US/docs/Web/API/FileReader#readAsDataURL()
  1970. */
  1971. me.getMimeTypeFromDataURL = function (dataURL) {
  1972. return dataURL.slice(dataURL.indexOf('data:') + 5, dataURL.indexOf(';base64,'));
  1973. };
  1974. me.showImagePreview = function (targetElement, image) {
  1975. targetElement.html(
  1976. $(document.createElement('img'))
  1977. .attr('src', image)
  1978. .attr('class', 'img-thumbnail')
  1979. );
  1980. targetElement.removeClass('hidden');
  1981. };
  1982. me.showVideoPreview = function (targetElement, video, mimeType) {
  1983. var videoPlayer = $(document.createElement('video'))
  1984. .attr('controls', 'true')
  1985. .attr('autoplay', 'true')
  1986. .attr('loop', 'true')
  1987. .attr('class', 'img-thumbnail');
  1988. videoPlayer.append($(document.createElement('source'))
  1989. .attr('type', mimeType)
  1990. .attr('src', video));
  1991. targetElement.html(videoPlayer);
  1992. targetElement.removeClass('hidden');
  1993. };
  1994. me.showAudioPreview = function (targetElement, audio, mimeType) {
  1995. var audioPlayer = $(document.createElement('audio'))
  1996. .attr('controls', 'true')
  1997. .attr('autoplay', 'true');
  1998. audioPlayer.append($(document.createElement('source'))
  1999. .attr('type', mimeType)
  2000. .attr('src', audio));
  2001. targetElement.html(audioPlayer);
  2002. targetElement.removeClass('hidden');
  2003. };
  2004. me.showPDFPreview = function (targetElement, pdf) {
  2005. //PDFs are only displayed if the filesize is smaller than about 1MB (after base64 encoding).
  2006. //Bigger filesizes currently cause crashes in various browsers.
  2007. //See also: https://code.google.com/p/chromium/issues/detail?id=69227
  2008. //Firefox crashes with files that are about 1.5MB
  2009. //The performance with 1MB files is bareable
  2010. if (pdf.length < 1398488) {
  2011. //Fallback for browsers, that don't support the vh unit
  2012. var clientHeight = $(window).height();
  2013. targetElement.html(
  2014. $(document.createElement('embed'))
  2015. .attr('src', pdf)
  2016. .attr('type', 'application/pdf')
  2017. .attr('class', 'pdfPreview')
  2018. .css('height', clientHeight)
  2019. );
  2020. targetElement.removeClass('hidden');
  2021. } else {
  2022. Alert.showError(I18n._('File too large, to display a preview. Please download the attachment.'));
  2023. }
  2024. };
  2025. /**
  2026. * Attaches the file attachment drag & drop handler to the page.
  2027. * @returns {undefined}
  2028. */
  2029. me.addDragDropHandler = function () {
  2030. var fileInput = me.$fileInput;
  2031. if (typeof fileInput === 'undefined' || fileInput.length === 0) {
  2032. return;
  2033. }
  2034. var ignoreDragDrop = function(event) {
  2035. event.stopPropagation();
  2036. event.preventDefault();
  2037. };
  2038. var drop = function(event) {
  2039. event.stopPropagation();
  2040. event.preventDefault();
  2041. if (fileInput) {
  2042. var file = event.dataTransfer.files[0];
  2043. //Clear the file input:
  2044. fileInput.wrap('<form>').closest('form').get(0).reset();
  2045. fileInput.unwrap();
  2046. //Only works in Chrome:
  2047. //fileInput[0].files = e.dataTransfer.files;
  2048. me.readFileData(file);
  2049. }
  2050. };
  2051. document.addEventListener("drop", drop, false);
  2052. document.addEventListener("dragenter", ignoreDragDrop, false);
  2053. document.addEventListener("dragover", ignoreDragDrop, false);
  2054. fileInput.on("change", function () {
  2055. me.readFileData();
  2056. });
  2057. };
  2058. /**
  2059. * initiate
  2060. *
  2061. * preloads jQuery elements
  2062. *
  2063. * @name AttachmentViewer.init
  2064. * @function
  2065. */
  2066. me.init = function()
  2067. {
  2068. me.$attachment = $('#attachment');
  2069. if(me.$attachment.length){
  2070. me.$attachmentLink = $('#attachment a');
  2071. me.$attachmentPreview = $('#attachmentPreview');
  2072. me.$fileInput = $('#file');
  2073. me.addDragDropHandler();
  2074. }
  2075. }
  2076. return me;
  2077. })(window, document);
  2078. /**
  2079. * (view) Shows discussion thread and handles replies
  2080. *
  2081. * @name DiscussionViewer
  2082. * @param {object} window
  2083. * @param {object} document
  2084. * @class
  2085. */
  2086. var DiscussionViewer = (function (window, document) {
  2087. var me = {};
  2088. var $commentTail,
  2089. $discussion,
  2090. $reply,
  2091. $replyMessage,
  2092. $replyNickname,
  2093. $replyStatus,
  2094. $commentContainer;
  2095. var replyCommentId;
  2096. /**
  2097. * initializes the templates
  2098. *
  2099. * @name DiscussionViewer.initTemplates
  2100. * @private
  2101. * @function
  2102. */
  2103. function initTemplates()
  2104. {
  2105. $reply = Model.getTemplate('reply');
  2106. $replyMessage = $reply.find('#replymessage');
  2107. $replyNickname = $reply.find('#nickname');
  2108. $replyStatus = $reply.find('#replystatus');
  2109. // cache jQuery elements
  2110. $commentTail = Model.getTemplate('commenttail');
  2111. }
  2112. /**
  2113. * open the comment entry when clicking the "Reply" button of a comment
  2114. *
  2115. * @name DiscussionViewer.openReply
  2116. * @private
  2117. * @function
  2118. * @param {Event} event
  2119. */
  2120. function openReply(event)
  2121. {
  2122. var $source = $(event.target);
  2123. // clear input
  2124. $replyMessage.val('');
  2125. $replyNickname.val('');
  2126. // get comment id from source element
  2127. replyCommentId = $source.parent().prop('id').split('_')[1];
  2128. // move to correct position
  2129. $source.after($reply);
  2130. // show
  2131. $reply.removeClass('hidden');
  2132. $replyMessage.focus();
  2133. event.preventDefault();
  2134. }
  2135. /**
  2136. * custom handler for displaying notifications in own status message area
  2137. *
  2138. * @name DiscussionViewer.handleNotification
  2139. * @function
  2140. * @param {string} alertType
  2141. * @param {jQuery} $element
  2142. * @param {string|array} args
  2143. * @param {string|null} icon
  2144. * @return {bool|jQuery}
  2145. */
  2146. me.handleNotification = function(alertType, $element, args, icon)
  2147. {
  2148. // ignore loading messages
  2149. if (alertType === 'loading') {
  2150. return false;
  2151. }
  2152. if (alertType === 'danger') {
  2153. $replyStatus.removeClass('alert-info');
  2154. $replyStatus.addClass('alert-danger');
  2155. $replyStatus.find(':first').removeClass('glyphicon-alert');
  2156. $replyStatus.find(':first').addClass('glyphicon-info-sign');
  2157. } else {
  2158. $replyStatus.removeClass('alert-danger');
  2159. $replyStatus.addClass('alert-info');
  2160. $replyStatus.find(':first').removeClass('glyphicon-info-sign');
  2161. $replyStatus.find(':first').addClass('glyphicon-alert');
  2162. }
  2163. return $replyStatus;
  2164. }
  2165. /**
  2166. * adds another comment
  2167. *
  2168. * @name DiscussionViewer.addComment
  2169. * @function
  2170. * @param {object} comment
  2171. * @param {string} commentText
  2172. * @param {jQuery} $place - optional, tries to find the best position otherwise
  2173. */
  2174. me.addComment = function(comment, commentText, nickname, $place)
  2175. {
  2176. if (typeof $place === 'undefined') {
  2177. // starting point (default value/fallback)
  2178. $place = $commentContainer;
  2179. // if parent comment exists
  2180. var $parentComment = $('#comment_' + comment.parentid);
  2181. if ($parentComment.length) {
  2182. // use parent as position for noew comment, so it shifted
  2183. // to the right
  2184. $place = $parentComment;
  2185. }
  2186. }
  2187. if (commentText === '') {
  2188. commentText = 'comment decryption failed';
  2189. }
  2190. // create new comment based on template
  2191. var $commentEntry = Model.getTemplate('comment');
  2192. $commentEntry.prop('id', 'comment_' + comment.id);
  2193. var $commentEntryData = $commentEntry.find('div.commentdata');
  2194. // set & parse text
  2195. Helper.setElementText($commentEntryData, commentText);
  2196. Helper.urls2links($commentEntryData);
  2197. // set nickname
  2198. if (nickname.length > 0) {
  2199. $commentEntry.find('span.nickname').text(nickname);
  2200. } else {
  2201. $commentEntry.find('span.nickname').html('<i></i>');
  2202. I18n._($commentEntry.find('span.nickname i'), 'Anonymous');
  2203. }
  2204. // set date
  2205. $commentEntry.find('span.commentdate')
  2206. .text(' (' + (new Date(comment.meta.postdate * 1000).toLocaleString()) + ')')
  2207. .attr('title', 'CommentID: ' + comment.id);
  2208. // if an avatar is available, display it
  2209. if (comment.meta.vizhash) {
  2210. $commentEntry.find('span.nickname')
  2211. .before(
  2212. '<img src="' + comment.meta.vizhash + '" class="vizhash" /> '
  2213. );
  2214. $(document).on('languageLoaded', function () {
  2215. $commentEntry.find('img.vizhash')
  2216. .prop('title', I18n._('Avatar generated from IP address'));
  2217. });
  2218. }
  2219. // finally append comment
  2220. $place.append($commentEntry);
  2221. }
  2222. /**
  2223. * finishes the discussion area after last comment
  2224. *
  2225. * @name DiscussionViewer.finishDiscussion
  2226. * @function
  2227. */
  2228. me.finishDiscussion = function()
  2229. {
  2230. // add 'add new comment' area
  2231. $commentContainer.append($commentTail);
  2232. // show discussions
  2233. $discussion.removeClass('hidden');
  2234. }
  2235. /**
  2236. * shows the discussion area
  2237. *
  2238. * @name DiscussionViewer.showDiscussion
  2239. * @function
  2240. */
  2241. me.showDiscussion = function()
  2242. {
  2243. $discussion.removeClass('hidden');
  2244. }
  2245. /**
  2246. * removes the old discussion and prepares everything for creating a new
  2247. * one.
  2248. *
  2249. * @name DiscussionViewer.prepareNewDisucssion
  2250. * @function
  2251. */
  2252. me.prepareNewDisucssion = function()
  2253. {
  2254. $commentContainer.html('');
  2255. $discussion.addClass('hidden');
  2256. // (re-)init templates
  2257. initTemplates();
  2258. }
  2259. /**
  2260. * returns the user put into the reply form
  2261. *
  2262. * @name DiscussionViewer.getReplyData
  2263. * @function
  2264. * @return {array}
  2265. */
  2266. me.getReplyData = function()
  2267. {
  2268. return [
  2269. $replyMessage.val(),
  2270. $replyNickname.val()
  2271. ];
  2272. }
  2273. /**
  2274. * highlights a specific comment and scrolls to it if necessary
  2275. *
  2276. * @name DiscussionViewer.highlightComment
  2277. * @function
  2278. * @param {string} commentId
  2279. * @param {bool} fadeOut - whether to fade out the comment
  2280. */
  2281. me.highlightComment = function(commentId, fadeOut)
  2282. {
  2283. var $comment = $('#comment_' + commentId);
  2284. // in case comment does not exist, cancel
  2285. if ($comment.length === 0) {
  2286. return;
  2287. }
  2288. var highlightComment = function () {
  2289. $comment.addClass('highlight');
  2290. if (fadeOut === true) {
  2291. setTimeout(function () {
  2292. $comment.removeClass('highlight');
  2293. }, 300);
  2294. }
  2295. }
  2296. if (UiHelper.isVisible($comment)) {
  2297. return highlightComment();
  2298. }
  2299. UiHelper.scrollTo($comment, 100, 'swing', highlightComment);
  2300. }
  2301. /**
  2302. * returns the id of the parent comment the user is replying to
  2303. *
  2304. * @name DiscussionViewer.getReplyCommentId
  2305. * @function
  2306. * @return {int|undefined}
  2307. */
  2308. me.getReplyCommentId = function()
  2309. {
  2310. return replyCommentId;
  2311. }
  2312. /**
  2313. * initiate
  2314. *
  2315. * preloads jQuery elements
  2316. *
  2317. * @name DiscussionViewer.init
  2318. * @function
  2319. */
  2320. me.init = function()
  2321. {
  2322. // bind events to templates (so they are later cloned)
  2323. $('#commenttailtemplate, #commenttemplate').find('button').on('click', openReply);
  2324. $('#replytemplate').find('button').on('click', PasteEncrypter.sendComment);
  2325. $commentContainer = $('#commentcontainer');
  2326. $discussion = $('#discussion');
  2327. }
  2328. return me;
  2329. })(window, document);
  2330. /**
  2331. * Manage top (navigation) bar
  2332. *
  2333. * @name TopNav
  2334. * @param {object} window
  2335. * @param {object} document
  2336. * @class
  2337. */
  2338. var TopNav = (function (window, document) {
  2339. var me = {};
  2340. var createButtonsDisplayed = false;
  2341. var viewButtonsDisplayed = false;
  2342. var $attach,
  2343. $burnAfterReading,
  2344. $burnAfterReadingOption,
  2345. $cloneButton,
  2346. $customAttachment,
  2347. $expiration,
  2348. $fileRemoveButton,
  2349. $fileWrap,
  2350. $formatter,
  2351. $newButton,
  2352. $openDiscussion,
  2353. $openDiscussionOption,
  2354. $password,
  2355. $passwordInput,
  2356. $rawTextButton,
  2357. $sendButton;
  2358. var pasteExpiration = '1week';
  2359. /**
  2360. * set the expiration on bootstrap templates in dropdown
  2361. *
  2362. * @name TopNav.updateExpiration
  2363. * @private
  2364. * @function
  2365. * @param {Event} event
  2366. */
  2367. function updateExpiration(event)
  2368. {
  2369. // get selected option
  2370. var target = $(event.target);
  2371. // update dropdown display and save new expiration time
  2372. $('#pasteExpirationDisplay').text(target.text());
  2373. pasteExpiration = target.data('expiration');
  2374. event.preventDefault();
  2375. }
  2376. /**
  2377. * set the format on bootstrap templates in dropdown
  2378. *
  2379. * @name TopNav.updateFormat
  2380. * @private
  2381. * @function
  2382. * @param {Event} event
  2383. */
  2384. function updateFormat(event)
  2385. {
  2386. // get selected option
  2387. var $target = $(event.target);
  2388. // update dropdown display and save new format
  2389. var newFormat = $target.data('format');
  2390. $('#pasteFormatterDisplay').text($target.text());
  2391. PasteViewer.setFormat(newFormat);
  2392. // update preview
  2393. if (Editor.isPreview()) {
  2394. PasteViewer.run();
  2395. }
  2396. event.preventDefault();
  2397. }
  2398. /**
  2399. * when "burn after reading" is checked, disable discussion
  2400. *
  2401. * @name TopNav.changeBurnAfterReading
  2402. * @private
  2403. * @function
  2404. */
  2405. function changeBurnAfterReading()
  2406. {
  2407. if ($burnAfterReading.is(':checked')) {
  2408. $openDiscussionOption.addClass('buttondisabled');
  2409. $openDiscussion.prop('checked', false);
  2410. // if button is actually disabled, force-enable it and uncheck other button
  2411. $burnAfterReadingOption.removeClass('buttondisabled');
  2412. } else {
  2413. $openDiscussionOption.removeClass('buttondisabled');
  2414. }
  2415. }
  2416. /**
  2417. * when discussion is checked, disable "burn after reading"
  2418. *
  2419. * @name TopNav.changeOpenDiscussion
  2420. * @private
  2421. * @function
  2422. */
  2423. function changeOpenDiscussion()
  2424. {
  2425. if ($openDiscussion.is(':checked')) {
  2426. $burnAfterReadingOption.addClass('buttondisabled');
  2427. $burnAfterReading.prop('checked', false);
  2428. // if button is actually disabled, force-enable it and uncheck other button
  2429. $openDiscussionOption.removeClass('buttondisabled');
  2430. } else {
  2431. $burnAfterReadingOption.removeClass('buttondisabled');
  2432. }
  2433. }
  2434. /**
  2435. * return raw text
  2436. *
  2437. * @name TopNav.rawText
  2438. * @private
  2439. * @function
  2440. * @param {Event} event
  2441. */
  2442. function rawText(event)
  2443. {
  2444. TopNav.hideAllButtons();
  2445. Alert.showLoading('Showing raw text…', 0, 'time');
  2446. var paste = PasteViewer.getText();
  2447. // push a new state to allow back navigation with browser back button
  2448. history.pushState(
  2449. {type: 'raw'},
  2450. document.title,
  2451. // recreate paste URL
  2452. Helper.baseUri() + '?' + Model.getPasteId() + '#' +
  2453. Model.getPasteKey()
  2454. );
  2455. // we use text/html instead of text/plain to avoid a bug when
  2456. // reloading the raw text view (it reverts to type text/html)
  2457. var $head = $('head').children().not('noscript, script, link[type="text/css"]');
  2458. var newDoc = document.open('text/html', 'replace');
  2459. newDoc.write('<!DOCTYPE html><html><head>');
  2460. for (var i = 0; i < $head.length; i++) {
  2461. newDoc.write($head[i].outerHTML);
  2462. }
  2463. newDoc.write('</head><body><pre>' + Helper.htmlEntities(paste) + '</pre></body></html>');
  2464. newDoc.close();
  2465. }
  2466. /**
  2467. * saves the language in a cookie and reloads the page
  2468. *
  2469. * @name TopNav.setLanguage
  2470. * @private
  2471. * @function
  2472. * @param {Event} event
  2473. */
  2474. function setLanguage(event)
  2475. {
  2476. document.cookie = 'lang=' + $(event.target).data('lang');
  2477. UiHelper.reloadHome();
  2478. }
  2479. /**
  2480. * hides all messages and creates a new paste
  2481. *
  2482. * @name TopNav.clickNewPaste
  2483. * @private
  2484. * @function
  2485. * @param {Event} event
  2486. */
  2487. function clickNewPaste(event)
  2488. {
  2489. Controller.hideStatusMessages();
  2490. Controller.newPaste();
  2491. }
  2492. /**
  2493. * removes the existing attachment
  2494. *
  2495. * @name TopNav.removeAttachment
  2496. * @private
  2497. * @function
  2498. * @param {Event} event
  2499. */
  2500. function removeAttachment(event)
  2501. {
  2502. // if custom attachment is used, remove it first
  2503. if (!$customAttachment.hasClass('hidden')) {
  2504. AttachmentViewer.removeAttachment();
  2505. $customAttachment.addClass('hidden');
  2506. $fileWrap.removeClass('hidden');
  2507. }
  2508. // our up-to-date jQuery can handle it :)
  2509. $fileWrap.find('input').val('');
  2510. // pevent '#' from appearing in the URL
  2511. event.preventDefault();
  2512. }
  2513. /**
  2514. * Shows all elements belonging to viwing an existing pastes
  2515. *
  2516. * @name TopNav.showViewButtons
  2517. * @function
  2518. */
  2519. me.showViewButtons = function()
  2520. {
  2521. if (viewButtonsDisplayed) {
  2522. console.log('showViewButtons: view buttons are already displayed');
  2523. return;
  2524. }
  2525. $newButton.removeClass('hidden');
  2526. $cloneButton.removeClass('hidden');
  2527. $rawTextButton.removeClass('hidden');
  2528. viewButtonsDisplayed = true;
  2529. }
  2530. /**
  2531. * Hides all elements belonging to existing pastes
  2532. *
  2533. * @name TopNav.hideViewButtons
  2534. * @function
  2535. */
  2536. me.hideViewButtons = function()
  2537. {
  2538. if (!viewButtonsDisplayed) {
  2539. console.log('hideViewButtons: view buttons are already hidden');
  2540. return;
  2541. }
  2542. $newButton.addClass('hidden');
  2543. $cloneButton.addClass('hidden');
  2544. $rawTextButton.addClass('hidden');
  2545. viewButtonsDisplayed = false;
  2546. }
  2547. /**
  2548. * Hides all elements belonging to existing pastes
  2549. *
  2550. * @name TopNav.hideAllButtons
  2551. * @function
  2552. */
  2553. me.hideAllButtons = function()
  2554. {
  2555. me.hideViewButtons();
  2556. me.hideCreateButtons();
  2557. }
  2558. /**
  2559. * shows all elements needed when creating a new paste
  2560. *
  2561. * @name TopNav.showCreateButtons
  2562. * @function
  2563. */
  2564. me.showCreateButtons = function()
  2565. {
  2566. if (createButtonsDisplayed) {
  2567. console.log('showCreateButtons: create buttons are already displayed');
  2568. return;
  2569. }
  2570. $sendButton.removeClass('hidden');
  2571. $expiration.removeClass('hidden');
  2572. $formatter.removeClass('hidden');
  2573. $burnAfterReadingOption.removeClass('hidden');
  2574. $openDiscussionOption.removeClass('hidden');
  2575. $newButton.removeClass('hidden');
  2576. $password.removeClass('hidden');
  2577. $attach.removeClass('hidden');
  2578. createButtonsDisplayed = true;
  2579. }
  2580. /**
  2581. * shows all elements needed when creating a new paste
  2582. *
  2583. * @name TopNav.hideCreateButtons
  2584. * @function
  2585. */
  2586. me.hideCreateButtons = function()
  2587. {
  2588. if (!createButtonsDisplayed) {
  2589. console.log('hideCreateButtons: create buttons are already hidden');
  2590. return;
  2591. }
  2592. $newButton.addClass('hidden');
  2593. $sendButton.addClass('hidden');
  2594. $expiration.addClass('hidden');
  2595. $formatter.addClass('hidden');
  2596. $burnAfterReadingOption.addClass('hidden');
  2597. $openDiscussionOption.addClass('hidden');
  2598. $password.addClass('hidden');
  2599. $attach.addClass('hidden');
  2600. createButtonsDisplayed = false;
  2601. }
  2602. /**
  2603. * only shows the "new paste" button
  2604. *
  2605. * @name TopNav.showNewPasteButton
  2606. * @function
  2607. */
  2608. me.showNewPasteButton = function()
  2609. {
  2610. $newButton.removeClass('hidden');
  2611. }
  2612. /**
  2613. * only hides the clone button
  2614. *
  2615. * @name TopNav.hideCloneButton
  2616. * @function
  2617. */
  2618. me.hideCloneButton = function()
  2619. {
  2620. $cloneButton.addClass('hidden');
  2621. }
  2622. /**
  2623. * only hides the raw text button
  2624. *
  2625. * @name TopNav.hideRawButton
  2626. * @function
  2627. */
  2628. me.hideRawButton = function()
  2629. {
  2630. $rawTextButton.addClass('hidden');
  2631. }
  2632. /**
  2633. * hides the file selector in attachment
  2634. *
  2635. * @name TopNav.hideFileSelector
  2636. * @function
  2637. */
  2638. me.hideFileSelector = function()
  2639. {
  2640. $fileWrap.addClass('hidden');
  2641. }
  2642. /**
  2643. * shows the custom attachment
  2644. *
  2645. * @name TopNav.showCustomAttachment
  2646. * @function
  2647. */
  2648. me.showCustomAttachment = function()
  2649. {
  2650. $customAttachment.removeClass('hidden');
  2651. }
  2652. /**
  2653. * collapses the navigation bar if nedded
  2654. *
  2655. * @name TopNav.collapseBar
  2656. * @function
  2657. */
  2658. me.collapseBar = function()
  2659. {
  2660. var $bar = $('.navbar-toggle');
  2661. // check if bar is expanded
  2662. if ($bar.hasClass('collapse in')) {
  2663. // if so, toggle it
  2664. $bar.click();
  2665. }
  2666. }
  2667. /**
  2668. * returns the currently set expiration time
  2669. *
  2670. * @name TopNav.getExpiration
  2671. * @function
  2672. * @return {int}
  2673. */
  2674. me.getExpiration = function()
  2675. {
  2676. return pasteExpiration;
  2677. }
  2678. /**
  2679. * returns the currently selected file(s)
  2680. *
  2681. * @name TopNav.getFileList
  2682. * @function
  2683. * @return {FileList|null}
  2684. */
  2685. me.getFileList = function()
  2686. {
  2687. var $file = $('#file');
  2688. // if no file given, return null
  2689. if (!$file.length || !$file[0].files.length) {
  2690. return null;
  2691. }
  2692. // @TODO is this really necessary
  2693. if (!($file[0].files && $file[0].files[0])) {
  2694. return null;
  2695. }
  2696. return $file[0].files;
  2697. }
  2698. /**
  2699. * returns the state of the burn after reading checkbox
  2700. *
  2701. * @name TopNav.getExpiration
  2702. * @function
  2703. * @return {bool}
  2704. */
  2705. me.getBurnAfterReading = function()
  2706. {
  2707. return $burnAfterReading.is(':checked');
  2708. }
  2709. /**
  2710. * returns the state of the discussion checkbox
  2711. *
  2712. * @name TopNav.getOpenDiscussion
  2713. * @function
  2714. * @return {bool}
  2715. */
  2716. me.getOpenDiscussion = function()
  2717. {
  2718. return $openDiscussion.is(':checked');
  2719. }
  2720. /**
  2721. * returns the entered password
  2722. *
  2723. * @name TopNav.getPassword
  2724. * @function
  2725. * @return {string}
  2726. */
  2727. me.getPassword = function()
  2728. {
  2729. return $passwordInput.val();
  2730. }
  2731. /**
  2732. * returns the element where custom attachments can be placed
  2733. *
  2734. * Used by AttachmentViewer when an attachment is cloned here.
  2735. *
  2736. * @name TopNav.getCustomAttachment
  2737. * @function
  2738. * @return {jQuery}
  2739. */
  2740. me.getCustomAttachment = function()
  2741. {
  2742. return $customAttachment;
  2743. }
  2744. /**
  2745. * init navigation manager
  2746. *
  2747. * preloads jQuery elements
  2748. *
  2749. * @name TopNav.init
  2750. * @function
  2751. */
  2752. me.init = function()
  2753. {
  2754. $attach = $('#attach');
  2755. $burnAfterReading = $('#burnafterreading');
  2756. $burnAfterReadingOption = $('#burnafterreadingoption');
  2757. $cloneButton = $('#clonebutton');
  2758. $customAttachment = $('#customattachment');
  2759. $expiration = $('#expiration');
  2760. $fileRemoveButton = $('#fileremovebutton');
  2761. $fileWrap = $('#filewrap');
  2762. $formatter = $('#formatter');
  2763. $newButton = $('#newbutton');
  2764. $openDiscussion = $('#opendiscussion');
  2765. $openDiscussionOption = $('#opendiscussionoption');
  2766. $password = $('#password');
  2767. $passwordInput = $('#passwordinput');
  2768. $rawTextButton = $('#rawtextbutton');
  2769. $sendButton = $('#sendbutton');
  2770. // bootstrap template drop down
  2771. $('#language ul.dropdown-menu li a').click(setLanguage);
  2772. // page template drop down
  2773. $('#language select option').click(setLanguage);
  2774. // bind events
  2775. $burnAfterReading.change(changeBurnAfterReading);
  2776. $openDiscussionOption.change(changeOpenDiscussion);
  2777. $newButton.click(clickNewPaste);
  2778. $sendButton.click(PasteEncrypter.sendPaste);
  2779. $cloneButton.click(Controller.clonePaste);
  2780. $rawTextButton.click(rawText);
  2781. $fileRemoveButton.click(removeAttachment);
  2782. // bootstrap template drop downs
  2783. $('ul.dropdown-menu li a', $('#expiration').parent()).click(updateExpiration);
  2784. $('ul.dropdown-menu li a', $('#formatter').parent()).click(updateFormat);
  2785. // initiate default state of checkboxes
  2786. changeBurnAfterReading();
  2787. changeOpenDiscussion();
  2788. // get default value from template or fall back to set value
  2789. pasteExpiration = Model.getExpirationDefault() || pasteExpiration;
  2790. }
  2791. return me;
  2792. })(window, document);
  2793. /**
  2794. * Responsible for AJAX requests, transparently handles encryption…
  2795. *
  2796. * @name Uploader
  2797. * @class
  2798. */
  2799. var Uploader = (function () {
  2800. var me = {};
  2801. var successFunc = null,
  2802. failureFunc = null,
  2803. url,
  2804. data,
  2805. symmetricKey,
  2806. password;
  2807. /**
  2808. * public variable ('constant') for errors to prevent magic numbers
  2809. *
  2810. * @name Uploader.error
  2811. * @readonly
  2812. * @enum {Object}
  2813. */
  2814. me.error = {
  2815. okay: 0,
  2816. custom: 1,
  2817. unknown: 2,
  2818. serverError: 3
  2819. };
  2820. /**
  2821. * ajaxHeaders to send in AJAX requests
  2822. *
  2823. * @name Uploader.ajaxHeaders
  2824. * @private
  2825. * @readonly
  2826. * @enum {Object}
  2827. */
  2828. var ajaxHeaders = {'X-Requested-With': 'JSONHttpRequest'};
  2829. /**
  2830. * called after successful upload
  2831. *
  2832. * @name Uploader.checkCryptParameters
  2833. * @private
  2834. * @function
  2835. * @throws {string}
  2836. */
  2837. function checkCryptParameters()
  2838. {
  2839. // workaround for this nasty 'bug' in ECMAScript
  2840. // see https://stackoverflow.com/questions/18808226/why-is-typeof-null-object
  2841. var typeOfKey = typeof symmetricKey;
  2842. if (symmetricKey === null) {
  2843. typeOfKey = 'null';
  2844. }
  2845. // in case of missing preparation, throw error
  2846. switch (typeOfKey) {
  2847. case 'string':
  2848. // already set, all right
  2849. return;
  2850. case 'null':
  2851. // needs to be generated auto-generate
  2852. symmetricKey = CryptTool.getSymmetricKey();
  2853. break;
  2854. default:
  2855. console.error('current invalid symmetricKey:', symmetricKey);
  2856. throw 'symmetricKey is invalid, probably the module was not prepared';
  2857. }
  2858. // password is optional
  2859. }
  2860. /**
  2861. * called after successful upload
  2862. *
  2863. * @name Uploader.success
  2864. * @private
  2865. * @function
  2866. * @param {int} status
  2867. * @param {int} result - optional
  2868. */
  2869. function success(status, result)
  2870. {
  2871. // add useful data to result
  2872. result.encryptionKey = symmetricKey;
  2873. result.requestData = data;
  2874. if (successFunc !== null) {
  2875. successFunc(status, result);
  2876. }
  2877. }
  2878. /**
  2879. * called after a upload failure
  2880. *
  2881. * @name Uploader.fail
  2882. * @private
  2883. * @function
  2884. * @param {int} status - internal code
  2885. * @param {int} result - original error code
  2886. */
  2887. function fail(status, result)
  2888. {
  2889. if (failureFunc !== null) {
  2890. failureFunc(status, result);
  2891. }
  2892. }
  2893. /**
  2894. * actually uploads the data
  2895. *
  2896. * @name Uploader.run
  2897. * @function
  2898. */
  2899. me.run = function()
  2900. {
  2901. $.ajax({
  2902. type: 'POST',
  2903. url: url,
  2904. data: data,
  2905. dataType: 'json',
  2906. headers: ajaxHeaders,
  2907. success: function(result) {
  2908. if (result.status === 0) {
  2909. success(0, result);
  2910. } else if (result.status === 1) {
  2911. fail(1, result);
  2912. } else {
  2913. fail(2, result);
  2914. }
  2915. }
  2916. })
  2917. .fail(function(jqXHR, textStatus, errorThrown) {
  2918. console.error(textStatus, errorThrown);
  2919. fail(3, jqXHR);
  2920. });
  2921. }
  2922. /**
  2923. * set success function
  2924. *
  2925. * @name Uploader.setUrl
  2926. * @function
  2927. * @param {function} newUrl
  2928. */
  2929. me.setUrl = function(newUrl)
  2930. {
  2931. url = newUrl;
  2932. }
  2933. /**
  2934. * sets the password to use (first value) and optionally also the
  2935. * encryption key (not recommend, it is automatically generated).
  2936. *
  2937. * Note: Call this after prepare() as prepare() resets these values.
  2938. *
  2939. * @name Uploader.setCryptValues
  2940. * @function
  2941. * @param {string} newPassword
  2942. * @param {string} newKey - optional
  2943. */
  2944. me.setCryptParameters = function(newPassword, newKey)
  2945. {
  2946. password = newPassword;
  2947. if (typeof newKey !== 'undefined') {
  2948. symmetricKey = newKey;
  2949. }
  2950. }
  2951. /**
  2952. * set success function
  2953. *
  2954. * @name Uploader.setSuccess
  2955. * @function
  2956. * @param {function} func
  2957. */
  2958. me.setSuccess = function(func)
  2959. {
  2960. successFunc = func;
  2961. }
  2962. /**
  2963. * set failure function
  2964. *
  2965. * @name Uploader.setFailure
  2966. * @function
  2967. * @param {function} func
  2968. */
  2969. me.setFailure = function(func)
  2970. {
  2971. failureFunc = func;
  2972. }
  2973. /**
  2974. * prepares a new upload
  2975. *
  2976. * Call this when doing a new upload to reset any data from potential
  2977. * previous uploads. Must be called before any other method of this
  2978. * module.
  2979. *
  2980. * @name Uploader.prepare
  2981. * @function
  2982. * @return {object}
  2983. */
  2984. me.prepare = function()
  2985. {
  2986. // entropy should already be checked!
  2987. // reset password
  2988. password = '';
  2989. // reset key, so it a new one is generated when it is used
  2990. symmetricKey = null;
  2991. // reset data
  2992. successFunc = null;
  2993. failureFunc = null;
  2994. url = Helper.baseUri();
  2995. data = {};
  2996. }
  2997. /**
  2998. * encrypts and sets the data
  2999. *
  3000. * @name Uploader.setData
  3001. * @function
  3002. * @param {string} index
  3003. * @param {mixed} element
  3004. */
  3005. me.setData = function(index, element)
  3006. {
  3007. checkCryptParameters();
  3008. data[index] = CryptTool.cipher(symmetricKey, password, element);
  3009. }
  3010. /**
  3011. * set the additional metadata to send unencrypted
  3012. *
  3013. * @name Uploader.setUnencryptedData
  3014. * @function
  3015. * @param {string} index
  3016. * @param {mixed} element
  3017. */
  3018. me.setUnencryptedData = function(index, element)
  3019. {
  3020. data[index] = element;
  3021. }
  3022. /**
  3023. * set the additional metadata to send unencrypted passed at once
  3024. *
  3025. * @name Uploader.setUnencryptedData
  3026. * @function
  3027. * @param {object} newData
  3028. */
  3029. me.setUnencryptedBulkData = function(newData)
  3030. {
  3031. $.extend(data, newData);
  3032. }
  3033. /**
  3034. * Helper, which parses shows a general error message based on the result of the Uploader
  3035. *
  3036. * @name Uploader.parseUploadError
  3037. * @function
  3038. * @param {int} status
  3039. * @param {object} data
  3040. * @param {string} doThisThing - a human description of the action, which was tried
  3041. * @return {array}
  3042. */
  3043. me.parseUploadError = function(status, data, doThisThing) {
  3044. var errorArray;
  3045. switch (status) {
  3046. case me.error['custom']:
  3047. errorArray = ['Could not ' + doThisThing + ': %s', data.message];
  3048. break;
  3049. case me.error['unknown']:
  3050. errorArray = ['Could not ' + doThisThing + ': %s', I18n._('unknown status')];
  3051. break;
  3052. case me.error['serverError']:
  3053. errorArray = ['Could not ' + doThisThing + ': %s', I18n._('server error or not responding')];
  3054. break;
  3055. default:
  3056. errorArray = ['Could not ' + doThisThing + ': %s', I18n._('unknown error')];
  3057. break;
  3058. }
  3059. return errorArray;
  3060. }
  3061. /**
  3062. * init Uploader
  3063. *
  3064. * @name Uploader.init
  3065. * @function
  3066. */
  3067. me.init = function()
  3068. {
  3069. // nothing yet
  3070. }
  3071. return me;
  3072. })();
  3073. /**
  3074. * (controller) Responsible for encrypting paste and sending it to server.
  3075. *
  3076. * Does upload, encryption is done transparently by Uploader.
  3077. *
  3078. * @name PasteEncrypter
  3079. * @class
  3080. */
  3081. var PasteEncrypter = (function () {
  3082. var me = {};
  3083. var requirementsChecked = false;
  3084. /**
  3085. * checks whether there is a suitable amount of entrophy
  3086. *
  3087. * @name PasteEncrypter.checkRequirements
  3088. * @private
  3089. * @function
  3090. * @param {function} retryCallback - the callback to execute to retry the upload
  3091. * @return {bool}
  3092. */
  3093. function checkRequirements(retryCallback) {
  3094. // skip double requirement checks
  3095. if (requirementsChecked === true) {
  3096. return true;
  3097. }
  3098. if (!CryptTool.isEntropyReady()) {
  3099. // display a message and wait
  3100. Alert.showStatus('Please move your mouse for more entropy…');
  3101. CryptTool.addEntropySeedListener(retryCallback);
  3102. return false;
  3103. }
  3104. requirementsChecked = true;
  3105. return true;
  3106. }
  3107. /**
  3108. * called after successful paste upload
  3109. *
  3110. * @name PasteEncrypter.showCreatedPaste
  3111. * @private
  3112. * @function
  3113. * @param {int} status
  3114. * @param {object} data
  3115. */
  3116. function showCreatedPaste(status, data) {
  3117. Alert.hideLoading();
  3118. var url = Helper.baseUri() + '?' + data.id + '#' + data.encryptionKey,
  3119. deleteUrl = Helper.baseUri() + '?pasteid=' + data.id + '&deletetoken=' + data.deletetoken;
  3120. Alert.hideMessages();
  3121. // show notification
  3122. PasteStatus.createPasteNotification(url, deleteUrl)
  3123. // show new URL in browser bar
  3124. history.pushState({type: 'newpaste'}, document.title, url);
  3125. TopNav.showViewButtons();
  3126. TopNav.hideRawButton();
  3127. Editor.hide();
  3128. // parse and show text
  3129. // (preparation already done in me.sendPaste())
  3130. PasteViewer.run();
  3131. }
  3132. /**
  3133. * called after successful comment upload
  3134. *
  3135. * @name PasteEncrypter.showUploadedComment
  3136. * @private
  3137. * @function
  3138. * @param {int} status
  3139. * @param {object} data
  3140. */
  3141. function showUploadedComment(status, data) {
  3142. // show success message
  3143. // Alert.showStatus('Comment posted.');
  3144. // reload paste
  3145. Controller.refreshPaste(function () {
  3146. // highlight sent comment
  3147. DiscussionViewer.highlightComment(data.id, true);
  3148. // reset error handler
  3149. Alert.setCustomHandler(null);
  3150. });
  3151. }
  3152. /**
  3153. * adds attachments to the Uploader
  3154. *
  3155. * @name PasteEncrypter.encryptAttachments
  3156. * @private
  3157. * @function
  3158. * @param {function} callback - excuted when action is successful
  3159. */
  3160. function encryptAttachments(callback) {
  3161. var file = AttachmentViewer.attachmentData;
  3162. if (typeof file !== 'undefined' && file !== null) {
  3163. var fileName = AttachmentViewer.file.name;
  3164. Uploader.setData('attachment', file);
  3165. Uploader.setData('attachmentname', fileName);
  3166. // run callback
  3167. return callback();
  3168. } else if (AttachmentViewer.hasAttachment()) {
  3169. // fall back to cloned part
  3170. var attachment = AttachmentViewer.getAttachment();
  3171. Uploader.setData('attachment', attachment[0]);
  3172. Uploader.setData('attachmentname', attachment[1]);
  3173. return callback();
  3174. } else {
  3175. // if there are no attachments, this is of course still successful
  3176. return callback();
  3177. }
  3178. }
  3179. /**
  3180. * send a reply in a discussion
  3181. *
  3182. * @name PasteEncrypter.sendComment
  3183. * @function
  3184. */
  3185. me.sendComment = function()
  3186. {
  3187. Alert.hideMessages();
  3188. Alert.setCustomHandler(DiscussionViewer.handleNotification);
  3189. // UI loading state
  3190. TopNav.hideAllButtons();
  3191. Alert.showLoading('Sending comment…', 0, 'cloud-upload');
  3192. // get data, note that "var [x, y] = " structures aren't supported in all JS environments
  3193. var replyData = DiscussionViewer.getReplyData(),
  3194. plainText = replyData[0],
  3195. nickname = replyData[1],
  3196. parentid = DiscussionViewer.getReplyCommentId();
  3197. // do not send if there is no data
  3198. if (plainText.length === 0) {
  3199. // revert loading status…
  3200. Alert.hideLoading();
  3201. Alert.setCustomHandler(null);
  3202. TopNav.showViewButtons();
  3203. return;
  3204. }
  3205. // check entropy
  3206. if (!checkRequirements(function () {
  3207. me.sendComment();
  3208. })) {
  3209. return; // to prevent multiple executions
  3210. }
  3211. Alert.showLoading(null, 10);
  3212. // prepare Uploader
  3213. Uploader.prepare();
  3214. Uploader.setCryptParameters(Prompt.getPassword(), Model.getPasteKey());
  3215. // set success/fail functions
  3216. Uploader.setSuccess(showUploadedComment);
  3217. Uploader.setFailure(function (status, data) {
  3218. // revert loading status…
  3219. Alert.hideLoading();
  3220. TopNav.showViewButtons();
  3221. // show error message
  3222. Alert.showError(Uploader.parseUploadError(status, data, 'post comment'));
  3223. // reset error handler
  3224. Alert.setCustomHandler(null);
  3225. });
  3226. // fill it with unencrypted params
  3227. Uploader.setUnencryptedData('pasteid', Model.getPasteId());
  3228. if (typeof parentid === 'undefined') {
  3229. // if parent id is not set, this is the top-most comment, so use
  3230. // paste id as parent @TODO is this really good?
  3231. Uploader.setUnencryptedData('parentid', Model.getPasteId());
  3232. } else {
  3233. Uploader.setUnencryptedData('parentid', parentid);
  3234. }
  3235. // encrypt data
  3236. Uploader.setData('data', plainText);
  3237. if (nickname.length > 0) {
  3238. Uploader.setData('nickname', nickname);
  3239. }
  3240. Uploader.run();
  3241. }
  3242. /**
  3243. * sends a new paste to server
  3244. *
  3245. * @name PasteEncrypter.sendPaste
  3246. * @function
  3247. */
  3248. me.sendPaste = function()
  3249. {
  3250. // hide previous (error) messages
  3251. Controller.hideStatusMessages();
  3252. // UI loading state
  3253. TopNav.hideAllButtons();
  3254. Alert.showLoading('Sending paste…', 0, 'cloud-upload');
  3255. TopNav.collapseBar();
  3256. // get data
  3257. var plainText = Editor.getText(),
  3258. format = PasteViewer.getFormat(),
  3259. files = TopNav.getFileList() || AttachmentViewer.file || AttachmentViewer.hasAttachment();
  3260. // do not send if there is no data
  3261. if (plainText.length === 0 && files === null) {
  3262. // revert loading status…
  3263. Alert.hideLoading();
  3264. TopNav.showCreateButtons();
  3265. return;
  3266. }
  3267. Alert.showLoading(null, 10);
  3268. // check entropy
  3269. if (!checkRequirements(function () {
  3270. me.sendPaste();
  3271. })) {
  3272. return; // to prevent multiple executions
  3273. }
  3274. // prepare Uploader
  3275. Uploader.prepare();
  3276. Uploader.setCryptParameters(TopNav.getPassword());
  3277. // set success/fail functions
  3278. Uploader.setSuccess(showCreatedPaste);
  3279. Uploader.setFailure(function (status, data) {
  3280. // revert loading status…
  3281. Alert.hideLoading();
  3282. TopNav.showCreateButtons();
  3283. // show error message
  3284. Alert.showError(Uploader.parseUploadError(status, data, 'create paste'));
  3285. });
  3286. // fill it with unencrypted submitted options
  3287. Uploader.setUnencryptedBulkData({
  3288. expire: TopNav.getExpiration(),
  3289. formatter: format,
  3290. burnafterreading: TopNav.getBurnAfterReading() ? 1 : 0,
  3291. opendiscussion: TopNav.getOpenDiscussion() ? 1 : 0
  3292. });
  3293. // prepare PasteViewer for later preview
  3294. PasteViewer.setText(plainText);
  3295. PasteViewer.setFormat(format);
  3296. // encrypt cipher data
  3297. Uploader.setData('data', plainText);
  3298. // encrypt attachments
  3299. encryptAttachments(
  3300. function () {
  3301. // send data
  3302. Uploader.run();
  3303. }
  3304. );
  3305. }
  3306. /**
  3307. * initialize
  3308. *
  3309. * @name PasteEncrypter.init
  3310. * @function
  3311. */
  3312. me.init = function()
  3313. {
  3314. // nothing yet
  3315. }
  3316. return me;
  3317. })();
  3318. /**
  3319. * (controller) Responsible for decrypting cipherdata and passing data to view.
  3320. *
  3321. * Only decryption, no download.
  3322. *
  3323. * @name PasteDecrypter
  3324. * @class
  3325. */
  3326. var PasteDecrypter = (function () {
  3327. var me = {};
  3328. /**
  3329. * decrypt data or prompts for password in cvase of failure
  3330. *
  3331. * @name PasteDecrypter.decryptOrPromptPassword
  3332. * @private
  3333. * @function
  3334. * @param {string} key
  3335. * @param {string} password - optional, may be an empty string
  3336. * @param {string} cipherdata
  3337. * @throws {string}
  3338. * @return {false|string} false, when unsuccessful or string (decrypted data)
  3339. */
  3340. function decryptOrPromptPassword(key, password, cipherdata)
  3341. {
  3342. // try decryption without password
  3343. var plaindata = CryptTool.decipher(key, password, cipherdata);
  3344. // if it fails, request password
  3345. if (plaindata.length === 0 && password.length === 0) {
  3346. // try to get cached password first
  3347. password = Prompt.getPassword();
  3348. // if password is there, re-try
  3349. if (password.length === 0) {
  3350. password = Prompt.requestPassword();
  3351. }
  3352. // recursive
  3353. // note: an infinite loop is prevented as the previous if
  3354. // clause checks whether a password is already set and ignores
  3355. // errors when a password has been passed
  3356. return decryptOrPromptPassword.apply(key, password, cipherdata);
  3357. }
  3358. // if all tries failed, we can only return an error
  3359. if (plaindata.length === 0) {
  3360. throw 'failed to decipher data';
  3361. }
  3362. return plaindata;
  3363. }
  3364. /**
  3365. * decrypt the actual paste text
  3366. *
  3367. * @name PasteDecrypter.decryptOrPromptPassword
  3368. * @private
  3369. * @function
  3370. * @param {object} paste - paste data in object form
  3371. * @param {string} key
  3372. * @param {string} password
  3373. * @param {bool} ignoreError - ignore decryption errors iof set to true
  3374. * @return {bool} whether action was successful
  3375. * @throws {string}
  3376. */
  3377. function decryptPaste(paste, key, password, ignoreError)
  3378. {
  3379. var plaintext
  3380. if (ignoreError === true) {
  3381. plaintext = CryptTool.decipher(key, password, paste.data);
  3382. } else {
  3383. try {
  3384. plaintext = decryptOrPromptPassword(key, password, paste.data);
  3385. } catch (err) {
  3386. throw 'failed to decipher paste text: ' + err
  3387. }
  3388. if (plaintext === false) {
  3389. return false;
  3390. }
  3391. }
  3392. // on success show paste
  3393. PasteViewer.setFormat(paste.meta.formatter);
  3394. PasteViewer.setText(plaintext);
  3395. // trigger to show the text (attachment loaded afterwards)
  3396. PasteViewer.run();
  3397. return true;
  3398. }
  3399. /**
  3400. * decrypts any attachment
  3401. *
  3402. * @name PasteDecrypter.decryptAttachment
  3403. * @private
  3404. * @function
  3405. * @param {object} paste - paste data in object form
  3406. * @param {string} key
  3407. * @param {string} password
  3408. * @return {bool} whether action was successful
  3409. * @throws {string}
  3410. */
  3411. function decryptAttachment(paste, key, password)
  3412. {
  3413. // decrypt attachment
  3414. try {
  3415. var attachment = decryptOrPromptPassword(key, password, paste.attachment);
  3416. } catch (err) {
  3417. throw 'failed to decipher attachment: ' + err
  3418. }
  3419. if (attachment === false) {
  3420. return false;
  3421. }
  3422. // decrypt attachment name
  3423. var attachmentName;
  3424. if (paste.attachmentname) {
  3425. try {
  3426. attachmentName = decryptOrPromptPassword(key, password, paste.attachmentname);
  3427. } catch (err) {
  3428. throw 'failed to decipher attachment name: ' + err
  3429. }
  3430. if (attachmentName === false) {
  3431. return false;
  3432. }
  3433. }
  3434. AttachmentViewer.setAttachment(attachment, attachmentName);
  3435. AttachmentViewer.showAttachment();
  3436. return true;
  3437. }
  3438. /**
  3439. * decrypts all comments and shows them
  3440. *
  3441. * @name PasteDecrypter.decryptComments
  3442. * @private
  3443. * @function
  3444. * @param {object} paste - paste data in object form
  3445. * @param {string} key
  3446. * @param {string} password
  3447. * @return {bool} whether action was successful
  3448. */
  3449. function decryptComments(paste, key, password)
  3450. {
  3451. // remove potentially previous discussion
  3452. DiscussionViewer.prepareNewDisucssion();
  3453. // iterate over comments
  3454. for (var i = 0; i < paste.comments.length; ++i) {
  3455. var comment = paste.comments[i];
  3456. DiscussionViewer.addComment(
  3457. comment,
  3458. CryptTool.decipher(key, password, comment.data),
  3459. CryptTool.decipher(key, password, comment.meta.nickname)
  3460. );
  3461. }
  3462. DiscussionViewer.finishDiscussion();
  3463. DiscussionViewer.showDiscussion();
  3464. return true;
  3465. }
  3466. /**
  3467. * show decrypted text in the display area, including discussion (if open)
  3468. *
  3469. * @name PasteDecrypter.run
  3470. * @function
  3471. * @param {Object} [paste] - (optional) object including comments to display (items = array with keys ('data','meta'))
  3472. */
  3473. me.run = function(paste)
  3474. {
  3475. Alert.hideMessages();
  3476. Alert.showLoading('Decrypting paste…', 0, 'cloud-download'); // @TODO icon maybe rotation-lock, but needs full Glyphicons
  3477. if (typeof paste === 'undefined') {
  3478. paste = $.parseJSON(Model.getCipherData());
  3479. }
  3480. var key = Model.getPasteKey(),
  3481. password = Prompt.getPassword();
  3482. if (PasteViewer.isPrettyPrinted()) {
  3483. console.error('Too pretty! (don\'t know why this check)'); //@TODO
  3484. return;
  3485. }
  3486. // try to decrypt the paste
  3487. try {
  3488. // decrypt attachments
  3489. if (paste.attachment) {
  3490. if (AttachmentViewer.$attachment.length) {
  3491. // try to decrypt paste and if it fails (because the password is
  3492. // missing) return to let JS continue and wait for user
  3493. if (!decryptAttachment(paste, key, password)) {
  3494. return;
  3495. }
  3496. }
  3497. // ignore empty paste, as this is allowed when pasting attachments
  3498. decryptPaste(paste, key, password, true);
  3499. } else {
  3500. decryptPaste(paste, key, password);
  3501. }
  3502. // shows the remaining time (until) deletion
  3503. PasteStatus.showRemainingTime(paste.meta);
  3504. // if the discussion is opened on this paste, display it
  3505. if (paste.meta.opendiscussion) {
  3506. decryptComments(paste, key, password);
  3507. }
  3508. Alert.hideLoading();
  3509. TopNav.showViewButtons();
  3510. } catch(err) {
  3511. Alert.hideLoading();
  3512. // log and show error
  3513. console.error(err);
  3514. Alert.showError('Could not decrypt data (Wrong key?)');
  3515. }
  3516. }
  3517. /**
  3518. * initialize
  3519. *
  3520. * @name PasteDecrypter.init
  3521. * @function
  3522. */
  3523. me.init = function()
  3524. {
  3525. // nothing yet
  3526. }
  3527. return me;
  3528. })();
  3529. /**
  3530. * (controller) main PrivateBin logic
  3531. *
  3532. * @name Controller
  3533. * @param {object} window
  3534. * @param {object} document
  3535. * @class
  3536. */
  3537. var Controller = (function (window, document) {
  3538. var me = {};
  3539. /**
  3540. * hides all status messages no matter which module showed them
  3541. *
  3542. * @name Controller.hideStatusMessages
  3543. * @function
  3544. */
  3545. me.hideStatusMessages = function()
  3546. {
  3547. PasteStatus.hideMessages();
  3548. Alert.hideMessages();
  3549. }
  3550. /**
  3551. * creates a new paste
  3552. *
  3553. * @name Controller.newPaste
  3554. * @function
  3555. */
  3556. me.newPaste = function()
  3557. {
  3558. // Important: This *must not* run Alert.hideMessages() as previous
  3559. // errors from viewing a paste should be shown.
  3560. TopNav.hideAllButtons();
  3561. Alert.showLoading('Preparing new paste…', 0, 'time');
  3562. PasteStatus.hideMessages();
  3563. PasteViewer.hide();
  3564. Editor.resetInput();
  3565. Editor.show();
  3566. Editor.focusInput();
  3567. AttachmentViewer.removeAttachment();
  3568. TopNav.showCreateButtons();
  3569. Alert.hideLoading();
  3570. }
  3571. /**
  3572. * shows the loaded paste
  3573. *
  3574. * @name Controller.showPaste
  3575. * @function
  3576. */
  3577. me.showPaste = function()
  3578. {
  3579. try {
  3580. Model.getPasteId();
  3581. Model.getPasteKey();
  3582. } catch (err) {
  3583. console.error(err);
  3584. // missing decryption key (or paste ID) in URL?
  3585. if (window.location.hash.length === 0) {
  3586. Alert.showError('Cannot decrypt paste: Decryption key missing in URL (Did you use a redirector or an URL shortener which strips part of the URL?)');
  3587. // @TODO adjust error message as it is less specific now, probably include thrown exception for a detailed error
  3588. return;
  3589. }
  3590. }
  3591. // show proper elements on screen
  3592. PasteDecrypter.run();
  3593. }
  3594. /**
  3595. * refreshes the loaded paste to show potential new data
  3596. *
  3597. * @name Controller.refreshPaste
  3598. * @function
  3599. * @param {function} callback
  3600. */
  3601. me.refreshPaste = function(callback)
  3602. {
  3603. // save window position to restore it later
  3604. var orgPosition = $(window).scrollTop();
  3605. Uploader.prepare();
  3606. Uploader.setUrl(Helper.baseUri() + '?' + Model.getPasteId());
  3607. Uploader.setFailure(function (status, data) {
  3608. // revert loading status…
  3609. Alert.hideLoading();
  3610. TopNav.showViewButtons();
  3611. // show error message
  3612. Alert.showError(Uploader.parseUploadError(status, data, 'refresh display'));
  3613. })
  3614. Uploader.setSuccess(function (status, data) {
  3615. PasteDecrypter.run(data);
  3616. // restore position
  3617. window.scrollTo(0, orgPosition);
  3618. callback();
  3619. })
  3620. Uploader.run();
  3621. }
  3622. /**
  3623. * clone the current paste
  3624. *
  3625. * @name Controller.clonePaste
  3626. * @function
  3627. * @param {Event} event
  3628. */
  3629. me.clonePaste = function(event)
  3630. {
  3631. TopNav.collapseBar();
  3632. TopNav.hideAllButtons();
  3633. Alert.showLoading('Cloning paste…', 0, 'transfer');
  3634. // hide messages from previous paste
  3635. me.hideStatusMessages();
  3636. // erase the id and the key in url
  3637. history.pushState({type: 'clone'}, document.title, Helper.baseUri());
  3638. if (AttachmentViewer.hasAttachment()) {
  3639. AttachmentViewer.moveAttachmentTo(
  3640. TopNav.getCustomAttachment(),
  3641. 'Cloned: \'%s\''
  3642. );
  3643. TopNav.hideFileSelector();
  3644. AttachmentViewer.hideAttachment();
  3645. // NOTE: it also looks nice without removing the attachment
  3646. // but for a consistent display we remove it…
  3647. AttachmentViewer.hideAttachmentPreview();
  3648. TopNav.showCustomAttachment();
  3649. // show another status message to make the user aware that the
  3650. // file was cloned too!
  3651. Alert.showStatus(
  3652. [
  3653. 'The cloned file \'%s\' was attached to this paste.',
  3654. AttachmentViewer.getAttachment()[1]
  3655. ], 'copy', true, true);
  3656. }
  3657. Editor.setText(PasteViewer.getText())
  3658. PasteViewer.hide();
  3659. Editor.show();
  3660. Alert.hideLoading();
  3661. TopNav.showCreateButtons();
  3662. }
  3663. /**
  3664. * removes a saved paste
  3665. *
  3666. * @name Controller.removePaste
  3667. * @function
  3668. * @param {string} pasteId
  3669. * @param {string} deleteToken
  3670. */
  3671. me.removePaste = function(pasteId, deleteToken) {
  3672. // unfortunately many web servers don't support DELETE (and PUT) out of the box
  3673. // so we use a POST request
  3674. Uploader.prepare();
  3675. Uploader.setUrl(Helper.baseUri() + '?' + pasteId);
  3676. Uploader.setUnencryptedData('deletetoken', deleteToken);
  3677. Uploader.setFailure(function () {
  3678. Controller.showError(I18n._('Could not delete the paste, it was not stored in burn after reading mode.'));
  3679. })
  3680. Uploader.run();
  3681. }
  3682. /**
  3683. * application start
  3684. *
  3685. * @name Controller.init
  3686. * @function
  3687. */
  3688. me.init = function()
  3689. {
  3690. // first load translations
  3691. I18n.loadTranslations();
  3692. // initialize other modules/"classes"
  3693. Alert.init();
  3694. Model.init();
  3695. AttachmentViewer.init();
  3696. DiscussionViewer.init();
  3697. Editor.init();
  3698. PasteDecrypter.init();
  3699. PasteEncrypter.init();
  3700. PasteStatus.init();
  3701. PasteViewer.init();
  3702. Prompt.init();
  3703. TopNav.init();
  3704. UiHelper.init();
  3705. Uploader.init();
  3706. // display an existing paste
  3707. if (Model.hasCipherData()) {
  3708. return me.showPaste();
  3709. }
  3710. // otherwise create a new paste
  3711. me.newPaste();
  3712. }
  3713. return me;
  3714. })(window, document);
  3715. return {
  3716. Helper: Helper,
  3717. I18n: I18n,
  3718. CryptTool: CryptTool,
  3719. Model: Model,
  3720. UiHelper: UiHelper,
  3721. Alert: Alert,
  3722. PasteStatus: PasteStatus,
  3723. Prompt: Prompt,
  3724. Editor: Editor,
  3725. PasteViewer: PasteViewer,
  3726. AttachmentViewer: AttachmentViewer,
  3727. DiscussionViewer: DiscussionViewer,
  3728. TopNav: TopNav,
  3729. Uploader: Uploader,
  3730. PasteEncrypter: PasteEncrypter,
  3731. PasteDecrypter: PasteDecrypter,
  3732. Controller: Controller
  3733. };
  3734. }(jQuery, sjcl, Base64, RawDeflate);