privatebin.js 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194
  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. var attachmentData = AttachmentViewer.attachmentData || AttachmentViewer.$attachmentLink.attr('href');
  1437. AttachmentViewer.handleAttachmentPreview(AttachmentViewer.$attachmentPreview, attachmentData);
  1438. PasteViewer.run();
  1439. // finish
  1440. isPreview = true;
  1441. // prevent jumping of page to top
  1442. if (typeof event !== 'undefined') {
  1443. event.preventDefault();
  1444. }
  1445. }
  1446. /**
  1447. * get the state of the preview
  1448. *
  1449. * @name Editor.isPreview
  1450. * @function
  1451. */
  1452. me.isPreview = function()
  1453. {
  1454. return isPreview;
  1455. }
  1456. /**
  1457. * reset the Editor view
  1458. *
  1459. * @name Editor.resetInput
  1460. * @function
  1461. */
  1462. me.resetInput = function()
  1463. {
  1464. // go back to input
  1465. if (isPreview) {
  1466. viewEditor();
  1467. }
  1468. // clear content
  1469. $message.val('');
  1470. }
  1471. /**
  1472. * shows the Editor
  1473. *
  1474. * @name Editor.show
  1475. * @function
  1476. */
  1477. me.show = function()
  1478. {
  1479. $message.removeClass('hidden');
  1480. $editorTabs.removeClass('hidden');
  1481. }
  1482. /**
  1483. * hides the Editor
  1484. *
  1485. * @name Editor.reset
  1486. * @function
  1487. */
  1488. me.hide = function()
  1489. {
  1490. $message.addClass('hidden');
  1491. $editorTabs.addClass('hidden');
  1492. }
  1493. /**
  1494. * focuses the message input
  1495. *
  1496. * @name Editor.focusInput
  1497. * @function
  1498. */
  1499. me.focusInput = function()
  1500. {
  1501. $message.focus();
  1502. }
  1503. /**
  1504. * sets a new text
  1505. *
  1506. * @name Editor.setText
  1507. * @function
  1508. * @param {string} newText
  1509. */
  1510. me.setText = function(newText)
  1511. {
  1512. $message.val(newText);
  1513. }
  1514. /**
  1515. * returns the current text
  1516. *
  1517. * @name Editor.getText
  1518. * @function
  1519. * @return {string}
  1520. */
  1521. me.getText = function()
  1522. {
  1523. return $message.val()
  1524. }
  1525. /**
  1526. * init status manager
  1527. *
  1528. * preloads jQuery elements
  1529. *
  1530. * @name Editor.init
  1531. * @function
  1532. */
  1533. me.init = function()
  1534. {
  1535. $editorTabs = $('#editorTabs');
  1536. $message = $('#message');
  1537. // bind events
  1538. $message.keydown(supportTabs);
  1539. // bind click events to tab switchers (a), but save parent of them
  1540. // (li)
  1541. $messageEdit = $('#messageedit').click(viewEditor).parent();
  1542. $messagePreview = $('#messagepreview').click(viewPreview).parent();
  1543. }
  1544. return me;
  1545. })();
  1546. /**
  1547. * (view) Parse and show paste.
  1548. *
  1549. * @name PasteViewer
  1550. * @class
  1551. */
  1552. var PasteViewer = (function () {
  1553. var me = {};
  1554. var $placeholder,
  1555. $prettyMessage,
  1556. $prettyPrint,
  1557. $plainText;
  1558. var text,
  1559. format = 'plaintext',
  1560. isDisplayed = false,
  1561. isChanged = true; // by default true as nothing was parsed yet
  1562. /**
  1563. * apply the set format on paste and displays it
  1564. *
  1565. * @name PasteViewer.parsePaste
  1566. * @private
  1567. * @function
  1568. */
  1569. function parsePaste()
  1570. {
  1571. // skip parsing if no text is given
  1572. if (text === '') {
  1573. return;
  1574. }
  1575. // set text
  1576. Helper.setElementText($plainText, text);
  1577. Helper.setElementText($prettyPrint, text);
  1578. switch (format) {
  1579. case 'markdown':
  1580. var converter = new showdown.Converter({
  1581. strikethrough: true,
  1582. tables: true,
  1583. tablesHeaderId: true
  1584. });
  1585. $plainText.html(
  1586. converter.makeHtml(text)
  1587. );
  1588. // add table classes from bootstrap css
  1589. $plainText.find('table').addClass('table-condensed table-bordered');
  1590. break;
  1591. case 'syntaxhighlighting':
  1592. // @TODO is this really needed or is "one" enough?
  1593. if (typeof prettyPrint === 'function')
  1594. {
  1595. prettyPrint();
  1596. }
  1597. $prettyPrint.html(
  1598. prettyPrintOne(
  1599. Helper.htmlEntities(text), null, true
  1600. )
  1601. );
  1602. // fall through, as the rest is the same
  1603. default: // = 'plaintext'
  1604. // convert URLs to clickable links
  1605. Helper.urls2links($plainText);
  1606. Helper.urls2links($prettyPrint);
  1607. $prettyPrint.css('white-space', 'pre-wrap');
  1608. $prettyPrint.css('word-break', 'normal');
  1609. $prettyPrint.removeClass('prettyprint');
  1610. }
  1611. }
  1612. /**
  1613. * displays the paste
  1614. *
  1615. * @name PasteViewer.showPaste
  1616. * @private
  1617. * @function
  1618. */
  1619. function showPaste()
  1620. {
  1621. // instead of "nothing" better display a placeholder
  1622. if (text === '') {
  1623. $placeholder.removeClass('hidden')
  1624. return;
  1625. }
  1626. // otherwise hide the placeholder
  1627. $placeholder.addClass('hidden')
  1628. switch (format) {
  1629. case 'markdown':
  1630. $plainText.removeClass('hidden');
  1631. $prettyMessage.addClass('hidden');
  1632. break;
  1633. default:
  1634. $plainText.addClass('hidden');
  1635. $prettyMessage.removeClass('hidden');
  1636. break;
  1637. }
  1638. }
  1639. /**
  1640. * sets the format in which the text is shown
  1641. *
  1642. * @name PasteViewer.setFormat
  1643. * @function
  1644. * @param {string} newFormat the the new format
  1645. */
  1646. me.setFormat = function(newFormat)
  1647. {
  1648. // skip if there is no update
  1649. if (format === newFormat) {
  1650. return;
  1651. }
  1652. // needs to update display too, if from or to Markdown is switched
  1653. if (format === 'markdown' || newFormat === 'markdown') {
  1654. isDisplayed = false;
  1655. }
  1656. format = newFormat;
  1657. isChanged = true;
  1658. }
  1659. /**
  1660. * returns the current format
  1661. *
  1662. * @name PasteViewer.getFormat
  1663. * @function
  1664. * @return {string}
  1665. */
  1666. me.getFormat = function()
  1667. {
  1668. return format;
  1669. }
  1670. /**
  1671. * returns whether the current view is pretty printed
  1672. *
  1673. * @name PasteViewer.isPrettyPrinted
  1674. * @function
  1675. * @return {bool}
  1676. */
  1677. me.isPrettyPrinted = function()
  1678. {
  1679. return $prettyPrint.hasClass('prettyprinted');
  1680. }
  1681. /**
  1682. * sets the text to show
  1683. *
  1684. * @name PasteViewer.setText
  1685. * @function
  1686. * @param {string} newText the text to show
  1687. */
  1688. me.setText = function(newText)
  1689. {
  1690. if (text !== newText) {
  1691. text = newText;
  1692. isChanged = true;
  1693. }
  1694. }
  1695. /**
  1696. * gets the current cached text
  1697. *
  1698. * @name PasteViewer.getText
  1699. * @function
  1700. * @return {string}
  1701. */
  1702. me.getText = function()
  1703. {
  1704. return text;
  1705. }
  1706. /**
  1707. * show/update the parsed text (preview)
  1708. *
  1709. * @name PasteViewer.run
  1710. * @function
  1711. */
  1712. me.run = function()
  1713. {
  1714. if (isChanged) {
  1715. parsePaste();
  1716. isChanged = false;
  1717. }
  1718. if (!isDisplayed) {
  1719. showPaste();
  1720. isDisplayed = true;
  1721. }
  1722. }
  1723. /**
  1724. * hide parsed text (preview)
  1725. *
  1726. * @name PasteViewer.hide
  1727. * @function
  1728. */
  1729. me.hide = function()
  1730. {
  1731. if (!isDisplayed) {
  1732. console.warn('PasteViewer was called to hide the parsed view, but it is already hidden.');
  1733. }
  1734. $plainText.addClass('hidden');
  1735. $prettyMessage.addClass('hidden');
  1736. $placeholder.addClass('hidden');
  1737. AttachmentViewer.hideAttachmentPreview();
  1738. isDisplayed = false;
  1739. }
  1740. /**
  1741. * init status manager
  1742. *
  1743. * preloads jQuery elements
  1744. *
  1745. * @name PasteViewer.init
  1746. * @function
  1747. */
  1748. me.init = function()
  1749. {
  1750. $placeholder = $('#placeholder');
  1751. $plainText = $('#plaintext');
  1752. $prettyMessage = $('#prettymessage');
  1753. $prettyPrint = $('#prettyprint');
  1754. // check requirements
  1755. if (typeof prettyPrintOne !== 'function') {
  1756. Alert.showError([
  1757. 'The library %s is not available. This may cause display errors.',
  1758. 'pretty print'
  1759. ]);
  1760. }
  1761. if (typeof showdown !== 'object') {
  1762. Alert.showError([
  1763. 'The library %s is not available. This may cause display errors.',
  1764. 'showdown'
  1765. ]);
  1766. }
  1767. // get default option from template/HTML or fall back to set value
  1768. format = Model.getFormatDefault() || format;
  1769. }
  1770. return me;
  1771. })();
  1772. /**
  1773. * (view) Show attachment and preview if possible
  1774. *
  1775. * @name AttachmentViewer
  1776. * @param {object} window
  1777. * @param {object} document
  1778. * @class
  1779. */
  1780. var AttachmentViewer = (function (window, document) {
  1781. var me = {};
  1782. me.$attachmentLink = undefined;
  1783. me.$attachmentPreview = undefined;
  1784. me.$attachment = undefined;
  1785. me.attachmentData = undefined;
  1786. me.file = undefined;
  1787. me.$fileInput = undefined;
  1788. var attachmentHasPreview = false;
  1789. /**
  1790. * sets the attachment but does not yet show it
  1791. *
  1792. * @name AttachmentViewer.setAttachment
  1793. * @function
  1794. * @param {string} attachmentData - base64-encoded data of file
  1795. * @param {string} fileName - optional, file name
  1796. */
  1797. me.setAttachment = function(attachmentData, fileName)
  1798. {
  1799. me.$attachmentLink.attr('href', attachmentData);
  1800. if (typeof fileName !== 'undefined') {
  1801. me.$attachmentLink.attr('download', fileName);
  1802. }
  1803. AttachmentViewer.handleAttachmentPreview(AttachmentViewer.$attachmentPreview, attachmentData);
  1804. attachmentHasPreview = true;
  1805. }
  1806. /**
  1807. * displays the attachment
  1808. *
  1809. * @name AttachmentViewer.showAttachment
  1810. * @function
  1811. */
  1812. me.showAttachment = function()
  1813. {
  1814. me.$attachment.removeClass('hidden');
  1815. if (attachmentHasPreview) {
  1816. me.$attachmentPreview.removeClass('hidden');
  1817. }
  1818. }
  1819. /**
  1820. * removes the attachment
  1821. *
  1822. * This automatically hides the attachment containers to, to
  1823. * prevent an inconsistent display.
  1824. *
  1825. * @name AttachmentViewer.removeAttachment
  1826. * @function
  1827. */
  1828. me.removeAttachment = function()
  1829. {
  1830. me.hideAttachment();
  1831. me.hideAttachmentPreview();
  1832. me.$attachmentLink.prop('href', '');
  1833. me.$attachmentLink.prop('download', '');
  1834. me.$attachmentPreview.html('');
  1835. AttachmentViewer.file = undefined;
  1836. AttachmentViewer.attachmentData = undefined;
  1837. }
  1838. /**
  1839. * hides the attachment
  1840. *
  1841. * This will not hide the preview (see AttachmentViewer.hideAttachmentPreview
  1842. * for that) nor will it hide the attachment link if it was moved somewhere
  1843. * else (see AttachmentViewer.moveAttachmentTo).
  1844. *
  1845. * @name AttachmentViewer.hideAttachment
  1846. * @function
  1847. */
  1848. me.hideAttachment = function()
  1849. {
  1850. me.$attachment.addClass('hidden');
  1851. }
  1852. /**
  1853. * hides the attachment preview
  1854. *
  1855. * @name AttachmentViewer.hideAttachmentPreview
  1856. * @function
  1857. */
  1858. me.hideAttachmentPreview = function()
  1859. {
  1860. me.$attachmentPreview.addClass('hidden');
  1861. }
  1862. /**
  1863. * checks if there is an attachment
  1864. *
  1865. * @name AttachmentViewer.hasAttachment
  1866. * @function
  1867. */
  1868. me.hasAttachment = function()
  1869. {
  1870. var link = me.$attachmentLink.prop('href');
  1871. return (typeof link !== 'undefined' && link !== '')
  1872. }
  1873. /**
  1874. * return the attachment
  1875. *
  1876. * @name AttachmentViewer.getAttachment
  1877. * @function
  1878. * @returns {array}
  1879. */
  1880. me.getAttachment = function()
  1881. {
  1882. return [
  1883. me.$attachmentLink.prop('href'),
  1884. me.$attachmentLink.prop('download')
  1885. ];
  1886. }
  1887. /**
  1888. * moves the attachment link to another element
  1889. *
  1890. * It is advisable to hide the attachment afterwards (AttachmentViewer.hideAttachment)
  1891. *
  1892. * @name AttachmentViewer.moveAttachmentTo
  1893. * @function
  1894. * @param {jQuery} $element - the wrapper/container element where this should be moved to
  1895. * @param {string} label - the text to show (%s will be replaced with the file name), will automatically be translated
  1896. */
  1897. me.moveAttachmentTo = function($element, label)
  1898. {
  1899. // move elemement to new place
  1900. me.$attachmentLink.appendTo($element);
  1901. // update text
  1902. I18n._(me.$attachmentLink, label, me.$attachmentLink.attr('download'));
  1903. }
  1904. /*
  1905. * Read file data as dataURL using the FileReader API
  1906. * https://developer.mozilla.org/en-US/docs/Web/API/FileReader#readAsDataURL()
  1907. */
  1908. me.readFileData = function (file) {
  1909. if (typeof FileReader === 'undefined') {
  1910. // revert loading status…
  1911. AttachmentViewer.hideAttachment();
  1912. AttachmentViewer.hideAttachmentPreview();
  1913. Alert.showError(I18n._('Your browser does not support uploading encrypted files. Please use a newer browser.'));
  1914. return;
  1915. }
  1916. var fileReader = new FileReader();
  1917. if (file === undefined) {
  1918. file = me.$fileInput[0].files[0];
  1919. $('#dragAndDropFileName').text('');
  1920. } else {
  1921. $('#dragAndDropFileName').text(file.name);
  1922. }
  1923. me.file = file;
  1924. fileReader.onload = function (event) {
  1925. var dataURL = event.target.result;
  1926. me.attachmentData = dataURL;
  1927. if (Editor.isPreview()) {
  1928. me.handleAttachmentPreview(AttachmentViewer.$attachmentPreview, dataURL);
  1929. }
  1930. };
  1931. fileReader.readAsDataURL(file);
  1932. };
  1933. /**
  1934. * Handle the preview of files that can either be an image, video, audio or pdf element.
  1935. * @argument {DOM Element} targetElement where the preview should be appended.
  1936. * @argument {File Data} data of the file to be displayed.
  1937. */
  1938. me.handleAttachmentPreview = function (targetElement, data) {
  1939. if (data) {
  1940. var mimeType = this.getMimeTypeFromDataURL(data);
  1941. if (mimeType.match(/image\//i)) {
  1942. this.showImagePreview(targetElement, data);
  1943. } else if (mimeType.match(/video\//i)) {
  1944. this.showVideoPreview(targetElement, data, mimeType);
  1945. } else if (mimeType.match(/audio\//i)) {
  1946. this.showAudioPreview(targetElement, data, mimeType);
  1947. } else if (mimeType.match(/\/pdf/i)) {
  1948. this.showPDFPreview(targetElement, data);
  1949. }
  1950. //else {
  1951. //console.log("file but no image/video/audio/pdf");
  1952. //}
  1953. }
  1954. };
  1955. /**
  1956. * Get Mime Type from a DataURL
  1957. *
  1958. * @param {type} dataURL
  1959. * @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()
  1960. */
  1961. me.getMimeTypeFromDataURL = function (dataURL) {
  1962. return dataURL.slice(dataURL.indexOf('data:') + 5, dataURL.indexOf(';base64,'));
  1963. };
  1964. me.showImagePreview = function (targetElement, image) {
  1965. targetElement.html(
  1966. $(document.createElement('img'))
  1967. .attr('src', image)
  1968. .attr('class', 'img-thumbnail')
  1969. );
  1970. targetElement.removeClass('hidden');
  1971. };
  1972. me.showVideoPreview = function (targetElement, video, mimeType) {
  1973. var videoPlayer = $(document.createElement('video'))
  1974. .attr('controls', 'true')
  1975. .attr('autoplay', 'true')
  1976. .attr('loop', 'true')
  1977. .attr('class', 'img-thumbnail');
  1978. videoPlayer.append($(document.createElement('source'))
  1979. .attr('type', mimeType)
  1980. .attr('src', video));
  1981. targetElement.html(videoPlayer);
  1982. targetElement.removeClass('hidden');
  1983. };
  1984. me.showAudioPreview = function (targetElement, audio, mimeType) {
  1985. var audioPlayer = $(document.createElement('audio'))
  1986. .attr('controls', 'true')
  1987. .attr('autoplay', 'true');
  1988. audioPlayer.append($(document.createElement('source'))
  1989. .attr('type', mimeType)
  1990. .attr('src', audio));
  1991. targetElement.html(audioPlayer);
  1992. targetElement.removeClass('hidden');
  1993. };
  1994. me.showPDFPreview = function (targetElement, pdf) {
  1995. //PDFs are only displayed if the filesize is smaller than about 1MB (after base64 encoding).
  1996. //Bigger filesizes currently cause crashes in various browsers.
  1997. //See also: https://code.google.com/p/chromium/issues/detail?id=69227
  1998. //Firefox crashes with files that are about 1.5MB
  1999. //The performance with 1MB files is bareable
  2000. if (pdf.length < 1398488) {
  2001. //Fallback for browsers, that don't support the vh unit
  2002. var clientHeight = $(window).height();
  2003. targetElement.html(
  2004. $(document.createElement('embed'))
  2005. .attr('src', pdf)
  2006. .attr('type', 'application/pdf')
  2007. .attr('class', 'pdfPreview')
  2008. .css('height', clientHeight)
  2009. );
  2010. targetElement.removeClass('hidden');
  2011. } else {
  2012. Alert.showError(I18n._('File too large, to display a preview. Please download the attachment.'));
  2013. }
  2014. };
  2015. /**
  2016. * Attaches the file attachment drag & drop handler to the page.
  2017. * @returns {undefined}
  2018. */
  2019. me.addDragDropHandler = function () {
  2020. var fileInput = me.$fileInput;
  2021. if (typeof fileInput === 'undefined' || fileInput.length === 0) {
  2022. return;
  2023. }
  2024. var ignoreDragDrop = function(event) {
  2025. event.stopPropagation();
  2026. event.preventDefault();
  2027. };
  2028. var drop = function(event) {
  2029. event.stopPropagation();
  2030. event.preventDefault();
  2031. if (fileInput) {
  2032. var file = event.dataTransfer.files[0];
  2033. //Clear the file input:
  2034. fileInput.wrap('<form>').closest('form').get(0).reset();
  2035. fileInput.unwrap();
  2036. //Only works in Chrome:
  2037. //fileInput[0].files = e.dataTransfer.files;
  2038. me.readFileData(file);
  2039. }
  2040. };
  2041. document.addEventListener("drop", drop, false);
  2042. document.addEventListener("dragenter", ignoreDragDrop, false);
  2043. document.addEventListener("dragover", ignoreDragDrop, false);
  2044. fileInput.on("change", function () {
  2045. me.readFileData();
  2046. });
  2047. };
  2048. /**
  2049. * initiate
  2050. *
  2051. * preloads jQuery elements
  2052. *
  2053. * @name AttachmentViewer.init
  2054. * @function
  2055. */
  2056. me.init = function()
  2057. {
  2058. me.$attachment = $('#attachment');
  2059. me.$attachmentLink = $('#attachment a');
  2060. me.$attachmentPreview = $('#attachmentPreview');
  2061. me.$fileInput = $('#file');
  2062. me.addDragDropHandler();
  2063. }
  2064. return me;
  2065. })(window, document);
  2066. /**
  2067. * (view) Shows discussion thread and handles replies
  2068. *
  2069. * @name DiscussionViewer
  2070. * @param {object} window
  2071. * @param {object} document
  2072. * @class
  2073. */
  2074. var DiscussionViewer = (function (window, document) {
  2075. var me = {};
  2076. var $commentTail,
  2077. $discussion,
  2078. $reply,
  2079. $replyMessage,
  2080. $replyNickname,
  2081. $replyStatus,
  2082. $commentContainer;
  2083. var replyCommentId;
  2084. /**
  2085. * initializes the templates
  2086. *
  2087. * @name DiscussionViewer.initTemplates
  2088. * @private
  2089. * @function
  2090. */
  2091. function initTemplates()
  2092. {
  2093. $reply = Model.getTemplate('reply');
  2094. $replyMessage = $reply.find('#replymessage');
  2095. $replyNickname = $reply.find('#nickname');
  2096. $replyStatus = $reply.find('#replystatus');
  2097. // cache jQuery elements
  2098. $commentTail = Model.getTemplate('commenttail');
  2099. }
  2100. /**
  2101. * open the comment entry when clicking the "Reply" button of a comment
  2102. *
  2103. * @name DiscussionViewer.openReply
  2104. * @private
  2105. * @function
  2106. * @param {Event} event
  2107. */
  2108. function openReply(event)
  2109. {
  2110. var $source = $(event.target);
  2111. // clear input
  2112. $replyMessage.val('');
  2113. $replyNickname.val('');
  2114. // get comment id from source element
  2115. replyCommentId = $source.parent().prop('id').split('_')[1];
  2116. // move to correct position
  2117. $source.after($reply);
  2118. // show
  2119. $reply.removeClass('hidden');
  2120. $replyMessage.focus();
  2121. event.preventDefault();
  2122. }
  2123. /**
  2124. * custom handler for displaying notifications in own status message area
  2125. *
  2126. * @name DiscussionViewer.handleNotification
  2127. * @function
  2128. * @param {string} alertType
  2129. * @param {jQuery} $element
  2130. * @param {string|array} args
  2131. * @param {string|null} icon
  2132. * @return {bool|jQuery}
  2133. */
  2134. me.handleNotification = function(alertType, $element, args, icon)
  2135. {
  2136. // ignore loading messages
  2137. if (alertType === 'loading') {
  2138. return false;
  2139. }
  2140. if (alertType === 'danger') {
  2141. $replyStatus.removeClass('alert-info');
  2142. $replyStatus.addClass('alert-danger');
  2143. $replyStatus.find(':first').removeClass('glyphicon-alert');
  2144. $replyStatus.find(':first').addClass('glyphicon-info-sign');
  2145. } else {
  2146. $replyStatus.removeClass('alert-danger');
  2147. $replyStatus.addClass('alert-info');
  2148. $replyStatus.find(':first').removeClass('glyphicon-info-sign');
  2149. $replyStatus.find(':first').addClass('glyphicon-alert');
  2150. }
  2151. return $replyStatus;
  2152. }
  2153. /**
  2154. * adds another comment
  2155. *
  2156. * @name DiscussionViewer.addComment
  2157. * @function
  2158. * @param {object} comment
  2159. * @param {string} commentText
  2160. * @param {jQuery} $place - optional, tries to find the best position otherwise
  2161. */
  2162. me.addComment = function(comment, commentText, nickname, $place)
  2163. {
  2164. if (typeof $place === 'undefined') {
  2165. // starting point (default value/fallback)
  2166. $place = $commentContainer;
  2167. // if parent comment exists
  2168. var $parentComment = $('#comment_' + comment.parentid);
  2169. if ($parentComment.length) {
  2170. // use parent as position for noew comment, so it shifted
  2171. // to the right
  2172. $place = $parentComment;
  2173. }
  2174. }
  2175. if (commentText === '') {
  2176. commentText = 'comment decryption failed';
  2177. }
  2178. // create new comment based on template
  2179. var $commentEntry = Model.getTemplate('comment');
  2180. $commentEntry.prop('id', 'comment_' + comment.id);
  2181. var $commentEntryData = $commentEntry.find('div.commentdata');
  2182. // set & parse text
  2183. Helper.setElementText($commentEntryData, commentText);
  2184. Helper.urls2links($commentEntryData);
  2185. // set nickname
  2186. if (nickname.length > 0) {
  2187. $commentEntry.find('span.nickname').text(nickname);
  2188. } else {
  2189. $commentEntry.find('span.nickname').html('<i></i>');
  2190. I18n._($commentEntry.find('span.nickname i'), 'Anonymous');
  2191. }
  2192. // set date
  2193. $commentEntry.find('span.commentdate')
  2194. .text(' (' + (new Date(comment.meta.postdate * 1000).toLocaleString()) + ')')
  2195. .attr('title', 'CommentID: ' + comment.id);
  2196. // if an avatar is available, display it
  2197. if (comment.meta.vizhash) {
  2198. $commentEntry.find('span.nickname')
  2199. .before(
  2200. '<img src="' + comment.meta.vizhash + '" class="vizhash" /> '
  2201. );
  2202. $(document).on('languageLoaded', function () {
  2203. $commentEntry.find('img.vizhash')
  2204. .prop('title', I18n._('Avatar generated from IP address'));
  2205. });
  2206. }
  2207. // finally append comment
  2208. $place.append($commentEntry);
  2209. }
  2210. /**
  2211. * finishes the discussion area after last comment
  2212. *
  2213. * @name DiscussionViewer.finishDiscussion
  2214. * @function
  2215. */
  2216. me.finishDiscussion = function()
  2217. {
  2218. // add 'add new comment' area
  2219. $commentContainer.append($commentTail);
  2220. // show discussions
  2221. $discussion.removeClass('hidden');
  2222. }
  2223. /**
  2224. * shows the discussion area
  2225. *
  2226. * @name DiscussionViewer.showDiscussion
  2227. * @function
  2228. */
  2229. me.showDiscussion = function()
  2230. {
  2231. $discussion.removeClass('hidden');
  2232. }
  2233. /**
  2234. * removes the old discussion and prepares everything for creating a new
  2235. * one.
  2236. *
  2237. * @name DiscussionViewer.prepareNewDisucssion
  2238. * @function
  2239. */
  2240. me.prepareNewDisucssion = function()
  2241. {
  2242. $commentContainer.html('');
  2243. $discussion.addClass('hidden');
  2244. // (re-)init templates
  2245. initTemplates();
  2246. }
  2247. /**
  2248. * returns the user put into the reply form
  2249. *
  2250. * @name DiscussionViewer.getReplyData
  2251. * @function
  2252. * @return {array}
  2253. */
  2254. me.getReplyData = function()
  2255. {
  2256. return [
  2257. $replyMessage.val(),
  2258. $replyNickname.val()
  2259. ];
  2260. }
  2261. /**
  2262. * highlights a specific comment and scrolls to it if necessary
  2263. *
  2264. * @name DiscussionViewer.highlightComment
  2265. * @function
  2266. * @param {string} commentId
  2267. * @param {bool} fadeOut - whether to fade out the comment
  2268. */
  2269. me.highlightComment = function(commentId, fadeOut)
  2270. {
  2271. var $comment = $('#comment_' + commentId);
  2272. // in case comment does not exist, cancel
  2273. if ($comment.length === 0) {
  2274. return;
  2275. }
  2276. var highlightComment = function () {
  2277. $comment.addClass('highlight');
  2278. if (fadeOut === true) {
  2279. setTimeout(function () {
  2280. $comment.removeClass('highlight');
  2281. }, 300);
  2282. }
  2283. }
  2284. if (UiHelper.isVisible($comment)) {
  2285. return highlightComment();
  2286. }
  2287. UiHelper.scrollTo($comment, 100, 'swing', highlightComment);
  2288. }
  2289. /**
  2290. * returns the id of the parent comment the user is replying to
  2291. *
  2292. * @name DiscussionViewer.getReplyCommentId
  2293. * @function
  2294. * @return {int|undefined}
  2295. */
  2296. me.getReplyCommentId = function()
  2297. {
  2298. return replyCommentId;
  2299. }
  2300. /**
  2301. * initiate
  2302. *
  2303. * preloads jQuery elements
  2304. *
  2305. * @name DiscussionViewer.init
  2306. * @function
  2307. */
  2308. me.init = function()
  2309. {
  2310. // bind events to templates (so they are later cloned)
  2311. $('#commenttailtemplate, #commenttemplate').find('button').on('click', openReply);
  2312. $('#replytemplate').find('button').on('click', PasteEncrypter.sendComment);
  2313. $commentContainer = $('#commentcontainer');
  2314. $discussion = $('#discussion');
  2315. }
  2316. return me;
  2317. })(window, document);
  2318. /**
  2319. * Manage top (navigation) bar
  2320. *
  2321. * @name TopNav
  2322. * @param {object} window
  2323. * @param {object} document
  2324. * @class
  2325. */
  2326. var TopNav = (function (window, document) {
  2327. var me = {};
  2328. var createButtonsDisplayed = false;
  2329. var viewButtonsDisplayed = false;
  2330. var $attach,
  2331. $burnAfterReading,
  2332. $burnAfterReadingOption,
  2333. $cloneButton,
  2334. $customAttachment,
  2335. $expiration,
  2336. $fileRemoveButton,
  2337. $fileWrap,
  2338. $formatter,
  2339. $newButton,
  2340. $openDiscussion,
  2341. $openDiscussionOption,
  2342. $password,
  2343. $passwordInput,
  2344. $rawTextButton,
  2345. $sendButton;
  2346. var pasteExpiration = '1week';
  2347. /**
  2348. * set the expiration on bootstrap templates in dropdown
  2349. *
  2350. * @name TopNav.updateExpiration
  2351. * @private
  2352. * @function
  2353. * @param {Event} event
  2354. */
  2355. function updateExpiration(event)
  2356. {
  2357. // get selected option
  2358. var target = $(event.target);
  2359. // update dropdown display and save new expiration time
  2360. $('#pasteExpirationDisplay').text(target.text());
  2361. pasteExpiration = target.data('expiration');
  2362. event.preventDefault();
  2363. }
  2364. /**
  2365. * set the format on bootstrap templates in dropdown
  2366. *
  2367. * @name TopNav.updateFormat
  2368. * @private
  2369. * @function
  2370. * @param {Event} event
  2371. */
  2372. function updateFormat(event)
  2373. {
  2374. // get selected option
  2375. var $target = $(event.target);
  2376. // update dropdown display and save new format
  2377. var newFormat = $target.data('format');
  2378. $('#pasteFormatterDisplay').text($target.text());
  2379. PasteViewer.setFormat(newFormat);
  2380. // update preview
  2381. if (Editor.isPreview()) {
  2382. PasteViewer.run();
  2383. }
  2384. event.preventDefault();
  2385. }
  2386. /**
  2387. * when "burn after reading" is checked, disable discussion
  2388. *
  2389. * @name TopNav.changeBurnAfterReading
  2390. * @private
  2391. * @function
  2392. */
  2393. function changeBurnAfterReading()
  2394. {
  2395. if ($burnAfterReading.is(':checked')) {
  2396. $openDiscussionOption.addClass('buttondisabled');
  2397. $openDiscussion.prop('checked', false);
  2398. // if button is actually disabled, force-enable it and uncheck other button
  2399. $burnAfterReadingOption.removeClass('buttondisabled');
  2400. } else {
  2401. $openDiscussionOption.removeClass('buttondisabled');
  2402. }
  2403. }
  2404. /**
  2405. * when discussion is checked, disable "burn after reading"
  2406. *
  2407. * @name TopNav.changeOpenDiscussion
  2408. * @private
  2409. * @function
  2410. */
  2411. function changeOpenDiscussion()
  2412. {
  2413. if ($openDiscussion.is(':checked')) {
  2414. $burnAfterReadingOption.addClass('buttondisabled');
  2415. $burnAfterReading.prop('checked', false);
  2416. // if button is actually disabled, force-enable it and uncheck other button
  2417. $openDiscussionOption.removeClass('buttondisabled');
  2418. } else {
  2419. $burnAfterReadingOption.removeClass('buttondisabled');
  2420. }
  2421. }
  2422. /**
  2423. * return raw text
  2424. *
  2425. * @name TopNav.rawText
  2426. * @private
  2427. * @function
  2428. * @param {Event} event
  2429. */
  2430. function rawText(event)
  2431. {
  2432. TopNav.hideAllButtons();
  2433. Alert.showLoading('Showing raw text…', 0, 'time');
  2434. var paste = PasteViewer.getText();
  2435. // push a new state to allow back navigation with browser back button
  2436. history.pushState(
  2437. {type: 'raw'},
  2438. document.title,
  2439. // recreate paste URL
  2440. Helper.baseUri() + '?' + Model.getPasteId() + '#' +
  2441. Model.getPasteKey()
  2442. );
  2443. // we use text/html instead of text/plain to avoid a bug when
  2444. // reloading the raw text view (it reverts to type text/html)
  2445. var $head = $('head').children().not('noscript, script, link[type="text/css"]');
  2446. var newDoc = document.open('text/html', 'replace');
  2447. newDoc.write('<!DOCTYPE html><html><head>');
  2448. for (var i = 0; i < $head.length; i++) {
  2449. newDoc.write($head[i].outerHTML);
  2450. }
  2451. newDoc.write('</head><body><pre>' + Helper.htmlEntities(paste) + '</pre></body></html>');
  2452. newDoc.close();
  2453. }
  2454. /**
  2455. * saves the language in a cookie and reloads the page
  2456. *
  2457. * @name TopNav.setLanguage
  2458. * @private
  2459. * @function
  2460. * @param {Event} event
  2461. */
  2462. function setLanguage(event)
  2463. {
  2464. document.cookie = 'lang=' + $(event.target).data('lang');
  2465. UiHelper.reloadHome();
  2466. }
  2467. /**
  2468. * hides all messages and creates a new paste
  2469. *
  2470. * @name TopNav.clickNewPaste
  2471. * @private
  2472. * @function
  2473. * @param {Event} event
  2474. */
  2475. function clickNewPaste(event)
  2476. {
  2477. Controller.hideStatusMessages();
  2478. Controller.newPaste();
  2479. }
  2480. /**
  2481. * removes the existing attachment
  2482. *
  2483. * @name TopNav.removeAttachment
  2484. * @private
  2485. * @function
  2486. * @param {Event} event
  2487. */
  2488. function removeAttachment(event)
  2489. {
  2490. // if custom attachment is used, remove it first
  2491. if (!$customAttachment.hasClass('hidden')) {
  2492. AttachmentViewer.removeAttachment();
  2493. $customAttachment.addClass('hidden');
  2494. $fileWrap.removeClass('hidden');
  2495. }
  2496. // our up-to-date jQuery can handle it :)
  2497. $fileWrap.find('input').val('');
  2498. // pevent '#' from appearing in the URL
  2499. event.preventDefault();
  2500. }
  2501. /**
  2502. * Shows all elements belonging to viwing an existing pastes
  2503. *
  2504. * @name TopNav.showViewButtons
  2505. * @function
  2506. */
  2507. me.showViewButtons = function()
  2508. {
  2509. if (viewButtonsDisplayed) {
  2510. console.log('showViewButtons: view buttons are already displayed');
  2511. return;
  2512. }
  2513. $newButton.removeClass('hidden');
  2514. $cloneButton.removeClass('hidden');
  2515. $rawTextButton.removeClass('hidden');
  2516. viewButtonsDisplayed = true;
  2517. }
  2518. /**
  2519. * Hides all elements belonging to existing pastes
  2520. *
  2521. * @name TopNav.hideViewButtons
  2522. * @function
  2523. */
  2524. me.hideViewButtons = function()
  2525. {
  2526. if (!viewButtonsDisplayed) {
  2527. console.log('hideViewButtons: view buttons are already hidden');
  2528. return;
  2529. }
  2530. $newButton.addClass('hidden');
  2531. $cloneButton.addClass('hidden');
  2532. $rawTextButton.addClass('hidden');
  2533. viewButtonsDisplayed = false;
  2534. }
  2535. /**
  2536. * Hides all elements belonging to existing pastes
  2537. *
  2538. * @name TopNav.hideAllButtons
  2539. * @function
  2540. */
  2541. me.hideAllButtons = function()
  2542. {
  2543. me.hideViewButtons();
  2544. me.hideCreateButtons();
  2545. }
  2546. /**
  2547. * shows all elements needed when creating a new paste
  2548. *
  2549. * @name TopNav.showCreateButtons
  2550. * @function
  2551. */
  2552. me.showCreateButtons = function()
  2553. {
  2554. if (createButtonsDisplayed) {
  2555. console.log('showCreateButtons: create buttons are already displayed');
  2556. return;
  2557. }
  2558. $sendButton.removeClass('hidden');
  2559. $expiration.removeClass('hidden');
  2560. $formatter.removeClass('hidden');
  2561. $burnAfterReadingOption.removeClass('hidden');
  2562. $openDiscussionOption.removeClass('hidden');
  2563. $newButton.removeClass('hidden');
  2564. $password.removeClass('hidden');
  2565. $attach.removeClass('hidden');
  2566. createButtonsDisplayed = true;
  2567. }
  2568. /**
  2569. * shows all elements needed when creating a new paste
  2570. *
  2571. * @name TopNav.hideCreateButtons
  2572. * @function
  2573. */
  2574. me.hideCreateButtons = function()
  2575. {
  2576. if (!createButtonsDisplayed) {
  2577. console.log('hideCreateButtons: create buttons are already hidden');
  2578. return;
  2579. }
  2580. $newButton.addClass('hidden');
  2581. $sendButton.addClass('hidden');
  2582. $expiration.addClass('hidden');
  2583. $formatter.addClass('hidden');
  2584. $burnAfterReadingOption.addClass('hidden');
  2585. $openDiscussionOption.addClass('hidden');
  2586. $password.addClass('hidden');
  2587. $attach.addClass('hidden');
  2588. createButtonsDisplayed = false;
  2589. }
  2590. /**
  2591. * only shows the "new paste" button
  2592. *
  2593. * @name TopNav.showNewPasteButton
  2594. * @function
  2595. */
  2596. me.showNewPasteButton = function()
  2597. {
  2598. $newButton.removeClass('hidden');
  2599. }
  2600. /**
  2601. * only hides the clone button
  2602. *
  2603. * @name TopNav.hideCloneButton
  2604. * @function
  2605. */
  2606. me.hideCloneButton = function()
  2607. {
  2608. $cloneButton.addClass('hidden');
  2609. }
  2610. /**
  2611. * only hides the raw text button
  2612. *
  2613. * @name TopNav.hideRawButton
  2614. * @function
  2615. */
  2616. me.hideRawButton = function()
  2617. {
  2618. $rawTextButton.addClass('hidden');
  2619. }
  2620. /**
  2621. * hides the file selector in attachment
  2622. *
  2623. * @name TopNav.hideFileSelector
  2624. * @function
  2625. */
  2626. me.hideFileSelector = function()
  2627. {
  2628. $fileWrap.addClass('hidden');
  2629. }
  2630. /**
  2631. * shows the custom attachment
  2632. *
  2633. * @name TopNav.showCustomAttachment
  2634. * @function
  2635. */
  2636. me.showCustomAttachment = function()
  2637. {
  2638. $customAttachment.removeClass('hidden');
  2639. }
  2640. /**
  2641. * collapses the navigation bar if nedded
  2642. *
  2643. * @name TopNav.collapseBar
  2644. * @function
  2645. */
  2646. me.collapseBar = function()
  2647. {
  2648. var $bar = $('.navbar-toggle');
  2649. // check if bar is expanded
  2650. if ($bar.hasClass('collapse in')) {
  2651. // if so, toggle it
  2652. $bar.click();
  2653. }
  2654. }
  2655. /**
  2656. * returns the currently set expiration time
  2657. *
  2658. * @name TopNav.getExpiration
  2659. * @function
  2660. * @return {int}
  2661. */
  2662. me.getExpiration = function()
  2663. {
  2664. return pasteExpiration;
  2665. }
  2666. /**
  2667. * returns the currently selected file(s)
  2668. *
  2669. * @name TopNav.getFileList
  2670. * @function
  2671. * @return {FileList|null}
  2672. */
  2673. me.getFileList = function()
  2674. {
  2675. var $file = $('#file');
  2676. // if no file given, return null
  2677. if (!$file.length || !$file[0].files.length) {
  2678. return null;
  2679. }
  2680. // @TODO is this really necessary
  2681. if (!($file[0].files && $file[0].files[0])) {
  2682. return null;
  2683. }
  2684. return $file[0].files;
  2685. }
  2686. /**
  2687. * returns the state of the burn after reading checkbox
  2688. *
  2689. * @name TopNav.getExpiration
  2690. * @function
  2691. * @return {bool}
  2692. */
  2693. me.getBurnAfterReading = function()
  2694. {
  2695. return $burnAfterReading.is(':checked');
  2696. }
  2697. /**
  2698. * returns the state of the discussion checkbox
  2699. *
  2700. * @name TopNav.getOpenDiscussion
  2701. * @function
  2702. * @return {bool}
  2703. */
  2704. me.getOpenDiscussion = function()
  2705. {
  2706. return $openDiscussion.is(':checked');
  2707. }
  2708. /**
  2709. * returns the entered password
  2710. *
  2711. * @name TopNav.getPassword
  2712. * @function
  2713. * @return {string}
  2714. */
  2715. me.getPassword = function()
  2716. {
  2717. return $passwordInput.val();
  2718. }
  2719. /**
  2720. * returns the element where custom attachments can be placed
  2721. *
  2722. * Used by AttachmentViewer when an attachment is cloned here.
  2723. *
  2724. * @name TopNav.getCustomAttachment
  2725. * @function
  2726. * @return {jQuery}
  2727. */
  2728. me.getCustomAttachment = function()
  2729. {
  2730. return $customAttachment;
  2731. }
  2732. /**
  2733. * init navigation manager
  2734. *
  2735. * preloads jQuery elements
  2736. *
  2737. * @name TopNav.init
  2738. * @function
  2739. */
  2740. me.init = function()
  2741. {
  2742. $attach = $('#attach');
  2743. $burnAfterReading = $('#burnafterreading');
  2744. $burnAfterReadingOption = $('#burnafterreadingoption');
  2745. $cloneButton = $('#clonebutton');
  2746. $customAttachment = $('#customattachment');
  2747. $expiration = $('#expiration');
  2748. $fileRemoveButton = $('#fileremovebutton');
  2749. $fileWrap = $('#filewrap');
  2750. $formatter = $('#formatter');
  2751. $newButton = $('#newbutton');
  2752. $openDiscussion = $('#opendiscussion');
  2753. $openDiscussionOption = $('#opendiscussionoption');
  2754. $password = $('#password');
  2755. $passwordInput = $('#passwordinput');
  2756. $rawTextButton = $('#rawtextbutton');
  2757. $sendButton = $('#sendbutton');
  2758. // bootstrap template drop down
  2759. $('#language ul.dropdown-menu li a').click(setLanguage);
  2760. // page template drop down
  2761. $('#language select option').click(setLanguage);
  2762. // bind events
  2763. $burnAfterReading.change(changeBurnAfterReading);
  2764. $openDiscussionOption.change(changeOpenDiscussion);
  2765. $newButton.click(clickNewPaste);
  2766. $sendButton.click(PasteEncrypter.sendPaste);
  2767. $cloneButton.click(Controller.clonePaste);
  2768. $rawTextButton.click(rawText);
  2769. $fileRemoveButton.click(removeAttachment);
  2770. // bootstrap template drop downs
  2771. $('ul.dropdown-menu li a', $('#expiration').parent()).click(updateExpiration);
  2772. $('ul.dropdown-menu li a', $('#formatter').parent()).click(updateFormat);
  2773. // initiate default state of checkboxes
  2774. changeBurnAfterReading();
  2775. changeOpenDiscussion();
  2776. // get default value from template or fall back to set value
  2777. pasteExpiration = Model.getExpirationDefault() || pasteExpiration;
  2778. }
  2779. return me;
  2780. })(window, document);
  2781. /**
  2782. * Responsible for AJAX requests, transparently handles encryption…
  2783. *
  2784. * @name Uploader
  2785. * @class
  2786. */
  2787. var Uploader = (function () {
  2788. var me = {};
  2789. var successFunc = null,
  2790. failureFunc = null,
  2791. url,
  2792. data,
  2793. symmetricKey,
  2794. password;
  2795. /**
  2796. * public variable ('constant') for errors to prevent magic numbers
  2797. *
  2798. * @name Uploader.error
  2799. * @readonly
  2800. * @enum {Object}
  2801. */
  2802. me.error = {
  2803. okay: 0,
  2804. custom: 1,
  2805. unknown: 2,
  2806. serverError: 3
  2807. };
  2808. /**
  2809. * ajaxHeaders to send in AJAX requests
  2810. *
  2811. * @name Uploader.ajaxHeaders
  2812. * @private
  2813. * @readonly
  2814. * @enum {Object}
  2815. */
  2816. var ajaxHeaders = {'X-Requested-With': 'JSONHttpRequest'};
  2817. /**
  2818. * called after successful upload
  2819. *
  2820. * @name Uploader.checkCryptParameters
  2821. * @private
  2822. * @function
  2823. * @throws {string}
  2824. */
  2825. function checkCryptParameters()
  2826. {
  2827. // workaround for this nasty 'bug' in ECMAScript
  2828. // see https://stackoverflow.com/questions/18808226/why-is-typeof-null-object
  2829. var typeOfKey = typeof symmetricKey;
  2830. if (symmetricKey === null) {
  2831. typeOfKey = 'null';
  2832. }
  2833. // in case of missing preparation, throw error
  2834. switch (typeOfKey) {
  2835. case 'string':
  2836. // already set, all right
  2837. return;
  2838. case 'null':
  2839. // needs to be generated auto-generate
  2840. symmetricKey = CryptTool.getSymmetricKey();
  2841. break;
  2842. default:
  2843. console.error('current invalid symmetricKey:', symmetricKey);
  2844. throw 'symmetricKey is invalid, probably the module was not prepared';
  2845. }
  2846. // password is optional
  2847. }
  2848. /**
  2849. * called after successful upload
  2850. *
  2851. * @name Uploader.success
  2852. * @private
  2853. * @function
  2854. * @param {int} status
  2855. * @param {int} result - optional
  2856. */
  2857. function success(status, result)
  2858. {
  2859. // add useful data to result
  2860. result.encryptionKey = symmetricKey;
  2861. result.requestData = data;
  2862. if (successFunc !== null) {
  2863. successFunc(status, result);
  2864. }
  2865. }
  2866. /**
  2867. * called after a upload failure
  2868. *
  2869. * @name Uploader.fail
  2870. * @private
  2871. * @function
  2872. * @param {int} status - internal code
  2873. * @param {int} result - original error code
  2874. */
  2875. function fail(status, result)
  2876. {
  2877. if (failureFunc !== null) {
  2878. failureFunc(status, result);
  2879. }
  2880. }
  2881. /**
  2882. * actually uploads the data
  2883. *
  2884. * @name Uploader.run
  2885. * @function
  2886. */
  2887. me.run = function()
  2888. {
  2889. $.ajax({
  2890. type: 'POST',
  2891. url: url,
  2892. data: data,
  2893. dataType: 'json',
  2894. headers: ajaxHeaders,
  2895. success: function(result) {
  2896. if (result.status === 0) {
  2897. success(0, result);
  2898. } else if (result.status === 1) {
  2899. fail(1, result);
  2900. } else {
  2901. fail(2, result);
  2902. }
  2903. }
  2904. })
  2905. .fail(function(jqXHR, textStatus, errorThrown) {
  2906. console.error(textStatus, errorThrown);
  2907. fail(3, jqXHR);
  2908. });
  2909. }
  2910. /**
  2911. * set success function
  2912. *
  2913. * @name Uploader.setUrl
  2914. * @function
  2915. * @param {function} newUrl
  2916. */
  2917. me.setUrl = function(newUrl)
  2918. {
  2919. url = newUrl;
  2920. }
  2921. /**
  2922. * sets the password to use (first value) and optionally also the
  2923. * encryption key (not recommend, it is automatically generated).
  2924. *
  2925. * Note: Call this after prepare() as prepare() resets these values.
  2926. *
  2927. * @name Uploader.setCryptValues
  2928. * @function
  2929. * @param {string} newPassword
  2930. * @param {string} newKey - optional
  2931. */
  2932. me.setCryptParameters = function(newPassword, newKey)
  2933. {
  2934. password = newPassword;
  2935. if (typeof newKey !== 'undefined') {
  2936. symmetricKey = newKey;
  2937. }
  2938. }
  2939. /**
  2940. * set success function
  2941. *
  2942. * @name Uploader.setSuccess
  2943. * @function
  2944. * @param {function} func
  2945. */
  2946. me.setSuccess = function(func)
  2947. {
  2948. successFunc = func;
  2949. }
  2950. /**
  2951. * set failure function
  2952. *
  2953. * @name Uploader.setFailure
  2954. * @function
  2955. * @param {function} func
  2956. */
  2957. me.setFailure = function(func)
  2958. {
  2959. failureFunc = func;
  2960. }
  2961. /**
  2962. * prepares a new upload
  2963. *
  2964. * Call this when doing a new upload to reset any data from potential
  2965. * previous uploads. Must be called before any other method of this
  2966. * module.
  2967. *
  2968. * @name Uploader.prepare
  2969. * @function
  2970. * @return {object}
  2971. */
  2972. me.prepare = function()
  2973. {
  2974. // entropy should already be checked!
  2975. // reset password
  2976. password = '';
  2977. // reset key, so it a new one is generated when it is used
  2978. symmetricKey = null;
  2979. // reset data
  2980. successFunc = null;
  2981. failureFunc = null;
  2982. url = Helper.baseUri();
  2983. data = {};
  2984. }
  2985. /**
  2986. * encrypts and sets the data
  2987. *
  2988. * @name Uploader.setData
  2989. * @function
  2990. * @param {string} index
  2991. * @param {mixed} element
  2992. */
  2993. me.setData = function(index, element)
  2994. {
  2995. checkCryptParameters();
  2996. data[index] = CryptTool.cipher(symmetricKey, password, element);
  2997. }
  2998. /**
  2999. * set the additional metadata to send unencrypted
  3000. *
  3001. * @name Uploader.setUnencryptedData
  3002. * @function
  3003. * @param {string} index
  3004. * @param {mixed} element
  3005. */
  3006. me.setUnencryptedData = function(index, element)
  3007. {
  3008. data[index] = element;
  3009. }
  3010. /**
  3011. * set the additional metadata to send unencrypted passed at once
  3012. *
  3013. * @name Uploader.setUnencryptedData
  3014. * @function
  3015. * @param {object} newData
  3016. */
  3017. me.setUnencryptedBulkData = function(newData)
  3018. {
  3019. $.extend(data, newData);
  3020. }
  3021. /**
  3022. * Helper, which parses shows a general error message based on the result of the Uploader
  3023. *
  3024. * @name Uploader.parseUploadError
  3025. * @function
  3026. * @param {int} status
  3027. * @param {object} data
  3028. * @param {string} doThisThing - a human description of the action, which was tried
  3029. * @return {array}
  3030. */
  3031. me.parseUploadError = function(status, data, doThisThing) {
  3032. var errorArray;
  3033. switch (status) {
  3034. case me.error['custom']:
  3035. errorArray = ['Could not ' + doThisThing + ': %s', data.message];
  3036. break;
  3037. case me.error['unknown']:
  3038. errorArray = ['Could not ' + doThisThing + ': %s', I18n._('unknown status')];
  3039. break;
  3040. case me.error['serverError']:
  3041. errorArray = ['Could not ' + doThisThing + ': %s', I18n._('server error or not responding')];
  3042. break;
  3043. default:
  3044. errorArray = ['Could not ' + doThisThing + ': %s', I18n._('unknown error')];
  3045. break;
  3046. }
  3047. return errorArray;
  3048. }
  3049. /**
  3050. * init Uploader
  3051. *
  3052. * @name Uploader.init
  3053. * @function
  3054. */
  3055. me.init = function()
  3056. {
  3057. // nothing yet
  3058. }
  3059. return me;
  3060. })();
  3061. /**
  3062. * (controller) Responsible for encrypting paste and sending it to server.
  3063. *
  3064. * Does upload, encryption is done transparently by Uploader.
  3065. *
  3066. * @name PasteEncrypter
  3067. * @class
  3068. */
  3069. var PasteEncrypter = (function () {
  3070. var me = {};
  3071. var requirementsChecked = false;
  3072. /**
  3073. * checks whether there is a suitable amount of entrophy
  3074. *
  3075. * @name PasteEncrypter.checkRequirements
  3076. * @private
  3077. * @function
  3078. * @param {function} retryCallback - the callback to execute to retry the upload
  3079. * @return {bool}
  3080. */
  3081. function checkRequirements(retryCallback) {
  3082. // skip double requirement checks
  3083. if (requirementsChecked === true) {
  3084. return true;
  3085. }
  3086. if (!CryptTool.isEntropyReady()) {
  3087. // display a message and wait
  3088. Alert.showStatus('Please move your mouse for more entropy…');
  3089. CryptTool.addEntropySeedListener(retryCallback);
  3090. return false;
  3091. }
  3092. requirementsChecked = true;
  3093. return true;
  3094. }
  3095. /**
  3096. * called after successful paste upload
  3097. *
  3098. * @name PasteEncrypter.showCreatedPaste
  3099. * @private
  3100. * @function
  3101. * @param {int} status
  3102. * @param {object} data
  3103. */
  3104. function showCreatedPaste(status, data) {
  3105. Alert.hideLoading();
  3106. var url = Helper.baseUri() + '?' + data.id + '#' + data.encryptionKey,
  3107. deleteUrl = Helper.baseUri() + '?pasteid=' + data.id + '&deletetoken=' + data.deletetoken;
  3108. Alert.hideMessages();
  3109. // show notification
  3110. PasteStatus.createPasteNotification(url, deleteUrl)
  3111. // show new URL in browser bar
  3112. history.pushState({type: 'newpaste'}, document.title, url);
  3113. TopNav.showViewButtons();
  3114. TopNav.hideRawButton();
  3115. Editor.hide();
  3116. // parse and show text
  3117. // (preparation already done in me.sendPaste())
  3118. PasteViewer.run();
  3119. }
  3120. /**
  3121. * called after successful comment upload
  3122. *
  3123. * @name PasteEncrypter.showUploadedComment
  3124. * @private
  3125. * @function
  3126. * @param {int} status
  3127. * @param {object} data
  3128. */
  3129. function showUploadedComment(status, data) {
  3130. // show success message
  3131. // Alert.showStatus('Comment posted.');
  3132. // reload paste
  3133. Controller.refreshPaste(function () {
  3134. // highlight sent comment
  3135. DiscussionViewer.highlightComment(data.id, true);
  3136. // reset error handler
  3137. Alert.setCustomHandler(null);
  3138. });
  3139. }
  3140. /**
  3141. * adds attachments to the Uploader
  3142. *
  3143. * @name PasteEncrypter.encryptAttachments
  3144. * @private
  3145. * @function
  3146. * @param {function} callback - excuted when action is successful
  3147. */
  3148. function encryptAttachments(callback) {
  3149. var file = AttachmentViewer.attachmentData;
  3150. if (typeof file !== 'undefined' && file !== null) {
  3151. var fileName = AttachmentViewer.file.name;
  3152. Uploader.setData('attachment', file);
  3153. Uploader.setData('attachmentname', fileName);
  3154. // run callback
  3155. return callback();
  3156. } else if (AttachmentViewer.hasAttachment()) {
  3157. // fall back to cloned part
  3158. var attachment = AttachmentViewer.getAttachment();
  3159. Uploader.setData('attachment', attachment[0]);
  3160. Uploader.setData('attachmentname', attachment[1]);
  3161. return callback();
  3162. } else {
  3163. // if there are no attachments, this is of course still successful
  3164. return callback();
  3165. }
  3166. }
  3167. /**
  3168. * send a reply in a discussion
  3169. *
  3170. * @name PasteEncrypter.sendComment
  3171. * @function
  3172. */
  3173. me.sendComment = function()
  3174. {
  3175. Alert.hideMessages();
  3176. Alert.setCustomHandler(DiscussionViewer.handleNotification);
  3177. // UI loading state
  3178. TopNav.hideAllButtons();
  3179. Alert.showLoading('Sending comment…', 0, 'cloud-upload');
  3180. // get data, note that "var [x, y] = " structures aren't supported in all JS environments
  3181. var replyData = DiscussionViewer.getReplyData(),
  3182. plainText = replyData[0],
  3183. nickname = replyData[1],
  3184. parentid = DiscussionViewer.getReplyCommentId();
  3185. // do not send if there is no data
  3186. if (plainText.length === 0) {
  3187. // revert loading status…
  3188. Alert.hideLoading();
  3189. Alert.setCustomHandler(null);
  3190. TopNav.showViewButtons();
  3191. return;
  3192. }
  3193. // check entropy
  3194. if (!checkRequirements(function () {
  3195. me.sendComment();
  3196. })) {
  3197. return; // to prevent multiple executions
  3198. }
  3199. Alert.showLoading(null, 10);
  3200. // prepare Uploader
  3201. Uploader.prepare();
  3202. Uploader.setCryptParameters(Prompt.getPassword(), Model.getPasteKey());
  3203. // set success/fail functions
  3204. Uploader.setSuccess(showUploadedComment);
  3205. Uploader.setFailure(function (status, data) {
  3206. // revert loading status…
  3207. Alert.hideLoading();
  3208. TopNav.showViewButtons();
  3209. // show error message
  3210. Alert.showError(Uploader.parseUploadError(status, data, 'post comment'));
  3211. // reset error handler
  3212. Alert.setCustomHandler(null);
  3213. });
  3214. // fill it with unencrypted params
  3215. Uploader.setUnencryptedData('pasteid', Model.getPasteId());
  3216. if (typeof parentid === 'undefined') {
  3217. // if parent id is not set, this is the top-most comment, so use
  3218. // paste id as parent @TODO is this really good?
  3219. Uploader.setUnencryptedData('parentid', Model.getPasteId());
  3220. } else {
  3221. Uploader.setUnencryptedData('parentid', parentid);
  3222. }
  3223. // encrypt data
  3224. Uploader.setData('data', plainText);
  3225. if (nickname.length > 0) {
  3226. Uploader.setData('nickname', nickname);
  3227. }
  3228. Uploader.run();
  3229. }
  3230. /**
  3231. * sends a new paste to server
  3232. *
  3233. * @name PasteEncrypter.sendPaste
  3234. * @function
  3235. */
  3236. me.sendPaste = function()
  3237. {
  3238. // hide previous (error) messages
  3239. Controller.hideStatusMessages();
  3240. // UI loading state
  3241. TopNav.hideAllButtons();
  3242. Alert.showLoading('Sending paste…', 0, 'cloud-upload');
  3243. TopNav.collapseBar();
  3244. // get data
  3245. var plainText = Editor.getText(),
  3246. format = PasteViewer.getFormat(),
  3247. files = TopNav.getFileList() || AttachmentViewer.file || AttachmentViewer.hasAttachment();
  3248. // do not send if there is no data
  3249. if (plainText.length === 0 && files === null) {
  3250. // revert loading status…
  3251. Alert.hideLoading();
  3252. TopNav.showCreateButtons();
  3253. return;
  3254. }
  3255. Alert.showLoading(null, 10);
  3256. // check entropy
  3257. if (!checkRequirements(function () {
  3258. me.sendPaste();
  3259. })) {
  3260. return; // to prevent multiple executions
  3261. }
  3262. // prepare Uploader
  3263. Uploader.prepare();
  3264. Uploader.setCryptParameters(TopNav.getPassword());
  3265. // set success/fail functions
  3266. Uploader.setSuccess(showCreatedPaste);
  3267. Uploader.setFailure(function (status, data) {
  3268. // revert loading status…
  3269. Alert.hideLoading();
  3270. TopNav.showCreateButtons();
  3271. // show error message
  3272. Alert.showError(Uploader.parseUploadError(status, data, 'create paste'));
  3273. });
  3274. // fill it with unencrypted submitted options
  3275. Uploader.setUnencryptedBulkData({
  3276. expire: TopNav.getExpiration(),
  3277. formatter: format,
  3278. burnafterreading: TopNav.getBurnAfterReading() ? 1 : 0,
  3279. opendiscussion: TopNav.getOpenDiscussion() ? 1 : 0
  3280. });
  3281. // prepare PasteViewer for later preview
  3282. PasteViewer.setText(plainText);
  3283. PasteViewer.setFormat(format);
  3284. // encrypt cipher data
  3285. Uploader.setData('data', plainText);
  3286. // encrypt attachments
  3287. encryptAttachments(
  3288. function () {
  3289. // send data
  3290. Uploader.run();
  3291. }
  3292. );
  3293. }
  3294. /**
  3295. * initialize
  3296. *
  3297. * @name PasteEncrypter.init
  3298. * @function
  3299. */
  3300. me.init = function()
  3301. {
  3302. // nothing yet
  3303. }
  3304. return me;
  3305. })();
  3306. /**
  3307. * (controller) Responsible for decrypting cipherdata and passing data to view.
  3308. *
  3309. * Only decryption, no download.
  3310. *
  3311. * @name PasteDecrypter
  3312. * @class
  3313. */
  3314. var PasteDecrypter = (function () {
  3315. var me = {};
  3316. /**
  3317. * decrypt data or prompts for password in cvase of failure
  3318. *
  3319. * @name PasteDecrypter.decryptOrPromptPassword
  3320. * @private
  3321. * @function
  3322. * @param {string} key
  3323. * @param {string} password - optional, may be an empty string
  3324. * @param {string} cipherdata
  3325. * @throws {string}
  3326. * @return {false|string} false, when unsuccessful or string (decrypted data)
  3327. */
  3328. function decryptOrPromptPassword(key, password, cipherdata)
  3329. {
  3330. // try decryption without password
  3331. var plaindata = CryptTool.decipher(key, password, cipherdata);
  3332. // if it fails, request password
  3333. if (plaindata.length === 0 && password.length === 0) {
  3334. // try to get cached password first
  3335. password = Prompt.getPassword();
  3336. // if password is there, re-try
  3337. if (password.length === 0) {
  3338. password = Prompt.requestPassword();
  3339. }
  3340. // recursive
  3341. // note: an infinite loop is prevented as the previous if
  3342. // clause checks whether a password is already set and ignores
  3343. // errors when a password has been passed
  3344. return decryptOrPromptPassword.apply(key, password, cipherdata);
  3345. }
  3346. // if all tries failed, we can only return an error
  3347. if (plaindata.length === 0) {
  3348. throw 'failed to decipher data';
  3349. }
  3350. return plaindata;
  3351. }
  3352. /**
  3353. * decrypt the actual paste text
  3354. *
  3355. * @name PasteDecrypter.decryptOrPromptPassword
  3356. * @private
  3357. * @function
  3358. * @param {object} paste - paste data in object form
  3359. * @param {string} key
  3360. * @param {string} password
  3361. * @param {bool} ignoreError - ignore decryption errors iof set to true
  3362. * @return {bool} whether action was successful
  3363. * @throws {string}
  3364. */
  3365. function decryptPaste(paste, key, password, ignoreError)
  3366. {
  3367. var plaintext
  3368. if (ignoreError === true) {
  3369. plaintext = CryptTool.decipher(key, password, paste.data);
  3370. } else {
  3371. try {
  3372. plaintext = decryptOrPromptPassword(key, password, paste.data);
  3373. } catch (err) {
  3374. throw 'failed to decipher paste text: ' + err
  3375. }
  3376. if (plaintext === false) {
  3377. return false;
  3378. }
  3379. }
  3380. // on success show paste
  3381. PasteViewer.setFormat(paste.meta.formatter);
  3382. PasteViewer.setText(plaintext);
  3383. // trigger to show the text (attachment loaded afterwards)
  3384. PasteViewer.run();
  3385. return true;
  3386. }
  3387. /**
  3388. * decrypts any attachment
  3389. *
  3390. * @name PasteDecrypter.decryptAttachment
  3391. * @private
  3392. * @function
  3393. * @param {object} paste - paste data in object form
  3394. * @param {string} key
  3395. * @param {string} password
  3396. * @return {bool} whether action was successful
  3397. * @throws {string}
  3398. */
  3399. function decryptAttachment(paste, key, password)
  3400. {
  3401. // decrypt attachment
  3402. try {
  3403. var attachment = decryptOrPromptPassword(key, password, paste.attachment);
  3404. } catch (err) {
  3405. throw 'failed to decipher attachment: ' + err
  3406. }
  3407. if (attachment === false) {
  3408. return false;
  3409. }
  3410. // decrypt attachment name
  3411. var attachmentName;
  3412. if (paste.attachmentname) {
  3413. try {
  3414. attachmentName = decryptOrPromptPassword(key, password, paste.attachmentname);
  3415. } catch (err) {
  3416. throw 'failed to decipher attachment name: ' + err
  3417. }
  3418. if (attachmentName === false) {
  3419. return false;
  3420. }
  3421. }
  3422. AttachmentViewer.setAttachment(attachment, attachmentName);
  3423. AttachmentViewer.showAttachment();
  3424. return true;
  3425. }
  3426. /**
  3427. * decrypts all comments and shows them
  3428. *
  3429. * @name PasteDecrypter.decryptComments
  3430. * @private
  3431. * @function
  3432. * @param {object} paste - paste data in object form
  3433. * @param {string} key
  3434. * @param {string} password
  3435. * @return {bool} whether action was successful
  3436. */
  3437. function decryptComments(paste, key, password)
  3438. {
  3439. // remove potentially previous discussion
  3440. DiscussionViewer.prepareNewDisucssion();
  3441. // iterate over comments
  3442. for (var i = 0; i < paste.comments.length; ++i) {
  3443. var comment = paste.comments[i];
  3444. DiscussionViewer.addComment(
  3445. comment,
  3446. CryptTool.decipher(key, password, comment.data),
  3447. CryptTool.decipher(key, password, comment.meta.nickname)
  3448. );
  3449. }
  3450. DiscussionViewer.finishDiscussion();
  3451. DiscussionViewer.showDiscussion();
  3452. return true;
  3453. }
  3454. /**
  3455. * show decrypted text in the display area, including discussion (if open)
  3456. *
  3457. * @name PasteDecrypter.run
  3458. * @function
  3459. * @param {Object} [paste] - (optional) object including comments to display (items = array with keys ('data','meta'))
  3460. */
  3461. me.run = function(paste)
  3462. {
  3463. Alert.hideMessages();
  3464. Alert.showLoading('Decrypting paste…', 0, 'cloud-download'); // @TODO icon maybe rotation-lock, but needs full Glyphicons
  3465. if (typeof paste === 'undefined') {
  3466. paste = $.parseJSON(Model.getCipherData());
  3467. }
  3468. var key = Model.getPasteKey(),
  3469. password = Prompt.getPassword();
  3470. if (PasteViewer.isPrettyPrinted()) {
  3471. console.error('Too pretty! (don\'t know why this check)'); //@TODO
  3472. return;
  3473. }
  3474. // try to decrypt the paste
  3475. try {
  3476. // decrypt attachments
  3477. if (paste.attachment) {
  3478. // try to decrypt paste and if it fails (because the password is
  3479. // missing) return to let JS continue and wait for user
  3480. if (!decryptAttachment(paste, key, password)) {
  3481. return;
  3482. }
  3483. // ignore empty paste, as this is allowed when pasting attachments
  3484. decryptPaste(paste, key, password, true);
  3485. } else {
  3486. decryptPaste(paste, key, password);
  3487. }
  3488. // shows the remaining time (until) deletion
  3489. PasteStatus.showRemainingTime(paste.meta);
  3490. // if the discussion is opened on this paste, display it
  3491. if (paste.meta.opendiscussion) {
  3492. decryptComments(paste, key, password);
  3493. }
  3494. Alert.hideLoading();
  3495. TopNav.showViewButtons();
  3496. } catch(err) {
  3497. Alert.hideLoading();
  3498. // log and show error
  3499. console.error(err);
  3500. Alert.showError('Could not decrypt data (Wrong key?)');
  3501. }
  3502. }
  3503. /**
  3504. * initialize
  3505. *
  3506. * @name PasteDecrypter.init
  3507. * @function
  3508. */
  3509. me.init = function()
  3510. {
  3511. // nothing yet
  3512. }
  3513. return me;
  3514. })();
  3515. /**
  3516. * (controller) main PrivateBin logic
  3517. *
  3518. * @name Controller
  3519. * @param {object} window
  3520. * @param {object} document
  3521. * @class
  3522. */
  3523. var Controller = (function (window, document) {
  3524. var me = {};
  3525. /**
  3526. * hides all status messages no matter which module showed them
  3527. *
  3528. * @name Controller.hideStatusMessages
  3529. * @function
  3530. */
  3531. me.hideStatusMessages = function()
  3532. {
  3533. PasteStatus.hideMessages();
  3534. Alert.hideMessages();
  3535. }
  3536. /**
  3537. * creates a new paste
  3538. *
  3539. * @name Controller.newPaste
  3540. * @function
  3541. */
  3542. me.newPaste = function()
  3543. {
  3544. // Important: This *must not* run Alert.hideMessages() as previous
  3545. // errors from viewing a paste should be shown.
  3546. TopNav.hideAllButtons();
  3547. Alert.showLoading('Preparing new paste…', 0, 'time');
  3548. PasteStatus.hideMessages();
  3549. PasteViewer.hide();
  3550. Editor.resetInput();
  3551. Editor.show();
  3552. Editor.focusInput();
  3553. TopNav.showCreateButtons();
  3554. Alert.hideLoading();
  3555. }
  3556. /**
  3557. * shows the loaded paste
  3558. *
  3559. * @name Controller.showPaste
  3560. * @function
  3561. */
  3562. me.showPaste = function()
  3563. {
  3564. try {
  3565. Model.getPasteId();
  3566. Model.getPasteKey();
  3567. } catch (err) {
  3568. console.error(err);
  3569. // missing decryption key (or paste ID) in URL?
  3570. if (window.location.hash.length === 0) {
  3571. 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?)');
  3572. // @TODO adjust error message as it is less specific now, probably include thrown exception for a detailed error
  3573. return;
  3574. }
  3575. }
  3576. // show proper elements on screen
  3577. PasteDecrypter.run();
  3578. }
  3579. /**
  3580. * refreshes the loaded paste to show potential new data
  3581. *
  3582. * @name Controller.refreshPaste
  3583. * @function
  3584. * @param {function} callback
  3585. */
  3586. me.refreshPaste = function(callback)
  3587. {
  3588. // save window position to restore it later
  3589. var orgPosition = $(window).scrollTop();
  3590. Uploader.prepare();
  3591. Uploader.setUrl(Helper.baseUri() + '?' + Model.getPasteId());
  3592. Uploader.setFailure(function (status, data) {
  3593. // revert loading status…
  3594. Alert.hideLoading();
  3595. TopNav.showViewButtons();
  3596. // show error message
  3597. Alert.showError(Uploader.parseUploadError(status, data, 'refresh display'));
  3598. })
  3599. Uploader.setSuccess(function (status, data) {
  3600. PasteDecrypter.run(data);
  3601. // restore position
  3602. window.scrollTo(0, orgPosition);
  3603. callback();
  3604. })
  3605. Uploader.run();
  3606. }
  3607. /**
  3608. * clone the current paste
  3609. *
  3610. * @name Controller.clonePaste
  3611. * @function
  3612. * @param {Event} event
  3613. */
  3614. me.clonePaste = function(event)
  3615. {
  3616. TopNav.collapseBar();
  3617. TopNav.hideAllButtons();
  3618. Alert.showLoading('Cloning paste…', 0, 'transfer');
  3619. // hide messages from previous paste
  3620. me.hideStatusMessages();
  3621. // erase the id and the key in url
  3622. history.pushState({type: 'clone'}, document.title, Helper.baseUri());
  3623. if (AttachmentViewer.hasAttachment()) {
  3624. AttachmentViewer.moveAttachmentTo(
  3625. TopNav.getCustomAttachment(),
  3626. 'Cloned: \'%s\''
  3627. );
  3628. TopNav.hideFileSelector();
  3629. AttachmentViewer.hideAttachment();
  3630. // NOTE: it also looks nice without removing the attachment
  3631. // but for a consistent display we remove it…
  3632. AttachmentViewer.hideAttachmentPreview();
  3633. TopNav.showCustomAttachment();
  3634. // show another status message to make the user aware that the
  3635. // file was cloned too!
  3636. Alert.showStatus(
  3637. [
  3638. 'The cloned file \'%s\' was attached to this paste.',
  3639. AttachmentViewer.getAttachment()[1]
  3640. ], 'copy', true, true);
  3641. }
  3642. Editor.setText(PasteViewer.getText())
  3643. PasteViewer.hide();
  3644. Editor.show();
  3645. Alert.hideLoading();
  3646. TopNav.showCreateButtons();
  3647. }
  3648. /**
  3649. * removes a saved paste
  3650. *
  3651. * @name Controller.removePaste
  3652. * @function
  3653. * @param {string} pasteId
  3654. * @param {string} deleteToken
  3655. */
  3656. me.removePaste = function(pasteId, deleteToken) {
  3657. // unfortunately many web servers don't support DELETE (and PUT) out of the box
  3658. // so we use a POST request
  3659. Uploader.prepare();
  3660. Uploader.setUrl(Helper.baseUri() + '?' + pasteId);
  3661. Uploader.setUnencryptedData('deletetoken', deleteToken);
  3662. Uploader.setFailure(function () {
  3663. Controller.showError(I18n._('Could not delete the paste, it was not stored in burn after reading mode.'));
  3664. })
  3665. Uploader.run();
  3666. }
  3667. /**
  3668. * application start
  3669. *
  3670. * @name Controller.init
  3671. * @function
  3672. */
  3673. me.init = function()
  3674. {
  3675. // first load translations
  3676. I18n.loadTranslations();
  3677. // initialize other modules/"classes"
  3678. Alert.init();
  3679. Model.init();
  3680. AttachmentViewer.init();
  3681. DiscussionViewer.init();
  3682. Editor.init();
  3683. PasteDecrypter.init();
  3684. PasteEncrypter.init();
  3685. PasteStatus.init();
  3686. PasteViewer.init();
  3687. Prompt.init();
  3688. TopNav.init();
  3689. UiHelper.init();
  3690. Uploader.init();
  3691. // display an existing paste
  3692. if (Model.hasCipherData()) {
  3693. return me.showPaste();
  3694. }
  3695. // otherwise create a new paste
  3696. me.newPaste();
  3697. }
  3698. return me;
  3699. })(window, document);
  3700. return {
  3701. Helper: Helper,
  3702. I18n: I18n,
  3703. CryptTool: CryptTool,
  3704. Model: Model,
  3705. UiHelper: UiHelper,
  3706. Alert: Alert,
  3707. PasteStatus: PasteStatus,
  3708. Prompt: Prompt,
  3709. Editor: Editor,
  3710. PasteViewer: PasteViewer,
  3711. AttachmentViewer: AttachmentViewer,
  3712. DiscussionViewer: DiscussionViewer,
  3713. TopNav: TopNav,
  3714. Uploader: Uploader,
  3715. PasteEncrypter: PasteEncrypter,
  3716. PasteDecrypter: PasteDecrypter,
  3717. Controller: Controller
  3718. };
  3719. }(jQuery, sjcl, Base64, RawDeflate);