privatebin.js 176 KB

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