privatebin.js 175 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592
  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.6.2
  10. * @name PrivateBin
  11. * @namespace
  12. */
  13. // global Base64, DOMPurify, FileReader, RawDeflate, history, navigator, prettyPrint, prettyPrintOne, showdown, kjua
  14. jQuery.fn.draghover = function() {
  15. 'use strict';
  16. return this.each(function() {
  17. let collection = $(),
  18. self = $(this);
  19. self.on('dragenter', function(e) {
  20. if (collection.length === 0) {
  21. self.trigger('draghoverstart');
  22. }
  23. collection = collection.add(e.target);
  24. });
  25. self.on('dragleave drop', function(e) {
  26. collection = collection.not(e.target);
  27. if (collection.length === 0) {
  28. self.trigger('draghoverend');
  29. }
  30. });
  31. });
  32. };
  33. // main application start, called when DOM is fully loaded
  34. jQuery(document).ready(function() {
  35. 'use strict';
  36. // run main controller
  37. $.PrivateBin.Controller.init();
  38. });
  39. jQuery.PrivateBin = (function($, RawDeflate) {
  40. 'use strict';
  41. /**
  42. * zlib library interface
  43. *
  44. * @private
  45. */
  46. let z;
  47. /**
  48. * DOMpurify settings for HTML content
  49. *
  50. * @private
  51. */
  52. const purifyHtmlConfig = {
  53. ALLOWED_URI_REGEXP: /^(?:(?:(?:f|ht)tps?|mailto|magnet):)/i,
  54. SAFE_FOR_JQUERY: true,
  55. USE_PROFILES: {
  56. html: true
  57. }
  58. };
  59. /**
  60. * DOMpurify settings for SVG content
  61. *
  62. * @private
  63. */
  64. const purifySvgConfig = {
  65. USE_PROFILES: {
  66. svg: true,
  67. svgFilters: true
  68. }
  69. };
  70. /**
  71. * CryptoData class
  72. *
  73. * bundles helper functions used in both paste and comment formats
  74. *
  75. * @name CryptoData
  76. * @class
  77. */
  78. function CryptoData(data) {
  79. this.v = 1;
  80. // store all keys in the default locations for drop-in replacement
  81. for (let key in data) {
  82. this[key] = data[key];
  83. }
  84. /**
  85. * gets the cipher data (cipher text + adata)
  86. *
  87. * @name CryptoData.getCipherData
  88. * @function
  89. * @return {Array}|{string}
  90. */
  91. this.getCipherData = function()
  92. {
  93. return this.v === 1 ? this.data : [this.ct, this.adata];
  94. }
  95. }
  96. /**
  97. * Paste class
  98. *
  99. * bundles helper functions around the paste formats
  100. *
  101. * @name Paste
  102. * @class
  103. */
  104. function Paste(data) {
  105. // inherit constructor and methods of CryptoData
  106. CryptoData.call(this, data);
  107. /**
  108. * gets the used formatter
  109. *
  110. * @name Paste.getFormat
  111. * @function
  112. * @return {string}
  113. */
  114. this.getFormat = function()
  115. {
  116. return this.v === 1 ? this.meta.formatter : this.adata[1];
  117. }
  118. /**
  119. * gets the remaining seconds before the paste expires
  120. *
  121. * returns 0 if there is no expiration
  122. *
  123. * @name Paste.getTimeToLive
  124. * @function
  125. * @return {string}
  126. */
  127. this.getTimeToLive = function()
  128. {
  129. return (this.v === 1 ? this.meta.remaining_time : this.meta.time_to_live) || 0;
  130. }
  131. /**
  132. * is burn-after-reading enabled
  133. *
  134. * @name Paste.isBurnAfterReadingEnabled
  135. * @function
  136. * @return {bool}
  137. */
  138. this.isBurnAfterReadingEnabled = function()
  139. {
  140. return (this.v === 1 ? this.meta.burnafterreading : this.adata[3]);
  141. }
  142. /**
  143. * are discussions enabled
  144. *
  145. * @name Paste.isDiscussionEnabled
  146. * @function
  147. * @return {bool}
  148. */
  149. this.isDiscussionEnabled = function()
  150. {
  151. return (this.v === 1 ? this.meta.opendiscussion : this.adata[2]);
  152. }
  153. }
  154. /**
  155. * Comment class
  156. *
  157. * bundles helper functions around the comment formats
  158. *
  159. * @name Comment
  160. * @class
  161. */
  162. function Comment(data) {
  163. // inherit constructor and methods of CryptoData
  164. CryptoData.call(this, data);
  165. /**
  166. * gets the UNIX timestamp of the comment creation
  167. *
  168. * @name Comment.getCreated
  169. * @function
  170. * @return {int}
  171. */
  172. this.getCreated = function()
  173. {
  174. return this.meta[this.v === 1 ? 'postdate' : 'created'];
  175. }
  176. /**
  177. * gets the icon of the comment submitter
  178. *
  179. * @name Comment.getIcon
  180. * @function
  181. * @return {string}
  182. */
  183. this.getIcon = function()
  184. {
  185. return this.meta[this.v === 1 ? 'vizhash' : 'icon'] || '';
  186. }
  187. }
  188. /**
  189. * static Helper methods
  190. *
  191. * @name Helper
  192. * @class
  193. */
  194. const Helper = (function () {
  195. const me = {};
  196. /**
  197. * character to HTML entity lookup table
  198. *
  199. * @see {@link https://github.com/janl/mustache.js/blob/master/mustache.js#L60}
  200. * @name Helper.entityMap
  201. * @private
  202. * @enum {Object}
  203. * @readonly
  204. */
  205. const entityMap = {
  206. '&': '&',
  207. '<': '&lt;',
  208. '>': '&gt;',
  209. '"': '&quot;',
  210. "'": '&#39;',
  211. '/': '&#x2F;',
  212. '`': '&#x60;',
  213. '=': '&#x3D;'
  214. };
  215. /**
  216. * number of seconds in a minute
  217. *
  218. * @name Helper.minute
  219. * @private
  220. * @enum {number}
  221. * @readonly
  222. */
  223. const minute = 60;
  224. /**
  225. * number of seconds in an hour
  226. *
  227. * = 60 * 60 seconds
  228. *
  229. * @name Helper.minute
  230. * @private
  231. * @enum {number}
  232. * @readonly
  233. */
  234. const hour = 3600;
  235. /**
  236. * number of seconds in a day
  237. *
  238. * = 60 * 60 * 24 seconds
  239. *
  240. * @name Helper.day
  241. * @private
  242. * @enum {number}
  243. * @readonly
  244. */
  245. const day = 86400;
  246. /**
  247. * number of seconds in a week
  248. *
  249. * = 60 * 60 * 24 * 7 seconds
  250. *
  251. * @name Helper.week
  252. * @private
  253. * @enum {number}
  254. * @readonly
  255. */
  256. const week = 604800;
  257. /**
  258. * number of seconds in a month (30 days, an approximation)
  259. *
  260. * = 60 * 60 * 24 * 30 seconds
  261. *
  262. * @name Helper.month
  263. * @private
  264. * @enum {number}
  265. * @readonly
  266. */
  267. const month = 2592000;
  268. /**
  269. * number of seconds in a non-leap year
  270. *
  271. * = 60 * 60 * 24 * 365 seconds
  272. *
  273. * @name Helper.year
  274. * @private
  275. * @enum {number}
  276. * @readonly
  277. */
  278. const year = 31536000;
  279. /**
  280. * cache for script location
  281. *
  282. * @name Helper.baseUri
  283. * @private
  284. * @enum {string|null}
  285. */
  286. let baseUri = null;
  287. /**
  288. * converts a duration (in seconds) into human friendly approximation
  289. *
  290. * @name Helper.secondsToHuman
  291. * @function
  292. * @param {number} seconds
  293. * @return {Array}
  294. */
  295. me.secondsToHuman = function(seconds)
  296. {
  297. let v;
  298. if (seconds < minute)
  299. {
  300. v = Math.floor(seconds);
  301. return [v, 'second'];
  302. }
  303. if (seconds < hour)
  304. {
  305. v = Math.floor(seconds / minute);
  306. return [v, 'minute'];
  307. }
  308. if (seconds < day)
  309. {
  310. v = Math.floor(seconds / hour);
  311. return [v, 'hour'];
  312. }
  313. // If less than 2 months, display in days:
  314. if (seconds < (2 * month))
  315. {
  316. v = Math.floor(seconds / day);
  317. return [v, 'day'];
  318. }
  319. v = Math.floor(seconds / month);
  320. return [v, 'month'];
  321. };
  322. /**
  323. * converts a duration string into seconds
  324. *
  325. * The string is expected to be optional digits, followed by a time.
  326. * Supported times are: min, hour, day, month, year, never
  327. * Examples: 5min, 13hour, never
  328. *
  329. * @name Helper.durationToSeconds
  330. * @function
  331. * @param {String} duration
  332. * @return {number}
  333. */
  334. me.durationToSeconds = function(duration)
  335. {
  336. let pieces = duration.split(/(\D+)/),
  337. factor = pieces[0] || 0,
  338. timespan = pieces[1] || pieces[0];
  339. switch (timespan)
  340. {
  341. case 'min':
  342. return factor * minute;
  343. case 'hour':
  344. return factor * hour;
  345. case 'day':
  346. return factor * day;
  347. case 'week':
  348. return factor * week;
  349. case 'month':
  350. return factor * month;
  351. case 'year':
  352. return factor * year;
  353. case 'never':
  354. return 0;
  355. default:
  356. return factor;
  357. }
  358. };
  359. /**
  360. * text range selection
  361. *
  362. * @see {@link https://stackoverflow.com/questions/985272/jquery-selecting-text-in-an-element-akin-to-highlighting-with-your-mouse}
  363. * @name Helper.selectText
  364. * @function
  365. * @param {HTMLElement} element
  366. */
  367. me.selectText = function(element)
  368. {
  369. let range, selection;
  370. // MS
  371. if (document.body.createTextRange) {
  372. range = document.body.createTextRange();
  373. range.moveToElementText(element);
  374. range.select();
  375. } else if (window.getSelection) {
  376. selection = window.getSelection();
  377. range = document.createRange();
  378. range.selectNodeContents(element);
  379. selection.removeAllRanges();
  380. selection.addRange(range);
  381. }
  382. };
  383. /**
  384. * convert URLs to clickable links in the provided element.
  385. *
  386. * URLs to handle:
  387. * <pre>
  388. * magnet:?xt.1=urn:sha1:YNCKHTQCWBTRNJIV4WNAE52SJUQCZO5C&xt.2=urn:sha1:TXGCZQTH26NL6OUQAJJPFALHG2LTGBC7
  389. * https://example.com:8800/zero/?6f09182b8ea51997#WtLEUO5Epj9UHAV9JFs+6pUQZp13TuspAUjnF+iM+dM=
  390. * http://user:example.com@localhost:8800/zero/?6f09182b8ea51997#WtLEUO5Epj9UHAV9JFs+6pUQZp13TuspAUjnF+iM+dM=
  391. * </pre>
  392. *
  393. * @name Helper.urls2links
  394. * @function
  395. * @param {HTMLElement} element
  396. */
  397. me.urls2links = function(element)
  398. {
  399. element.html(
  400. DOMPurify.sanitize(
  401. element.html().replace(
  402. /(((https?|ftp):\/\/[\w?!=&.\/-;#@~%+*-]+(?![\w\s?!&.\/;#~%"=-]>))|((magnet):[\w?=&.\/-;#@~%+*-]+))/ig,
  403. '<a href="$1" rel="nofollow noopener noreferrer">$1</a>'
  404. ),
  405. purifyHtmlConfig
  406. )
  407. );
  408. };
  409. /**
  410. * minimal sprintf emulation for %s and %d formats
  411. *
  412. * Note that this function needs the parameters in the same order as the
  413. * format strings appear in the string, contrary to the original.
  414. *
  415. * @see {@link https://stackoverflow.com/questions/610406/javascript-equivalent-to-printf-string-format#4795914}
  416. * @name Helper.sprintf
  417. * @function
  418. * @param {string} format
  419. * @param {...*} args - one or multiple parameters injected into format string
  420. * @return {string}
  421. */
  422. me.sprintf = function()
  423. {
  424. const args = Array.prototype.slice.call(arguments);
  425. let format = args[0],
  426. i = 1;
  427. return format.replace(/%(s|d)/g, function (m) {
  428. let val = args[i];
  429. if (m === '%d') {
  430. val = parseFloat(val);
  431. if (isNaN(val)) {
  432. val = 0;
  433. }
  434. }
  435. ++i;
  436. return val;
  437. });
  438. };
  439. /**
  440. * get value of cookie, if it was set, empty string otherwise
  441. *
  442. * @see {@link http://www.w3schools.com/js/js_cookies.asp}
  443. * @name Helper.getCookie
  444. * @function
  445. * @param {string} cname - may not be empty
  446. * @return {string}
  447. */
  448. me.getCookie = function(cname) {
  449. const name = cname + '=',
  450. ca = document.cookie.split(';');
  451. for (let i = 0; i < ca.length; ++i) {
  452. let c = ca[i];
  453. while (c.charAt(0) === ' ')
  454. {
  455. c = c.substring(1);
  456. }
  457. if (c.indexOf(name) === 0)
  458. {
  459. return c.substring(name.length, c.length);
  460. }
  461. }
  462. return '';
  463. };
  464. /**
  465. * get the current location (without search or hash part of the URL),
  466. * eg. https://example.com/path/?aaaa#bbbb --> https://example.com/path/
  467. *
  468. * @name Helper.baseUri
  469. * @function
  470. * @return {string}
  471. */
  472. me.baseUri = function()
  473. {
  474. // check for cached version
  475. if (baseUri !== null) {
  476. return baseUri;
  477. }
  478. baseUri = window.location.origin + window.location.pathname;
  479. return baseUri;
  480. };
  481. /**
  482. * wrap an object into a Paste, used for mocking in the unit tests
  483. *
  484. * @name Helper.PasteFactory
  485. * @function
  486. * @param {object} data
  487. * @return {Paste}
  488. */
  489. me.PasteFactory = function(data)
  490. {
  491. return new Paste(data);
  492. };
  493. /**
  494. * wrap an object into a Comment, used for mocking in the unit tests
  495. *
  496. * @name Helper.CommentFactory
  497. * @function
  498. * @param {object} data
  499. * @return {Comment}
  500. */
  501. me.CommentFactory = function(data)
  502. {
  503. return new Comment(data);
  504. };
  505. /**
  506. * convert all applicable characters to HTML entities
  507. *
  508. * @see {@link https://cheatsheetseries.owasp.org/cheatsheets/Cross_Site_Scripting_Prevention_Cheat_Sheet.html}
  509. * @name Helper.htmlEntities
  510. * @function
  511. * @param {string} str
  512. * @return {string} escaped HTML
  513. */
  514. me.htmlEntities = function(str) {
  515. return String(str).replace(
  516. /[&<>"'`=\/]/g, function(s) {
  517. return entityMap[s];
  518. }
  519. );
  520. }
  521. /**
  522. * calculate expiration date given initial date and expiration period
  523. *
  524. * @name Helper.calculateExpirationDate
  525. * @function
  526. * @param {Date} initialDate - may not be empty
  527. * @param {string|number} expirationDisplayStringOrSecondsToExpire - may not be empty
  528. * @return {Date}
  529. */
  530. me.calculateExpirationDate = function(initialDate, expirationDisplayStringOrSecondsToExpire) {
  531. let expirationDate = new Date(initialDate),
  532. secondsToExpiration = expirationDisplayStringOrSecondsToExpire;
  533. if (typeof expirationDisplayStringOrSecondsToExpire === 'string') {
  534. secondsToExpiration = me.durationToSeconds(expirationDisplayStringOrSecondsToExpire);
  535. }
  536. if (typeof secondsToExpiration !== 'number') {
  537. throw new Error('Cannot calculate expiration date.');
  538. }
  539. if (secondsToExpiration === 0) {
  540. return null;
  541. }
  542. expirationDate = expirationDate.setUTCSeconds(expirationDate.getUTCSeconds() + secondsToExpiration);
  543. return expirationDate;
  544. };
  545. /**
  546. * resets state, used for unit testing
  547. *
  548. * @name Helper.reset
  549. * @function
  550. */
  551. me.reset = function()
  552. {
  553. baseUri = null;
  554. };
  555. return me;
  556. })();
  557. /**
  558. * internationalization module
  559. *
  560. * @name I18n
  561. * @class
  562. */
  563. const I18n = (function () {
  564. const me = {};
  565. /**
  566. * const for string of loaded language
  567. *
  568. * @name I18n.languageLoadedEvent
  569. * @private
  570. * @prop {string}
  571. * @readonly
  572. */
  573. const languageLoadedEvent = 'languageLoaded';
  574. /**
  575. * supported languages, minus the built in 'en'
  576. *
  577. * @name I18n.supportedLanguages
  578. * @private
  579. * @prop {string[]}
  580. * @readonly
  581. */
  582. const supportedLanguages = ['ar', 'bg', 'ca', 'co', 'cs', 'de', 'el', 'es', 'et', 'fi', 'fr', 'he', 'hu', 'id', 'it', 'ja', 'jbo', 'lt', 'no', 'nl', 'pl', 'pt', 'oc', 'ru', 'sk', 'sl', 'th', 'tr', 'uk', 'zh'];
  583. /**
  584. * built in language
  585. *
  586. * @name I18n.language
  587. * @private
  588. * @prop {string|null}
  589. */
  590. let language = null;
  591. /**
  592. * translation cache
  593. *
  594. * @name I18n.translations
  595. * @private
  596. * @enum {Object}
  597. */
  598. let translations = {};
  599. /**
  600. * translate a string, alias for I18n.translate
  601. *
  602. * @name I18n._
  603. * @function
  604. * @param {jQuery} $element - optional
  605. * @param {string} messageId
  606. * @param {...*} args - one or multiple parameters injected into placeholders
  607. * @return {string}
  608. */
  609. me._ = function()
  610. {
  611. return me.translate.apply(this, arguments);
  612. };
  613. /**
  614. * translate a string
  615. *
  616. * Optionally pass a jQuery element as the first parameter, to automatically
  617. * let the text of this element be replaced. In case the (asynchronously
  618. * loaded) language is not downloaded yet, this will make sure the string
  619. * is replaced when it eventually gets loaded. Using this is both simpler
  620. * and more secure, as it avoids potential XSS when inserting text.
  621. * The next parameter is the message ID, matching the ones found in
  622. * the translation files under the i18n directory.
  623. * Any additional parameters will get inserted into the message ID in
  624. * place of %s (strings) or %d (digits), applying the appropriate plural
  625. * in case of digits. See also Helper.sprintf().
  626. *
  627. * @name I18n.translate
  628. * @function
  629. * @param {jQuery} $element - optional
  630. * @param {string} messageId
  631. * @param {...*} args - one or multiple parameters injected into placeholders
  632. * @return {string}
  633. */
  634. me.translate = function()
  635. {
  636. // convert parameters to array
  637. let args = Array.prototype.slice.call(arguments),
  638. messageId,
  639. $element = null;
  640. // parse arguments
  641. if (args[0] instanceof jQuery) {
  642. // optional jQuery element as first parameter
  643. $element = args[0];
  644. args.shift();
  645. }
  646. // extract messageId from arguments
  647. let usesPlurals = $.isArray(args[0]);
  648. if (usesPlurals) {
  649. // use the first plural form as messageId, otherwise the singular
  650. messageId = args[0].length > 1 ? args[0][1] : args[0][0];
  651. } else {
  652. messageId = args[0];
  653. }
  654. if (messageId.length === 0) {
  655. return messageId;
  656. }
  657. // if no translation string cannot be found (in translations object)
  658. if (!translations.hasOwnProperty(messageId) || language === null) {
  659. // if language is still loading and we have an elemt assigned
  660. if (language === null && $element !== null) {
  661. // handle the error by attaching the language loaded event
  662. let orgArguments = arguments;
  663. $(document).on(languageLoadedEvent, function () {
  664. // re-execute this function
  665. me.translate.apply(this, orgArguments);
  666. });
  667. // and fall back to English for now until the real language
  668. // file is loaded
  669. }
  670. // for all other languages than English for which this behaviour
  671. // is expected as it is built-in, log error
  672. if (language !== null && language !== 'en') {
  673. console.error('Missing translation for: \'' + messageId + '\' in language ' + language);
  674. // fallback to English
  675. }
  676. // save English translation (should be the same on both sides)
  677. translations[messageId] = args[0];
  678. }
  679. // lookup plural translation
  680. if (usesPlurals && $.isArray(translations[messageId])) {
  681. let n = parseInt(args[1] || 1, 10),
  682. key = me.getPluralForm(n),
  683. maxKey = translations[messageId].length - 1;
  684. if (key > maxKey) {
  685. key = maxKey;
  686. }
  687. args[0] = translations[messageId][key];
  688. args[1] = n;
  689. } else {
  690. // lookup singular translation
  691. args[0] = translations[messageId];
  692. }
  693. // messageID may contain links, but should be from a trusted source (code or translation JSON files)
  694. let containsLinks = args[0].indexOf('<a') !== -1;
  695. // prevent double encoding, when we insert into a text node
  696. if (containsLinks || $element === null) {
  697. for (let i = 0; i < args.length; ++i) {
  698. // parameters (i > 0) may never contain HTML as they may come from untrusted parties
  699. if ((containsLinks ? i > 1 : i > 0) || !containsLinks) {
  700. args[i] = Helper.htmlEntities(args[i]);
  701. }
  702. }
  703. }
  704. // format string
  705. let output = Helper.sprintf.apply(this, args);
  706. if (containsLinks) {
  707. // only allow tags/attributes we actually use in translations
  708. output = DOMPurify.sanitize(
  709. output, {
  710. ALLOWED_TAGS: ['a', 'i', 'span'],
  711. ALLOWED_ATTR: ['href', 'id']
  712. }
  713. );
  714. }
  715. // if $element is given, insert translation
  716. if ($element !== null) {
  717. if (containsLinks) {
  718. $element.html(output);
  719. } else {
  720. // text node takes care of entity encoding
  721. $element.text(output);
  722. }
  723. return '';
  724. }
  725. return output;
  726. };
  727. /**
  728. * get currently loaded language
  729. *
  730. * @name I18n.getLanguage
  731. * @function
  732. * @return {string}
  733. */
  734. me.getLanguage = function()
  735. {
  736. return language;
  737. };
  738. /**
  739. * per language functions to use to determine the plural form
  740. *
  741. * @see {@link https://docs.translatehouse.org/projects/localization-guide/en/latest/l10n/pluralforms.html}
  742. * @name I18n.getPluralForm
  743. * @function
  744. * @param {int} n
  745. * @return {int} array key
  746. */
  747. me.getPluralForm = function(n) {
  748. switch (language)
  749. {
  750. case 'ar':
  751. return n === 0 ? 0 : (n === 1 ? 1 : (n === 2 ? 2 : (n % 100 >= 3 && n % 100 <= 10 ? 3 : (n % 100 >= 11 ? 4 : 5))));
  752. case 'cs':
  753. case 'sk':
  754. return n === 1 ? 0 : (n >= 2 && n <= 4 ? 1 : 2);
  755. case 'co':
  756. case 'fr':
  757. case 'oc':
  758. case 'tr':
  759. case 'zh':
  760. return n > 1 ? 1 : 0;
  761. case 'he':
  762. return n === 1 ? 0 : (n === 2 ? 1 : ((n < 0 || n > 10) && (n % 10 === 0) ? 2 : 3));
  763. case 'id':
  764. case 'ja':
  765. case 'jbo':
  766. case 'th':
  767. return 0;
  768. case 'lt':
  769. return n % 10 === 1 && n % 100 !== 11 ? 0 : ((n % 10 >= 2 && n % 100 < 10 || n % 100 >= 20) ? 1 : 2);
  770. case 'pl':
  771. return n === 1 ? 0 : (n % 10 >= 2 && n %10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2);
  772. case 'ru':
  773. case 'uk':
  774. return n % 10 === 1 && n % 100 !== 11 ? 0 : (n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2);
  775. case 'sl':
  776. return n % 100 === 1 ? 1 : (n % 100 === 2 ? 2 : (n % 100 === 3 || n % 100 === 4 ? 3 : 0));
  777. // bg, ca, de, el, en, es, et, fi, hu, it, nl, no, pt
  778. default:
  779. return n !== 1 ? 1 : 0;
  780. }
  781. };
  782. /**
  783. * load translations into cache
  784. *
  785. * @name I18n.loadTranslations
  786. * @function
  787. */
  788. me.loadTranslations = function()
  789. {
  790. let newLanguage = Helper.getCookie('lang');
  791. // auto-select language based on browser settings
  792. if (newLanguage.length === 0) {
  793. newLanguage = (navigator.language || navigator.userLanguage || 'en');
  794. if (newLanguage.indexOf('-') > 0) {
  795. newLanguage = newLanguage.split('-')[0];
  796. }
  797. }
  798. // if language is already used skip update
  799. if (newLanguage === language) {
  800. return;
  801. }
  802. // if language is built-in (English) skip update
  803. if (newLanguage === 'en') {
  804. language = 'en';
  805. return;
  806. }
  807. // if language is not supported, show error
  808. if (supportedLanguages.indexOf(newLanguage) === -1) {
  809. console.error('Language \'%s\' is not supported. Translation failed, fallback to English.', newLanguage);
  810. language = 'en';
  811. return;
  812. }
  813. // load strings from JSON
  814. $.getJSON('i18n/' + newLanguage + '.json', function(data) {
  815. language = newLanguage;
  816. translations = data;
  817. $(document).triggerHandler(languageLoadedEvent);
  818. }).fail(function (data, textStatus, errorMsg) {
  819. console.error('Language \'%s\' could not be loaded (%s: %s). Translation failed, fallback to English.', newLanguage, textStatus, errorMsg);
  820. language = 'en';
  821. });
  822. };
  823. /**
  824. * resets state, used for unit testing
  825. *
  826. * @name I18n.reset
  827. * @function
  828. */
  829. me.reset = function(mockLanguage, mockTranslations)
  830. {
  831. language = mockLanguage || null;
  832. translations = mockTranslations || {};
  833. };
  834. return me;
  835. })();
  836. /**
  837. * handles everything related to en/decryption
  838. *
  839. * @name CryptTool
  840. * @class
  841. */
  842. const CryptTool = (function () {
  843. const me = {};
  844. /**
  845. * base58 encoder & decoder
  846. *
  847. * @private
  848. */
  849. let base58 = new baseX('123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz');
  850. /**
  851. * convert UTF-8 string stored in a DOMString to a standard UTF-16 DOMString
  852. *
  853. * Iterates over the bytes of the message, converting them all hexadecimal
  854. * percent encoded representations, then URI decodes them all
  855. *
  856. * @name CryptTool.utf8To16
  857. * @function
  858. * @private
  859. * @param {string} message UTF-8 string
  860. * @return {string} UTF-16 string
  861. */
  862. function utf8To16(message)
  863. {
  864. return decodeURIComponent(
  865. message.split('').map(
  866. function(character)
  867. {
  868. return '%' + ('00' + character.charCodeAt(0).toString(16)).slice(-2);
  869. }
  870. ).join('')
  871. );
  872. }
  873. /**
  874. * convert DOMString (UTF-16) to a UTF-8 string stored in a DOMString
  875. *
  876. * URI encodes the message, then finds the percent encoded characters
  877. * and transforms these hexadecimal representation back into bytes
  878. *
  879. * @name CryptTool.utf16To8
  880. * @function
  881. * @private
  882. * @param {string} message UTF-16 string
  883. * @return {string} UTF-8 string
  884. */
  885. function utf16To8(message)
  886. {
  887. return encodeURIComponent(message).replace(
  888. /%([0-9A-F]{2})/g,
  889. function (match, hexCharacter)
  890. {
  891. return String.fromCharCode('0x' + hexCharacter);
  892. }
  893. );
  894. }
  895. /**
  896. * convert ArrayBuffer into a UTF-8 string
  897. *
  898. * Iterates over the bytes of the array, catenating them into a string
  899. *
  900. * @name CryptTool.arraybufferToString
  901. * @function
  902. * @private
  903. * @param {ArrayBuffer} messageArray
  904. * @return {string} message
  905. */
  906. function arraybufferToString(messageArray)
  907. {
  908. const array = new Uint8Array(messageArray);
  909. let message = '',
  910. i = 0;
  911. while(i < array.length) {
  912. message += String.fromCharCode(array[i++]);
  913. }
  914. return message;
  915. }
  916. /**
  917. * convert UTF-8 string into a Uint8Array
  918. *
  919. * Iterates over the bytes of the message, writing them to the array
  920. *
  921. * @name CryptTool.stringToArraybuffer
  922. * @function
  923. * @private
  924. * @param {string} message UTF-8 string
  925. * @return {Uint8Array} array
  926. */
  927. function stringToArraybuffer(message)
  928. {
  929. const messageArray = new Uint8Array(message.length);
  930. for (let i = 0; i < message.length; ++i) {
  931. messageArray[i] = message.charCodeAt(i);
  932. }
  933. return messageArray;
  934. }
  935. /**
  936. * compress a string (deflate compression), returns buffer
  937. *
  938. * @name CryptTool.compress
  939. * @async
  940. * @function
  941. * @private
  942. * @param {string} message
  943. * @param {string} mode
  944. * @param {object} zlib
  945. * @throws {string}
  946. * @return {ArrayBuffer} data
  947. */
  948. async function compress(message, mode, zlib)
  949. {
  950. message = stringToArraybuffer(
  951. utf16To8(message)
  952. );
  953. if (mode === 'zlib') {
  954. if (typeof zlib === 'undefined') {
  955. throw 'Error compressing paste, due to missing WebAssembly support.'
  956. }
  957. return zlib.deflate(message).buffer;
  958. }
  959. return message;
  960. }
  961. /**
  962. * decompress potentially base64 encoded, deflate compressed buffer, returns string
  963. *
  964. * @name CryptTool.decompress
  965. * @async
  966. * @function
  967. * @private
  968. * @param {ArrayBuffer} data
  969. * @param {string} mode
  970. * @param {object} zlib
  971. * @throws {string}
  972. * @return {string} message
  973. */
  974. async function decompress(data, mode, zlib)
  975. {
  976. if (mode === 'zlib' || mode === 'none') {
  977. if (mode === 'zlib') {
  978. if (typeof zlib === 'undefined') {
  979. throw 'Error decompressing paste, due to missing WebAssembly support.'
  980. }
  981. data = zlib.inflate(
  982. new Uint8Array(data)
  983. ).buffer;
  984. }
  985. return utf8To16(
  986. arraybufferToString(data)
  987. );
  988. }
  989. // detect presence of Base64.js, indicating legacy ZeroBin paste
  990. if (typeof Base64 === 'undefined') {
  991. return utf8To16(
  992. RawDeflate.inflate(
  993. utf8To16(
  994. atob(
  995. arraybufferToString(data)
  996. )
  997. )
  998. )
  999. );
  1000. } else {
  1001. return Base64.btou(
  1002. RawDeflate.inflate(
  1003. Base64.fromBase64(
  1004. arraybufferToString(data)
  1005. )
  1006. )
  1007. );
  1008. }
  1009. }
  1010. /**
  1011. * returns specified number of random bytes
  1012. *
  1013. * @name CryptTool.getRandomBytes
  1014. * @function
  1015. * @private
  1016. * @param {int} length number of random bytes to fetch
  1017. * @throws {string}
  1018. * @return {string} random bytes
  1019. */
  1020. function getRandomBytes(length)
  1021. {
  1022. let bytes = '';
  1023. const byteArray = new Uint8Array(length);
  1024. window.crypto.getRandomValues(byteArray);
  1025. for (let i = 0; i < length; ++i) {
  1026. bytes += String.fromCharCode(byteArray[i]);
  1027. }
  1028. return bytes;
  1029. }
  1030. /**
  1031. * derive cryptographic key from key string and password
  1032. *
  1033. * @name CryptTool.deriveKey
  1034. * @async
  1035. * @function
  1036. * @private
  1037. * @param {string} key
  1038. * @param {string} password
  1039. * @param {array} spec cryptographic specification
  1040. * @return {CryptoKey} derived key
  1041. */
  1042. async function deriveKey(key, password, spec)
  1043. {
  1044. let keyArray = stringToArraybuffer(key);
  1045. if (password.length > 0) {
  1046. // version 1 pastes did append the passwords SHA-256 hash in hex
  1047. if (spec[7] === 'rawdeflate') {
  1048. let passwordBuffer = await window.crypto.subtle.digest(
  1049. {name: 'SHA-256'},
  1050. stringToArraybuffer(
  1051. utf16To8(password)
  1052. )
  1053. ).catch(Alert.showError);
  1054. password = Array.prototype.map.call(
  1055. new Uint8Array(passwordBuffer),
  1056. x => ('00' + x.toString(16)).slice(-2)
  1057. ).join('');
  1058. }
  1059. let passwordArray = stringToArraybuffer(password),
  1060. newKeyArray = new Uint8Array(keyArray.length + passwordArray.length);
  1061. newKeyArray.set(keyArray, 0);
  1062. newKeyArray.set(passwordArray, keyArray.length);
  1063. keyArray = newKeyArray;
  1064. }
  1065. // import raw key
  1066. const importedKey = await window.crypto.subtle.importKey(
  1067. 'raw', // only 'raw' is allowed
  1068. keyArray,
  1069. {name: 'PBKDF2'}, // we use PBKDF2 for key derivation
  1070. false, // the key may not be exported
  1071. ['deriveKey'] // we may only use it for key derivation
  1072. ).catch(Alert.showError);
  1073. // derive a stronger key for use with AES
  1074. return window.crypto.subtle.deriveKey(
  1075. {
  1076. name: 'PBKDF2', // we use PBKDF2 for key derivation
  1077. salt: stringToArraybuffer(spec[1]), // salt used in HMAC
  1078. iterations: spec[2], // amount of iterations to apply
  1079. hash: {name: 'SHA-256'} // can be "SHA-1", "SHA-256", "SHA-384" or "SHA-512"
  1080. },
  1081. importedKey,
  1082. {
  1083. name: 'AES-' + spec[6].toUpperCase(), // can be any supported AES algorithm ("AES-CTR", "AES-CBC", "AES-CMAC", "AES-GCM", "AES-CFB", "AES-KW", "ECDH", "DH" or "HMAC")
  1084. length: spec[3] // can be 128, 192 or 256
  1085. },
  1086. false, // the key may not be exported
  1087. ['encrypt', 'decrypt'] // we may only use it for en- and decryption
  1088. ).catch(Alert.showError);
  1089. }
  1090. /**
  1091. * gets crypto settings from specification and authenticated data
  1092. *
  1093. * @name CryptTool.cryptoSettings
  1094. * @function
  1095. * @private
  1096. * @param {string} adata authenticated data
  1097. * @param {array} spec cryptographic specification
  1098. * @return {object} crypto settings
  1099. */
  1100. function cryptoSettings(adata, spec)
  1101. {
  1102. return {
  1103. name: 'AES-' + spec[6].toUpperCase(), // can be any supported AES algorithm ("AES-CTR", "AES-CBC", "AES-CMAC", "AES-GCM", "AES-CFB", "AES-KW", "ECDH", "DH" or "HMAC")
  1104. iv: stringToArraybuffer(spec[0]), // the initialization vector you used to encrypt
  1105. additionalData: stringToArraybuffer(adata), // the addtional data you used during encryption (if any)
  1106. tagLength: spec[4] // the length of the tag you used to encrypt (if any)
  1107. };
  1108. }
  1109. /**
  1110. * compress, then encrypt message with given key and password
  1111. *
  1112. * @name CryptTool.cipher
  1113. * @async
  1114. * @function
  1115. * @param {string} key
  1116. * @param {string} password
  1117. * @param {string} message
  1118. * @param {array} adata
  1119. * @return {array} encrypted message in base64 encoding & adata containing encryption spec
  1120. */
  1121. me.cipher = async function(key, password, message, adata)
  1122. {
  1123. let zlib = (await z);
  1124. // AES in Galois Counter Mode, keysize 256 bit,
  1125. // authentication tag 128 bit, 10000 iterations in key derivation
  1126. const compression = (
  1127. typeof zlib === 'undefined' ?
  1128. 'none' : // client lacks support for WASM
  1129. ($('body').data('compression') || 'zlib')
  1130. ),
  1131. spec = [
  1132. getRandomBytes(16), // initialization vector
  1133. getRandomBytes(8), // salt
  1134. 100000, // iterations
  1135. 256, // key size
  1136. 128, // tag size
  1137. 'aes', // algorithm
  1138. 'gcm', // algorithm mode
  1139. compression // compression
  1140. ], encodedSpec = [];
  1141. for (let i = 0; i < spec.length; ++i) {
  1142. encodedSpec[i] = i < 2 ? btoa(spec[i]) : spec[i];
  1143. }
  1144. if (adata.length === 0) {
  1145. // comment
  1146. adata = encodedSpec;
  1147. } else if (adata[0] === null) {
  1148. // paste
  1149. adata[0] = encodedSpec;
  1150. }
  1151. // finally, encrypt message
  1152. return [
  1153. btoa(
  1154. arraybufferToString(
  1155. await window.crypto.subtle.encrypt(
  1156. cryptoSettings(JSON.stringify(adata), spec),
  1157. await deriveKey(key, password, spec),
  1158. await compress(message, compression, zlib)
  1159. ).catch(Alert.showError)
  1160. )
  1161. ),
  1162. adata
  1163. ];
  1164. };
  1165. /**
  1166. * decrypt message with key, then decompress
  1167. *
  1168. * @name CryptTool.decipher
  1169. * @async
  1170. * @function
  1171. * @param {string} key
  1172. * @param {string} password
  1173. * @param {string|object} data encrypted message
  1174. * @return {string} decrypted message, empty if decryption failed
  1175. */
  1176. me.decipher = async function(key, password, data)
  1177. {
  1178. let adataString, spec, cipherMessage, plaintext;
  1179. let zlib = (await z);
  1180. if (data instanceof Array) {
  1181. // version 2
  1182. adataString = JSON.stringify(data[1]);
  1183. // clone the array instead of passing the reference
  1184. spec = (data[1][0] instanceof Array ? data[1][0] : data[1]).slice();
  1185. cipherMessage = data[0];
  1186. } else if (typeof data === 'string') {
  1187. // version 1
  1188. let object = JSON.parse(data);
  1189. adataString = atob(object.adata);
  1190. spec = [
  1191. object.iv,
  1192. object.salt,
  1193. object.iter,
  1194. object.ks,
  1195. object.ts,
  1196. object.cipher,
  1197. object.mode,
  1198. 'rawdeflate'
  1199. ];
  1200. cipherMessage = object.ct;
  1201. } else {
  1202. throw 'unsupported message format';
  1203. }
  1204. spec[0] = atob(spec[0]);
  1205. spec[1] = atob(spec[1]);
  1206. if (spec[7] === 'zlib') {
  1207. if (typeof zlib === 'undefined') {
  1208. throw 'Error decompressing paste, due to missing WebAssembly support.'
  1209. }
  1210. }
  1211. try {
  1212. plaintext = await window.crypto.subtle.decrypt(
  1213. cryptoSettings(adataString, spec),
  1214. await deriveKey(key, password, spec),
  1215. stringToArraybuffer(
  1216. atob(cipherMessage)
  1217. )
  1218. );
  1219. } catch(err) {
  1220. console.error(err);
  1221. return '';
  1222. }
  1223. try {
  1224. return await decompress(plaintext, spec[7], zlib);
  1225. } catch(err) {
  1226. Alert.showError(err);
  1227. return err;
  1228. }
  1229. };
  1230. /**
  1231. * returns a random symmetric key
  1232. *
  1233. * generates 256 bit long keys (8 Bits * 32) for AES with 256 bit long blocks
  1234. *
  1235. * @name CryptTool.getSymmetricKey
  1236. * @function
  1237. * @throws {string}
  1238. * @return {string} raw bytes
  1239. */
  1240. me.getSymmetricKey = function()
  1241. {
  1242. return getRandomBytes(32);
  1243. };
  1244. /**
  1245. * base58 encode a DOMString (UTF-16)
  1246. *
  1247. * @name CryptTool.base58encode
  1248. * @function
  1249. * @param {string} input
  1250. * @return {string} output
  1251. */
  1252. me.base58encode = function(input)
  1253. {
  1254. return base58.encode(
  1255. stringToArraybuffer(input)
  1256. );
  1257. }
  1258. /**
  1259. * base58 decode a DOMString (UTF-16)
  1260. *
  1261. * @name CryptTool.base58decode
  1262. * @function
  1263. * @param {string} input
  1264. * @return {string} output
  1265. */
  1266. me.base58decode = function(input)
  1267. {
  1268. return arraybufferToString(
  1269. base58.decode(input)
  1270. );
  1271. }
  1272. return me;
  1273. })();
  1274. /**
  1275. * (Model) Data source (aka MVC)
  1276. *
  1277. * @name Model
  1278. * @class
  1279. */
  1280. const Model = (function () {
  1281. const me = {};
  1282. let id = null,
  1283. pasteData = null,
  1284. symmetricKey = null,
  1285. $templates;
  1286. /**
  1287. * returns the expiration set in the HTML
  1288. *
  1289. * @name Model.getExpirationDefault
  1290. * @function
  1291. * @return string
  1292. */
  1293. me.getExpirationDefault = function()
  1294. {
  1295. return $('#pasteExpiration').val();
  1296. };
  1297. /**
  1298. * returns the format set in the HTML
  1299. *
  1300. * @name Model.getFormatDefault
  1301. * @function
  1302. * @return string
  1303. */
  1304. me.getFormatDefault = function()
  1305. {
  1306. return $('#pasteFormatter').val();
  1307. };
  1308. /**
  1309. * returns the paste data (including the cipher data)
  1310. *
  1311. * @name Model.getPasteData
  1312. * @function
  1313. * @param {function} callback (optional) Called when data is available
  1314. * @param {function} useCache (optional) Whether to use the cache or
  1315. * force a data reload. Default: true
  1316. * @return string
  1317. */
  1318. me.getPasteData = function(callback, useCache)
  1319. {
  1320. // use cache if possible/allowed
  1321. if (useCache !== false && pasteData !== null) {
  1322. //execute callback
  1323. if (typeof callback === 'function') {
  1324. return callback(pasteData);
  1325. }
  1326. // alternatively just using inline
  1327. return pasteData;
  1328. }
  1329. // reload data
  1330. ServerInteraction.prepare();
  1331. ServerInteraction.setUrl(Helper.baseUri() + '?pasteid=' + me.getPasteId());
  1332. ServerInteraction.setFailure(function (status, data) {
  1333. // revert loading status…
  1334. Alert.hideLoading();
  1335. TopNav.showViewButtons();
  1336. // show error message
  1337. Alert.showError(ServerInteraction.parseUploadError(status, data, 'get paste data'));
  1338. });
  1339. ServerInteraction.setSuccess(function (status, data) {
  1340. pasteData = new Paste(data);
  1341. if (typeof callback === 'function') {
  1342. return callback(pasteData);
  1343. }
  1344. });
  1345. ServerInteraction.run();
  1346. };
  1347. /**
  1348. * get the pastes unique identifier from the URL,
  1349. * eg. https://example.com/path/?c05354954c49a487#dfdsdgdgdfgdf returns c05354954c49a487
  1350. *
  1351. * @name Model.getPasteId
  1352. * @function
  1353. * @return {string} unique identifier
  1354. * @throws {string}
  1355. */
  1356. me.getPasteId = function()
  1357. {
  1358. const idRegEx = /^[a-z0-9]{16}$/;
  1359. // return cached value
  1360. if (id !== null) {
  1361. return id;
  1362. }
  1363. // do use URL interface, if possible
  1364. const url = new URL(window.location);
  1365. for (const param of url.searchParams) {
  1366. const key = param[0];
  1367. const value = param[1];
  1368. if (value === '' && idRegEx.test(key)) {
  1369. // safe, as the whole regex is matched
  1370. id = key;
  1371. return key;
  1372. }
  1373. }
  1374. if (id === null) {
  1375. throw 'no paste id given';
  1376. }
  1377. return id;
  1378. }
  1379. /**
  1380. * returns true, when the URL has a delete token and the current call was used for deleting a paste.
  1381. *
  1382. * @name Model.hasDeleteToken
  1383. * @function
  1384. * @return {bool}
  1385. */
  1386. me.hasDeleteToken = function()
  1387. {
  1388. return window.location.search.indexOf('deletetoken') !== -1;
  1389. }
  1390. /**
  1391. * return the deciphering key stored in anchor part of the URL
  1392. *
  1393. * @name Model.getPasteKey
  1394. * @function
  1395. * @return {string|null} key
  1396. * @throws {string}
  1397. */
  1398. me.getPasteKey = function()
  1399. {
  1400. if (symmetricKey === null) {
  1401. let newKey = window.location.hash.substring(1);
  1402. if (newKey === '') {
  1403. throw 'no encryption key given';
  1404. }
  1405. // Some web 2.0 services and redirectors add data AFTER the anchor
  1406. // (such as &utm_source=...). We will strip any additional data.
  1407. let ampersandPos = newKey.indexOf('&');
  1408. if (ampersandPos > -1)
  1409. {
  1410. newKey = newKey.substring(0, ampersandPos);
  1411. }
  1412. // version 2 uses base58, version 1 uses base64 without decoding
  1413. try {
  1414. // base58 encode strips NULL bytes at the beginning of the
  1415. // string, so we re-add them if necessary
  1416. symmetricKey = CryptTool.base58decode(newKey).padStart(32, '\u0000');
  1417. } catch(e) {
  1418. symmetricKey = newKey;
  1419. }
  1420. }
  1421. return symmetricKey;
  1422. };
  1423. /**
  1424. * returns a jQuery copy of the HTML template
  1425. *
  1426. * @name Model.getTemplate
  1427. * @function
  1428. * @param {string} name - the name of the template
  1429. * @return {jQuery}
  1430. */
  1431. me.getTemplate = function(name)
  1432. {
  1433. // find template
  1434. let $element = $templates.find('#' + name + 'template').clone(true);
  1435. // change ID to avoid collisions (one ID should really be unique)
  1436. return $element.prop('id', name);
  1437. };
  1438. /**
  1439. * resets state, used for unit testing
  1440. *
  1441. * @name Model.reset
  1442. * @function
  1443. */
  1444. me.reset = function()
  1445. {
  1446. pasteData = $templates = id = symmetricKey = null;
  1447. };
  1448. /**
  1449. * init navigation manager
  1450. *
  1451. * preloads jQuery elements
  1452. *
  1453. * @name Model.init
  1454. * @function
  1455. */
  1456. me.init = function()
  1457. {
  1458. $templates = $('#templates');
  1459. };
  1460. return me;
  1461. })();
  1462. /**
  1463. * Helper functions for user interface
  1464. *
  1465. * everything directly UI-related, which fits nowhere else
  1466. *
  1467. * @name UiHelper
  1468. * @class
  1469. */
  1470. const UiHelper = (function () {
  1471. const me = {};
  1472. /**
  1473. * handle history (pop) state changes
  1474. *
  1475. * currently this does only handle redirects to the home page.
  1476. *
  1477. * @name UiHelper.historyChange
  1478. * @private
  1479. * @function
  1480. * @param {Event} event
  1481. */
  1482. function historyChange(event)
  1483. {
  1484. let currentLocation = Helper.baseUri();
  1485. if (event.originalEvent.state === null && // no state object passed
  1486. event.target.location.href === currentLocation && // target location is home page
  1487. window.location.href === currentLocation // and we are not already on the home page
  1488. ) {
  1489. // redirect to home page
  1490. window.location.href = currentLocation;
  1491. }
  1492. }
  1493. /**
  1494. * reload the page
  1495. *
  1496. * This takes the user to the PrivateBin homepage.
  1497. *
  1498. * @name UiHelper.reloadHome
  1499. * @function
  1500. */
  1501. me.reloadHome = function()
  1502. {
  1503. window.location.href = Helper.baseUri();
  1504. };
  1505. /**
  1506. * checks whether the element is currently visible in the viewport (so
  1507. * the user can actually see it)
  1508. *
  1509. * @see {@link https://stackoverflow.com/a/40658647}
  1510. * @name UiHelper.isVisible
  1511. * @function
  1512. * @param {jQuery} $element The link hash to move to.
  1513. */
  1514. me.isVisible = function($element)
  1515. {
  1516. let elementTop = $element.offset().top,
  1517. viewportTop = $(window).scrollTop(),
  1518. viewportBottom = viewportTop + $(window).height();
  1519. return elementTop > viewportTop && elementTop < viewportBottom;
  1520. };
  1521. /**
  1522. * scrolls to a specific element
  1523. *
  1524. * @see {@link https://stackoverflow.com/questions/4198041/jquery-smooth-scroll-to-an-anchor#answer-12714767}
  1525. * @name UiHelper.scrollTo
  1526. * @function
  1527. * @param {jQuery} $element The link hash to move to.
  1528. * @param {(number|string)} animationDuration passed to jQuery .animate, when set to 0 the animation is skipped
  1529. * @param {string} animationEffect passed to jQuery .animate
  1530. * @param {function} finishedCallback function to call after animation finished
  1531. */
  1532. me.scrollTo = function($element, animationDuration, animationEffect, finishedCallback)
  1533. {
  1534. let $body = $('html, body'),
  1535. margin = 50,
  1536. callbackCalled = false,
  1537. dest = 0;
  1538. // calculate destination place
  1539. // if it would scroll out of the screen at the bottom only scroll it as
  1540. // far as the screen can go
  1541. if ($element.offset().top > $(document).height() - $(window).height()) {
  1542. dest = $(document).height() - $(window).height();
  1543. } else {
  1544. dest = $element.offset().top - margin;
  1545. }
  1546. // skip animation if duration is set to 0
  1547. if (animationDuration === 0) {
  1548. window.scrollTo(0, dest);
  1549. } else {
  1550. // stop previous animation
  1551. $body.stop();
  1552. // scroll to destination
  1553. $body.animate({
  1554. scrollTop: dest
  1555. }, animationDuration, animationEffect);
  1556. }
  1557. // as we have finished we can enable scrolling again
  1558. $body.queue(function (next) {
  1559. if (!callbackCalled) {
  1560. // call user function if needed
  1561. if (typeof finishedCallback !== 'undefined') {
  1562. finishedCallback();
  1563. }
  1564. // prevent calling this function twice
  1565. callbackCalled = true;
  1566. }
  1567. next();
  1568. });
  1569. };
  1570. /**
  1571. * trigger a history (pop) state change
  1572. *
  1573. * used to test the UiHelper.historyChange private function
  1574. *
  1575. * @name UiHelper.mockHistoryChange
  1576. * @function
  1577. * @param {string} state (optional) state to mock
  1578. */
  1579. me.mockHistoryChange = function(state)
  1580. {
  1581. if (typeof state === 'undefined') {
  1582. state = null;
  1583. }
  1584. historyChange($.Event('popstate', {originalEvent: new PopStateEvent('popstate', {state: state}), target: window}));
  1585. };
  1586. /**
  1587. * initialize
  1588. *
  1589. * @name UiHelper.init
  1590. * @function
  1591. */
  1592. me.init = function()
  1593. {
  1594. // update link to home page
  1595. $('.reloadlink').prop('href', Helper.baseUri());
  1596. $(window).on('popstate', historyChange);
  1597. };
  1598. return me;
  1599. })();
  1600. /**
  1601. * Alert/error manager
  1602. *
  1603. * @name Alert
  1604. * @class
  1605. */
  1606. const Alert = (function () {
  1607. const me = {};
  1608. let $errorMessage,
  1609. $loadingIndicator,
  1610. $statusMessage,
  1611. $remainingTime,
  1612. currentIcon,
  1613. customHandler;
  1614. const alertType = [
  1615. 'loading', // not in bootstrap CSS, but using a plausible value here
  1616. 'info', // status icon
  1617. 'warning', // warning icon
  1618. 'danger' // error icon
  1619. ];
  1620. /**
  1621. * forwards a request to the i18n module and shows the element
  1622. *
  1623. * @name Alert.handleNotification
  1624. * @private
  1625. * @function
  1626. * @param {int} id - id of notification
  1627. * @param {jQuery} $element - jQuery object
  1628. * @param {string|array} args
  1629. * @param {string|null} icon - optional, icon
  1630. */
  1631. function handleNotification(id, $element, args, icon)
  1632. {
  1633. // basic parsing/conversion of parameters
  1634. if (typeof icon === 'undefined') {
  1635. icon = null;
  1636. }
  1637. if (typeof args === 'undefined') {
  1638. args = null;
  1639. } else if (typeof args === 'string') {
  1640. // convert string to array if needed
  1641. args = [args];
  1642. } else if (args instanceof Error) {
  1643. // extract message into array if needed
  1644. args = [args.message];
  1645. }
  1646. // pass to custom handler if defined
  1647. if (typeof customHandler === 'function') {
  1648. let handlerResult = customHandler(alertType[id], $element, args, icon);
  1649. if (handlerResult === true) {
  1650. // if it returns true, skip own handler
  1651. return;
  1652. }
  1653. if (handlerResult instanceof jQuery) {
  1654. // continue processing with new element
  1655. $element = handlerResult;
  1656. icon = null; // icons not supported in this case
  1657. }
  1658. }
  1659. let $translationTarget = $element;
  1660. // handle icon, if template uses one
  1661. const $glyphIcon = $element.find(':first');
  1662. if ($glyphIcon.length) {
  1663. // if there is an icon, we need to provide an inner element
  1664. // to translate the message into, instead of the parent
  1665. $translationTarget = $('<span>');
  1666. $element.html(' ').prepend($glyphIcon).append($translationTarget);
  1667. if (icon !== null && // icon was passed
  1668. icon !== currentIcon[id] // and it differs from current icon
  1669. ) {
  1670. // remove (previous) icon
  1671. $glyphIcon.removeClass(currentIcon[id]);
  1672. // any other thing as a string (e.g. 'null') (only) removes the icon
  1673. if (typeof icon === 'string') {
  1674. // set new icon
  1675. currentIcon[id] = 'glyphicon-' + icon;
  1676. $glyphIcon.addClass(currentIcon[id]);
  1677. }
  1678. }
  1679. }
  1680. // show text
  1681. if (args !== null) {
  1682. // add jQuery object to it as first parameter
  1683. args.unshift($translationTarget);
  1684. // pass it to I18n
  1685. I18n._.apply(this, args);
  1686. }
  1687. // show notification
  1688. $element.removeClass('hidden');
  1689. }
  1690. /**
  1691. * display a status message
  1692. *
  1693. * This automatically passes the text to I18n for translation.
  1694. *
  1695. * @name Alert.showStatus
  1696. * @function
  1697. * @param {string|array} message string, use an array for %s/%d options
  1698. * @param {string|null} icon optional, the icon to show,
  1699. * default: leave previous icon
  1700. */
  1701. me.showStatus = function(message, icon)
  1702. {
  1703. handleNotification(1, $statusMessage, message, icon);
  1704. };
  1705. /**
  1706. * display a warning message
  1707. *
  1708. * This automatically passes the text to I18n for translation.
  1709. *
  1710. * @name Alert.showWarning
  1711. * @function
  1712. * @param {string|array} message string, use an array for %s/%d options
  1713. * @param {string|null} icon optional, the icon to show, default:
  1714. * leave previous icon
  1715. */
  1716. me.showWarning = function(message, icon)
  1717. {
  1718. $errorMessage.find(':first')
  1719. .removeClass(currentIcon[3])
  1720. .addClass(currentIcon[2]);
  1721. handleNotification(2, $errorMessage, message, icon);
  1722. };
  1723. /**
  1724. * display an error message
  1725. *
  1726. * This automatically passes the text to I18n for translation.
  1727. *
  1728. * @name Alert.showError
  1729. * @function
  1730. * @param {string|array} message string, use an array for %s/%d options
  1731. * @param {string|null} icon optional, the icon to show, default:
  1732. * leave previous icon
  1733. */
  1734. me.showError = function(message, icon)
  1735. {
  1736. handleNotification(3, $errorMessage, message, icon);
  1737. };
  1738. /**
  1739. * display remaining message
  1740. *
  1741. * This automatically passes the text to I18n for translation.
  1742. *
  1743. * @name Alert.showRemaining
  1744. * @function
  1745. * @param {string|array} message string, use an array for %s/%d options
  1746. */
  1747. me.showRemaining = function(message)
  1748. {
  1749. handleNotification(1, $remainingTime, message);
  1750. };
  1751. /**
  1752. * shows a loading message, optionally with a percentage
  1753. *
  1754. * This automatically passes all texts to the i10s module.
  1755. *
  1756. * @name Alert.showLoading
  1757. * @function
  1758. * @param {string|array|null} message optional, use an array for %s/%d options, default: 'Loading…'
  1759. * @param {string|null} icon optional, the icon to show, default: leave previous icon
  1760. */
  1761. me.showLoading = function(message, icon)
  1762. {
  1763. // default message text
  1764. if (typeof message === 'undefined') {
  1765. message = 'Loading…';
  1766. }
  1767. handleNotification(0, $loadingIndicator, message, icon);
  1768. // show loading status (cursor)
  1769. $('body').addClass('loading');
  1770. };
  1771. /**
  1772. * hides the loading message
  1773. *
  1774. * @name Alert.hideLoading
  1775. * @function
  1776. */
  1777. me.hideLoading = function()
  1778. {
  1779. $loadingIndicator.addClass('hidden');
  1780. // hide loading cursor
  1781. $('body').removeClass('loading');
  1782. };
  1783. /**
  1784. * hides any status/error messages
  1785. *
  1786. * This does not include the loading message.
  1787. *
  1788. * @name Alert.hideMessages
  1789. * @function
  1790. */
  1791. me.hideMessages = function()
  1792. {
  1793. $statusMessage.addClass('hidden');
  1794. $errorMessage.addClass('hidden');
  1795. };
  1796. /**
  1797. * set a custom handler, which gets all notifications.
  1798. *
  1799. * This handler gets the following arguments:
  1800. * alertType (see array), $element, args, icon
  1801. * If it returns true, the own processing will be stopped so the message
  1802. * will not be displayed. Otherwise it will continue.
  1803. * As an aditional feature it can return q jQuery element, which will
  1804. * then be used to add the message there. Icons are not supported in
  1805. * that case and will be ignored.
  1806. * Pass 'null' to reset/delete the custom handler.
  1807. * Note that there is no notification when a message is supposed to get
  1808. * hidden.
  1809. *
  1810. * @name Alert.setCustomHandler
  1811. * @function
  1812. * @param {function|null} newHandler
  1813. */
  1814. me.setCustomHandler = function(newHandler)
  1815. {
  1816. customHandler = newHandler;
  1817. };
  1818. /**
  1819. * init status manager
  1820. *
  1821. * preloads jQuery elements
  1822. *
  1823. * @name Alert.init
  1824. * @function
  1825. */
  1826. me.init = function()
  1827. {
  1828. // hide "no javascript" error message
  1829. $('#noscript').hide();
  1830. // not a reset, but first set of the elements
  1831. $errorMessage = $('#errormessage');
  1832. $loadingIndicator = $('#loadingindicator');
  1833. $statusMessage = $('#status');
  1834. $remainingTime = $('#remainingtime');
  1835. currentIcon = [
  1836. 'glyphicon-time', // loading icon
  1837. 'glyphicon-info-sign', // status icon
  1838. 'glyphicon-warning-sign', // warning icon
  1839. 'glyphicon-alert' // error icon
  1840. ];
  1841. };
  1842. return me;
  1843. })();
  1844. /**
  1845. * handles paste status/result
  1846. *
  1847. * @name PasteStatus
  1848. * @class
  1849. */
  1850. const PasteStatus = (function () {
  1851. const me = {};
  1852. let $pasteSuccess,
  1853. $pasteUrl,
  1854. $remainingTime,
  1855. $shortenButton;
  1856. /**
  1857. * forward to URL shortener
  1858. *
  1859. * @name PasteStatus.sendToShortener
  1860. * @private
  1861. * @function
  1862. */
  1863. function sendToShortener()
  1864. {
  1865. if ($shortenButton.hasClass('buttondisabled')) {
  1866. return;
  1867. }
  1868. $.ajax({
  1869. type: 'GET',
  1870. url: `${$shortenButton.data('shortener')}${encodeURIComponent($pasteUrl.attr('href'))}`,
  1871. headers: {'Accept': 'text/html, application/xhtml+xml, application/xml, application/json'},
  1872. processData: false,
  1873. timeout: 10000,
  1874. xhrFields: {
  1875. withCredentials: false
  1876. },
  1877. success: PasteStatus.extractUrl
  1878. })
  1879. .fail(function(data, textStatus, errorThrown) {
  1880. console.error(textStatus, errorThrown);
  1881. // we don't know why it failed, could be CORS of the external
  1882. // server not setup properly, in which case we follow old
  1883. // behavior to open it in new tab
  1884. window.open(
  1885. `${$shortenButton.data('shortener')}${encodeURIComponent($pasteUrl.attr('href'))}`,
  1886. '_blank',
  1887. 'noopener, noreferrer'
  1888. );
  1889. });
  1890. }
  1891. /**
  1892. * Forces opening the paste if the link does not do this automatically.
  1893. *
  1894. * This is necessary as browsers will not reload the page when it is
  1895. * already loaded (which is fake as it is set via history.pushState()).
  1896. *
  1897. * @name PasteStatus.pasteLinkClick
  1898. * @function
  1899. */
  1900. function pasteLinkClick()
  1901. {
  1902. // check if location is (already) shown in URL bar
  1903. if (window.location.href === $pasteUrl.attr('href')) {
  1904. // if so we need to load link by reloading the current site
  1905. window.location.reload(true);
  1906. }
  1907. }
  1908. /**
  1909. * creates a notification after a successfull paste upload
  1910. *
  1911. * @name PasteStatus.createPasteNotification
  1912. * @function
  1913. * @param {string} url
  1914. * @param {string} deleteUrl
  1915. */
  1916. me.createPasteNotification = function(url, deleteUrl)
  1917. {
  1918. I18n._(
  1919. $('#pastelink'),
  1920. 'Your paste is <a id="pasteurl" href="%s">%s</a> <span id="copyhint">(Hit [Ctrl]+[c] to copy)</span>',
  1921. url, url
  1922. );
  1923. // save newly created element
  1924. $pasteUrl = $('#pasteurl');
  1925. // and add click event
  1926. $pasteUrl.click(pasteLinkClick);
  1927. // delete link
  1928. $('#deletelink').html('<a href="' + deleteUrl + '"></a>');
  1929. I18n._($('#deletelink a').first(), 'Delete data');
  1930. // enable shortener button
  1931. $shortenButton.removeClass('buttondisabled');
  1932. // show result
  1933. $pasteSuccess.removeClass('hidden');
  1934. // we pre-select the link so that the user only has to [Ctrl]+[c] the link
  1935. Helper.selectText($pasteUrl[0]);
  1936. };
  1937. /**
  1938. * extracts URLs from given string
  1939. *
  1940. * if at least one is found, it disables the shortener button and
  1941. * replaces the paste URL
  1942. *
  1943. * @name PasteStatus.extractUrl
  1944. * @function
  1945. * @param {string} response
  1946. */
  1947. me.extractUrl = function(response)
  1948. {
  1949. if (typeof response === 'object') {
  1950. response = JSON.stringify(response);
  1951. }
  1952. if (typeof response === 'string' && response.length > 0) {
  1953. const shortUrlMatcher = /https?:\/\/[^\s]+/g;
  1954. const shortUrl = (response.match(shortUrlMatcher) || []).filter(function(a) {
  1955. try {
  1956. return !!new URL(a);
  1957. } catch (error) {
  1958. return false;
  1959. }
  1960. }).sort(function(a, b) {
  1961. return a.length - b.length;
  1962. })[0];
  1963. if (typeof shortUrl === 'string' && shortUrl.length > 0) {
  1964. // we disable the button to avoid calling shortener again
  1965. $shortenButton.addClass('buttondisabled');
  1966. // update link
  1967. $pasteUrl.text(shortUrl);
  1968. $pasteUrl.prop('href', shortUrl);
  1969. // we pre-select the link so that the user only has to [Ctrl]+[c] the link
  1970. Helper.selectText($pasteUrl[0]);
  1971. return;
  1972. }
  1973. }
  1974. Alert.showError('Cannot parse response from URL shortener.');
  1975. };
  1976. /**
  1977. * shows the remaining time
  1978. *
  1979. * @name PasteStatus.showRemainingTime
  1980. * @function
  1981. * @param {Paste} paste
  1982. */
  1983. me.showRemainingTime = function(paste)
  1984. {
  1985. if (paste.isBurnAfterReadingEnabled()) {
  1986. // display paste "for your eyes only" if it is deleted
  1987. // the paste has been deleted when the JSON with the ciphertext
  1988. // has been downloaded
  1989. Alert.showRemaining('FOR YOUR EYES ONLY. Don\'t close this window, this message can\'t be displayed again.');
  1990. $remainingTime.addClass('foryoureyesonly');
  1991. } else if (paste.getTimeToLive() > 0) {
  1992. // display paste expiration
  1993. let expiration = Helper.secondsToHuman(paste.getTimeToLive()),
  1994. expirationLabel = [
  1995. 'This document will expire in %d ' + expiration[1] + '.',
  1996. 'This document will expire in %d ' + expiration[1] + 's.'
  1997. ];
  1998. Alert.showRemaining([expirationLabel, expiration[0]]);
  1999. $remainingTime.removeClass('foryoureyesonly');
  2000. } else {
  2001. // never expires
  2002. return;
  2003. }
  2004. // in the end, display notification
  2005. $remainingTime.removeClass('hidden');
  2006. };
  2007. /**
  2008. * hides the remaining time and successful upload notification
  2009. *
  2010. * @name PasteStatus.hideMessages
  2011. * @function
  2012. */
  2013. me.hideMessages = function()
  2014. {
  2015. $remainingTime.addClass('hidden');
  2016. $pasteSuccess.addClass('hidden');
  2017. };
  2018. /**
  2019. * init status manager
  2020. *
  2021. * preloads jQuery elements
  2022. *
  2023. * @name PasteStatus.init
  2024. * @function
  2025. */
  2026. me.init = function()
  2027. {
  2028. $pasteSuccess = $('#pastesuccess');
  2029. // $pasteUrl is saved in me.createPasteNotification() after creation
  2030. $remainingTime = $('#remainingtime');
  2031. $shortenButton = $('#shortenbutton');
  2032. // bind elements
  2033. $shortenButton.click(sendToShortener);
  2034. };
  2035. return me;
  2036. })();
  2037. /**
  2038. * password prompt
  2039. *
  2040. * @name Prompt
  2041. * @class
  2042. */
  2043. const Prompt = (function () {
  2044. const me = {};
  2045. let $passwordDecrypt,
  2046. $passwordForm,
  2047. $passwordModal,
  2048. password = '';
  2049. /**
  2050. * submit a password in the modal dialog
  2051. *
  2052. * @name Prompt.submitPasswordModal
  2053. * @private
  2054. * @function
  2055. * @param {Event} event
  2056. */
  2057. function submitPasswordModal(event)
  2058. {
  2059. event.preventDefault();
  2060. // get input
  2061. password = $passwordDecrypt.val();
  2062. // hide modal
  2063. $passwordModal.modal('hide');
  2064. PasteDecrypter.run();
  2065. }
  2066. /**
  2067. * ask the user for the password and set it
  2068. *
  2069. * @name Prompt.requestPassword
  2070. * @function
  2071. */
  2072. me.requestPassword = function()
  2073. {
  2074. // show new bootstrap method (if available)
  2075. if ($passwordModal.length !== 0) {
  2076. $passwordModal.modal({
  2077. backdrop: 'static',
  2078. keyboard: false
  2079. });
  2080. return;
  2081. }
  2082. // fallback to old method for page template
  2083. password = prompt(I18n._('Please enter the password for this paste:'), '');
  2084. if (password === null) {
  2085. throw 'password prompt canceled';
  2086. }
  2087. if (password.length === 0) {
  2088. // recurse…
  2089. return me.requestPassword();
  2090. }
  2091. PasteDecrypter.run();
  2092. };
  2093. /**
  2094. * get the cached password
  2095. *
  2096. * If you do not get a password with this function
  2097. * (returns an empty string), use requestPassword.
  2098. *
  2099. * @name Prompt.getPassword
  2100. * @function
  2101. * @return {string}
  2102. */
  2103. me.getPassword = function()
  2104. {
  2105. return password;
  2106. };
  2107. /**
  2108. * resets the password to an empty string
  2109. *
  2110. * @name Prompt.reset
  2111. * @function
  2112. */
  2113. me.reset = function()
  2114. {
  2115. // reset internal
  2116. password = '';
  2117. // and also reset UI
  2118. $passwordDecrypt.val('');
  2119. }
  2120. /**
  2121. * init status manager
  2122. *
  2123. * preloads jQuery elements
  2124. *
  2125. * @name Prompt.init
  2126. * @function
  2127. */
  2128. me.init = function()
  2129. {
  2130. $passwordDecrypt = $('#passworddecrypt');
  2131. $passwordForm = $('#passwordform');
  2132. $passwordModal = $('#passwordmodal');
  2133. // bind events
  2134. // focus password input when it is shown
  2135. $passwordModal.on('shown.bs.Model', function () {
  2136. $passwordDecrypt.focus();
  2137. });
  2138. // handle Model password submission
  2139. $passwordForm.submit(submitPasswordModal);
  2140. };
  2141. return me;
  2142. })();
  2143. /**
  2144. * Manage paste/message input, and preview tab
  2145. *
  2146. * Note that the actual preview is handled by PasteViewer.
  2147. *
  2148. * @name Editor
  2149. * @class
  2150. */
  2151. const Editor = (function () {
  2152. const me = {};
  2153. let $editorTabs,
  2154. $messageEdit,
  2155. $messagePreview,
  2156. $message,
  2157. isPreview = false;
  2158. /**
  2159. * support input of tab character
  2160. *
  2161. * @name Editor.supportTabs
  2162. * @function
  2163. * @param {Event} event
  2164. * @this $message (but not used, so it is jQuery-free, possibly faster)
  2165. */
  2166. function supportTabs(event)
  2167. {
  2168. const keyCode = event.keyCode || event.which;
  2169. // tab was pressed
  2170. if (keyCode === 9) {
  2171. // get caret position & selection
  2172. const val = this.value,
  2173. start = this.selectionStart,
  2174. end = this.selectionEnd;
  2175. // set textarea value to: text before caret + tab + text after caret
  2176. this.value = val.substring(0, start) + '\t' + val.substring(end);
  2177. // put caret at right position again
  2178. this.selectionStart = this.selectionEnd = start + 1;
  2179. // prevent the textarea to lose focus
  2180. event.preventDefault();
  2181. }
  2182. }
  2183. /**
  2184. * view the Editor tab
  2185. *
  2186. * @name Editor.viewEditor
  2187. * @function
  2188. * @param {Event} event - optional
  2189. */
  2190. function viewEditor(event)
  2191. {
  2192. // toggle buttons
  2193. $messageEdit.addClass('active');
  2194. $messagePreview.removeClass('active');
  2195. $('#messageedit').attr('aria-selected','true');
  2196. $('#messagepreview').attr('aria-selected','false');
  2197. PasteViewer.hide();
  2198. // reshow input
  2199. $message.removeClass('hidden');
  2200. me.focusInput();
  2201. // finish
  2202. isPreview = false;
  2203. // prevent jumping of page to top
  2204. if (typeof event !== 'undefined') {
  2205. event.preventDefault();
  2206. }
  2207. }
  2208. /**
  2209. * view the preview tab
  2210. *
  2211. * @name Editor.viewPreview
  2212. * @function
  2213. * @param {Event} event
  2214. */
  2215. function viewPreview(event)
  2216. {
  2217. // toggle buttons
  2218. $messageEdit.removeClass('active');
  2219. $messagePreview.addClass('active');
  2220. $('#messageedit').attr('aria-selected','false');
  2221. $('#messagepreview').attr('aria-selected','true');
  2222. // hide input as now preview is shown
  2223. $message.addClass('hidden');
  2224. // show preview
  2225. PasteViewer.setText($message.val());
  2226. if (AttachmentViewer.hasAttachmentData()) {
  2227. const attachment = AttachmentViewer.getAttachment();
  2228. AttachmentViewer.handleBlobAttachmentPreview(
  2229. AttachmentViewer.getAttachmentPreview(),
  2230. attachment[0], attachment[1]
  2231. );
  2232. }
  2233. PasteViewer.run();
  2234. // finish
  2235. isPreview = true;
  2236. // prevent jumping of page to top
  2237. if (typeof event !== 'undefined') {
  2238. event.preventDefault();
  2239. }
  2240. }
  2241. /**
  2242. * get the state of the preview
  2243. *
  2244. * @name Editor.isPreview
  2245. * @function
  2246. */
  2247. me.isPreview = function()
  2248. {
  2249. return isPreview;
  2250. };
  2251. /**
  2252. * reset the Editor view
  2253. *
  2254. * @name Editor.resetInput
  2255. * @function
  2256. */
  2257. me.resetInput = function()
  2258. {
  2259. // go back to input
  2260. if (isPreview) {
  2261. viewEditor();
  2262. }
  2263. // clear content
  2264. $message.val('');
  2265. };
  2266. /**
  2267. * shows the Editor
  2268. *
  2269. * @name Editor.show
  2270. * @function
  2271. */
  2272. me.show = function()
  2273. {
  2274. $message.removeClass('hidden');
  2275. $editorTabs.removeClass('hidden');
  2276. };
  2277. /**
  2278. * hides the Editor
  2279. *
  2280. * @name Editor.hide
  2281. * @function
  2282. */
  2283. me.hide = function()
  2284. {
  2285. $message.addClass('hidden');
  2286. $editorTabs.addClass('hidden');
  2287. };
  2288. /**
  2289. * focuses the message input
  2290. *
  2291. * @name Editor.focusInput
  2292. * @function
  2293. */
  2294. me.focusInput = function()
  2295. {
  2296. $message.focus();
  2297. };
  2298. /**
  2299. * sets a new text
  2300. *
  2301. * @name Editor.setText
  2302. * @function
  2303. * @param {string} newText
  2304. */
  2305. me.setText = function(newText)
  2306. {
  2307. $message.val(newText);
  2308. };
  2309. /**
  2310. * returns the current text
  2311. *
  2312. * @name Editor.getText
  2313. * @function
  2314. * @return {string}
  2315. */
  2316. me.getText = function()
  2317. {
  2318. return $message.val();
  2319. };
  2320. /**
  2321. * init status manager
  2322. *
  2323. * preloads jQuery elements
  2324. *
  2325. * @name Editor.init
  2326. * @function
  2327. */
  2328. me.init = function()
  2329. {
  2330. $editorTabs = $('#editorTabs');
  2331. $message = $('#message');
  2332. // bind events
  2333. $message.keydown(supportTabs);
  2334. // bind click events to tab switchers (a), but save parent of them
  2335. // (li)
  2336. $messageEdit = $('#messageedit').click(viewEditor).parent();
  2337. $messagePreview = $('#messagepreview').click(viewPreview).parent();
  2338. };
  2339. return me;
  2340. })();
  2341. /**
  2342. * (view) Parse and show paste.
  2343. *
  2344. * @name PasteViewer
  2345. * @class
  2346. */
  2347. const PasteViewer = (function () {
  2348. const me = {};
  2349. let $placeholder,
  2350. $prettyMessage,
  2351. $prettyPrint,
  2352. $plainText,
  2353. text,
  2354. format = 'plaintext',
  2355. isDisplayed = false,
  2356. isChanged = true; // by default true as nothing was parsed yet
  2357. /**
  2358. * apply the set format on paste and displays it
  2359. *
  2360. * @name PasteViewer.parsePaste
  2361. * @private
  2362. * @function
  2363. */
  2364. function parsePaste()
  2365. {
  2366. // skip parsing if no text is given
  2367. if (text === '') {
  2368. return;
  2369. }
  2370. if (format === 'markdown') {
  2371. const converter = new showdown.Converter({
  2372. strikethrough: true,
  2373. tables: true,
  2374. tablesHeaderId: true,
  2375. simplifiedAutoLink: true,
  2376. excludeTrailingPunctuationFromURLs: true
  2377. });
  2378. // let showdown convert the HTML and sanitize HTML *afterwards*!
  2379. $plainText.html(
  2380. DOMPurify.sanitize(
  2381. converter.makeHtml(text),
  2382. purifyHtmlConfig
  2383. )
  2384. );
  2385. // add table classes from bootstrap css
  2386. $plainText.find('table').addClass('table-condensed table-bordered');
  2387. } else {
  2388. if (format === 'syntaxhighlighting') {
  2389. // yes, this is really needed to initialize the environment
  2390. if (typeof prettyPrint === 'function')
  2391. {
  2392. prettyPrint();
  2393. }
  2394. $prettyPrint.html(
  2395. prettyPrintOne(
  2396. Helper.htmlEntities(text), null, true
  2397. )
  2398. );
  2399. } else {
  2400. // = 'plaintext'
  2401. $prettyPrint.text(text);
  2402. }
  2403. Helper.urls2links($prettyPrint);
  2404. $prettyPrint.css('white-space', 'pre-wrap');
  2405. $prettyPrint.css('word-break', 'normal');
  2406. $prettyPrint.removeClass('prettyprint');
  2407. }
  2408. }
  2409. /**
  2410. * displays the paste
  2411. *
  2412. * @name PasteViewer.showPaste
  2413. * @private
  2414. * @function
  2415. */
  2416. function showPaste()
  2417. {
  2418. // instead of "nothing" better display a placeholder
  2419. if (text === '') {
  2420. $placeholder.removeClass('hidden');
  2421. return;
  2422. }
  2423. // otherwise hide the placeholder
  2424. $placeholder.addClass('hidden');
  2425. switch (format) {
  2426. case 'markdown':
  2427. $plainText.removeClass('hidden');
  2428. $prettyMessage.addClass('hidden');
  2429. break;
  2430. default:
  2431. $plainText.addClass('hidden');
  2432. $prettyMessage.removeClass('hidden');
  2433. break;
  2434. }
  2435. }
  2436. /**
  2437. * sets the format in which the text is shown
  2438. *
  2439. * @name PasteViewer.setFormat
  2440. * @function
  2441. * @param {string} newFormat the new format
  2442. */
  2443. me.setFormat = function(newFormat)
  2444. {
  2445. // skip if there is no update
  2446. if (format === newFormat) {
  2447. return;
  2448. }
  2449. // needs to update display too, if we switch from or to Markdown
  2450. if (format === 'markdown' || newFormat === 'markdown') {
  2451. isDisplayed = false;
  2452. }
  2453. format = newFormat;
  2454. isChanged = true;
  2455. };
  2456. /**
  2457. * returns the current format
  2458. *
  2459. * @name PasteViewer.getFormat
  2460. * @function
  2461. * @return {string}
  2462. */
  2463. me.getFormat = function()
  2464. {
  2465. return format;
  2466. };
  2467. /**
  2468. * returns whether the current view is pretty printed
  2469. *
  2470. * @name PasteViewer.isPrettyPrinted
  2471. * @function
  2472. * @return {bool}
  2473. */
  2474. me.isPrettyPrinted = function()
  2475. {
  2476. return $prettyPrint.hasClass('prettyprinted');
  2477. };
  2478. /**
  2479. * sets the text to show
  2480. *
  2481. * @name PasteViewer.setText
  2482. * @function
  2483. * @param {string} newText the text to show
  2484. */
  2485. me.setText = function(newText)
  2486. {
  2487. if (text !== newText) {
  2488. text = newText;
  2489. isChanged = true;
  2490. }
  2491. };
  2492. /**
  2493. * gets the current cached text
  2494. *
  2495. * @name PasteViewer.getText
  2496. * @function
  2497. * @return {string}
  2498. */
  2499. me.getText = function()
  2500. {
  2501. return text;
  2502. };
  2503. /**
  2504. * show/update the parsed text (preview)
  2505. *
  2506. * @name PasteViewer.run
  2507. * @function
  2508. */
  2509. me.run = function()
  2510. {
  2511. if (isChanged) {
  2512. parsePaste();
  2513. isChanged = false;
  2514. }
  2515. if (!isDisplayed) {
  2516. showPaste();
  2517. isDisplayed = true;
  2518. }
  2519. };
  2520. /**
  2521. * hide parsed text (preview)
  2522. *
  2523. * @name PasteViewer.hide
  2524. * @function
  2525. */
  2526. me.hide = function()
  2527. {
  2528. if (!isDisplayed) {
  2529. return;
  2530. }
  2531. $plainText.addClass('hidden');
  2532. $prettyMessage.addClass('hidden');
  2533. $placeholder.addClass('hidden');
  2534. AttachmentViewer.hideAttachmentPreview();
  2535. isDisplayed = false;
  2536. };
  2537. /**
  2538. * init status manager
  2539. *
  2540. * preloads jQuery elements
  2541. *
  2542. * @name PasteViewer.init
  2543. * @function
  2544. */
  2545. me.init = function()
  2546. {
  2547. $placeholder = $('#placeholder');
  2548. $plainText = $('#plaintext');
  2549. $prettyMessage = $('#prettymessage');
  2550. $prettyPrint = $('#prettyprint');
  2551. // get default option from template/HTML or fall back to set value
  2552. format = Model.getFormatDefault() || format;
  2553. text = '';
  2554. isDisplayed = false;
  2555. isChanged = true;
  2556. };
  2557. return me;
  2558. })();
  2559. /**
  2560. * (view) Show attachment and preview if possible
  2561. *
  2562. * @name AttachmentViewer
  2563. * @class
  2564. */
  2565. const AttachmentViewer = (function () {
  2566. const me = {};
  2567. let $attachmentLink,
  2568. $attachmentPreview,
  2569. $attachment,
  2570. attachmentData,
  2571. file,
  2572. $fileInput,
  2573. $dragAndDropFileName,
  2574. attachmentHasPreview = false,
  2575. $dropzone;
  2576. /**
  2577. * get blob URL from string data and mime type
  2578. *
  2579. * @name AttachmentViewer.getBlobUrl
  2580. * @private
  2581. * @function
  2582. * @param {string} data - raw data of attachment
  2583. * @param {string} data - mime type of attachment
  2584. * @return {string} objectURL
  2585. */
  2586. function getBlobUrl(data, mimeType)
  2587. {
  2588. // Transform into a Blob
  2589. const buf = new Uint8Array(data.length);
  2590. for (let i = 0; i < data.length; ++i) {
  2591. buf[i] = data.charCodeAt(i);
  2592. }
  2593. const blob = new window.Blob(
  2594. [buf],
  2595. {
  2596. type: mimeType
  2597. }
  2598. );
  2599. // Get blob URL
  2600. return window.URL.createObjectURL(blob);
  2601. }
  2602. /**
  2603. * sets the attachment but does not yet show it
  2604. *
  2605. * @name AttachmentViewer.setAttachment
  2606. * @function
  2607. * @param {string} attachmentData - base64-encoded data of file
  2608. * @param {string} fileName - optional, file name
  2609. */
  2610. me.setAttachment = function(attachmentData, fileName)
  2611. {
  2612. // skip, if attachments got disabled
  2613. if (!$attachmentLink || !$attachmentPreview) return;
  2614. // data URI format: data:[<mimeType>][;base64],<data>
  2615. // position in data URI string of where data begins
  2616. const base64Start = attachmentData.indexOf(',') + 1;
  2617. // position in data URI string of where mimeType ends
  2618. const mimeTypeEnd = attachmentData.indexOf(';');
  2619. // extract mimeType
  2620. const mimeType = attachmentData.substring(5, mimeTypeEnd);
  2621. // extract data and convert to binary
  2622. const rawData = attachmentData.substring(base64Start);
  2623. const decodedData = rawData.length > 0 ? atob(rawData) : '';
  2624. let blobUrl = getBlobUrl(decodedData, mimeType);
  2625. $attachmentLink.attr('href', blobUrl);
  2626. if (typeof fileName !== 'undefined') {
  2627. $attachmentLink.attr('download', fileName);
  2628. }
  2629. // sanitize SVG preview
  2630. // prevents executing embedded scripts when CSP is not set and user
  2631. // right-clicks/long-taps and opens the SVG in a new tab - prevented
  2632. // in the preview by use of an img tag, which disables scripts, too
  2633. if (mimeType.match(/^image\/.*svg/i)) {
  2634. const sanitizedData = DOMPurify.sanitize(
  2635. decodedData,
  2636. purifySvgConfig
  2637. );
  2638. blobUrl = getBlobUrl(sanitizedData, mimeType);
  2639. }
  2640. me.handleBlobAttachmentPreview($attachmentPreview, blobUrl, mimeType);
  2641. };
  2642. /**
  2643. * displays the attachment
  2644. *
  2645. * @name AttachmentViewer.showAttachment
  2646. * @function
  2647. */
  2648. me.showAttachment = function()
  2649. {
  2650. // skip, if attachments got disabled
  2651. if (!$attachment || !$attachmentPreview) return;
  2652. $attachment.removeClass('hidden');
  2653. if (attachmentHasPreview) {
  2654. $attachmentPreview.removeClass('hidden');
  2655. }
  2656. };
  2657. /**
  2658. * removes the attachment
  2659. *
  2660. * This automatically hides the attachment containers too, to
  2661. * prevent an inconsistent display.
  2662. *
  2663. * @name AttachmentViewer.removeAttachment
  2664. * @function
  2665. */
  2666. me.removeAttachment = function()
  2667. {
  2668. if (!$attachment.length) {
  2669. return;
  2670. }
  2671. me.hideAttachment();
  2672. me.hideAttachmentPreview();
  2673. $attachmentLink.removeAttr('href');
  2674. $attachmentLink.removeAttr('download');
  2675. $attachmentLink.off('click');
  2676. $attachmentPreview.html('');
  2677. $dragAndDropFileName.text('');
  2678. AttachmentViewer.removeAttachmentData();
  2679. };
  2680. /**
  2681. * removes the attachment data
  2682. *
  2683. * This removes the data, which would be uploaded otherwise.
  2684. *
  2685. * @name AttachmentViewer.removeAttachmentData
  2686. * @function
  2687. */
  2688. me.removeAttachmentData = function()
  2689. {
  2690. file = undefined;
  2691. attachmentData = undefined;
  2692. };
  2693. /**
  2694. * Cleares the drag & drop data.
  2695. *
  2696. * @name AttachmentViewer.clearDragAndDrop
  2697. * @function
  2698. */
  2699. me.clearDragAndDrop = function()
  2700. {
  2701. $dragAndDropFileName.text('');
  2702. };
  2703. /**
  2704. * hides the attachment
  2705. *
  2706. * This will not hide the preview (see AttachmentViewer.hideAttachmentPreview
  2707. * for that) nor will it hide the attachment link if it was moved somewhere
  2708. * else (see AttachmentViewer.moveAttachmentTo).
  2709. *
  2710. * @name AttachmentViewer.hideAttachment
  2711. * @function
  2712. */
  2713. me.hideAttachment = function()
  2714. {
  2715. $attachment.addClass('hidden');
  2716. };
  2717. /**
  2718. * hides the attachment preview
  2719. *
  2720. * @name AttachmentViewer.hideAttachmentPreview
  2721. * @function
  2722. */
  2723. me.hideAttachmentPreview = function()
  2724. {
  2725. if ($attachmentPreview) {
  2726. $attachmentPreview.addClass('hidden');
  2727. }
  2728. };
  2729. /**
  2730. * checks if there is an attachment displayed
  2731. *
  2732. * @name AttachmentViewer.hasAttachment
  2733. * @function
  2734. */
  2735. me.hasAttachment = function()
  2736. {
  2737. if (!$attachment.length) {
  2738. return false;
  2739. }
  2740. const link = $attachmentLink.prop('href');
  2741. return (typeof link !== 'undefined' && link !== '');
  2742. };
  2743. /**
  2744. * checks if there is attachment data (for preview!) available
  2745. *
  2746. * It returns true, when there is data that needs to be encrypted.
  2747. *
  2748. * @name AttachmentViewer.hasAttachmentData
  2749. * @function
  2750. */
  2751. me.hasAttachmentData = function()
  2752. {
  2753. if ($attachment.length) {
  2754. return true;
  2755. }
  2756. return false;
  2757. };
  2758. /**
  2759. * return the attachment
  2760. *
  2761. * @name AttachmentViewer.getAttachment
  2762. * @function
  2763. * @returns {array}
  2764. */
  2765. me.getAttachment = function()
  2766. {
  2767. return [
  2768. $attachmentLink.prop('href'),
  2769. $attachmentLink.prop('download')
  2770. ];
  2771. };
  2772. /**
  2773. * moves the attachment link to another element
  2774. *
  2775. * It is advisable to hide the attachment afterwards (AttachmentViewer.hideAttachment)
  2776. *
  2777. * @name AttachmentViewer.moveAttachmentTo
  2778. * @function
  2779. * @param {jQuery} $element - the wrapper/container element where this should be moved to
  2780. * @param {string} label - the text to show (%s will be replaced with the file name), will automatically be translated
  2781. */
  2782. me.moveAttachmentTo = function($element, label)
  2783. {
  2784. // move elemement to new place
  2785. $attachmentLink.appendTo($element);
  2786. // update text - ensuring no HTML is inserted into the text node
  2787. I18n._($attachmentLink, label, $attachmentLink.attr('download'));
  2788. };
  2789. /**
  2790. * read file data as data URL using the FileReader API
  2791. *
  2792. * @name AttachmentViewer.readFileData
  2793. * @private
  2794. * @function
  2795. * @param {object} loadedFile (optional) loaded file object
  2796. * @see {@link https://developer.mozilla.org/en-US/docs/Web/API/FileReader#readAsDataURL()}
  2797. */
  2798. function readFileData(loadedFile) {
  2799. if (typeof FileReader === 'undefined') {
  2800. // revert loading status…
  2801. me.hideAttachment();
  2802. me.hideAttachmentPreview();
  2803. Alert.showWarning('Your browser does not support uploading encrypted files. Please use a newer browser.');
  2804. return;
  2805. }
  2806. const fileReader = new FileReader();
  2807. if (loadedFile === undefined) {
  2808. loadedFile = $fileInput[0].files[0];
  2809. $dragAndDropFileName.text('');
  2810. } else {
  2811. $dragAndDropFileName.text(loadedFile.name);
  2812. }
  2813. if (typeof loadedFile !== 'undefined') {
  2814. file = loadedFile;
  2815. fileReader.onload = function (event) {
  2816. const dataURL = event.target.result;
  2817. attachmentData = dataURL;
  2818. if (Editor.isPreview()) {
  2819. me.handleAttachmentPreview($attachmentPreview, dataURL);
  2820. $attachmentPreview.removeClass('hidden');
  2821. }
  2822. TopNav.highlightFileupload();
  2823. };
  2824. fileReader.readAsDataURL(loadedFile);
  2825. } else {
  2826. me.removeAttachmentData();
  2827. }
  2828. }
  2829. /**
  2830. * handle the preview of files decoded to blob that can either be an image, video, audio or pdf element
  2831. *
  2832. * @name AttachmentViewer.handleBlobAttachmentPreview
  2833. * @function
  2834. * @argument {jQuery} $targetElement element where the preview should be appended
  2835. * @argument {string} file as a blob URL
  2836. * @argument {string} mime type
  2837. */
  2838. me.handleBlobAttachmentPreview = function ($targetElement, blobUrl, mimeType) {
  2839. if (blobUrl) {
  2840. attachmentHasPreview = true;
  2841. if (mimeType.match(/^image\//i)) {
  2842. $targetElement.html(
  2843. $(document.createElement('img'))
  2844. .attr('src', blobUrl)
  2845. .attr('class', 'img-thumbnail')
  2846. );
  2847. } else if (mimeType.match(/^video\//i)) {
  2848. $targetElement.html(
  2849. $(document.createElement('video'))
  2850. .attr('controls', 'true')
  2851. .attr('autoplay', 'true')
  2852. .attr('class', 'img-thumbnail')
  2853. .append($(document.createElement('source'))
  2854. .attr('type', mimeType)
  2855. .attr('src', blobUrl))
  2856. );
  2857. } else if (mimeType.match(/^audio\//i)) {
  2858. $targetElement.html(
  2859. $(document.createElement('audio'))
  2860. .attr('controls', 'true')
  2861. .attr('autoplay', 'true')
  2862. .append($(document.createElement('source'))
  2863. .attr('type', mimeType)
  2864. .attr('src', blobUrl))
  2865. );
  2866. } else if (mimeType.match(/\/pdf/i)) {
  2867. // Fallback for browsers, that don't support the vh unit
  2868. const clientHeight = $(window).height();
  2869. $targetElement.html(
  2870. $(document.createElement('embed'))
  2871. .attr('src', blobUrl)
  2872. .attr('type', 'application/pdf')
  2873. .attr('class', 'pdfPreview')
  2874. .css('height', clientHeight)
  2875. );
  2876. } else {
  2877. attachmentHasPreview = false;
  2878. }
  2879. }
  2880. };
  2881. /**
  2882. * attaches the file attachment drag & drop handler to the page
  2883. *
  2884. * @name AttachmentViewer.addDragDropHandler
  2885. * @private
  2886. * @function
  2887. */
  2888. function addDragDropHandler() {
  2889. if (typeof $fileInput === 'undefined' || $fileInput.length === 0) {
  2890. return;
  2891. }
  2892. const handleDragEnterOrOver = function(event) {
  2893. event.stopPropagation();
  2894. event.preventDefault();
  2895. return false;
  2896. };
  2897. const handleDrop = function(event) {
  2898. const evt = event.originalEvent;
  2899. evt.stopPropagation();
  2900. evt.preventDefault();
  2901. if (TopNav.isAttachmentReadonly()) {
  2902. return false;
  2903. }
  2904. if ($fileInput) {
  2905. const file = evt.dataTransfer.files[0];
  2906. //Clear the file input:
  2907. $fileInput.wrap('<form>').closest('form').get(0).reset();
  2908. $fileInput.unwrap();
  2909. //Only works in Chrome:
  2910. //fileInput[0].files = e.dataTransfer.files;
  2911. readFileData(file);
  2912. }
  2913. };
  2914. $(document).draghover().on({
  2915. 'draghoverstart': function(e) {
  2916. if (TopNav.isAttachmentReadonly()) {
  2917. e.stopPropagation();
  2918. e.preventDefault();
  2919. return false;
  2920. }
  2921. // show dropzone to indicate drop support
  2922. $dropzone.removeClass('hidden');
  2923. },
  2924. 'draghoverend': function() {
  2925. $dropzone.addClass('hidden');
  2926. }
  2927. });
  2928. $(document).on('drop', handleDrop);
  2929. $(document).on('dragenter dragover', handleDragEnterOrOver);
  2930. $fileInput.on('change', function () {
  2931. readFileData();
  2932. });
  2933. }
  2934. /**
  2935. * attaches the clipboard attachment handler to the page
  2936. *
  2937. * @name AttachmentViewer.addClipboardEventHandler
  2938. * @private
  2939. * @function
  2940. */
  2941. function addClipboardEventHandler() {
  2942. $(document).on('paste', function (event) {
  2943. const items = (event.clipboardData || event.originalEvent.clipboardData).items;
  2944. const lastItem = items[items.length - 1];
  2945. if (lastItem.kind === 'file') {
  2946. if (TopNav.isAttachmentReadonly()) {
  2947. event.stopPropagation();
  2948. event.preventDefault();
  2949. return false;
  2950. } else {
  2951. readFileData(lastItem.getAsFile());
  2952. }
  2953. }
  2954. });
  2955. }
  2956. /**
  2957. * getter for attachment data
  2958. *
  2959. * @name AttachmentViewer.getAttachmentData
  2960. * @function
  2961. * @return {jQuery}
  2962. */
  2963. me.getAttachmentData = function () {
  2964. return attachmentData;
  2965. };
  2966. /**
  2967. * getter for attachment link
  2968. *
  2969. * @name AttachmentViewer.getAttachmentLink
  2970. * @function
  2971. * @return {jQuery}
  2972. */
  2973. me.getAttachmentLink = function () {
  2974. return $attachmentLink;
  2975. };
  2976. /**
  2977. * getter for attachment preview
  2978. *
  2979. * @name AttachmentViewer.getAttachmentPreview
  2980. * @function
  2981. * @return {jQuery}
  2982. */
  2983. me.getAttachmentPreview = function () {
  2984. return $attachmentPreview;
  2985. };
  2986. /**
  2987. * getter for file data, returns the file contents
  2988. *
  2989. * @name AttachmentViewer.getFile
  2990. * @function
  2991. * @return {string}
  2992. */
  2993. me.getFile = function () {
  2994. return file;
  2995. };
  2996. /**
  2997. * initiate
  2998. *
  2999. * preloads jQuery elements
  3000. *
  3001. * @name AttachmentViewer.init
  3002. * @function
  3003. */
  3004. me.init = function()
  3005. {
  3006. $attachment = $('#attachment');
  3007. $dragAndDropFileName = $('#dragAndDropFileName');
  3008. $dropzone = $('#dropzone');
  3009. $attachmentLink = $('#attachment a') || $('<a>');
  3010. if($attachment.length) {
  3011. $attachmentPreview = $('#attachmentPreview');
  3012. $fileInput = $('#file');
  3013. addDragDropHandler();
  3014. addClipboardEventHandler();
  3015. }
  3016. }
  3017. return me;
  3018. })();
  3019. /**
  3020. * (view) Shows discussion thread and handles replies
  3021. *
  3022. * @name DiscussionViewer
  3023. * @class
  3024. */
  3025. const DiscussionViewer = (function () {
  3026. const me = {};
  3027. let $commentTail,
  3028. $discussion,
  3029. $reply,
  3030. $replyMessage,
  3031. $replyNickname,
  3032. $replyStatus,
  3033. $commentContainer,
  3034. replyCommentId;
  3035. /**
  3036. * initializes the templates
  3037. *
  3038. * @name DiscussionViewer.initTemplates
  3039. * @private
  3040. * @function
  3041. */
  3042. function initTemplates()
  3043. {
  3044. $reply = Model.getTemplate('reply');
  3045. $replyMessage = $reply.find('#replymessage');
  3046. $replyNickname = $reply.find('#nickname');
  3047. $replyStatus = $reply.find('#replystatus');
  3048. // cache jQuery elements
  3049. $commentTail = Model.getTemplate('commenttail');
  3050. }
  3051. /**
  3052. * open the comment entry when clicking the "Reply" button of a comment
  3053. *
  3054. * @name DiscussionViewer.openReply
  3055. * @private
  3056. * @function
  3057. * @param {Event} event
  3058. */
  3059. function openReply(event)
  3060. {
  3061. const $source = $(event.target);
  3062. // clear input
  3063. $replyMessage.val('');
  3064. $replyNickname.val('');
  3065. // get comment id from source element
  3066. replyCommentId = $source.parent().prop('id').split('_')[1];
  3067. // move to correct position
  3068. $source.after($reply);
  3069. // show
  3070. $reply.removeClass('hidden');
  3071. $replyMessage.focus();
  3072. event.preventDefault();
  3073. }
  3074. /**
  3075. * custom handler for displaying notifications in own status message area
  3076. *
  3077. * @name DiscussionViewer.handleNotification
  3078. * @function
  3079. * @param {string} alertType
  3080. * @return {bool|jQuery}
  3081. */
  3082. me.handleNotification = function(alertType)
  3083. {
  3084. // ignore loading messages
  3085. if (alertType === 'loading') {
  3086. return false;
  3087. }
  3088. if (alertType === 'danger') {
  3089. $replyStatus.removeClass('alert-info');
  3090. $replyStatus.addClass('alert-danger');
  3091. $replyStatus.find(':first').removeClass('glyphicon-alert');
  3092. $replyStatus.find(':first').addClass('glyphicon-info-sign');
  3093. } else {
  3094. $replyStatus.removeClass('alert-danger');
  3095. $replyStatus.addClass('alert-info');
  3096. $replyStatus.find(':first').removeClass('glyphicon-info-sign');
  3097. $replyStatus.find(':first').addClass('glyphicon-alert');
  3098. }
  3099. return $replyStatus;
  3100. };
  3101. /**
  3102. * adds another comment
  3103. *
  3104. * @name DiscussionViewer.addComment
  3105. * @function
  3106. * @param {Comment} comment
  3107. * @param {string} commentText
  3108. * @param {string} nickname
  3109. */
  3110. me.addComment = function(comment, commentText, nickname)
  3111. {
  3112. if (commentText === '') {
  3113. commentText = 'comment decryption failed';
  3114. }
  3115. // create new comment based on template
  3116. const $commentEntry = Model.getTemplate('comment');
  3117. $commentEntry.prop('id', 'comment_' + comment.id);
  3118. const $commentEntryData = $commentEntry.find('div.commentdata');
  3119. // set & parse text
  3120. $commentEntryData.text(commentText);
  3121. Helper.urls2links($commentEntryData);
  3122. // set nickname
  3123. if (nickname.length > 0) {
  3124. $commentEntry.find('span.nickname').text(nickname);
  3125. } else {
  3126. $commentEntry.find('span.nickname').html('<i></i>');
  3127. I18n._($commentEntry.find('span.nickname i'), 'Anonymous');
  3128. }
  3129. // set date
  3130. $commentEntry.find('span.commentdate')
  3131. .text(' (' + (new Date(comment.getCreated() * 1000).toLocaleString()) + ')')
  3132. .attr('title', 'CommentID: ' + comment.id);
  3133. // if an avatar is available, display it
  3134. const icon = comment.getIcon();
  3135. if (icon) {
  3136. $commentEntry.find('span.nickname')
  3137. .before(
  3138. '<img src="' + icon + '" class="vizhash" /> '
  3139. );
  3140. $(document).on('languageLoaded', function () {
  3141. $commentEntry.find('img.vizhash')
  3142. .prop('title', I18n._('Avatar generated from IP address'));
  3143. });
  3144. }
  3145. // starting point (default value/fallback)
  3146. let $place = $commentContainer;
  3147. // if parent comment exists
  3148. const $parentComment = $('#comment_' + comment.parentid);
  3149. if ($parentComment.length) {
  3150. // use parent as position for new comment, so it is shifted
  3151. // to the right
  3152. $place = $parentComment;
  3153. }
  3154. // finally append comment
  3155. $place.append($commentEntry);
  3156. };
  3157. /**
  3158. * finishes the discussion area after last comment
  3159. *
  3160. * @name DiscussionViewer.finishDiscussion
  3161. * @function
  3162. */
  3163. me.finishDiscussion = function()
  3164. {
  3165. // add 'add new comment' area
  3166. $commentContainer.append($commentTail);
  3167. // show discussions
  3168. $discussion.removeClass('hidden');
  3169. };
  3170. /**
  3171. * removes the old discussion and prepares everything for creating a new
  3172. * one.
  3173. *
  3174. * @name DiscussionViewer.prepareNewDiscussion
  3175. * @function
  3176. */
  3177. me.prepareNewDiscussion = function()
  3178. {
  3179. $commentContainer.html('');
  3180. $discussion.addClass('hidden');
  3181. // (re-)init templates
  3182. initTemplates();
  3183. };
  3184. /**
  3185. * returns the users message from the reply form
  3186. *
  3187. * @name DiscussionViewer.getReplyMessage
  3188. * @function
  3189. * @return {String}
  3190. */
  3191. me.getReplyMessage = function()
  3192. {
  3193. return $replyMessage.val();
  3194. };
  3195. /**
  3196. * returns the users nickname (if any) from the reply form
  3197. *
  3198. * @name DiscussionViewer.getReplyNickname
  3199. * @function
  3200. * @return {String}
  3201. */
  3202. me.getReplyNickname = function()
  3203. {
  3204. return $replyNickname.val();
  3205. };
  3206. /**
  3207. * returns the id of the parent comment the user is replying to
  3208. *
  3209. * @name DiscussionViewer.getReplyCommentId
  3210. * @function
  3211. * @return {int|undefined}
  3212. */
  3213. me.getReplyCommentId = function()
  3214. {
  3215. return replyCommentId;
  3216. };
  3217. /**
  3218. * highlights a specific comment and scrolls to it if necessary
  3219. *
  3220. * @name DiscussionViewer.highlightComment
  3221. * @function
  3222. * @param {string} commentId
  3223. * @param {bool} fadeOut - whether to fade out the comment
  3224. */
  3225. me.highlightComment = function(commentId, fadeOut)
  3226. {
  3227. const $comment = $('#comment_' + commentId);
  3228. // in case comment does not exist, cancel
  3229. if ($comment.length === 0) {
  3230. return;
  3231. }
  3232. $comment.addClass('highlight');
  3233. const highlightComment = function () {
  3234. if (fadeOut === true) {
  3235. setTimeout(function () {
  3236. $comment.removeClass('highlight');
  3237. }, 300);
  3238. }
  3239. };
  3240. if (UiHelper.isVisible($comment)) {
  3241. return highlightComment();
  3242. }
  3243. UiHelper.scrollTo($comment, 100, 'swing', highlightComment);
  3244. };
  3245. /**
  3246. * initiate
  3247. *
  3248. * preloads jQuery elements
  3249. *
  3250. * @name DiscussionViewer.init
  3251. * @function
  3252. */
  3253. me.init = function()
  3254. {
  3255. // bind events to templates (so they are later cloned)
  3256. $('#commenttailtemplate, #commenttemplate').find('button').on('click', openReply);
  3257. $('#replytemplate').find('button').on('click', PasteEncrypter.sendComment);
  3258. $commentContainer = $('#commentcontainer');
  3259. $discussion = $('#discussion');
  3260. };
  3261. return me;
  3262. })();
  3263. /**
  3264. * Manage top (navigation) bar
  3265. *
  3266. * @name TopNav
  3267. * @param {object} window
  3268. * @param {object} document
  3269. * @class
  3270. */
  3271. const TopNav = (function (window, document) {
  3272. const me = {};
  3273. let createButtonsDisplayed = false,
  3274. viewButtonsDisplayed = false,
  3275. burnAfterReadingDefault = false,
  3276. openDiscussionDefault = false,
  3277. $attach,
  3278. $burnAfterReading,
  3279. $burnAfterReadingOption,
  3280. $cloneButton,
  3281. $customAttachment,
  3282. $expiration,
  3283. $fileRemoveButton,
  3284. $fileWrap,
  3285. $formatter,
  3286. $newButton,
  3287. $openDiscussion,
  3288. $openDiscussionOption,
  3289. $password,
  3290. $passwordInput,
  3291. $rawTextButton,
  3292. $downloadTextButton,
  3293. $qrCodeLink,
  3294. $emailLink,
  3295. $sendButton,
  3296. $retryButton,
  3297. pasteExpiration = null,
  3298. retryButtonCallback;
  3299. /**
  3300. * set the expiration on bootstrap templates in dropdown
  3301. *
  3302. * @name TopNav.updateExpiration
  3303. * @private
  3304. * @function
  3305. * @param {Event} event
  3306. */
  3307. function updateExpiration(event)
  3308. {
  3309. // get selected option
  3310. const target = $(event.target);
  3311. // update dropdown display and save new expiration time
  3312. $('#pasteExpirationDisplay').text(target.text());
  3313. pasteExpiration = target.data('expiration');
  3314. event.preventDefault();
  3315. }
  3316. /**
  3317. * set the format on bootstrap templates in dropdown from user interaction
  3318. *
  3319. * @name TopNav.updateFormat
  3320. * @private
  3321. * @function
  3322. * @param {Event} event
  3323. */
  3324. function updateFormat(event)
  3325. {
  3326. // get selected option
  3327. const $target = $(event.target);
  3328. // update dropdown display and save new format
  3329. const newFormat = $target.data('format');
  3330. $('#pasteFormatterDisplay').text($target.text());
  3331. PasteViewer.setFormat(newFormat);
  3332. // update preview
  3333. if (Editor.isPreview()) {
  3334. PasteViewer.run();
  3335. }
  3336. event.preventDefault();
  3337. }
  3338. /**
  3339. * when "burn after reading" is checked, disable discussion
  3340. *
  3341. * @name TopNav.changeBurnAfterReading
  3342. * @private
  3343. * @function
  3344. */
  3345. function changeBurnAfterReading()
  3346. {
  3347. if (me.getBurnAfterReading()) {
  3348. $openDiscussionOption.addClass('buttondisabled');
  3349. $openDiscussion.prop('checked', false);
  3350. // if button is actually disabled, force-enable it and uncheck other button
  3351. $burnAfterReadingOption.removeClass('buttondisabled');
  3352. } else {
  3353. $openDiscussionOption.removeClass('buttondisabled');
  3354. }
  3355. }
  3356. /**
  3357. * when discussion is checked, disable "burn after reading"
  3358. *
  3359. * @name TopNav.changeOpenDiscussion
  3360. * @private
  3361. * @function
  3362. */
  3363. function changeOpenDiscussion()
  3364. {
  3365. if (me.getOpenDiscussion()) {
  3366. $burnAfterReadingOption.addClass('buttondisabled');
  3367. $burnAfterReading.prop('checked', false);
  3368. // if button is actually disabled, force-enable it and uncheck other button
  3369. $openDiscussionOption.removeClass('buttondisabled');
  3370. } else {
  3371. $burnAfterReadingOption.removeClass('buttondisabled');
  3372. }
  3373. }
  3374. /**
  3375. * Clear the attachment input in the top navigation.
  3376. *
  3377. * @name TopNav.clearAttachmentInput
  3378. * @function
  3379. */
  3380. function clearAttachmentInput()
  3381. {
  3382. // hide UI for selected files
  3383. // our up-to-date jQuery can handle it :)
  3384. $fileWrap.find('input').val('');
  3385. }
  3386. /**
  3387. * return raw text
  3388. *
  3389. * @name TopNav.rawText
  3390. * @private
  3391. * @function
  3392. */
  3393. function rawText()
  3394. {
  3395. TopNav.hideAllButtons();
  3396. Alert.showLoading('Showing raw text…', 'time');
  3397. let paste = PasteViewer.getText();
  3398. // push a new state to allow back navigation with browser back button
  3399. history.pushState(
  3400. {type: 'raw'},
  3401. document.title,
  3402. // recreate paste URL
  3403. Helper.baseUri() + '?' + Model.getPasteId() + '#' +
  3404. CryptTool.base58encode(Model.getPasteKey())
  3405. );
  3406. // we use text/html instead of text/plain to avoid a bug when
  3407. // reloading the raw text view (it reverts to type text/html)
  3408. const $head = $('head').children().not('noscript, script, link[type="text/css"]'),
  3409. newDoc = document.open('text/html', 'replace');
  3410. newDoc.write('<!DOCTYPE html><html><head>');
  3411. for (let i = 0; i < $head.length; ++i) {
  3412. newDoc.write($head[i].outerHTML);
  3413. }
  3414. newDoc.write(
  3415. '</head><body><pre>' +
  3416. DOMPurify.sanitize(
  3417. Helper.htmlEntities(paste),
  3418. purifyHtmlConfig
  3419. ) +
  3420. '</pre></body></html>'
  3421. );
  3422. newDoc.close();
  3423. }
  3424. /**
  3425. * download text
  3426. *
  3427. * @name TopNav.downloadText
  3428. * @private
  3429. * @function
  3430. */
  3431. function downloadText()
  3432. {
  3433. var filename='paste-' + Model.getPasteId() + '.txt';
  3434. var text = PasteViewer.getText();
  3435. var element = document.createElement('a');
  3436. element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(text));
  3437. element.setAttribute('download', filename);
  3438. element.style.display = 'none';
  3439. document.body.appendChild(element);
  3440. element.click();
  3441. document.body.removeChild(element);
  3442. }
  3443. /**
  3444. * saves the language in a cookie and reloads the page
  3445. *
  3446. * @name TopNav.setLanguage
  3447. * @private
  3448. * @function
  3449. * @param {Event} event
  3450. */
  3451. function setLanguage(event)
  3452. {
  3453. document.cookie = 'lang=' + $(event.target).data('lang') + ';secure';
  3454. UiHelper.reloadHome();
  3455. }
  3456. /**
  3457. * hides all messages and creates a new paste
  3458. *
  3459. * @name TopNav.clickNewPaste
  3460. * @private
  3461. * @function
  3462. */
  3463. function clickNewPaste()
  3464. {
  3465. Controller.hideStatusMessages();
  3466. Controller.newPaste();
  3467. }
  3468. /**
  3469. * retrys some callback registered before
  3470. *
  3471. * @name TopNav.clickRetryButton
  3472. * @private
  3473. * @function
  3474. * @param {Event} event
  3475. */
  3476. function clickRetryButton(event)
  3477. {
  3478. retryButtonCallback(event);
  3479. }
  3480. /**
  3481. * removes the existing attachment
  3482. *
  3483. * @name TopNav.removeAttachment
  3484. * @private
  3485. * @function
  3486. * @param {Event} event
  3487. */
  3488. function removeAttachment(event)
  3489. {
  3490. // if custom attachment is used, remove it first
  3491. if (!$customAttachment.hasClass('hidden')) {
  3492. AttachmentViewer.removeAttachment();
  3493. $customAttachment.addClass('hidden');
  3494. $fileWrap.removeClass('hidden');
  3495. }
  3496. // in any case, remove saved attachment data
  3497. AttachmentViewer.removeAttachmentData();
  3498. clearAttachmentInput();
  3499. AttachmentViewer.clearDragAndDrop();
  3500. // pevent '#' from appearing in the URL
  3501. event.preventDefault();
  3502. }
  3503. /**
  3504. * Shows the QR code of the current paste (URL).
  3505. *
  3506. * @name TopNav.displayQrCode
  3507. * @private
  3508. * @function
  3509. */
  3510. function displayQrCode()
  3511. {
  3512. const qrCanvas = kjua({
  3513. render: 'canvas',
  3514. text: window.location.href
  3515. });
  3516. $('#qrcode-display').html(qrCanvas);
  3517. }
  3518. /**
  3519. * Template Email body.
  3520. *
  3521. * @name TopNav.templateEmailBody
  3522. * @private
  3523. * @param {string} expirationDateString
  3524. * @param {bool} isBurnafterreading
  3525. */
  3526. function templateEmailBody(expirationDateString, isBurnafterreading)
  3527. {
  3528. const EOL = '\n';
  3529. const BULLET = ' - ';
  3530. let emailBody = '';
  3531. if (expirationDateString !== null || isBurnafterreading) {
  3532. emailBody += I18n._('Notice:');
  3533. emailBody += EOL;
  3534. if (expirationDateString !== null) {
  3535. emailBody += EOL;
  3536. emailBody += BULLET;
  3537. // avoid DOMPurify mess with forward slash in expirationDateString
  3538. emailBody += Helper.sprintf(
  3539. I18n._(
  3540. 'This link will expire after %s.',
  3541. '%s'
  3542. ),
  3543. expirationDateString
  3544. );
  3545. }
  3546. if (isBurnafterreading) {
  3547. emailBody += EOL;
  3548. emailBody += BULLET;
  3549. emailBody += I18n._(
  3550. 'This link can only be accessed once, do not use back or refresh button in your browser.'
  3551. );
  3552. }
  3553. emailBody += EOL;
  3554. emailBody += EOL;
  3555. }
  3556. emailBody += I18n._('Link:');
  3557. emailBody += EOL;
  3558. emailBody += `${window.location.href}`;
  3559. return emailBody;
  3560. }
  3561. /**
  3562. * Trigger Email send.
  3563. *
  3564. * @name TopNav.triggerEmailSend
  3565. * @private
  3566. * @param {string} emailBody
  3567. */
  3568. function triggerEmailSend(emailBody)
  3569. {
  3570. window.open(
  3571. `mailto:?body=${encodeURIComponent(emailBody)}`,
  3572. '_self',
  3573. 'noopener, noreferrer'
  3574. );
  3575. }
  3576. /**
  3577. * Send Email with current paste (URL).
  3578. *
  3579. * @name TopNav.sendEmail
  3580. * @private
  3581. * @function
  3582. * @param {Date|null} expirationDate date of expiration
  3583. * @param {bool} isBurnafterreading whether it is burn after reading
  3584. */
  3585. function sendEmail(expirationDate, isBurnafterreading)
  3586. {
  3587. const expirationDateRoundedToSecond = new Date(expirationDate);
  3588. // round down at least 30 seconds to make up for the delay of request
  3589. expirationDateRoundedToSecond.setUTCSeconds(
  3590. expirationDateRoundedToSecond.getUTCSeconds() - 30
  3591. );
  3592. expirationDateRoundedToSecond.setUTCSeconds(0);
  3593. const $emailconfirmmodal = $('#emailconfirmmodal');
  3594. if ($emailconfirmmodal.length > 0) {
  3595. if (expirationDate !== null) {
  3596. I18n._(
  3597. $emailconfirmmodal.find('#emailconfirm-display'),
  3598. 'Recipient may become aware of your timezone, convert time to UTC?'
  3599. );
  3600. const $emailconfirmTimezoneCurrent = $emailconfirmmodal.find('#emailconfirm-timezone-current');
  3601. const $emailconfirmTimezoneUtc = $emailconfirmmodal.find('#emailconfirm-timezone-utc');
  3602. $emailconfirmTimezoneCurrent.off('click.sendEmailCurrentTimezone');
  3603. $emailconfirmTimezoneCurrent.on('click.sendEmailCurrentTimezone', () => {
  3604. const emailBody = templateEmailBody(expirationDateRoundedToSecond.toLocaleString(), isBurnafterreading);
  3605. $emailconfirmmodal.modal('hide');
  3606. triggerEmailSend(emailBody);
  3607. });
  3608. $emailconfirmTimezoneUtc.off('click.sendEmailUtcTimezone');
  3609. $emailconfirmTimezoneUtc.on('click.sendEmailUtcTimezone', () => {
  3610. const emailBody = templateEmailBody(expirationDateRoundedToSecond.toLocaleString(
  3611. undefined,
  3612. // we don't use Date.prototype.toUTCString() because we would like to avoid GMT
  3613. { timeZone: 'UTC', dateStyle: 'long', timeStyle: 'long' }
  3614. ), isBurnafterreading);
  3615. $emailconfirmmodal.modal('hide');
  3616. triggerEmailSend(emailBody);
  3617. });
  3618. $emailconfirmmodal.modal('show');
  3619. } else {
  3620. triggerEmailSend(templateEmailBody(null, isBurnafterreading));
  3621. }
  3622. } else {
  3623. let emailBody = '';
  3624. if (expirationDate !== null) {
  3625. const expirationDateString = window.confirm(
  3626. I18n._('Recipient may become aware of your timezone, convert time to UTC?')
  3627. ) ? expirationDateRoundedToSecond.toLocaleString(
  3628. undefined,
  3629. // we don't use Date.prototype.toUTCString() because we would like to avoid GMT
  3630. { timeZone: 'UTC', dateStyle: 'long', timeStyle: 'long' }
  3631. ) : expirationDateRoundedToSecond.toLocaleString();
  3632. emailBody = templateEmailBody(expirationDateString, isBurnafterreading);
  3633. } else {
  3634. emailBody = templateEmailBody(null, isBurnafterreading);
  3635. }
  3636. triggerEmailSend(emailBody);
  3637. }
  3638. }
  3639. /**
  3640. * Shows all navigation elements for viewing an existing paste
  3641. *
  3642. * @name TopNav.showViewButtons
  3643. * @function
  3644. */
  3645. me.showViewButtons = function()
  3646. {
  3647. if (viewButtonsDisplayed) {
  3648. return;
  3649. }
  3650. $newButton.removeClass('hidden');
  3651. $cloneButton.removeClass('hidden');
  3652. $rawTextButton.removeClass('hidden');
  3653. $downloadTextButton.removeClass('hidden');
  3654. $qrCodeLink.removeClass('hidden');
  3655. viewButtonsDisplayed = true;
  3656. };
  3657. /**
  3658. * Hides all navigation elements for viewing an existing paste
  3659. *
  3660. * @name TopNav.hideViewButtons
  3661. * @function
  3662. */
  3663. me.hideViewButtons = function()
  3664. {
  3665. if (!viewButtonsDisplayed) {
  3666. return;
  3667. }
  3668. $cloneButton.addClass('hidden');
  3669. $newButton.addClass('hidden');
  3670. $rawTextButton.addClass('hidden');
  3671. $downloadTextButton.addClass('hidden');
  3672. $qrCodeLink.addClass('hidden');
  3673. me.hideEmailButton();
  3674. viewButtonsDisplayed = false;
  3675. };
  3676. /**
  3677. * Hides all elements belonging to existing pastes
  3678. *
  3679. * @name TopNav.hideAllButtons
  3680. * @function
  3681. */
  3682. me.hideAllButtons = function()
  3683. {
  3684. me.hideViewButtons();
  3685. me.hideCreateButtons();
  3686. };
  3687. /**
  3688. * shows all elements needed when creating a new paste
  3689. *
  3690. * @name TopNav.showCreateButtons
  3691. * @function
  3692. */
  3693. me.showCreateButtons = function()
  3694. {
  3695. if (createButtonsDisplayed) {
  3696. return;
  3697. }
  3698. $attach.removeClass('hidden');
  3699. $burnAfterReadingOption.removeClass('hidden');
  3700. $expiration.removeClass('hidden');
  3701. $formatter.removeClass('hidden');
  3702. $newButton.removeClass('hidden');
  3703. $openDiscussionOption.removeClass('hidden');
  3704. $password.removeClass('hidden');
  3705. $sendButton.removeClass('hidden');
  3706. createButtonsDisplayed = true;
  3707. };
  3708. /**
  3709. * shows all elements needed when creating a new paste
  3710. *
  3711. * @name TopNav.hideCreateButtons
  3712. * @function
  3713. */
  3714. me.hideCreateButtons = function()
  3715. {
  3716. if (!createButtonsDisplayed) {
  3717. return;
  3718. }
  3719. $newButton.addClass('hidden');
  3720. $sendButton.addClass('hidden');
  3721. $expiration.addClass('hidden');
  3722. $formatter.addClass('hidden');
  3723. $burnAfterReadingOption.addClass('hidden');
  3724. $openDiscussionOption.addClass('hidden');
  3725. $password.addClass('hidden');
  3726. $attach.addClass('hidden');
  3727. createButtonsDisplayed = false;
  3728. };
  3729. /**
  3730. * only shows the "new paste" button
  3731. *
  3732. * @name TopNav.showNewPasteButton
  3733. * @function
  3734. */
  3735. me.showNewPasteButton = function()
  3736. {
  3737. $newButton.removeClass('hidden');
  3738. };
  3739. /**
  3740. * only shows the "retry" button
  3741. *
  3742. * @name TopNav.showRetryButton
  3743. * @function
  3744. */
  3745. me.showRetryButton = function()
  3746. {
  3747. $retryButton.removeClass('hidden');
  3748. }
  3749. /**
  3750. * hides the "retry" button
  3751. *
  3752. * @name TopNav.hideRetryButton
  3753. * @function
  3754. */
  3755. me.hideRetryButton = function()
  3756. {
  3757. $retryButton.addClass('hidden');
  3758. }
  3759. /**
  3760. * show the "email" button
  3761. *
  3762. * @name TopNav.showEmailbutton
  3763. * @function
  3764. * @param {int|undefined} optionalRemainingTimeInSeconds
  3765. */
  3766. me.showEmailButton = function(optionalRemainingTimeInSeconds)
  3767. {
  3768. try {
  3769. // we cache expiration date in closure to avoid inaccurate expiration datetime
  3770. const expirationDate = Helper.calculateExpirationDate(
  3771. new Date(),
  3772. typeof optionalRemainingTimeInSeconds === 'number' ? optionalRemainingTimeInSeconds : TopNav.getExpiration()
  3773. );
  3774. const isBurnafterreading = TopNav.getBurnAfterReading();
  3775. $emailLink.removeClass('hidden');
  3776. $emailLink.off('click.sendEmail');
  3777. $emailLink.on('click.sendEmail', () => {
  3778. sendEmail(expirationDate, isBurnafterreading);
  3779. });
  3780. } catch (error) {
  3781. console.error(error);
  3782. Alert.showError('Cannot calculate expiration date.');
  3783. }
  3784. }
  3785. /**
  3786. * hide the "email" button
  3787. *
  3788. * @name TopNav.hideEmailButton
  3789. * @function
  3790. */
  3791. me.hideEmailButton = function()
  3792. {
  3793. $emailLink.addClass('hidden');
  3794. $emailLink.off('click.sendEmail');
  3795. }
  3796. /**
  3797. * only hides the clone button
  3798. *
  3799. * @name TopNav.hideCloneButton
  3800. * @function
  3801. */
  3802. me.hideCloneButton = function()
  3803. {
  3804. $cloneButton.addClass('hidden');
  3805. };
  3806. /**
  3807. * only hides the raw text button
  3808. *
  3809. * @name TopNav.hideRawButton
  3810. * @function
  3811. */
  3812. me.hideRawButton = function()
  3813. {
  3814. $rawTextButton.addClass('hidden');
  3815. };
  3816. /**
  3817. * only hides the download text button
  3818. *
  3819. * @name TopNav.hideRawButton
  3820. * @function
  3821. */
  3822. me.hideDownloadButton = function()
  3823. {
  3824. $downloadTextButton.addClass('hidden');
  3825. };
  3826. /**
  3827. * only hides the qr code button
  3828. *
  3829. * @name TopNav.hideQrCodeButton
  3830. * @function
  3831. */
  3832. me.hideQrCodeButton = function()
  3833. {
  3834. $qrCodeLink.addClass('hidden');
  3835. }
  3836. /**
  3837. * hide all irrelevant buttons when viewing burn after reading paste
  3838. *
  3839. * @name TopNav.hideBurnAfterReadingButtons
  3840. * @function
  3841. */
  3842. me.hideBurnAfterReadingButtons = function()
  3843. {
  3844. me.hideCloneButton();
  3845. me.hideQrCodeButton();
  3846. me.hideEmailButton();
  3847. }
  3848. /**
  3849. * hides the file selector in attachment
  3850. *
  3851. * @name TopNav.hideFileSelector
  3852. * @function
  3853. */
  3854. me.hideFileSelector = function()
  3855. {
  3856. $fileWrap.addClass('hidden');
  3857. };
  3858. /**
  3859. * shows the custom attachment
  3860. *
  3861. * @name TopNav.showCustomAttachment
  3862. * @function
  3863. */
  3864. me.showCustomAttachment = function()
  3865. {
  3866. $customAttachment.removeClass('hidden');
  3867. };
  3868. /**
  3869. * hides the custom attachment
  3870. *
  3871. * @name TopNav.hideCustomAttachment
  3872. * @function
  3873. */
  3874. me.hideCustomAttachment = function()
  3875. {
  3876. $customAttachment.addClass('hidden');
  3877. $fileWrap.removeClass('hidden');
  3878. };
  3879. /**
  3880. * collapses the navigation bar, only if expanded
  3881. *
  3882. * @name TopNav.collapseBar
  3883. * @function
  3884. */
  3885. me.collapseBar = function()
  3886. {
  3887. if ($('#navbar').attr('aria-expanded') === 'true') {
  3888. $('.navbar-toggle').click();
  3889. }
  3890. };
  3891. /**
  3892. * Reset the top navigation back to it's default values.
  3893. *
  3894. * @name TopNav.resetInput
  3895. * @function
  3896. */
  3897. me.resetInput = function()
  3898. {
  3899. clearAttachmentInput();
  3900. $burnAfterReading.prop('checked', burnAfterReadingDefault);
  3901. $openDiscussion.prop('checked', openDiscussionDefault);
  3902. if (openDiscussionDefault || !burnAfterReadingDefault) $openDiscussionOption.removeClass('buttondisabled');
  3903. if (burnAfterReadingDefault || !openDiscussionDefault) $burnAfterReadingOption.removeClass('buttondisabled');
  3904. pasteExpiration = Model.getExpirationDefault() || pasteExpiration;
  3905. $('#pasteExpiration>option').each(function() {
  3906. const $this = $(this);
  3907. if ($this.val() === pasteExpiration) {
  3908. $('#pasteExpirationDisplay').text($this.text());
  3909. }
  3910. });
  3911. };
  3912. /**
  3913. * returns the currently set expiration time
  3914. *
  3915. * @name TopNav.getExpiration
  3916. * @function
  3917. * @return {int}
  3918. */
  3919. me.getExpiration = function()
  3920. {
  3921. return pasteExpiration;
  3922. };
  3923. /**
  3924. * returns the currently selected file(s)
  3925. *
  3926. * @name TopNav.getFileList
  3927. * @function
  3928. * @return {FileList|null}
  3929. */
  3930. me.getFileList = function()
  3931. {
  3932. const $file = $('#file');
  3933. // if no file given, return null
  3934. if (!$file.length || !$file[0].files.length) {
  3935. return null;
  3936. }
  3937. // ensure the selected file is still accessible
  3938. if (!($file[0].files && $file[0].files[0])) {
  3939. return null;
  3940. }
  3941. return $file[0].files;
  3942. };
  3943. /**
  3944. * returns the state of the burn after reading checkbox
  3945. *
  3946. * @name TopNav.getBurnAfterReading
  3947. * @function
  3948. * @return {bool}
  3949. */
  3950. me.getBurnAfterReading = function()
  3951. {
  3952. return $burnAfterReading.prop('checked');
  3953. };
  3954. /**
  3955. * returns the state of the discussion checkbox
  3956. *
  3957. * @name TopNav.getOpenDiscussion
  3958. * @function
  3959. * @return {bool}
  3960. */
  3961. me.getOpenDiscussion = function()
  3962. {
  3963. return $openDiscussion.prop('checked');
  3964. };
  3965. /**
  3966. * returns the entered password
  3967. *
  3968. * @name TopNav.getPassword
  3969. * @function
  3970. * @return {string}
  3971. */
  3972. me.getPassword = function()
  3973. {
  3974. // when password is disabled $passwordInput.val() will return undefined
  3975. return $passwordInput.val() || '';
  3976. };
  3977. /**
  3978. * returns the element where custom attachments can be placed
  3979. *
  3980. * Used by AttachmentViewer when an attachment is cloned here.
  3981. *
  3982. * @name TopNav.getCustomAttachment
  3983. * @function
  3984. * @return {jQuery}
  3985. */
  3986. me.getCustomAttachment = function()
  3987. {
  3988. return $customAttachment;
  3989. };
  3990. /**
  3991. * Set a function to call when the retry button is clicked.
  3992. *
  3993. * @name TopNav.setRetryCallback
  3994. * @function
  3995. * @param {function} callback
  3996. */
  3997. me.setRetryCallback = function(callback)
  3998. {
  3999. retryButtonCallback = callback;
  4000. }
  4001. /**
  4002. * Highlight file upload
  4003. *
  4004. * @name TopNav.highlightFileupload
  4005. * @function
  4006. */
  4007. me.highlightFileupload = function()
  4008. {
  4009. // visually indicate file uploaded
  4010. const $attachDropdownToggle = $attach.children('.dropdown-toggle');
  4011. if ($attachDropdownToggle.attr('aria-expanded') === 'false') {
  4012. $attachDropdownToggle.click();
  4013. }
  4014. $fileWrap.addClass('highlight');
  4015. setTimeout(function () {
  4016. $fileWrap.removeClass('highlight');
  4017. }, 300);
  4018. }
  4019. /**
  4020. * set the format on bootstrap templates in dropdown programmatically
  4021. *
  4022. * @name TopNav.setFormat
  4023. * @function
  4024. */
  4025. me.setFormat = function(format)
  4026. {
  4027. $formatter.parent().find(`a[data-format="${format}"]`).click();
  4028. }
  4029. /**
  4030. * returns if attachment dropdown is readonly, not editable
  4031. *
  4032. * @name TopNav.isAttachmentReadonly
  4033. * @function
  4034. * @return {bool}
  4035. */
  4036. me.isAttachmentReadonly = function()
  4037. {
  4038. return !createButtonsDisplayed || $attach.hasClass('hidden');
  4039. }
  4040. /**
  4041. * init navigation manager
  4042. *
  4043. * preloads jQuery elements
  4044. *
  4045. * @name TopNav.init
  4046. * @function
  4047. */
  4048. me.init = function()
  4049. {
  4050. $attach = $('#attach');
  4051. $burnAfterReading = $('#burnafterreading');
  4052. $burnAfterReadingOption = $('#burnafterreadingoption');
  4053. $cloneButton = $('#clonebutton');
  4054. $customAttachment = $('#customattachment');
  4055. $expiration = $('#expiration');
  4056. $fileRemoveButton = $('#fileremovebutton');
  4057. $fileWrap = $('#filewrap');
  4058. $formatter = $('#formatter');
  4059. $newButton = $('#newbutton');
  4060. $openDiscussion = $('#opendiscussion');
  4061. $openDiscussionOption = $('#opendiscussionoption');
  4062. $password = $('#password');
  4063. $passwordInput = $('#passwordinput');
  4064. $rawTextButton = $('#rawtextbutton');
  4065. $downloadTextButton = $('#downloadtextbutton');
  4066. $retryButton = $('#retrybutton');
  4067. $sendButton = $('#sendbutton');
  4068. $qrCodeLink = $('#qrcodelink');
  4069. $emailLink = $('#emaillink');
  4070. // bootstrap template drop down
  4071. $('#language ul.dropdown-menu li a').click(setLanguage);
  4072. // page template drop down
  4073. $('#language select option').click(setLanguage);
  4074. // bind events
  4075. $burnAfterReading.change(changeBurnAfterReading);
  4076. $openDiscussionOption.change(changeOpenDiscussion);
  4077. $newButton.click(clickNewPaste);
  4078. $sendButton.click(PasteEncrypter.sendPaste);
  4079. $cloneButton.click(Controller.clonePaste);
  4080. $rawTextButton.click(rawText);
  4081. $downloadTextButton.click(downloadText);
  4082. $retryButton.click(clickRetryButton);
  4083. $fileRemoveButton.click(removeAttachment);
  4084. $qrCodeLink.click(displayQrCode);
  4085. // bootstrap template drop downs
  4086. $('ul.dropdown-menu li a', $('#expiration').parent()).click(updateExpiration);
  4087. $('ul.dropdown-menu li a', $('#formatter').parent()).click(updateFormat);
  4088. // initiate default state of checkboxes
  4089. changeBurnAfterReading();
  4090. changeOpenDiscussion();
  4091. // get default values from template or fall back to set value
  4092. burnAfterReadingDefault = me.getBurnAfterReading();
  4093. openDiscussionDefault = me.getOpenDiscussion();
  4094. pasteExpiration = Model.getExpirationDefault() || pasteExpiration;
  4095. createButtonsDisplayed = false;
  4096. viewButtonsDisplayed = false;
  4097. };
  4098. return me;
  4099. })(window, document);
  4100. /**
  4101. * Responsible for AJAX requests, transparently handles encryption…
  4102. *
  4103. * @name ServerInteraction
  4104. * @class
  4105. */
  4106. const ServerInteraction = (function () {
  4107. const me = {};
  4108. let successFunc = null,
  4109. failureFunc = null,
  4110. symmetricKey = null,
  4111. url,
  4112. data,
  4113. password;
  4114. /**
  4115. * public variable ('constant') for errors to prevent magic numbers
  4116. *
  4117. * @name ServerInteraction.error
  4118. * @readonly
  4119. * @enum {Object}
  4120. */
  4121. me.error = {
  4122. okay: 0,
  4123. custom: 1,
  4124. unknown: 2,
  4125. serverError: 3
  4126. };
  4127. /**
  4128. * ajaxHeaders to send in AJAX requests
  4129. *
  4130. * @name ServerInteraction.ajaxHeaders
  4131. * @private
  4132. * @readonly
  4133. * @enum {Object}
  4134. */
  4135. const ajaxHeaders = {'X-Requested-With': 'JSONHttpRequest'};
  4136. /**
  4137. * called after successful upload
  4138. *
  4139. * @name ServerInteraction.success
  4140. * @private
  4141. * @function
  4142. * @param {int} status
  4143. * @param {int} result - optional
  4144. */
  4145. function success(status, result)
  4146. {
  4147. if (successFunc !== null) {
  4148. // add useful data to result
  4149. result.encryptionKey = symmetricKey;
  4150. successFunc(status, result);
  4151. }
  4152. }
  4153. /**
  4154. * called after a upload failure
  4155. *
  4156. * @name ServerInteraction.fail
  4157. * @private
  4158. * @function
  4159. * @param {int} status - internal code
  4160. * @param {int} result - original error code
  4161. */
  4162. function fail(status, result)
  4163. {
  4164. if (failureFunc !== null) {
  4165. failureFunc(status, result);
  4166. }
  4167. }
  4168. /**
  4169. * actually uploads the data
  4170. *
  4171. * @name ServerInteraction.run
  4172. * @function
  4173. */
  4174. me.run = function()
  4175. {
  4176. let isPost = Object.keys(data).length > 0,
  4177. ajaxParams = {
  4178. type: isPost ? 'POST' : 'GET',
  4179. url: url,
  4180. headers: ajaxHeaders,
  4181. dataType: 'json',
  4182. success: function(result) {
  4183. if (result.status === 0) {
  4184. success(0, result);
  4185. } else if (result.status === 1) {
  4186. fail(1, result);
  4187. } else {
  4188. fail(2, result);
  4189. }
  4190. }
  4191. };
  4192. if (isPost) {
  4193. ajaxParams.data = JSON.stringify(data);
  4194. }
  4195. $.ajax(ajaxParams).fail(function(jqXHR, textStatus, errorThrown) {
  4196. console.error(textStatus, errorThrown);
  4197. fail(3, jqXHR);
  4198. });
  4199. };
  4200. /**
  4201. * return currently set data, used in unit testing
  4202. *
  4203. * @name ServerInteraction.getData
  4204. * @function
  4205. */
  4206. me.getData = function()
  4207. {
  4208. return data;
  4209. };
  4210. /**
  4211. * set success function
  4212. *
  4213. * @name ServerInteraction.setUrl
  4214. * @function
  4215. * @param {function} newUrl
  4216. */
  4217. me.setUrl = function(newUrl)
  4218. {
  4219. url = newUrl;
  4220. };
  4221. /**
  4222. * sets the password to use (first value) and optionally also the
  4223. * encryption key (not recommended, it is automatically generated).
  4224. *
  4225. * Note: Call this after prepare() as prepare() resets these values.
  4226. *
  4227. * @name ServerInteraction.setCryptValues
  4228. * @function
  4229. * @param {string} newPassword
  4230. * @param {string} newKey - optional
  4231. */
  4232. me.setCryptParameters = function(newPassword, newKey)
  4233. {
  4234. password = newPassword;
  4235. if (typeof newKey !== 'undefined') {
  4236. symmetricKey = newKey;
  4237. }
  4238. };
  4239. /**
  4240. * set success function
  4241. *
  4242. * @name ServerInteraction.setSuccess
  4243. * @function
  4244. * @param {function} func
  4245. */
  4246. me.setSuccess = function(func)
  4247. {
  4248. successFunc = func;
  4249. };
  4250. /**
  4251. * set failure function
  4252. *
  4253. * @name ServerInteraction.setFailure
  4254. * @function
  4255. * @param {function} func
  4256. */
  4257. me.setFailure = function(func)
  4258. {
  4259. failureFunc = func;
  4260. };
  4261. /**
  4262. * prepares a new upload
  4263. *
  4264. * Call this when doing a new upload to reset any data from potential
  4265. * previous uploads. Must be called before any other method of this
  4266. * module.
  4267. *
  4268. * @name ServerInteraction.prepare
  4269. * @function
  4270. * @return {object}
  4271. */
  4272. me.prepare = function()
  4273. {
  4274. // entropy should already be checked!
  4275. // reset password
  4276. password = '';
  4277. // reset key, so it a new one is generated when it is used
  4278. symmetricKey = null;
  4279. // reset data
  4280. successFunc = null;
  4281. failureFunc = null;
  4282. url = Helper.baseUri();
  4283. data = {};
  4284. };
  4285. /**
  4286. * encrypts and sets the data
  4287. *
  4288. * @name ServerInteraction.setCipherMessage
  4289. * @async
  4290. * @function
  4291. * @param {object} cipherMessage
  4292. */
  4293. me.setCipherMessage = async function(cipherMessage)
  4294. {
  4295. if (
  4296. symmetricKey === null ||
  4297. (typeof symmetricKey === 'string' && symmetricKey === '')
  4298. ) {
  4299. symmetricKey = CryptTool.getSymmetricKey();
  4300. }
  4301. if (!data.hasOwnProperty('adata')) {
  4302. data['adata'] = [];
  4303. }
  4304. let cipherResult = await CryptTool.cipher(symmetricKey, password, JSON.stringify(cipherMessage), data['adata']);
  4305. data['v'] = 2;
  4306. data['ct'] = cipherResult[0];
  4307. data['adata'] = cipherResult[1];
  4308. };
  4309. /**
  4310. * set the additional metadata to send unencrypted
  4311. *
  4312. * @name ServerInteraction.setUnencryptedData
  4313. * @function
  4314. * @param {string} index
  4315. * @param {mixed} element
  4316. */
  4317. me.setUnencryptedData = function(index, element)
  4318. {
  4319. data[index] = element;
  4320. };
  4321. /**
  4322. * Helper, which parses shows a general error message based on the result of the ServerInteraction
  4323. *
  4324. * @name ServerInteraction.parseUploadError
  4325. * @function
  4326. * @param {int} status
  4327. * @param {object} data
  4328. * @param {string} doThisThing - a human description of the action, which was tried
  4329. * @return {array}
  4330. */
  4331. me.parseUploadError = function(status, data, doThisThing) {
  4332. let errorArray;
  4333. switch (status) {
  4334. case me.error.custom:
  4335. errorArray = ['Could not ' + doThisThing + ': %s', data.message];
  4336. break;
  4337. case me.error.unknown:
  4338. errorArray = ['Could not ' + doThisThing + ': %s', I18n._('unknown status')];
  4339. break;
  4340. case me.error.serverError:
  4341. errorArray = ['Could not ' + doThisThing + ': %s', I18n._('server error or not responding')];
  4342. break;
  4343. default:
  4344. errorArray = ['Could not ' + doThisThing + ': %s', I18n._('unknown error')];
  4345. break;
  4346. }
  4347. return errorArray;
  4348. };
  4349. return me;
  4350. })();
  4351. /**
  4352. * (controller) Responsible for encrypting paste and sending it to server.
  4353. *
  4354. * Does upload, encryption is done transparently by ServerInteraction.
  4355. *
  4356. * @name PasteEncrypter
  4357. * @class
  4358. */
  4359. const PasteEncrypter = (function () {
  4360. const me = {};
  4361. /**
  4362. * called after successful paste upload
  4363. *
  4364. * @name PasteEncrypter.showCreatedPaste
  4365. * @private
  4366. * @function
  4367. * @param {int} status
  4368. * @param {object} data
  4369. */
  4370. function showCreatedPaste(status, data) {
  4371. Alert.hideLoading();
  4372. Alert.hideMessages();
  4373. // show notification
  4374. const baseUri = Helper.baseUri() + '?',
  4375. url = baseUri + data.id + '#' + CryptTool.base58encode(data.encryptionKey),
  4376. deleteUrl = baseUri + 'pasteid=' + data.id + '&deletetoken=' + data.deletetoken;
  4377. PasteStatus.createPasteNotification(url, deleteUrl);
  4378. // show new URL in browser bar
  4379. history.pushState({type: 'newpaste'}, document.title, url);
  4380. TopNav.showViewButtons();
  4381. // this cannot be grouped with showViewButtons due to remaining time calculation
  4382. TopNav.showEmailButton();
  4383. TopNav.hideRawButton();
  4384. TopNav.hideDownloadButton();
  4385. Editor.hide();
  4386. // parse and show text
  4387. // (preparation already done in me.sendPaste())
  4388. PasteViewer.run();
  4389. }
  4390. /**
  4391. * called after successful comment upload
  4392. *
  4393. * @name PasteEncrypter.showUploadedComment
  4394. * @private
  4395. * @function
  4396. * @param {int} status
  4397. * @param {object} data
  4398. */
  4399. function showUploadedComment(status, data) {
  4400. // show success message
  4401. Alert.showStatus('Comment posted.');
  4402. // reload paste
  4403. Controller.refreshPaste(function () {
  4404. // highlight sent comment
  4405. DiscussionViewer.highlightComment(data.id, true);
  4406. // reset error handler
  4407. Alert.setCustomHandler(null);
  4408. });
  4409. }
  4410. /**
  4411. * send a reply in a discussion
  4412. *
  4413. * @name PasteEncrypter.sendComment
  4414. * @async
  4415. * @function
  4416. */
  4417. me.sendComment = async function()
  4418. {
  4419. Alert.hideMessages();
  4420. Alert.setCustomHandler(DiscussionViewer.handleNotification);
  4421. // UI loading state
  4422. TopNav.hideAllButtons();
  4423. Alert.showLoading('Sending comment…', 'cloud-upload');
  4424. // get data
  4425. const plainText = DiscussionViewer.getReplyMessage(),
  4426. nickname = DiscussionViewer.getReplyNickname(),
  4427. parentid = DiscussionViewer.getReplyCommentId();
  4428. // do not send if there is no data
  4429. if (plainText.length === 0) {
  4430. // revert loading status…
  4431. Alert.hideLoading();
  4432. Alert.setCustomHandler(null);
  4433. TopNav.showViewButtons();
  4434. return;
  4435. }
  4436. // prepare server interaction
  4437. ServerInteraction.prepare();
  4438. ServerInteraction.setCryptParameters(Prompt.getPassword(), Model.getPasteKey());
  4439. // set success/fail functions
  4440. ServerInteraction.setSuccess(showUploadedComment);
  4441. ServerInteraction.setFailure(function (status, data) {
  4442. // revert loading status…
  4443. Alert.hideLoading();
  4444. TopNav.showViewButtons();
  4445. // …show error message…
  4446. Alert.showError(
  4447. ServerInteraction.parseUploadError(status, data, 'post comment')
  4448. );
  4449. // …and reset error handler
  4450. Alert.setCustomHandler(null);
  4451. });
  4452. // fill it with unencrypted params
  4453. ServerInteraction.setUnencryptedData('pasteid', Model.getPasteId());
  4454. if (typeof parentid === 'undefined') {
  4455. // if parent id is not set, this is the top-most comment, so use
  4456. // paste id as parent, as the root element of the discussion tree
  4457. ServerInteraction.setUnencryptedData('parentid', Model.getPasteId());
  4458. } else {
  4459. ServerInteraction.setUnencryptedData('parentid', parentid);
  4460. }
  4461. // prepare cypher message
  4462. let cipherMessage = {
  4463. 'comment': plainText
  4464. };
  4465. if (nickname.length > 0) {
  4466. cipherMessage['nickname'] = nickname;
  4467. }
  4468. await ServerInteraction.setCipherMessage(cipherMessage).catch(Alert.showError);
  4469. ServerInteraction.run();
  4470. };
  4471. /**
  4472. * sends a new paste to server
  4473. *
  4474. * @name PasteEncrypter.sendPaste
  4475. * @async
  4476. * @function
  4477. */
  4478. me.sendPaste = async function()
  4479. {
  4480. // hide previous (error) messages
  4481. Controller.hideStatusMessages();
  4482. // UI loading state
  4483. TopNav.hideAllButtons();
  4484. Alert.showLoading('Sending paste…', 'cloud-upload');
  4485. TopNav.collapseBar();
  4486. // get data
  4487. const plainText = Editor.getText(),
  4488. format = PasteViewer.getFormat(),
  4489. // the methods may return different values if no files are attached (null, undefined or false)
  4490. files = TopNav.getFileList() || AttachmentViewer.getFile() || AttachmentViewer.hasAttachment();
  4491. // do not send if there is no data
  4492. if (plainText.length === 0 && !files) {
  4493. // revert loading status…
  4494. Alert.hideLoading();
  4495. TopNav.showCreateButtons();
  4496. return;
  4497. }
  4498. // prepare server interaction
  4499. ServerInteraction.prepare();
  4500. ServerInteraction.setCryptParameters(TopNav.getPassword());
  4501. // set success/fail functions
  4502. ServerInteraction.setSuccess(showCreatedPaste);
  4503. ServerInteraction.setFailure(function (status, data) {
  4504. // revert loading status…
  4505. Alert.hideLoading();
  4506. TopNav.showCreateButtons();
  4507. // show error message
  4508. Alert.showError(
  4509. ServerInteraction.parseUploadError(status, data, 'create paste')
  4510. );
  4511. });
  4512. // fill it with unencrypted submitted options
  4513. ServerInteraction.setUnencryptedData('adata', [
  4514. null, format,
  4515. TopNav.getOpenDiscussion() ? 1 : 0,
  4516. TopNav.getBurnAfterReading() ? 1 : 0
  4517. ]);
  4518. ServerInteraction.setUnencryptedData('meta', {'expire': TopNav.getExpiration()});
  4519. // prepare PasteViewer for later preview
  4520. PasteViewer.setText(plainText);
  4521. PasteViewer.setFormat(format);
  4522. // prepare cypher message
  4523. let file = AttachmentViewer.getAttachmentData(),
  4524. cipherMessage = {
  4525. 'paste': plainText
  4526. };
  4527. if (typeof file !== 'undefined' && file !== null) {
  4528. cipherMessage['attachment'] = file;
  4529. cipherMessage['attachment_name'] = AttachmentViewer.getFile().name;
  4530. } else if (AttachmentViewer.hasAttachment()) {
  4531. // fall back to cloned part
  4532. let attachment = AttachmentViewer.getAttachment();
  4533. cipherMessage['attachment'] = attachment[0];
  4534. cipherMessage['attachment_name'] = attachment[1];
  4535. // we need to retrieve data from blob if browser already parsed it in memory
  4536. if (typeof attachment[0] === 'string' && attachment[0].startsWith('blob:')) {
  4537. Alert.showStatus(
  4538. [
  4539. 'Retrieving cloned file \'%s\' from memory...',
  4540. attachment[1]
  4541. ],
  4542. 'copy'
  4543. );
  4544. try {
  4545. const blobData = await $.ajax({
  4546. type: 'GET',
  4547. url: `${attachment[0]}`,
  4548. processData: false,
  4549. timeout: 10000,
  4550. xhrFields: {
  4551. withCredentials: false,
  4552. responseType: 'blob'
  4553. }
  4554. });
  4555. if (blobData instanceof window.Blob) {
  4556. const fileReading = new Promise(function(resolve, reject) {
  4557. const fileReader = new FileReader();
  4558. fileReader.onload = function (event) {
  4559. resolve(event.target.result);
  4560. };
  4561. fileReader.onerror = function (error) {
  4562. reject(error);
  4563. }
  4564. fileReader.readAsDataURL(blobData);
  4565. });
  4566. cipherMessage['attachment'] = await fileReading;
  4567. } else {
  4568. const error = 'Cannot process attachment data.';
  4569. Alert.showError(error);
  4570. throw new TypeError(error);
  4571. }
  4572. } catch (error) {
  4573. console.error(error);
  4574. Alert.showError('Cannot retrieve attachment.');
  4575. throw error;
  4576. }
  4577. }
  4578. }
  4579. // encrypt message
  4580. await ServerInteraction.setCipherMessage(cipherMessage).catch(Alert.showError);
  4581. // send data
  4582. ServerInteraction.run();
  4583. };
  4584. return me;
  4585. })();
  4586. /**
  4587. * (controller) Responsible for decrypting cipherdata and passing data to view.
  4588. *
  4589. * Only decryption, no download.
  4590. *
  4591. * @name PasteDecrypter
  4592. * @class
  4593. */
  4594. const PasteDecrypter = (function () {
  4595. const me = {};
  4596. /**
  4597. * decrypt data or prompts for password in case of failure
  4598. *
  4599. * @name PasteDecrypter.decryptOrPromptPassword
  4600. * @private
  4601. * @async
  4602. * @function
  4603. * @param {string} key
  4604. * @param {string} password - optional, may be an empty string
  4605. * @param {string} cipherdata
  4606. * @throws {string}
  4607. * @return {false|string} false, when unsuccessful or string (decrypted data)
  4608. */
  4609. async function decryptOrPromptPassword(key, password, cipherdata)
  4610. {
  4611. // try decryption without password
  4612. const plaindata = await CryptTool.decipher(key, password, cipherdata);
  4613. // if it fails, request password
  4614. if (plaindata.length === 0 && password.length === 0) {
  4615. // show prompt
  4616. Prompt.requestPassword();
  4617. // Thus, we cannot do anything yet, we need to wait for the user
  4618. // input.
  4619. return false;
  4620. }
  4621. // if all tries failed, we can only return an error
  4622. if (plaindata.length === 0) {
  4623. return false;
  4624. }
  4625. return plaindata;
  4626. }
  4627. /**
  4628. * decrypt the actual paste text
  4629. *
  4630. * @name PasteDecrypter.decryptPaste
  4631. * @private
  4632. * @async
  4633. * @function
  4634. * @param {Paste} paste - paste data in object form
  4635. * @param {string} key
  4636. * @param {string} password
  4637. * @throws {string}
  4638. * @return {Promise}
  4639. */
  4640. async function decryptPaste(paste, key, password)
  4641. {
  4642. let pastePlain = await decryptOrPromptPassword(
  4643. key, password,
  4644. paste.getCipherData()
  4645. );
  4646. if (pastePlain === false) {
  4647. if (password.length === 0) {
  4648. throw 'waiting on user to provide a password';
  4649. } else {
  4650. Alert.hideLoading();
  4651. // reset password, so it can be re-entered
  4652. Prompt.reset();
  4653. TopNav.showRetryButton();
  4654. throw 'Could not decrypt data. Did you enter a wrong password? Retry with the button at the top.';
  4655. }
  4656. }
  4657. if (paste.v > 1) {
  4658. // version 2 paste
  4659. const pasteMessage = JSON.parse(pastePlain);
  4660. if (pasteMessage.hasOwnProperty('attachment') && pasteMessage.hasOwnProperty('attachment_name')) {
  4661. AttachmentViewer.setAttachment(pasteMessage.attachment, pasteMessage.attachment_name);
  4662. AttachmentViewer.showAttachment();
  4663. }
  4664. pastePlain = pasteMessage.paste;
  4665. } else {
  4666. // version 1 paste
  4667. if (paste.hasOwnProperty('attachment') && paste.hasOwnProperty('attachmentname')) {
  4668. Promise.all([
  4669. CryptTool.decipher(key, password, paste.attachment),
  4670. CryptTool.decipher(key, password, paste.attachmentname)
  4671. ]).then((attachment) => {
  4672. AttachmentViewer.setAttachment(attachment[0], attachment[1]);
  4673. AttachmentViewer.showAttachment();
  4674. });
  4675. }
  4676. }
  4677. PasteViewer.setFormat(paste.getFormat());
  4678. PasteViewer.setText(pastePlain);
  4679. PasteViewer.run();
  4680. }
  4681. /**
  4682. * decrypts all comments and shows them
  4683. *
  4684. * @name PasteDecrypter.decryptComments
  4685. * @private
  4686. * @async
  4687. * @function
  4688. * @param {Paste} paste - paste data in object form
  4689. * @param {string} key
  4690. * @param {string} password
  4691. * @return {Promise}
  4692. */
  4693. async function decryptComments(paste, key, password)
  4694. {
  4695. // remove potential previous discussion
  4696. DiscussionViewer.prepareNewDiscussion();
  4697. const commentDecryptionPromises = [];
  4698. // iterate over comments
  4699. for (let i = 0; i < paste.comments.length; ++i) {
  4700. const comment = new Comment(paste.comments[i]),
  4701. commentPromise = CryptTool.decipher(key, password, comment.getCipherData());
  4702. paste.comments[i] = comment;
  4703. if (comment.v > 1) {
  4704. // version 2 comment
  4705. commentDecryptionPromises.push(
  4706. commentPromise.then(function (commentJson) {
  4707. const commentMessage = JSON.parse(commentJson);
  4708. return [
  4709. commentMessage.comment || '',
  4710. commentMessage.nickname || ''
  4711. ];
  4712. })
  4713. );
  4714. } else {
  4715. // version 1 comment
  4716. commentDecryptionPromises.push(
  4717. Promise.all([
  4718. commentPromise,
  4719. paste.comments[i].meta.hasOwnProperty('nickname') ?
  4720. CryptTool.decipher(key, password, paste.comments[i].meta.nickname) :
  4721. Promise.resolve('')
  4722. ])
  4723. );
  4724. }
  4725. }
  4726. return Promise.all(commentDecryptionPromises).then(function (plaintexts) {
  4727. for (let i = 0; i < paste.comments.length; ++i) {
  4728. if (plaintexts[i][0].length === 0) {
  4729. continue;
  4730. }
  4731. DiscussionViewer.addComment(
  4732. paste.comments[i],
  4733. plaintexts[i][0],
  4734. plaintexts[i][1]
  4735. );
  4736. }
  4737. });
  4738. }
  4739. /**
  4740. * show decrypted text in the display area, including discussion (if open)
  4741. *
  4742. * @name PasteDecrypter.run
  4743. * @function
  4744. * @param {Paste} [paste] - (optional) object including comments to display (items = array with keys ('data','meta'))
  4745. */
  4746. me.run = function(paste)
  4747. {
  4748. Alert.hideMessages();
  4749. Alert.showLoading('Decrypting paste…', 'cloud-download');
  4750. if (typeof paste === 'undefined') {
  4751. // get cipher data and wait until it is available
  4752. Model.getPasteData(me.run);
  4753. return;
  4754. }
  4755. let key = Model.getPasteKey(),
  4756. password = Prompt.getPassword(),
  4757. decryptionPromises = [];
  4758. TopNav.setRetryCallback(function () {
  4759. TopNav.hideRetryButton();
  4760. me.run(paste);
  4761. });
  4762. // decrypt paste & attachments
  4763. decryptionPromises.push(decryptPaste(paste, key, password));
  4764. // if the discussion is opened on this paste, display it
  4765. if (paste.isDiscussionEnabled()) {
  4766. decryptionPromises.push(decryptComments(paste, key, password));
  4767. }
  4768. // shows the remaining time (until) deletion
  4769. PasteStatus.showRemainingTime(paste);
  4770. Promise.all(decryptionPromises)
  4771. .then(() => {
  4772. Alert.hideLoading();
  4773. TopNav.showViewButtons();
  4774. // discourage cloning (it cannot really be prevented)
  4775. if (paste.isBurnAfterReadingEnabled()) {
  4776. TopNav.hideBurnAfterReadingButtons();
  4777. } else {
  4778. // we have to pass in remaining_time here
  4779. TopNav.showEmailButton(paste.getTimeToLive());
  4780. }
  4781. // only offer adding comments, after paste was successfully decrypted
  4782. if (paste.isDiscussionEnabled()) {
  4783. DiscussionViewer.finishDiscussion();
  4784. }
  4785. })
  4786. .catch((err) => {
  4787. // wait for the user to type in the password,
  4788. // then PasteDecrypter.run will be called again
  4789. Alert.showError(err);
  4790. });
  4791. };
  4792. return me;
  4793. })();
  4794. /**
  4795. * (controller) main PrivateBin logic
  4796. *
  4797. * @name Controller
  4798. * @param {object} window
  4799. * @param {object} document
  4800. * @class
  4801. */
  4802. const Controller = (function (window, document) {
  4803. const me = {};
  4804. /**
  4805. * hides all status messages no matter which module showed them
  4806. *
  4807. * @name Controller.hideStatusMessages
  4808. * @function
  4809. */
  4810. me.hideStatusMessages = function()
  4811. {
  4812. PasteStatus.hideMessages();
  4813. Alert.hideMessages();
  4814. };
  4815. /**
  4816. * creates a new paste
  4817. *
  4818. * @name Controller.newPaste
  4819. * @function
  4820. */
  4821. me.newPaste = function()
  4822. {
  4823. // Important: This *must not* run Alert.hideMessages() as previous
  4824. // errors from viewing a paste should be shown.
  4825. TopNav.hideAllButtons();
  4826. Alert.showLoading('Preparing new paste…', 'time');
  4827. PasteStatus.hideMessages();
  4828. PasteViewer.hide();
  4829. Editor.resetInput();
  4830. Editor.show();
  4831. Editor.focusInput();
  4832. AttachmentViewer.removeAttachment();
  4833. TopNav.resetInput();
  4834. TopNav.showCreateButtons();
  4835. // newPaste could be called when user is on paste clone editing view
  4836. TopNav.hideCustomAttachment();
  4837. AttachmentViewer.clearDragAndDrop();
  4838. AttachmentViewer.removeAttachmentData();
  4839. Alert.hideLoading();
  4840. history.pushState({type: 'create'}, document.title, Helper.baseUri());
  4841. // clear discussion
  4842. DiscussionViewer.prepareNewDiscussion();
  4843. };
  4844. /**
  4845. * shows the loaded paste
  4846. *
  4847. * @name Controller.showPaste
  4848. * @function
  4849. */
  4850. me.showPaste = function()
  4851. {
  4852. try {
  4853. Model.getPasteKey();
  4854. } catch (err) {
  4855. console.error(err);
  4856. // missing decryption key (or paste ID) in URL?
  4857. if (window.location.hash.length === 0) {
  4858. 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?)');
  4859. return;
  4860. }
  4861. }
  4862. // show proper elements on screen
  4863. PasteDecrypter.run();
  4864. };
  4865. /**
  4866. * refreshes the loaded paste to show potential new data
  4867. *
  4868. * @name Controller.refreshPaste
  4869. * @function
  4870. * @param {function} callback
  4871. */
  4872. me.refreshPaste = function(callback)
  4873. {
  4874. // save window position to restore it later
  4875. const orgPosition = $(window).scrollTop();
  4876. Model.getPasteData(function (data) {
  4877. ServerInteraction.prepare();
  4878. ServerInteraction.setUrl(Helper.baseUri() + '?pasteid=' + Model.getPasteId());
  4879. ServerInteraction.setFailure(function (status, data) {
  4880. // revert loading status…
  4881. Alert.hideLoading();
  4882. TopNav.showViewButtons();
  4883. // show error message
  4884. Alert.showError(
  4885. ServerInteraction.parseUploadError(status, data, 'refresh display')
  4886. );
  4887. });
  4888. ServerInteraction.setSuccess(function (status, data) {
  4889. PasteDecrypter.run(new Paste(data));
  4890. // restore position
  4891. window.scrollTo(0, orgPosition);
  4892. // NOTE: could create problems as callback may be called
  4893. // asyncronously if PasteDecrypter e.g. needs to wait for a
  4894. // password being entered
  4895. callback();
  4896. });
  4897. ServerInteraction.run();
  4898. }, false); // this false is important as it circumvents the cache
  4899. }
  4900. /**
  4901. * clone the current paste
  4902. *
  4903. * @name Controller.clonePaste
  4904. * @function
  4905. */
  4906. me.clonePaste = function()
  4907. {
  4908. TopNav.collapseBar();
  4909. TopNav.hideAllButtons();
  4910. // hide messages from previous paste
  4911. me.hideStatusMessages();
  4912. // erase the id and the key in url
  4913. history.pushState({type: 'clone'}, document.title, Helper.baseUri());
  4914. if (AttachmentViewer.hasAttachment()) {
  4915. AttachmentViewer.moveAttachmentTo(
  4916. TopNav.getCustomAttachment(),
  4917. 'Cloned: \'%s\''
  4918. );
  4919. TopNav.hideFileSelector();
  4920. AttachmentViewer.hideAttachment();
  4921. // NOTE: it also looks nice without removing the attachment
  4922. // but for a consistent display we remove it…
  4923. AttachmentViewer.hideAttachmentPreview();
  4924. TopNav.showCustomAttachment();
  4925. // show another status message to make the user aware that the
  4926. // file was cloned too!
  4927. Alert.showStatus(
  4928. [
  4929. 'The cloned file \'%s\' was attached to this paste.',
  4930. AttachmentViewer.getAttachment()[1]
  4931. ],
  4932. 'copy'
  4933. );
  4934. }
  4935. Editor.setText(PasteViewer.getText());
  4936. // also clone the format
  4937. TopNav.setFormat(PasteViewer.getFormat());
  4938. PasteViewer.hide();
  4939. Editor.show();
  4940. TopNav.showCreateButtons();
  4941. // clear discussion
  4942. DiscussionViewer.prepareNewDiscussion();
  4943. };
  4944. /**
  4945. * try initializing zlib or display a warning if it fails,
  4946. * extracted from main init to allow unit testing
  4947. *
  4948. * @name Controller.initZ
  4949. * @function
  4950. */
  4951. me.initZ = function()
  4952. {
  4953. z = zlib.catch(function () {
  4954. if ($('body').data('compression') !== 'none') {
  4955. Alert.showWarning('Your browser doesn\'t support WebAssembly, used for zlib compression. You can create uncompressed documents, but can\'t read compressed ones.');
  4956. }
  4957. });
  4958. }
  4959. /**
  4960. * application start
  4961. *
  4962. * @name Controller.init
  4963. * @function
  4964. */
  4965. me.init = function()
  4966. {
  4967. // first load translations
  4968. I18n.loadTranslations();
  4969. // Add a hook to make all links open a new window
  4970. DOMPurify.addHook('afterSanitizeAttributes', function(node) {
  4971. // set all elements owning target to target=_blank
  4972. if ('target' in node && node.id !== 'pasteurl') {
  4973. node.setAttribute('target', '_blank');
  4974. }
  4975. // set non-HTML/MathML links to xlink:show=new
  4976. if (!node.hasAttribute('target')
  4977. && (node.hasAttribute('xlink:href')
  4978. || node.hasAttribute('href'))) {
  4979. node.setAttribute('xlink:show', 'new');
  4980. }
  4981. if ('rel' in node) {
  4982. node.setAttribute('rel', 'nofollow noopener noreferrer');
  4983. }
  4984. });
  4985. // center all modals
  4986. $('.modal').on('show.bs.modal', function(e) {
  4987. $(e.target).css({
  4988. display: 'flex'
  4989. });
  4990. });
  4991. // initialize other modules/"classes"
  4992. Alert.init();
  4993. Model.init();
  4994. AttachmentViewer.init();
  4995. DiscussionViewer.init();
  4996. Editor.init();
  4997. PasteStatus.init();
  4998. PasteViewer.init();
  4999. Prompt.init();
  5000. TopNav.init();
  5001. UiHelper.init();
  5002. // check for legacy browsers before going any further
  5003. if (!Legacy.Check.getInit()) {
  5004. // Legacy check didn't complete, wait and try again
  5005. setTimeout(init, 500);
  5006. return;
  5007. }
  5008. if (!Legacy.Check.getStatus()) {
  5009. // something major is wrong, stop right away
  5010. return;
  5011. }
  5012. me.initZ();
  5013. // if delete token is passed (i.e. paste has been deleted by this
  5014. // access), there is nothing more to do
  5015. if (Model.hasDeleteToken()) {
  5016. return;
  5017. }
  5018. // check whether existing paste needs to be shown
  5019. try {
  5020. Model.getPasteId();
  5021. } catch (e) {
  5022. // otherwise create a new paste
  5023. return me.newPaste();
  5024. }
  5025. // always reload on back button to invalidate cache(protect burn after read paste)
  5026. window.addEventListener('popstate', () => {
  5027. window.location.reload();
  5028. });
  5029. // display an existing paste
  5030. return me.showPaste();
  5031. }
  5032. return me;
  5033. })(window, document);
  5034. return {
  5035. Helper: Helper,
  5036. I18n: I18n,
  5037. CryptTool: CryptTool,
  5038. Model: Model,
  5039. UiHelper: UiHelper,
  5040. Alert: Alert,
  5041. PasteStatus: PasteStatus,
  5042. Prompt: Prompt,
  5043. Editor: Editor,
  5044. PasteViewer: PasteViewer,
  5045. AttachmentViewer: AttachmentViewer,
  5046. DiscussionViewer: DiscussionViewer,
  5047. TopNav: TopNav,
  5048. ServerInteraction: ServerInteraction,
  5049. PasteEncrypter: PasteEncrypter,
  5050. PasteDecrypter: PasteDecrypter,
  5051. Controller: Controller
  5052. };
  5053. })(jQuery, RawDeflate);