privatebin.js 190 KB

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