functions.php 347 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420
  1. <?php
  2. // ===================================
  3. // Define Version
  4. define('INSTALLEDVERSION', '1.603');
  5. // ===================================
  6. $debugOrganizr = true;
  7. if($debugOrganizr == true && file_exists('debug.php')){ require_once('debug.php'); }
  8. use Kryptonit3\Sonarr\Sonarr;
  9. use Kryptonit3\SickRage\SickRage;
  10. //homepage order
  11. function homepageOrder(){
  12. $homepageOrder = array(
  13. "homepageOrdercustomhtml" => homepageOrdercustomhtml,
  14. "homepageOrdernotice" => homepageOrdernotice,
  15. "homepageOrderplexsearch" => homepageOrderplexsearch,
  16. "homepageOrderspeedtest" => homepageOrderspeedtest,
  17. "homepageOrdernzbget" => homepageOrdernzbget,
  18. "homepageOrdersabnzbd" => homepageOrdersabnzbd,
  19. "homepageOrderplexnowplaying" => homepageOrderplexnowplaying,
  20. "homepageOrderplexrecent" => homepageOrderplexrecent,
  21. "homepageOrderplexplaylist" => homepageOrderplexplaylist,
  22. "homepageOrderembynowplaying" => homepageOrderembynowplaying,
  23. "homepageOrderembyrecent" => homepageOrderembyrecent,
  24. "homepageOrderombi" => homepageOrderombi,
  25. "homepageOrdercalendar" => homepageOrdercalendar,
  26. );
  27. asort($homepageOrder);
  28. return $homepageOrder;
  29. }
  30. // Debugging output functions
  31. function debug_out($variable, $die = false) {
  32. $trace = debug_backtrace()[0];
  33. echo "<center><img height='200px' src='images/confused.png'></center>";
  34. echo "<center>Look's like something happened, here are the errors and perhaps how to fix them:</center>";
  35. echo '<pre style="white-space: pre-line; background-color: #f2f2f2; border: 2px solid black; border-radius: 5px; padding: 5px; margin: 5px;">'.$trace['file'].':'.$trace['line']."\n\n".print_r($variable, true).'</pre>';
  36. if ($die) { http_response_code(503); die(); }
  37. }
  38. //Cookie Function
  39. function coookie($type, $name, $value = '', $days = -1){
  40. if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == "https"){
  41. $Secure = true;
  42. $HTTPOnly = true;
  43. }elseif (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') {
  44. $Secure = true;
  45. $HTTPOnly = true;
  46. } else {
  47. $Secure = false;
  48. $HTTPOnly = false;
  49. }
  50. $Path = '/';
  51. $Domain = $_SERVER['HTTP_HOST'];
  52. $Port = strpos($Domain, ':');
  53. if ($Port !== false) $Domain = substr($Domain, 0, $Port);
  54. $Port = strpos($Domain, ':');
  55. $check = substr_count($Domain, '.');
  56. if($check >= 3){
  57. if(is_numeric($Domain[0])){
  58. $Domain = '';
  59. }else{
  60. $Domain = '.'.explode('.',$Domain)[1].'.'.explode('.',$Domain)[2].'.'.explode('.',$Domain)[3];
  61. }
  62. }elseif($check == 2){
  63. $Domain = '.'.explode('.',$Domain)[1].'.'.explode('.',$Domain)[2];
  64. }elseif($check == 1){
  65. $Domain = '.' . $Domain;
  66. }else{
  67. $Domain = '';
  68. }
  69. if($type = 'set'){
  70. header('Set-Cookie: ' . rawurlencode($name) . '=' . rawurlencode($value)
  71. . (empty($days) ? '' : '; expires=' . gmdate('D, d-M-Y H:i:s', time() + (86400 * $days)) . ' GMT')
  72. . (empty($Path) ? '' : '; path=' . $Path)
  73. . (empty($Domain) ? '' : '; domain=' . $Domain)
  74. . (!$Secure ? '' : '; secure')
  75. . (!$HTTPOnly ? '' : '; HttpOnly'), false);
  76. }elseif($type = 'delete'){
  77. unset($_COOKIE[$name]);
  78. header('Set-Cookie: ' . rawurlencode($name) . '=' . rawurlencode($value)
  79. . (empty($days) ? '' : '; expires=' . gmdate('D, d-M-Y H:i:s', time() - 3600) . ' GMT')
  80. . (empty($Path) ? '' : '; path=' . $Path)
  81. . (empty($Domain) ? '' : '; domain=' . $Domain)
  82. . (!$Secure ? '' : '; secure')
  83. . (!$HTTPOnly ? '' : '; HttpOnly'), false);
  84. }
  85. }
  86. // ==== Auth Plugins START ====
  87. if (function_exists('ldap_connect')) :
  88. // Pass credentials to LDAP backend
  89. function plugin_auth_ldap($username, $password) {
  90. $ldapServers = explode(',',AUTHBACKENDHOST);
  91. foreach($ldapServers as $key => $value) {
  92. // Calculate parts
  93. $digest = parse_url(trim($value));
  94. $scheme = strtolower((isset($digest['scheme'])?$digest['scheme']:'ldap'));
  95. $host = (isset($digest['host'])?$digest['host']:(isset($digest['path'])?$digest['path']:''));
  96. $port = (isset($digest['port'])?$digest['port']:(strtolower($scheme)=='ldap'?389:636));
  97. // Reassign
  98. $ldapServers[$key] = $scheme.'://'.$host.':'.$port;
  99. }
  100. // returns true or false
  101. $ldap = ldap_connect(implode(' ',$ldapServers));
  102. if(empty(AUTHBACKENDDOMAINFORMAT)){
  103. if ($bind = ldap_bind($ldap, AUTHBACKENDDOMAIN.'\\'.$username, $password)) {
  104. writeLog("success", "LDAP authentication success");
  105. return true;
  106. } else {
  107. writeLog("error", "LDAP could not authenticate");
  108. return false;
  109. }
  110. }else{
  111. ldap_set_option($ldap, LDAP_OPT_PROTOCOL_VERSION, 3);
  112. ldap_set_option($ldap, LDAP_OPT_REFERRALS, 0);
  113. $bind = @ldap_bind($ldap, sprintf(AUTHBACKENDDOMAINFORMAT, $username), $password);
  114. if ($bind) {
  115. writeLog("success", "LDAP authentication success");
  116. return true;
  117. } else {
  118. writeLog("error", "LDPA could not authenticate");
  119. return false;
  120. }
  121. }
  122. writeLog("error", "LDAP could not authenticate");
  123. return false;
  124. }
  125. else :
  126. // Ldap Auth Missing Dependancy
  127. function plugin_auth_ldap_disabled() {
  128. return 'LDAP - Disabled (Dependancy: php-ldap missing!)';
  129. }
  130. endif;
  131. // Pass credentials to FTP backend
  132. function plugin_auth_ftp($username, $password) {
  133. // Calculate parts
  134. $digest = parse_url(AUTHBACKENDHOST);
  135. $scheme = strtolower((isset($digest['scheme'])?$digest['scheme']:(function_exists('ftp_ssl_connect')?'ftps':'ftp')));
  136. $host = (isset($digest['host'])?$digest['host']:(isset($digest['path'])?$digest['path']:''));
  137. $port = (isset($digest['port'])?$digest['port']:21);
  138. // Determine Connection Type
  139. if ($scheme == 'ftps') {
  140. $conn_id = ftp_ssl_connect($host, $port, 20);
  141. } elseif ($scheme == 'ftp') {
  142. $conn_id = ftp_connect($host, $port, 20);
  143. } else {
  144. debug_out('Invalid FTP scheme. Use ftp or ftps');
  145. writeLog("error", "invalid FTP scheme");
  146. return false;
  147. }
  148. // Check if valid FTP connection
  149. if ($conn_id) {
  150. // Attempt login
  151. @$login_result = ftp_login($conn_id, $username, $password);
  152. ftp_close($conn_id);
  153. // Return Result
  154. if ($login_result) {
  155. writeLog("success", "$username authenticated");
  156. return true;
  157. } else {
  158. writeLog("error", "$username could not authenticate");
  159. return false;
  160. }
  161. } else {
  162. return false;
  163. }
  164. return false;
  165. }
  166. // Pass credentials to Emby Backend
  167. function plugin_auth_emby_local($username, $password) {
  168. $embyAddress = qualifyURL(EMBYURL);
  169. $headers = array(
  170. 'Authorization'=> 'MediaBrowser UserId="e8837bc1-ad67-520e-8cd2-f629e3155721", Client="None", Device="Organizr", DeviceId="xxx", Version="1.0.0.0"',
  171. 'Content-Type' => 'application/json',
  172. );
  173. $body = array(
  174. 'Username' => $username,
  175. 'Password' => sha1($password),
  176. 'PasswordMd5' => md5($password),
  177. );
  178. $response = post_router($embyAddress.'/Users/AuthenticateByName', $body, $headers);
  179. if (isset($response['content'])) {
  180. $json = json_decode($response['content'], true);
  181. if (is_array($json) && isset($json['SessionInfo']) && isset($json['User']) && $json['User']['HasPassword'] == true) {
  182. // Login Success - Now Logout Emby Session As We No Longer Need It
  183. $headers = array(
  184. 'X-Mediabrowser-Token' => $json['AccessToken'],
  185. );
  186. $response = post_router($embyAddress.'/Sessions/Logout', array(), $headers);
  187. return true;
  188. }
  189. }
  190. return false;
  191. }
  192. if (function_exists('curl_version')) :
  193. // Authenticate Against Emby Local (first) and Emby Connect
  194. function plugin_auth_emby_all($username, $password) {
  195. $localResult = plugin_auth_emby_local($username, $password);
  196. if ($localResult) {
  197. return $localResult;
  198. } else {
  199. return plugin_auth_emby_connect($username, $password);
  200. }
  201. }
  202. // Authenicate against emby connect
  203. function plugin_auth_emby_connect($username, $password) {
  204. $embyAddress = qualifyURL(EMBYURL);
  205. // Get A User
  206. $connectId = '';
  207. $userIds = json_decode(@file_get_contents($embyAddress.'/Users?api_key='.EMBYTOKEN),true);
  208. if (is_array($userIds)) {
  209. foreach ($userIds as $key => $value) { // Scan for this user
  210. if (isset($value['ConnectUserName']) && isset($value['ConnectUserId'])) { // Qualifty as connect account
  211. if ($value['ConnectUserName'] == $username || $value['Name'] == $username) {
  212. $connectId = $value['ConnectUserId'];
  213. break;
  214. }
  215. }
  216. }
  217. if ($connectId) {
  218. $connectURL = 'https://connect.emby.media/service/user/authenticate';
  219. $headers = array(
  220. 'Accept'=> 'application/json',
  221. 'Content-Type' => 'application/x-www-form-urlencoded',
  222. );
  223. $body = array(
  224. 'nameOrEmail' => $username,
  225. 'rawpw' => $password,
  226. );
  227. $result = curl_post($connectURL, $body, $headers);
  228. if (isset($result['content'])) {
  229. $json = json_decode($result['content'], true);
  230. if (is_array($json) && isset($json['AccessToken']) && isset($json['User']) && $json['User']['Id'] == $connectId) {
  231. return array(
  232. 'email' => $json['User']['Email'],
  233. 'image' => $json['User']['ImageUrl'],
  234. );
  235. }
  236. }
  237. }
  238. }
  239. return false;
  240. }
  241. // Pass credentials to Plex Backend
  242. function plugin_auth_plex($username, $password) {
  243. // Quick out
  244. $isAdmin = false;
  245. if ((strtolower(PLEXUSERNAME) == strtolower($username)) && $password == PLEXPASSWORD) {
  246. writeLog("success", "Admin: ".$username." authenticated by plex");
  247. //return true;
  248. $isAdmin = true;
  249. }
  250. //Get User List
  251. $userURL = 'https://plex.tv/pms/friends/all';
  252. $userHeaders = array(
  253. 'Authorization' => 'Basic '.base64_encode(PLEXUSERNAME.':'.PLEXPASSWORD),
  254. );
  255. libxml_use_internal_errors(true);
  256. $userXML = simplexml_load_string(curl_get($userURL, $userHeaders));
  257. if (is_array($userXML) || is_object($userXML)) {
  258. $isUser = false;
  259. $usernameLower = strtolower($username);
  260. foreach($userXML AS $child) {
  261. if(isset($child['username']) && strtolower($child['username']) == $usernameLower) {
  262. $isUser = true;
  263. writeLog("success", $usernameLower." was found in plex friends list");
  264. break;
  265. }
  266. }
  267. if ($isUser || $isAdmin) {
  268. //Login User
  269. $connectURL = 'https://plex.tv/users/sign_in.json';
  270. $headers = array(
  271. 'Accept'=> 'application/json',
  272. 'Content-Type' => 'application/x-www-form-urlencoded',
  273. 'X-Plex-Product' => 'Organizr',
  274. 'X-Plex-Version' => '1.0',
  275. 'X-Plex-Client-Identifier' => '01010101-10101010',
  276. );
  277. $body = array(
  278. 'user[login]' => $username,
  279. 'user[password]' => $password,
  280. );
  281. $result = curl_post($connectURL, $body, $headers);
  282. if (isset($result['content'])) {
  283. $json = json_decode($result['content'], true);
  284. if (is_array($json) && isset($json['user']) && isset($json['user']['username']) && strtolower($json['user']['username']) == $usernameLower) {
  285. writeLog("success", $json['user']['username']." was logged into organizr using plex credentials");
  286. return array(
  287. 'email' => $json['user']['email'],
  288. 'image' => $json['user']['thumb'],
  289. 'token' => $json['user']['authToken']
  290. );
  291. }
  292. }
  293. }else{
  294. writeLog("error", "$username is not an authorized PLEX user or entered invalid password");
  295. }
  296. }else{
  297. writeLog("error", "error occured logging into plex might want to check curl.cainfo=/path/to/downloaded/cacert.pem in php.ini");
  298. }
  299. return false;
  300. }
  301. else :
  302. // Plex Auth Missing Dependancy
  303. function plugin_auth_plex_disabled() {
  304. return 'Plex - Disabled (Dependancy: php-curl missing!)';
  305. }
  306. // Emby Connect Auth Missing Dependancy
  307. function plugin_auth_emby_connect_disabled() {
  308. return 'Emby Connect - Disabled (Dependancy: php-curl missing!)';
  309. }
  310. // Emby Both Auth Missing Dependancy
  311. function plugin_auth_emby_both_disabled() {
  312. return 'Emby Both - Disabled (Dependancy: php-curl missing!)';
  313. }
  314. endif;
  315. // ==== Auth Plugins END ====
  316. // ==== General Class Definitions START ====
  317. $userLanguage = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2) : "en";
  318. class setLanguage {
  319. private $language = null;
  320. private $langCode = null;
  321. function __construct($language = false) {
  322. // Default
  323. if (!$language) {
  324. $language = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2) : "en";
  325. }
  326. if (!file_exists("lang/{$language}.ini")) {
  327. $language = 'en';
  328. }
  329. $this->langCode = $language;
  330. $this->language = parse_ini_file("lang/{$language}.ini", false, INI_SCANNER_RAW);
  331. if (file_exists("lang/{$language}.cust.ini")) {
  332. foreach($tmp = parse_ini_file("lang/{$language}.cust.ini", false, INI_SCANNER_RAW) as $k => $v) {
  333. $this->language[$k] = $v;
  334. }
  335. }
  336. }
  337. public function getLang() {
  338. return $this->langCode;
  339. }
  340. public function translate($originalWord) {
  341. $getArg = func_num_args();
  342. if ($getArg > 1) {
  343. $allWords = func_get_args();
  344. array_shift($allWords);
  345. } else {
  346. $allWords = array();
  347. }
  348. $translatedWord = isset($this->language[$originalWord]) ? $this->language[$originalWord] : null;
  349. if (!$translatedWord) {
  350. return ucwords(str_replace("_", " ", strtolower($originalWord)));
  351. //echo "WHOA!!!!!!! $originalWord";
  352. }
  353. $translatedWord = htmlspecialchars($translatedWord, ENT_QUOTES);
  354. return vsprintf($translatedWord, $allWords);
  355. }
  356. }
  357. $language = new setLanguage;
  358. // ==== General Class Definitions END ====
  359. // Direct request to curl if it exists, otherwise handle if not HTTPS
  360. function post_router($url, $data, $headers = array(), $referer='') {
  361. if (function_exists('curl_version')) {
  362. return curl_post($url, $data, $headers, $referer);
  363. } else {
  364. return post_request($url, $data, $headers, $referer);
  365. }
  366. }
  367. if (function_exists('curl_version')) :
  368. // Curl Post
  369. function curl_post($url, $data, $headers = array(), $referer='') {
  370. // Initiate cURL
  371. $curlReq = curl_init($url);
  372. // As post request
  373. curl_setopt($curlReq, CURLOPT_CUSTOMREQUEST, "POST");
  374. curl_setopt($curlReq, CURLOPT_RETURNTRANSFER, true);
  375. curl_setopt($curlReq, CURLOPT_CAINFO, getCert());
  376. if(localURL($url)){
  377. curl_setopt($curlReq, CURLOPT_SSL_VERIFYHOST, 0);
  378. curl_setopt($curlReq, CURLOPT_SSL_VERIFYPEER, 0);
  379. }
  380. // Format Data
  381. switch (isset($headers['Content-Type'])?$headers['Content-Type']:'') {
  382. case 'application/json':
  383. curl_setopt($curlReq, CURLOPT_POSTFIELDS, json_encode($data));
  384. break;
  385. case 'application/x-www-form-urlencoded':
  386. curl_setopt($curlReq, CURLOPT_POSTFIELDS, http_build_query($data));
  387. break;
  388. default:
  389. $headers['Content-Type'] = 'application/x-www-form-urlencoded';
  390. curl_setopt($curlReq, CURLOPT_POSTFIELDS, http_build_query($data));
  391. }
  392. // Format Headers
  393. $cHeaders = array();
  394. foreach ($headers as $k => $v) {
  395. $cHeaders[] = $k.': '.$v;
  396. }
  397. if (count($cHeaders)) {
  398. curl_setopt($curlReq, CURLOPT_HTTPHEADER, $cHeaders);
  399. }
  400. // Execute
  401. $result = curl_exec($curlReq);
  402. $httpcode = curl_getinfo($curlReq);
  403. // Close
  404. curl_close($curlReq);
  405. // Return
  406. return array('content'=>$result, 'http_code'=>$httpcode);
  407. }
  408. // Curl Put
  409. function curl_put($url, $data, $headers = array(), $referer='') {
  410. // Initiate cURL
  411. $curlReq = curl_init($url);
  412. // As post request
  413. curl_setopt($curlReq, CURLOPT_CUSTOMREQUEST, "PUT");
  414. curl_setopt($curlReq, CURLOPT_RETURNTRANSFER, true);
  415. curl_setopt($curlReq, CURLOPT_CAINFO, getCert());
  416. if(localURL($url)){
  417. curl_setopt($curlReq, CURLOPT_SSL_VERIFYHOST, 0);
  418. curl_setopt($curlReq, CURLOPT_SSL_VERIFYPEER, 0);
  419. }
  420. // Format Data
  421. switch (isset($headers['Content-Type'])?$headers['Content-Type']:'') {
  422. case 'application/json':
  423. curl_setopt($curlReq, CURLOPT_POSTFIELDS, json_encode($data));
  424. break;
  425. case 'application/x-www-form-urlencoded':
  426. curl_setopt($curlReq, CURLOPT_POSTFIELDS, http_build_query($data));
  427. break;
  428. default:
  429. $headers['Content-Type'] = 'application/x-www-form-urlencoded';
  430. curl_setopt($curlReq, CURLOPT_POSTFIELDS, http_build_query($data));
  431. }
  432. // Format Headers
  433. $cHeaders = array();
  434. foreach ($headers as $k => $v) {
  435. $cHeaders[] = $k.': '.$v;
  436. }
  437. if (count($cHeaders)) {
  438. curl_setopt($curlReq, CURLOPT_HTTPHEADER, $cHeaders);
  439. }
  440. // Execute
  441. $result = curl_exec($curlReq);
  442. $httpcode = curl_getinfo($curlReq);
  443. // Close
  444. curl_close($curlReq);
  445. // Return
  446. return array('content'=>$result, 'http_code'=>$httpcode);
  447. }
  448. //Curl Get Function
  449. function curl_get($url, $headers = array()) {
  450. // Initiate cURL
  451. $curlReq = curl_init($url);
  452. // As post request
  453. curl_setopt($curlReq, CURLOPT_CUSTOMREQUEST, "GET");
  454. curl_setopt($curlReq, CURLOPT_RETURNTRANSFER, true);
  455. curl_setopt($curlReq, CURLOPT_CAINFO, getCert());
  456. curl_setopt($curlReq, CURLOPT_CONNECTTIMEOUT, 5);
  457. if(localURL($url)){
  458. curl_setopt($curlReq, CURLOPT_SSL_VERIFYHOST, 0);
  459. curl_setopt($curlReq, CURLOPT_SSL_VERIFYPEER, 0);
  460. }
  461. // Format Headers
  462. $cHeaders = array();
  463. foreach ($headers as $k => $v) {
  464. $cHeaders[] = $k.': '.$v;
  465. }
  466. if (count($cHeaders)) {
  467. curl_setopt($curlReq, CURLOPT_HTTPHEADER, $cHeaders);
  468. }
  469. // Execute
  470. $result = curl_exec($curlReq);
  471. // Close
  472. curl_close($curlReq);
  473. // Return
  474. return $result;
  475. }
  476. //Curl Delete Function
  477. function curl_delete($url, $headers = array()) {
  478. // Initiate cURL
  479. $curlReq = curl_init($url);
  480. // As post request
  481. curl_setopt($curlReq, CURLOPT_CUSTOMREQUEST, "DELETE");
  482. curl_setopt($curlReq, CURLOPT_RETURNTRANSFER, true);
  483. curl_setopt($curlReq, CURLOPT_CONNECTTIMEOUT, 5);
  484. curl_setopt($curlReq, CURLOPT_CAINFO, getCert());
  485. if(localURL($url)){
  486. curl_setopt($curlReq, CURLOPT_SSL_VERIFYHOST, 0);
  487. curl_setopt($curlReq, CURLOPT_SSL_VERIFYPEER, 0);
  488. }
  489. // Format Headers
  490. $cHeaders = array();
  491. foreach ($headers as $k => $v) {
  492. $cHeaders[] = $k.': '.$v;
  493. }
  494. if (count($cHeaders)) {
  495. curl_setopt($curlReq, CURLOPT_HTTPHEADER, $cHeaders);
  496. }
  497. // Execute
  498. $result = curl_exec($curlReq);
  499. $httpcode = curl_getinfo($curlReq);
  500. // Close
  501. curl_close($curlReq);
  502. // Return
  503. return array('content'=>$result, 'http_code'=>$httpcode);
  504. }
  505. endif;
  506. //Case-Insensitive Function
  507. function in_arrayi($needle, $haystack) {
  508. return in_array(strtolower($needle), array_map('strtolower', $haystack));
  509. }
  510. // HTTP post request (Removes need for curl, probably useless)
  511. function post_request($url, $data, $headers = array(), $referer='') {
  512. // Adapted from http://stackoverflow.com/a/28387011/6810513
  513. // Convert the data array into URL Parameters like a=b&foo=bar etc.
  514. if (isset($headers['Content-Type'])) {
  515. switch ($headers['Content-Type']) {
  516. case 'application/json':
  517. $data = json_encode($data);
  518. break;
  519. case 'application/x-www-form-urlencoded':
  520. $data = http_build_query($data);
  521. break;
  522. }
  523. } else {
  524. $headers['Content-Type'] = 'application/x-www-form-urlencoded';
  525. $data = http_build_query($data);
  526. }
  527. // parse the given URL
  528. $urlDigest = parse_url($url);
  529. // extract host and path:
  530. $host = $urlDigest['host'];
  531. $path = $urlDigest['path'];
  532. if ($urlDigest['scheme'] != 'http') {
  533. die('Error: Only HTTP request are supported, please use cURL to add HTTPS support! ('.$urlDigest['scheme'].'://'.$host.')');
  534. }
  535. // open a socket connection on port 80 - timeout: 30 sec
  536. $fp = fsockopen($host, (isset($urlDigest['port'])?':'.$urlDigest['port']:80), $errno, $errstr, 30);
  537. if ($fp){
  538. // send the request headers:
  539. fputs($fp, "POST $path HTTP/1.1\r\n");
  540. fputs($fp, "Host: $host\r\n");
  541. if ($referer != '')
  542. fputs($fp, "Referer: $referer\r\n");
  543. fputs($fp, "Content-length: ". strlen($data) ."\r\n");
  544. foreach($headers as $k => $v) {
  545. fputs($fp, $k.": ".$v."\r\n");
  546. }
  547. fputs($fp, "Connection: close\r\n\r\n");
  548. fputs($fp, $data);
  549. $result = '';
  550. while(!feof($fp)) {
  551. // receive the results of the request
  552. $result .= fgets($fp, 128);
  553. }
  554. }
  555. else {
  556. return array(
  557. 'status' => 'err',
  558. 'error' => "$errstr ($errno)"
  559. );
  560. }
  561. // close the socket connection:
  562. fclose($fp);
  563. // split the result header from the content
  564. $result = explode("\r\n\r\n", $result, 2);
  565. $header = isset($result[0]) ? $result[0] : '';
  566. $content = isset($result[1]) ? $result[1] : '';
  567. // return as structured array:
  568. return array(
  569. 'status' => 'ok',
  570. 'header' => $header,
  571. 'content' => $content,
  572. );
  573. }
  574. // Format item from Emby for Carousel
  575. function resolveEmbyItem($address, $token, $item, $nowPlaying = false, $showNames = false, $role = false, $moreInfo = false) {
  576. // Static Height
  577. $height = 444;
  578. // Get Item Details
  579. $itemDetails = json_decode(@file_get_contents($address.'/Items?Ids='.$item['Id'].'&api_key='.$token),true)['Items'][0];
  580. /*if (substr_count(EMBYURL, ':') == 2) {
  581. $URL = "http://app.emby.media/itemdetails.html?id=".$itemDetails['Id'];
  582. }else{
  583. $URL = EMBYURL."/web/itemdetails.html?id=".$itemDetails['Id'];
  584. }*/
  585. $URL = EMBYURL."/web/itemdetails.html?id=".$itemDetails['Id'];
  586. switch ($itemDetails['Type']) {
  587. case 'Episode':
  588. case 'Series':
  589. $title = (isset($itemDetails['SeriesName'])?$itemDetails['SeriesName']:"");
  590. $imageId = (isset($itemDetails['SeriesId'])?$itemDetails['SeriesId']:$itemDetails['Id']);
  591. $width = 300;
  592. $style = '';
  593. $image = 'slick-image-tall';
  594. if(!$nowPlaying){
  595. $imageType = (isset($itemDetails['ImageTags']['Primary']) ? "Primary" : false);
  596. $key = $itemDetails['Id'] . "-list";
  597. $itemType = 'season';
  598. }else{
  599. $height = 281;
  600. $width = 500;
  601. $imageId = isset($itemDetails['ParentThumbItemId']) ? $itemDetails['ParentThumbItemId'] : (isset($itemDetails['ParentBackdropItemId']) ? $itemDetails['ParentBackdropItemId'] : false);
  602. $imageType = isset($itemDetails['ParentThumbItemId']) ? "Thumb" : (isset($itemDetails['ParentBackdropItemId']) ? "Backdrop" : false);
  603. $key = (isset($itemDetails['ParentThumbItemId']) ? $itemDetails['ParentThumbItemId']."-np" : "none-np");
  604. $elapsed = $moreInfo['PlayState']['PositionTicks'];
  605. $duration = $moreInfo['NowPlayingItem']['RunTimeTicks'];
  606. $watched = (!empty($elapsed) ? floor(($elapsed / $duration) * 100) : 0);
  607. //$transcoded = floor($item->TranscodeSession['progress']- $watched);
  608. $stream = $moreInfo['PlayState']['PlayMethod'];
  609. $user = $role == "admin" ? $moreInfo['UserName'] : "";
  610. $id = $moreInfo['DeviceId'];
  611. $streamInfo = buildStream(array(
  612. 'platform' => (string) $moreInfo['Client'],
  613. 'device' => (string) $moreInfo['DeviceName'],
  614. 'stream' => streamType($stream),
  615. 'video' => streamType($stream)." ".embyArray($moreInfo['NowPlayingItem']['MediaStreams'], "video"),
  616. 'audio' => streamType($stream)." ".embyArray($moreInfo['NowPlayingItem']['MediaStreams'], "audio"),
  617. ));
  618. $state = (($moreInfo['PlayState']['IsPaused'] == "1") ? "pause" : "play");
  619. $topTitle = '<h5 class="text-center zero-m elip">'.$title.' - '.$itemDetails['Name'].'</h5>';
  620. $bottomTitle = '<small class="zero-m">S'.$itemDetails['ParentIndexNumber'].' · E'.$itemDetails['IndexNumber'].'</small>';
  621. if($showNames == "true"){ $bottomTitle .= '</small><small class="zero-m pull-right">'.$user.'</small>'; }
  622. }
  623. break;
  624. case 'MusicAlbum':
  625. case 'Audio':
  626. $title = $itemDetails['Name'];
  627. $imageId = $itemDetails['Id'];
  628. $width = 444;
  629. $style = '';
  630. $image = 'slick-image-short';
  631. if(!$nowPlaying){
  632. $imageType = (isset($itemDetails['ImageTags']['Primary']) ? "Primary" : false);
  633. $key = $itemDetails['Id'] . "-list";
  634. $itemType = 'album';
  635. }else{
  636. $height = 281;
  637. $width = 500;
  638. $imageId = (isset($itemDetails['ParentBackdropItemId']) ? $itemDetails['ParentBackdropItemId'] : false);
  639. $imageType = (isset($itemDetails['ParentBackdropItemId']) ? "Backdrop" : false);
  640. $key = (isset($itemDetails['ParentBackdropItemId']) ? $itemDetails['ParentBackdropItemId'] : "no-np") . "-np";
  641. $elapsed = $moreInfo['PlayState']['PositionTicks'];
  642. $duration = $moreInfo['NowPlayingItem']['RunTimeTicks'];
  643. $watched = (!empty($elapsed) ? floor(($elapsed / $duration) * 100) : 0);
  644. //$transcoded = floor($item->TranscodeSession['progress']- $watched);
  645. $stream = $moreInfo['PlayState']['PlayMethod'];
  646. $user = $role == "admin" ? $moreInfo['UserName'] : "";
  647. $id = $moreInfo['DeviceId'];
  648. $streamInfo = buildStream(array(
  649. 'platform' => (string) $moreInfo['Client'],
  650. 'device' => (string) $moreInfo['DeviceName'],
  651. 'stream' => streamType($stream),
  652. 'audio' => streamType($stream)." ".embyArray($moreInfo['NowPlayingItem']['MediaStreams'], "audio"),
  653. ));
  654. $state = (($moreInfo['PlayState']['IsPaused'] == "1") ? "pause" : "play");
  655. $topTitle = '<h5 class="text-center zero-m elip">'.$itemDetails['AlbumArtist'].' - '.$itemDetails['Album'].'</h5>';
  656. $bottomTitle = '<small class="zero-m">'.$title.'</small>';
  657. if($showNames == "true"){ $bottomTitle .= '</small><small class="zero-m pull-right">'.$user.'</small>'; }
  658. }
  659. break;
  660. case 'TvChannel':
  661. $title = $itemDetails['CurrentProgram']['Name'];
  662. $imageId = $itemDetails['Id'];
  663. $width = 300;
  664. $style = '';
  665. $image = 'slick-image-tall';
  666. if(!$nowPlaying){
  667. $imageType = "Primary";
  668. $key = $itemDetails['Id'] . "-list";
  669. }else{
  670. $height = 281;
  671. $width = 500;
  672. $imageType = "Thumb";
  673. $key = $itemDetails['Id'] . "-np";
  674. $useImage = "images/livetv.png";
  675. $watched = "0";
  676. $stream = $moreInfo['PlayState']['PlayMethod'];
  677. $user = $role == "admin" ? $moreInfo['UserName'] : "";
  678. $id = $moreInfo['DeviceId'];
  679. $streamInfo = buildStream(array(
  680. 'platform' => (string) $moreInfo['Client'],
  681. 'device' => (string) $moreInfo['DeviceName'],
  682. 'stream' => streamType($stream),
  683. 'video' => streamType($stream)." ".embyArray($moreInfo['NowPlayingItem']['MediaStreams'], "video"),
  684. 'audio' => streamType($stream)." ".embyArray($moreInfo['NowPlayingItem']['MediaStreams'], "audio"),
  685. ));
  686. $state = (($moreInfo['PlayState']['IsPaused'] == "1") ? "pause" : "play");
  687. $topTitle = '<h5 class="text-center zero-m elip">'.$title.'</h5>';
  688. $bottomTitle = '<small class="zero-m">'.$itemDetails['Name'].' - '.$itemDetails['ChannelNumber'].'</small>';
  689. if($showNames == "true"){ $bottomTitle .= '</small><small class="zero-m pull-right">'.$user.'</small>'; }
  690. }
  691. break;
  692. default:
  693. $title = $itemDetails['Name'];
  694. $imageId = $itemDetails['Id'];
  695. $width = 300;
  696. $style = '';
  697. $image = 'slick-image-tall';
  698. if(!$nowPlaying){
  699. $imageType = (isset($itemDetails['ImageTags']['Primary']) ? "Primary" : false);
  700. $key = $itemDetails['Id'] . "-list";
  701. $itemType = 'movie';
  702. }else{
  703. $height = 281;
  704. $width = 500;
  705. $imageType = isset($itemDetails['ImageTags']['Thumb']) ? "Thumb" : (isset($itemDetails['BackdropImageTags']) ? "Backdrop" : false);
  706. $key = $itemDetails['Id'] . "-np";
  707. $elapsed = $moreInfo['PlayState']['PositionTicks'];
  708. $duration = $moreInfo['NowPlayingItem']['RunTimeTicks'];
  709. $watched = (!empty($elapsed) ? floor(($elapsed / $duration) * 100) : 0);
  710. //$transcoded = floor($item->TranscodeSession['progress']- $watched);
  711. $stream = $moreInfo['PlayState']['PlayMethod'];
  712. $user = $role == "admin" ? $moreInfo['UserName'] : "";
  713. $id = $moreInfo['DeviceId'];
  714. $streamInfo = buildStream(array(
  715. 'platform' => (string) $moreInfo['Client'],
  716. 'device' => (string) $moreInfo['DeviceName'],
  717. 'stream' => streamType($stream),
  718. 'video' => streamType($stream)." ".embyArray($moreInfo['NowPlayingItem']['MediaStreams'], "video"),
  719. 'audio' => streamType($stream)." ".embyArray($moreInfo['NowPlayingItem']['MediaStreams'], "audio"),
  720. ));
  721. $state = (($moreInfo['PlayState']['IsPaused'] == "1") ? "pause" : "play");
  722. $topTitle = '<h5 class="text-center zero-m elip">'.$title.'</h5>';
  723. $bottomTitle = '<small class="zero-m">'.$moreInfo['NowPlayingItem']['ProductionYear'].'</small>';
  724. if($showNames == "true"){ $bottomTitle .= '</small><small class="zero-m pull-right">'.$user.'</small>'; }
  725. }
  726. }
  727. // If No Overview
  728. if (!isset($itemDetails['Overview'])) {
  729. $itemDetails['Overview'] = '';
  730. }
  731. $original_image_url = 'ajax.php?a=emby-image&type='.$imageType.'&img='.$imageId.'&height='.$height.'&width='.$width.'&key='.$key.'$'.randString();
  732. if (file_exists('images/cache/'.$key.'.jpg')){ $image_url = 'images/cache/'.$key.'.jpg'; }
  733. if (file_exists('images/cache/'.$key.'.jpg') && (time() - 604800) > filemtime('images/cache/'.$key.'.jpg') || !file_exists('images/cache/'.$key.'.jpg')) {
  734. $image_url = 'ajax.php?a=emby-image&type='.$imageType.'&img='.$imageId.'&height='.$height.'&width='.$width.'&key='.$key.'';
  735. }
  736. if($nowPlaying){
  737. if(!$imageType){ $original_image_url = $image_url = "images/no-np.png"; $key = "no-np"; }
  738. if(!$imageId){ $original_image_url = $image_url = "images/no-np.png"; $key = "no-np"; }
  739. }else{
  740. if(!$imageType){ $original_image_url = $image_url = "images/no-list.png"; $key = "no-list"; }
  741. if(!$imageId){ $original_image_url = $image_url = "images/no-list.png"; $key = "no-list"; }
  742. }
  743. if(isset($useImage)){ $image_url = $useImage; }
  744. // Assemble Item And Cache Into Array
  745. if($nowPlaying){
  746. //prettyPrint($itemDetails);
  747. return '<div class="col-sm-6 col-md-3"><div class="thumbnail ultra-widget"><div style="display: none;" np="'.$id.'" class="overlay content-box small-box gray-bg">'.$streamInfo.'</div><span class="refreshNP w-refresh w-p-icon gray" link="'.$id.'"><span class="fa-stack fa-lg" style="font-size: .5em"><i class="fa fa-square fa-stack-2x"></i><i class="fa fa-info-circle fa-stack-1x fa-inverse"></i></span></span><a href="'.$URL.'" target="_blank"><img style="width: 100%; display:inherit;" src="'.$image_url.'" alt="'.$itemDetails['Name'].'" original-image="'.$original_image_url.'" class="refreshImageSource"></a><div class="progress progress-bar-sm zero-m"><div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="'.$watched.'" aria-valuemin="0" aria-valuemax="100" style="width: '.$watched.'%"></div><div class="progress-bar palette-Grey-500 bg" style="width: 0%"></div></div><div class="caption"><i style="float:left" class="fa fa-'.$state.'"></i>'.$topTitle.''.$bottomTitle.'</div></div></div>';
  748. }else{
  749. return '<div class="item-'.$itemType.'"><div class="ultra-widget refreshImage"><span class="w-refresh w-p-icon gray"><span class="fa-stack fa-lg" style="font-size: .4em"><i class="fa fa-square fa-stack-2x"></i><i class="fa fa-refresh fa-stack-1x fa-inverse"></i></span></span></div><a href="'.$URL.'" target="_blank"><img alt="'.$itemDetails['Name'].'" class="'.$image.' refreshImageSource" data-lazy="'.$image_url.'" original-image="'.$original_image_url.'"></a><small class="elip slick-bottom-title">'.$title.'</small></div>';
  750. }
  751. }
  752. // Format item from Plex for Carousel
  753. function resolvePlexItem($server, $token, $item, $nowPlaying = false, $showNames = false, $role = false, $playlist = false) {
  754. // Static Height
  755. $height = 444;
  756. $widthOverride = 100;
  757. $playlist = ($playlist) ? " playlist-$playlist" : "";
  758. switch ($item['type']) {
  759. case 'season':
  760. $title = $item['parentTitle'];
  761. $summary = $item['parentSummary'];
  762. $width = 300;
  763. $image = 'slick-image-tall';
  764. $style = '';
  765. if(!$nowPlaying){
  766. $thumb = $item['thumb'];
  767. $key = $item['ratingKey'] . "-list";
  768. }else {
  769. $height = 281;
  770. $width = 500;
  771. $thumb = $item['art'];
  772. $key = $item['ratingKey'] . "-np";
  773. $elapsed = $item['viewOffset'];
  774. $duration = ($item['duration']) ? $item['duration'] : $item->Media['duration'];
  775. $watched = (!empty($elapsed) ? floor(($elapsed / $duration) * 100) : 0);
  776. $transcoded = floor($item->TranscodeSession['progress']- $watched);
  777. $stream = $item->Media->Part->Stream['decision'];
  778. $user = $role == "admin" ? $item->User['title'] : "";
  779. $id = str_replace('"', '', $item->Player['machineIdentifier']);
  780. $streamInfo = buildStream(array(
  781. 'platform' => (string) $item->Player['platform'],
  782. 'device' => (string) $item->Player['device'],
  783. 'stream' => streamType($item->Media->Part['decision']),
  784. 'video' => streamType($item->Media->Part->Stream[0]['decision'])." (".$item->Media->Part->Stream[0]['codec'].") (".$item->Media->Part->Stream[0]['width']."x".$item->Media->Part->Stream[0]['height'].")",
  785. 'audio' => streamType($item->Media->Part->Stream[1]['decision'])." (".$item->Media->Part->Stream[1]['codec'].") (".$item->Media->Part->Stream[1]['channels']."ch)",
  786. ));
  787. $state = (($item->Player['state'] == "paused") ? "pause" : "play");
  788. }
  789. break;
  790. case 'episode':
  791. $title = $item['grandparentTitle'];
  792. $summary = $item['title'];
  793. $width = 300;
  794. $image = 'slick-image-tall';
  795. $style = '';
  796. if(!$nowPlaying){
  797. $thumb = ($item['parentThumb'] ? $item['parentThumb'] : $item['grandparentThumb']);
  798. $key = $item['ratingKey'] . "-list";
  799. }else {
  800. $height = 281;
  801. $width = 500;
  802. $thumb = $item['art'];
  803. $key = $item['ratingKey'] . "-np";
  804. $elapsed = $item['viewOffset'];
  805. $duration = ($item['duration']) ? $item['duration'] : $item->Media['duration'];
  806. $watched = (!empty($elapsed) ? floor(($elapsed / $duration) * 100) : 0);
  807. $transcoded = floor($item->TranscodeSession['progress']- $watched);
  808. $stream = $item->Media->Part->Stream['decision'];
  809. $user = $role == "admin" ? $item->User['title'] : "";
  810. $id = str_replace('"', '', $item->Player['machineIdentifier']);
  811. $streamInfo = buildStream(array(
  812. 'platform' => (string) $item->Player['platform'],
  813. 'device' => (string) $item->Player['device'],
  814. 'stream' => streamType($item->Media->Part['decision']),
  815. 'video' => streamType($item->Media->Part->Stream[0]['decision'])." (".$item->Media->Part->Stream[0]['codec'].") (".$item->Media->Part->Stream[0]['width']."x".$item->Media->Part->Stream[0]['height'].")",
  816. 'audio' => streamType($item->Media->Part->Stream[1]['decision'])." (".$item->Media->Part->Stream[1]['codec'].") (".$item->Media->Part->Stream[1]['channels']."ch)",
  817. ));
  818. $state = (($item->Player['state'] == "paused") ? "pause" : "play");
  819. $topTitle = '<h5 class="text-center zero-m elip">'.$title.' - '.$item['title'].'</h5>';
  820. $bottomTitle = '<small class="zero-m">S'.$item['parentIndex'].' · E'.$item['index'].'</small>';
  821. if($showNames == "true"){ $bottomTitle .= '<small class="zero-m pull-right">'.$user.'</small>'; }
  822. }
  823. break;
  824. case 'clip':
  825. $title = $item['title'];
  826. $summary = $item['summary'];
  827. $width = 300;
  828. $image = 'slick-image-tall';
  829. $style = '';
  830. if(!$nowPlaying){
  831. $thumb = $item['thumb'];
  832. $key = $item['ratingKey'] . "-list";
  833. }else {
  834. $height = 281;
  835. $width = 500;
  836. $thumb = $item['art'];
  837. $key = isset($item['ratingKey']) ? $item['ratingKey'] . "-np" : (isset($item['live']) ? "livetv.png" : ":)");
  838. $useImage = (isset($item['live']) ? "images/livetv.png" : null);
  839. $extraInfo = isset($item['extraType']) ? "Trailer" : (isset($item['live']) ? "Live TV" : ":)");
  840. $elapsed = $item['viewOffset'];
  841. $duration = ($item['duration']) ? $item['duration'] : $item->Media['duration'];
  842. $watched = (!empty($elapsed) ? floor(($elapsed / $duration) * 100) : 0);
  843. $transcoded = floor($item->TranscodeSession['progress']- $watched);
  844. $stream = $item->Media->Part->Stream['decision'];
  845. $user = $role == "admin" ? $item->User['title'] : "";
  846. $id = str_replace('"', '', $item->Player['machineIdentifier']);
  847. $streamInfo = buildStream(array(
  848. 'platform' => (string) $item->Player['platform'],
  849. 'device' => (string) $item->Player['device'],
  850. 'stream' => streamType($item->Media->Part['decision']),
  851. 'video' => streamType($item->Media->Part->Stream[0]['decision'])." (".$item->Media->Part->Stream[0]['codec'].") (".$item->Media->Part->Stream[0]['width']."x".$item->Media->Part->Stream[0]['height'].")",
  852. 'audio' => streamType($item->Media->Part->Stream[1]['decision'])." (".$item->Media->Part->Stream[1]['codec'].") (".$item->Media->Part->Stream[1]['channels']."ch)",
  853. ));
  854. $state = (($item->Player['state'] == "paused") ? "pause" : "play");
  855. $topTitle = '<h5 class="text-center zero-m elip">'.$title.'</h5>';
  856. $bottomTitle = '<small class="zero-m">'.$extraInfo.'</small>';
  857. if($showNames == "true"){ $bottomTitle .= '<small class="zero-m pull-right">'.$user.'</small>'; }
  858. }
  859. break;
  860. case 'album':
  861. case 'track':
  862. $title = $item['parentTitle'];
  863. $summary = $item['title'];
  864. $image = 'slick-image-short';
  865. $style = 'left: 160px !important;';
  866. $item['ratingKey'] = $item['parentRatingKey'];
  867. if(!$nowPlaying){
  868. $width = 444;
  869. $thumb = $item['thumb'];
  870. $key = $item['ratingKey'] . "-list";
  871. }else {
  872. $height = 281;
  873. $width = 500;
  874. $thumb = ($item['art']) ? $item['art'] : $item['parentThumb'];
  875. $widthOverride = ($item['art']) ? 100 : 56;
  876. $key = $item['ratingKey'] . "-np";
  877. $elapsed = $item['viewOffset'];
  878. $duration = ($item['duration']) ? $item['duration'] : $item->Media['duration'];
  879. $watched = (!empty($elapsed) ? floor(($elapsed / $duration) * 100) : 0);
  880. $transcoded = floor($item->TranscodeSession['progress']- $watched);
  881. $stream = $item->Media->Part->Stream['decision'];
  882. $user = $role == "admin" ? $item->User['title'] : "";
  883. $id = str_replace('"', '', $item->Player['machineIdentifier']);
  884. $streamInfo = buildStream(array(
  885. 'platform' => (string) $item->Player['platform'],
  886. 'device' => (string) $item->Player['device'],
  887. 'stream' => streamType($item->Media->Part['decision']),
  888. 'audio' => streamType($item->Media->Part->Stream[0]['decision'])." (".$item->Media->Part->Stream[0]['codec'].") (".$item->Media->Part->Stream[0]['channels']."ch)",
  889. ));
  890. $state = (($item->Player['state'] == "paused") ? "pause" : "play");
  891. $topTitle = '<h5 class="text-center zero-m elip">'.$item['grandparentTitle'].' - '.$item['title'].'</h5>';
  892. $bottomTitle = '<small class="zero-m">'.$title.'</small>';
  893. if($showNames == "true"){ $bottomTitle .= '<small class="zero-m pull-right">'.$user.'</small>'; }
  894. }
  895. break;
  896. default:
  897. $title = $item['title'];
  898. $summary = $item['summary'];
  899. $image = 'slick-image-tall';
  900. $style = '';
  901. if(!$nowPlaying){
  902. $width = 300;
  903. $thumb = $item['thumb'];
  904. $key = $item['ratingKey'] . "-list";
  905. }else {
  906. $height = 281;
  907. $width = 500;
  908. $thumb = $item['art'];
  909. $key = $item['ratingKey'] . "-np";
  910. $elapsed = $item['viewOffset'];
  911. $duration = ($item['duration']) ? $item['duration'] : $item->Media['duration'];
  912. $watched = (!empty($elapsed) ? floor(($elapsed / $duration) * 100) : 0);
  913. $transcoded = floor($item->TranscodeSession['progress']- $watched);
  914. $stream = $item->Media->Part->Stream['decision'];
  915. $user = $role == "admin" ? $item->User['title'] : "";
  916. $id = str_replace('"', '', $item->Player['machineIdentifier']);
  917. $streamInfo = buildStream(array(
  918. 'platform' => (string) $item->Player['platform'],
  919. 'device' => (string) $item->Player['device'],
  920. 'stream' => streamType($item->Media->Part['decision']),
  921. 'video' => streamType($item->Media->Part->Stream[0]['decision'])." (".$item->Media->Part->Stream[0]['codec'].") (".$item->Media->Part->Stream[0]['width']."x".$item->Media->Part->Stream[0]['height'].")",
  922. 'audio' => streamType($item->Media->Part->Stream[1]['decision'])." (".$item->Media->Part->Stream[1]['codec'].") (".$item->Media->Part->Stream[1]['channels']."ch)",
  923. ));
  924. $state = (($item->Player['state'] == "paused") ? "pause" : "play");
  925. $topTitle = '<h5 class="text-center zero-m elip">'.$title.'</h5>';
  926. $bottomTitle = '<small class="zero-m">'.$item['year'].'</small>';
  927. if($showNames == "true"){ $bottomTitle .= '<small class="zero-m pull-right">'.$user.'</small>'; }
  928. }
  929. }
  930. if (PLEXTABURL) {
  931. $address = PLEXTABURL."/web/index.html#!/server/$server/details?key=/library/metadata/".$item['ratingKey'];
  932. }else{
  933. $address = "https://app.plex.tv/web/app#!/server/$server/details?key=/library/metadata/".$item['ratingKey'];
  934. }
  935. // If No Overview
  936. if (!isset($itemDetails['Overview'])) { $itemDetails['Overview'] = ''; }
  937. $original_image_url = 'ajax.php?a=plex-image&img='.$thumb.'&height='.$height.'&width='.$width.'&key='.$key.'$'.randString();
  938. if (file_exists('images/cache/'.$key.'.jpg')){ $image_url = 'images/cache/'.$key.'.jpg'; }
  939. if (file_exists('images/cache/'.$key.'.jpg') && (time() - 604800) > filemtime('images/cache/'.$key.'.jpg') || !file_exists('images/cache/'.$key.'.jpg')) {
  940. $image_url = 'ajax.php?a=plex-image&img='.$thumb.'&height='.$height.'&width='.$width.'&key='.$key.'';
  941. }
  942. if($nowPlaying){
  943. if(!$thumb){ $original_image_url = $image_url = "images/no-np.png"; $key = "no-np"; }
  944. }else{
  945. if(!$thumb){ $original_image_url = $image_url = "images/no-list.png"; $key = "no-list"; }
  946. }
  947. if(isset($useImage)){ $image_url = $useImage; }
  948. $openTab = (PLEXTABNAME) ? "true" : "false";
  949. // Assemble Item And Cache Into Array
  950. if($nowPlaying){
  951. return '<div class="col-sm-6 col-md-3"><div class="thumbnail ultra-widget"><div style="display: none;" np="'.$id.'" class="overlay content-box small-box gray-bg">'.$streamInfo.'</div><span class="refreshNP w-refresh w-p-icon gray" link="'.$id.'"><span class="fa-stack fa-lg" style="font-size: .5em"><i class="fa fa-square fa-stack-2x"></i><i class="fa fa-info-circle fa-stack-1x fa-inverse"></i></span></span><div class="ultra-widget refreshImage"><span class="w-refresh w-p-icon gray"><span class="fa-stack fa-lg" style="font-size: .4em"><i class="fa fa-square fa-stack-2x"></i><i class="fa fa-refresh fa-stack-1x fa-inverse"></i></span></span></div><a class="openTab" extraTitle="'.$title.'" extraType="'.$item['type'].'" openTab="'.$openTab.'" href="'.$address.'" target="_blank"><img class="refreshImageSource" style="width: '.$widthOverride.'%; display:block;" src="'.$image_url.'" original-image="'.$original_image_url.'" alt="'.$item['Name'].'"></a><div class="progress progress-bar-sm zero-m"><div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="'.$watched.'" aria-valuemin="0" aria-valuemax="100" style="width: '.$watched.'%"></div><div class="progress-bar palette-Grey-500 bg" style="width: '.$transcoded.'%"></div></div><div class="caption"><i style="float:left" class="fa fa-'.$state.'"></i>'.$topTitle.''.$bottomTitle.'</div></div></div>';
  952. }else{
  953. return '<div class="item-'.$item['type'].$playlist.'"><div style="" class="ultra-widget refreshImage"><span class="w-refresh w-p-icon gray"><span class="fa-stack fa-lg" style="font-size: .4em"><i class="fa fa-square fa-stack-2x"></i><i class="fa fa-refresh fa-stack-1x fa-inverse"></i></span></span></div><a class="openTab" extraTitle="'.$title.'" extraType="'.$item['type'].'" openTab="'.$openTab.'" href="'.$address.'" target="_blank"><img alt="'.$item['Name'].'" class="'.$image.' refreshImageSource" data-lazy="'.$image_url.'" original-image="'.$original_image_url.'"></a><small class="elip slick-bottom-title">'.$title.'</small></div>';
  954. }
  955. }
  956. //$hideMenu .= '<li data-filter="playlist-'.$className.'" data-name="'.$api['title'].'"><a class="js-filter-'.$className.'" href="javascript:void(0)">'.$api['title'].'</a></li>';
  957. //Recent Added
  958. function outputRecentAdded($header, $items, $script = false, $array, $type) {
  959. $hideMenu = '<div class="pull-right"><div class="btn-group" role="group"><button type="button" class="btn waves btn-default btn-sm dropdown-toggle waves-effect waves-float" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Filter &nbsp;<span class="caret"></span></button><ul style="right:0; left: auto" class="dropdown-menu filter-recent-event">';
  960. if(preg_grep("/item-movie/", $items)){
  961. $hideMenu .= '<li data-filter="item-movie" data-name="Movies" data-filter-on="false"><a class="js-filter-movie" href="javascript:void(0)">Movies</a></li>';
  962. }
  963. if(preg_grep("/item-season/", $items)){
  964. $hideMenu .= '<li data-filter="item-season" data-name="TV Shows" data-filter-on="false"><a class="js-filter-season" href="javascript:void(0)">Shows</a></li>';
  965. }
  966. if(preg_grep("/item-album/", $items)){
  967. $hideMenu .= '<li data-filter="item-album" data-name="Music Albums" data-filter-on="false"><a class="js-filter-album" href="javascript:void(0)">Music</a></li>';
  968. }
  969. $hideMenu .= '<li data-filter="item-all" data-name="Content" data-filter-on="false"><a class="js-filter-all" href="javascript:void(0)">All</a></li>';
  970. $hideMenu .= '</ul></div></div>';
  971. // If None Populate Empty Item
  972. if (!count($items)) {
  973. return '<div id="recentMedia'.$type.'" class="content-box box-shadow big-box"><h5 class="text-center">'.$header.'</h5><p class="text-center">No Media Found</p></div>';
  974. }else{
  975. $className = str_replace(' ', '', $header.' on '.$type);
  976. return '<div id="recentMedia'.$type.'" class="content-box box-shadow big-box"><h5 id="recentContent-title-'.$type.'" style="margin-bottom: -20px" class="text-center">'.$header.'</h5><div class="recentHeader inbox-pagination '.$className.'">'.$hideMenu.'</div><br/><br/><div class="recentItems-recent-'.$type.'" data-name="'.$className.'">'.implode('',$items).'</div></div>'.($script?'<script>'.$script.'</script>':'');
  977. }
  978. }
  979. // Create Carousel
  980. function outputNowPlaying($header, $size, $type, $items, $script = false) {
  981. // If None Populate Empty Item
  982. if (!count($items)) {
  983. return '<div id="'.$type.'"></div>'.($script?'<script>'.$script.'</script>':'');
  984. }else{
  985. return '<div id="'.$type.'"><h5 class="zero-m big-box"><strong>'.$header.'</strong></h5>'.implode('',$items).'</div>'.($script?'<script>'.$script.'</script>':'');
  986. }
  987. }
  988. // Get Now Playing Streams From Emby
  989. function getEmbyStreams($size, $showNames, $role) {
  990. $address = qualifyURL(EMBYURL);
  991. $api = json_decode(@file_get_contents($address.'/Sessions?api_key='.EMBYTOKEN),true);
  992. if (!is_array($api)) { return 'Could not load!'; }
  993. $playingItems = array();
  994. foreach($api as $key => $value) {
  995. if (isset($value['NowPlayingItem'])) {
  996. $playingItems[] = resolveEmbyItem($address, EMBYTOKEN, $value['NowPlayingItem'], true, $showNames, $role, $value);
  997. }
  998. }
  999. return outputNowPlaying(translate('PLAYING_NOW_ON_EMBY')." ( ".count($playingItems)." Streams )", $size, 'streams-emby', $playingItems, ajaxLoop('emby-streams',NOWPLAYINGREFRESH));
  1000. }
  1001. // Get Now Playing Streams From Plex
  1002. function getPlexStreams($size, $showNames, $role){
  1003. $address = qualifyURL(PLEXURL);
  1004. // Perform API requests
  1005. $api = @curl_get($address."/status/sessions?X-Plex-Token=".PLEXTOKEN);
  1006. libxml_use_internal_errors(true);
  1007. $api = simplexml_load_string($api);
  1008. if (is_array($api) || is_object($api)){
  1009. if (!$api->head->title){
  1010. $getServer = simplexml_load_string(@curl_get($address."/?X-Plex-Token=".PLEXTOKEN));
  1011. if (!$getServer) { return 'Could not load!'; }
  1012. // Identify the local machine
  1013. $gotServer = $getServer['machineIdentifier'];
  1014. $items = array();
  1015. foreach($api AS $child) {
  1016. $items[] = resolvePlexItem($gotServer, PLEXTOKEN, $child, true, $showNames, $role);
  1017. }
  1018. return outputNowPlaying(translate('PLAYING_NOW_ON_PLEX')." ( ".count($items)." Streams )", $size, 'streams-plex', $items, ajaxLoop('plex-streams',NOWPLAYINGREFRESH));
  1019. }else{
  1020. writeLog("error", "PLEX STREAM ERROR: could not connect - check token - if HTTPS, is cert valid");
  1021. }
  1022. }else{
  1023. writeLog("error", "PLEX STREAM ERROR: could not connect - check URL - if HTTPS, is cert valid");
  1024. }
  1025. }
  1026. // Get Recent Content From Emby
  1027. function getEmbyRecent($array) {
  1028. $address = qualifyURL(EMBYURL);
  1029. $header = translate('RECENT_CONTENT');
  1030. // Currently Logged In User
  1031. $username = false;
  1032. if (isset($GLOBALS['USER'])) {
  1033. $username = strtolower($GLOBALS['USER']->username);
  1034. }
  1035. // Get A User
  1036. $userIds = json_decode(@file_get_contents($address.'/Users?api_key='.EMBYTOKEN),true);
  1037. if (!is_array($userIds)) { return 'Could not load!'; }
  1038. $showPlayed = true;
  1039. foreach ($userIds as $value) { // Scan for admin user
  1040. if (isset($value['Policy']) && isset($value['Policy']['IsAdministrator']) && $value['Policy']['IsAdministrator']) {
  1041. $userId = $value['Id'];
  1042. }
  1043. if ($username && strtolower($value['Name']) == $username) {
  1044. $userId = $value['Id'];
  1045. $showPlayed = false;
  1046. break;
  1047. }
  1048. }
  1049. // Get the latest Items
  1050. $latest = json_decode(@file_get_contents($address.'/Users/'.$userId.'/Items/Latest?EnableImages=false&Limit='.EMBYRECENTITEMS.'&api_key='.EMBYTOKEN.($showPlayed?'':'&IsPlayed=false')),true);
  1051. // For Each Item In Category
  1052. $items = array();
  1053. foreach ($latest as $k => $v) {
  1054. $type = (string) $v['Type'];
  1055. if(@$array[$type] == "true"){
  1056. $items[] = resolveEmbyItem($address, EMBYTOKEN, $v, false, false, false);
  1057. }
  1058. }
  1059. $array["movie"] = $array["Movie"];
  1060. $array["season"] = $array["Episode"];
  1061. $array["album"] = $array["MusicAlbum"];
  1062. unset($array["Movie"]);
  1063. unset($array["Episode"]);
  1064. unset($array["MusicAlbum"]);
  1065. unset($array["Series"]);
  1066. return outputRecentAdded($header, $items, ajaxLoop('emby-recent',RECENTREFRESH,'loadSlick();'), $array, 'Emby');
  1067. }
  1068. // Get Recent Content From Plex
  1069. function getPlexRecent($array){
  1070. $address = qualifyURL(PLEXURL);
  1071. $header = translate('RECENT_CONTENT');
  1072. // Perform Requests
  1073. $api = @curl_get($address."/library/recentlyAdded?limit=".PLEXRECENTITEMS."&X-Plex-Token=".PLEXTOKEN);
  1074. libxml_use_internal_errors(true);
  1075. $api = simplexml_load_string($api);
  1076. if (is_array($api) || is_object($api)){
  1077. if (!$api->head->title){
  1078. $getServer = simplexml_load_string(@curl_get($address."/?X-Plex-Token=".PLEXTOKEN));
  1079. if (!$getServer) { return 'Could not load!'; }
  1080. // Identify the local machine
  1081. $gotServer = $getServer['machineIdentifier'];
  1082. $items = array();
  1083. foreach($api AS $child) {
  1084. $type = (string) $child['type'];
  1085. if($array[$type] == "true"){
  1086. $items[] = resolvePlexItem($gotServer, PLEXTOKEN, $child, false, false, false);
  1087. }
  1088. }
  1089. return outputRecentAdded($header, $items, ajaxLoop('plex-recent',RECENTREFRESH,'loadSlick();'), $array, 'Plex');
  1090. }else{
  1091. writeLog("error", "PLEX RECENT-ITEMS ERROR: could not connect - check token - if HTTPS, is cert valid");
  1092. }
  1093. }else{
  1094. writeLog("error", "PLEX RECENT-ITEMS ERROR: could not connect - check URL - if HTTPS, is cert valid");
  1095. }
  1096. }
  1097. // Get Image From Emby
  1098. function getEmbyImage() {
  1099. $refresh = false;
  1100. $embyAddress = qualifyURL(EMBYURL);
  1101. if (!file_exists('images/cache')) {
  1102. mkdir('images/cache', 0777, true);
  1103. }
  1104. $itemId = $_GET['img'];
  1105. $key = $_GET['key'];
  1106. if(strpos($key, '$') !== false){
  1107. $key = explode('$', $key)[0];
  1108. $refresh = true;
  1109. }
  1110. $itemType = $_GET['type'];
  1111. $imgParams = array();
  1112. if (isset($_GET['height'])) { $imgParams['height'] = 'maxHeight='.$_GET['height']; }
  1113. if (isset($_GET['width'])) { $imgParams['width'] = 'maxWidth='.$_GET['width']; }
  1114. if(isset($itemId)) {
  1115. $image_src = $embyAddress . '/Items/'.$itemId.'/Images/'.$itemType.'?'.implode('&', $imgParams);
  1116. $cachefile = 'images/cache/'.$key.'.jpg';
  1117. $cachetime = 604800;
  1118. // Serve from the cache if it is younger than $cachetime
  1119. if (file_exists($cachefile) && time() - $cachetime < filemtime($cachefile) && $refresh !== true) {
  1120. header("Content-type: image/jpeg");
  1121. @readfile($cachefile);
  1122. exit;
  1123. }
  1124. ob_start(); // Start the output buffer
  1125. header('Content-type: image/jpeg');
  1126. //@readfile($image_src);
  1127. echo @curl_get($image_src);
  1128. // Cache the output to a file
  1129. $fp = fopen($cachefile, 'wb');
  1130. fwrite($fp, ob_get_contents());
  1131. fclose($fp);
  1132. ob_end_flush(); // Send the output to the browser
  1133. die();
  1134. } else {
  1135. debug_out('Invalid Request',1);
  1136. }
  1137. }
  1138. // Get Image From Plex
  1139. function getPlexImage() {
  1140. $refresh = false;
  1141. $plexAddress = qualifyURL(PLEXURL);
  1142. if (!file_exists('images/cache')) {
  1143. mkdir('images/cache', 0777, true);
  1144. }
  1145. $image_url = $_GET['img'];
  1146. $key = $_GET['key'];
  1147. if(strpos($key, '$') !== false){
  1148. $key = explode('$', $key)[0];
  1149. $refresh = true;
  1150. }
  1151. $image_height = $_GET['height'];
  1152. $image_width = $_GET['width'];
  1153. if(isset($image_url) && isset($image_height) && isset($image_width)) {
  1154. $image_src = $plexAddress . '/photo/:/transcode?height='.$image_height.'&width='.$image_width.'&upscale=1&url=' . $image_url . '&X-Plex-Token=' . PLEXTOKEN;
  1155. $cachefile = 'images/cache/'.$key.'.jpg';
  1156. $cachetime = 604800;
  1157. // Serve from the cache if it is younger than $cachetime
  1158. if (file_exists($cachefile) && time() - $cachetime < filemtime($cachefile) && $refresh == false) {
  1159. header("Content-type: image/jpeg");
  1160. @readfile($cachefile);
  1161. exit;
  1162. }
  1163. ob_start(); // Start the output buffer
  1164. header('Content-type: image/jpeg');
  1165. //@readfile($image_src);
  1166. echo @curl_get($image_src);
  1167. // Cache the output to a file
  1168. $fp = fopen($cachefile, 'wb');
  1169. fwrite($fp, ob_get_contents());
  1170. fclose($fp);
  1171. ob_end_flush(); // Send the output to the browser
  1172. die();
  1173. } else {
  1174. echo "Invalid Plex Request";
  1175. }
  1176. }
  1177. // Simplier access to class
  1178. function translate($string) {
  1179. if (isset($GLOBALS['language'])) {
  1180. return $GLOBALS['language']->translate($string);
  1181. } else {
  1182. return '!Translations Not Loaded!';
  1183. }
  1184. }
  1185. // Generate Random string
  1186. function randString($length = 10, $chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ') {
  1187. $tmp = '';
  1188. for ($i = 0; $i < $length; $i++) {
  1189. $tmp .= substr(str_shuffle($chars), 0, 1);
  1190. }
  1191. return $tmp;
  1192. }
  1193. // Create config file in the return syntax
  1194. function createConfig($array, $path = 'config/config.php', $nest = 0) {
  1195. // Define Initial Value
  1196. $output = array();
  1197. // Sort Items
  1198. ksort($array);
  1199. // Update the current config version
  1200. if (!$nest) {
  1201. // Inject Current Version
  1202. $output[] = "\t'CONFIG_VERSION' => '".(isset($array['apply_CONFIG_VERSION'])?$array['apply_CONFIG_VERSION']:INSTALLEDVERSION)."'";
  1203. }
  1204. unset($array['CONFIG_VERSION']);
  1205. unset($array['apply_CONFIG_VERSION']);
  1206. // Process Settings
  1207. foreach ($array as $k => $v) {
  1208. $allowCommit = true;
  1209. switch (gettype($v)) {
  1210. case 'boolean':
  1211. $item = ($v?'true':'false');
  1212. break;
  1213. case 'integer':
  1214. case 'double':
  1215. case 'integer':
  1216. case 'NULL':
  1217. $item = $v;
  1218. break;
  1219. case 'string':
  1220. $item = "'".str_replace(array('\\',"'"),array('\\\\',"\'"),$v)."'";
  1221. break;
  1222. case 'array':
  1223. $item = createConfig($v, false, $nest+1);
  1224. break;
  1225. default:
  1226. $allowCommit = false;
  1227. }
  1228. if($allowCommit) {
  1229. $output[] = str_repeat("\t",$nest+1)."'$k' => $item";
  1230. }
  1231. }
  1232. // Build output
  1233. $output = (!$nest?"<?php\nreturn ":'')."array(\n".implode(",\n",$output)."\n".str_repeat("\t",$nest).')'.(!$nest?';':'');
  1234. if (!$nest && $path) {
  1235. $pathDigest = pathinfo($path);
  1236. @mkdir($pathDigest['dirname'], 0770, true);
  1237. if (file_exists($path)) {
  1238. rename($path, $pathDigest['dirname'].'/'.$pathDigest['filename'].'.bak.php');
  1239. }
  1240. $file = fopen($path, 'w');
  1241. fwrite($file, $output);
  1242. fclose($file);
  1243. if (file_exists($path)) {
  1244. return true;
  1245. }
  1246. writeLog("error", "config was unable to write");
  1247. return false;
  1248. } else {
  1249. writeLog("success", "config was updated with new values");
  1250. return $output;
  1251. }
  1252. }
  1253. // Load a config file written in the return syntax
  1254. function loadConfig($path = 'config/config.php') {
  1255. // Adapted from http://stackoverflow.com/a/14173339/6810513
  1256. if (!is_file($path)) {
  1257. return null;
  1258. } else {
  1259. return (array) call_user_func(function() use($path) {
  1260. return include($path);
  1261. });
  1262. }
  1263. }
  1264. // Commit new values to the configuration
  1265. function updateConfig($new, $current = false) {
  1266. // Get config if not supplied
  1267. if ($current === false) {
  1268. $current = loadConfig();
  1269. } else if (is_string($current) && is_file($current)) {
  1270. $current = loadConfig($current);
  1271. }
  1272. // Inject Parts
  1273. foreach ($new as $k => $v) {
  1274. $current[$k] = $v;
  1275. }
  1276. // Return Create
  1277. return createConfig($current);
  1278. }
  1279. // Inject Defaults As Needed
  1280. function fillDefaultConfig($array, $path = 'config/configDefaults.php') {
  1281. if (is_string($path)) {
  1282. $loadedDefaults = loadConfig($path);
  1283. } else {
  1284. $loadedDefaults = $path;
  1285. }
  1286. return (is_array($loadedDefaults) ? fillDefaultConfig_recurse($array, $loadedDefaults) : false);
  1287. }
  1288. // support function for fillDefaultConfig()
  1289. function fillDefaultConfig_recurse($current, $defaults) {
  1290. foreach($defaults as $k => $v) {
  1291. if (!isset($current[$k])) {
  1292. $current[$k] = $v;
  1293. } else if (is_array($current[$k]) && is_array($v)) {
  1294. $current[$k] = fillDefaultConfig_recurse($current[$k], $v);
  1295. }
  1296. }
  1297. return $current;
  1298. };
  1299. // Define Scalar Variables (nest non-secular with underscores)
  1300. function defineConfig($array, $anyCase = true, $nest_prefix = false) {
  1301. foreach($array as $k => $v) {
  1302. if (is_scalar($v) && !defined($nest_prefix.$k)) {
  1303. define($nest_prefix.$k, $v, $anyCase);
  1304. } else if (is_array($v)) {
  1305. defineConfig($v, $anyCase, $nest_prefix.$k.'_');
  1306. }
  1307. }
  1308. }
  1309. // This function exists only because I am lazy
  1310. function configLazy($path = 'config/config.php') {
  1311. // Load config or default
  1312. if (file_exists($path)) {
  1313. $config = fillDefaultConfig(loadConfig($path));
  1314. } else {
  1315. $config = loadConfig('config/configDefaults.php');
  1316. }
  1317. if (is_array($config)) {
  1318. defineConfig($config);
  1319. }
  1320. return $config;
  1321. }
  1322. // Qualify URL
  1323. function qualifyURL($url) {
  1324. //local address?
  1325. if(substr($url, 0,1) == "/"){
  1326. if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') {
  1327. $protocol = "https://";
  1328. } else {
  1329. $protocol = "http://";
  1330. }
  1331. $url = $protocol.getServer().$url;
  1332. }
  1333. // Get Digest
  1334. $digest = parse_url($url);
  1335. // http/https
  1336. if (!isset($digest['scheme'])) {
  1337. if (isset($digest['port']) && in_array($digest['port'], array(80,8080,8096,32400,7878,8989,8182,8081,6789))) {
  1338. $scheme = 'http';
  1339. } else {
  1340. $scheme = 'https';
  1341. }
  1342. } else {
  1343. $scheme = $digest['scheme'];
  1344. }
  1345. // Host
  1346. $host = (isset($digest['host'])?$digest['host']:'');
  1347. // Port
  1348. $port = (isset($digest['port'])?':'.$digest['port']:'');
  1349. // Path
  1350. $path = (isset($digest['path'])?$digest['path']:'');
  1351. // Output
  1352. return $scheme.'://'.$host.$port.$path;
  1353. }
  1354. // Function to be called at top of each to allow upgrading environment as the spec changes
  1355. function upgradeCheck() {
  1356. // Upgrade to 1.31
  1357. if (file_exists('homepageSettings.ini.php')) {
  1358. $databaseConfig = parse_ini_file('databaseLocation.ini.php', true);
  1359. $homepageConfig = parse_ini_file('homepageSettings.ini.php', true);
  1360. $databaseConfig = array_merge($databaseConfig, $homepageConfig);
  1361. $databaseData = '; <?php die("Access denied"); ?>' . "\r\n";
  1362. foreach($databaseConfig as $k => $v) {
  1363. if(substr($v, -1) == "/") : $v = rtrim($v, "/"); endif;
  1364. $databaseData .= $k . " = \"" . $v . "\"\r\n";
  1365. }
  1366. write_ini_file($databaseData, 'databaseLocation.ini.php');
  1367. unlink('homepageSettings.ini.php');
  1368. unset($databaseData);
  1369. unset($homepageConfig);
  1370. }
  1371. // Upgrade to 1.32
  1372. if (file_exists('databaseLocation.ini.php')) {
  1373. // Load Existing
  1374. $config = parse_ini_file('databaseLocation.ini.php', true);
  1375. // Refactor
  1376. $config['database_Location'] = preg_replace('/\/\/$/','/',$config['databaseLocation'].'/');
  1377. $config['user_home'] = $config['database_Location'].'users/';
  1378. unset($config['databaseLocation']);
  1379. // Turn Off Emby And Plex Recent
  1380. $config["embyURL"] = $config["embyURL"].(!empty($config["embyPort"])?':'.$config["embyPort"]:'');
  1381. unset($config["embyPort"]);
  1382. $config["plexURL"] = $config["plexURL"].(!empty($config["plexPort"])?':'.$config["plexPort"]:'');
  1383. unset($config["plexPort"]);
  1384. $config["nzbgetURL"] = $config["nzbgetURL"].(!empty($config["nzbgetPort"])?':'.$config["nzbgetPort"]:'');
  1385. unset($config["nzbgetPort"]);
  1386. $config["sabnzbdURL"] = $config["sabnzbdURL"].(!empty($config["sabnzbdPort"])?':'.$config["sabnzbdPort"]:'');
  1387. unset($config["sabnzbdPort"]);
  1388. $config["headphonesURL"] = $config["headphonesURL"].(!empty($config["headphonesPort"])?':'.$config["headphonesPort"]:'');
  1389. unset($config["headphonesPort"]);
  1390. // Write config file
  1391. $config['CONFIG_VERSION'] = '1.32';
  1392. copy('config/config.php', 'config/config['.date('Y-m-d_H-i-s').'][pre1.32].bak.php');
  1393. $createConfigSuccess = createConfig($config);
  1394. // Create new config
  1395. if ($createConfigSuccess) {
  1396. if (file_exists('config/config.php')) {
  1397. // Remove Old ini file
  1398. unlink('databaseLocation.ini.php');
  1399. } else {
  1400. debug_out('Something is not right here!');
  1401. }
  1402. } else {
  1403. debug_out('Couldn\'t create updated configuration.' ,1);
  1404. }
  1405. }
  1406. // Upgrade to 1.33
  1407. $config = loadConfig();
  1408. if (isset($config['database_Location']) && (!isset($config['CONFIG_VERSION']) || $config['CONFIG_VERSION'] < '1.33')) {
  1409. // Fix User Directory
  1410. $config['database_Location'] = preg_replace('/\/\/$/','/',$config['database_Location'].'/');
  1411. $config['user_home'] = $config['database_Location'].'users/';
  1412. unset($config['USER_HOME']);
  1413. // Backend auth merge
  1414. if (isset($config['authBackendPort']) && !isset(parse_url($config['authBackendHost'])['port'])) {
  1415. $config['authBackendHost'] .= ':'.$config['authBackendPort'];
  1416. }
  1417. unset($config['authBackendPort']);
  1418. // If auth is being used move it to embyURL as that is now used in auth functions
  1419. if ((isset($config['authType']) && $config['authType'] == 'true') && (isset($config['authBackendHost']) && $config['authBackendHost'] == 'true') && (isset($config['authBackend']) && in_array($config['authBackend'], array('emby_all','emby_local','emby_connect')))) {
  1420. $config['embyURL'] = $config['authBackendHost'];
  1421. }
  1422. // Upgrade database to latest version
  1423. updateSQLiteDB($config['database_Location'],'1.32');
  1424. // Update Version and Commit
  1425. $config['apply_CONFIG_VERSION'] = '1.33';
  1426. copy('config/config.php', 'config/config['.date('Y-m-d_H-i-s').'][1.32].bak.php');
  1427. $createConfigSuccess = createConfig($config);
  1428. unset($config);
  1429. }
  1430. // Upgrade to 1.34
  1431. $config = loadConfig();
  1432. if (isset($config['database_Location']) && (!isset($config['CONFIG_VERSION']) || $config['CONFIG_VERSION'] < '1.34')) {
  1433. // Upgrade database to latest version
  1434. updateSQLiteDB($config['database_Location'],'1.33');
  1435. // Update Version and Commit
  1436. $config['CONFIG_VERSION'] = '1.34';
  1437. copy('config/config.php', 'config/config['.date('Y-m-d_H-i-s').'][1.33].bak.php');
  1438. $createConfigSuccess = createConfig($config);
  1439. unset($config);
  1440. }
  1441. // Upgrade to 1.40
  1442. $config = loadConfig();
  1443. if (isset($config['database_Location']) && (!isset($config['CONFIG_VERSION']) || $config['CONFIG_VERSION'] < '1.40')) {
  1444. // Upgrade database to latest version
  1445. updateSQLiteDB($config['database_Location'],'1.38');
  1446. // Update Version and Commit
  1447. $config['CONFIG_VERSION'] = '1.40';
  1448. copy('config/config.php', 'config/config['.date('Y-m-d_H-i-s').'][1.38].bak.php');
  1449. $createConfigSuccess = createConfig($config);
  1450. unset($config);
  1451. }
  1452. // Upgrade to 1.50
  1453. $config = loadConfig();
  1454. if (isset($config['database_Location']) && (!isset($config['CONFIG_VERSION']) || $config['CONFIG_VERSION'] < '1.50')) {
  1455. // Upgrade database to latest version
  1456. updateSQLiteDB($config['database_Location'],'1.40');
  1457. // Update Version and Commit
  1458. $config['CONFIG_VERSION'] = '1.50';
  1459. copy('config/config.php', 'config/config['.date('Y-m-d_H-i-s').'][1.40].bak.php');
  1460. $createConfigSuccess = createConfig($config);
  1461. unset($config);
  1462. }
  1463. // Upgrade to 1.603
  1464. $config = loadConfig();
  1465. if (isset($config['database_Location']) && (!isset($config['CONFIG_VERSION']) || $config['CONFIG_VERSION'] < '1.603')) {
  1466. // Update Version and Commit
  1467. $config['CONFIG_VERSION'] = '1.603';
  1468. copy('config/config.php', 'config/config['.date('Y-m-d_H-i-s').'][1.601].bak.php');
  1469. $createConfigSuccess = createConfig($config);
  1470. unset($config);
  1471. if(file_exists('org.log')){
  1472. copy('org.log', DATABASE_LOCATION.'org.log');
  1473. unlink('org.log');
  1474. }
  1475. if(file_exists('loginLog.json')){
  1476. copy('loginLog.json', DATABASE_LOCATION.'loginLog.json');
  1477. unlink('loginLog.json');
  1478. }
  1479. }
  1480. return true;
  1481. }
  1482. // Get OS from server
  1483. function getOS(){
  1484. if(PHP_SHLIB_SUFFIX == "dll"){
  1485. return "win";
  1486. }else{
  1487. return "nix";
  1488. }
  1489. }
  1490. //Get Error by Server OS
  1491. function getError($os, $error){
  1492. $ini = (!empty(php_ini_loaded_file()) ? php_ini_loaded_file() : "php.ini");
  1493. $ext = (!empty(ini_get('extension_dir')) ? "uncomment ;extension_dir = and make sure it says -> extension_dir = '".ini_get('extension_dir')."'" : "uncomment ;extension_dir = and add path to 'ext' to make it like extension_dir = 'C:\nginx\php\ext'");
  1494. $errors = array(
  1495. 'pdo_sqlite' => array(
  1496. 'win' => '<b>PDO:SQLite</b> not enabled, uncomment ;extension=php_pdo_sqlite.dll in the file php.ini | '.$ext,
  1497. 'nix' => '<b>PDO:SQLite</b> not enabled, PHP7 -> run sudo apt-get install php7.0-sqlite | PHP5 -> run sudo apt-get install php5-sqlite',
  1498. ),
  1499. 'sqlite3' => array(
  1500. 'win' => '<b>SQLite3</b> not enabled, uncomment ;extension=php_sqlite3.dll in the file php.ini | uncomment ;sqlite3.extension_dir = and add "ext" to make it sqlite3.extension_dir = ext',
  1501. 'nix' => '<b>SQLite3</b> not enabled, run sudo apt-get install php-sqlite3',
  1502. ),
  1503. 'curl' => array(
  1504. 'win' => '<b>cURL</b> not enabled, uncomment ;extension=php_curl.dll in the file php.ini | '.$ext,
  1505. 'nix' => '<b>cURL</b> not enabled, PHP7 -> sudo apt-get install php-curl or sudo apt-get install php7.0-curl | PHP5 -> run sudo apt-get install php5.6-curl',
  1506. ),
  1507. 'zip' => array(
  1508. 'win' => '<b>PHP Zip</b> not enabled, uncomment ;extension=php_zip.dll in the file php.ini, if that doesn\'t work remove that line',
  1509. 'nix' => '<b>PHP Zip</b> not enabled, PHP7 -> run sudo apt-get install php7.0-zip | PHP5 -> run sudo apt-get install php5.6-zip',
  1510. ),
  1511. );
  1512. return (isset($errors[$error][$os]) ? $errors[$error][$os] : 'No Error Info Found');
  1513. }
  1514. // Check if all software dependancies are met
  1515. function dependCheck() {
  1516. $output = array();
  1517. $i = 1;
  1518. if (!extension_loaded('pdo_sqlite')) { $output["Step $i"] = getError(getOS(),'pdo_sqlite'); $i++; }
  1519. if (!extension_loaded('curl')) { $output["Step $i"] = getError(getOS(),'curl'); $i++; }
  1520. if (!extension_loaded('zip')) { $output["Step $i"] = getError(getOS(),'zip'); $i++; }
  1521. //if (!extension_loaded('sqlite3')) { $output[] = getError(getOS(),'sqlite3'); }
  1522. if ($output) {
  1523. $output["Step $i"] = "<b>Restart PHP and/or Webserver to apply changes</b>"; $i++;
  1524. $output["Step $i"] = "<b>Please visit here to also check status of necessary components after you fix them: <a href='check.php'>check.php<a/></b>"; $i++;
  1525. debug_out($output,1);
  1526. }
  1527. return true;
  1528. }
  1529. // Process file uploads
  1530. function uploadFiles($path, $ext_mask = null) {
  1531. if (isset($_FILES) && count($_FILES)) {
  1532. require_once('class.uploader.php');
  1533. $uploader = new Uploader();
  1534. $data = $uploader->upload($_FILES['files'], array(
  1535. 'limit' => 10,
  1536. 'maxSize' => 10,
  1537. 'extensions' => $ext_mask,
  1538. 'required' => false,
  1539. 'uploadDir' => str_replace('//','/',$path.'/'),
  1540. 'title' => array('name'),
  1541. 'removeFiles' => true,
  1542. 'replace' => true,
  1543. ));
  1544. if($data['isComplete']){
  1545. $files = $data['data'];
  1546. writeLog("success", $files['metas'][0]['name']." was uploaded");
  1547. echo json_encode($files['metas'][0]['name']);
  1548. }
  1549. if($data['hasErrors']){
  1550. $errors = $data['errors'];
  1551. writeLog("error", $files['metas'][0]['name']." was not able to upload");
  1552. echo json_encode($errors);
  1553. }
  1554. } else {
  1555. writeLog("error", "image was not uploaded");
  1556. echo json_encode('No files submitted!');
  1557. }
  1558. }
  1559. // Process file uploads
  1560. function uploadAvatar($path, $ext_mask = null) {
  1561. if (isset($_FILES) && count($_FILES)) {
  1562. require_once('class.uploader.php');
  1563. $uploader = new Uploader();
  1564. $data = $uploader->upload($_FILES['files'], array(
  1565. 'limit' => 10,
  1566. 'maxSize' => 10,
  1567. 'extensions' => $ext_mask,
  1568. 'required' => false,
  1569. 'uploadDir' => str_replace('//','/',$path.'/'),
  1570. 'title' => array('name'),
  1571. 'removeFiles' => true,
  1572. 'replace' => true,
  1573. ));
  1574. if($data['isComplete']){
  1575. $files = $data['data'];
  1576. writeLog("success", $files['metas'][0]['name']." was uploaded");
  1577. echo json_encode($files['metas'][0]['name']);
  1578. }
  1579. if($data['hasErrors']){
  1580. $errors = $data['errors'];
  1581. writeLog("error", $files['metas'][0]['name']." was not able to upload");
  1582. echo json_encode($errors);
  1583. }
  1584. } else {
  1585. writeLog("error", "image was not uploaded");
  1586. echo json_encode('No files submitted!');
  1587. }
  1588. }
  1589. // Remove file
  1590. function removeFiles($path) {
  1591. if(is_file($path)) {
  1592. writeLog("success", "file was removed");
  1593. unlink($path);
  1594. } else {
  1595. writeLog("error", "file was not removed");
  1596. echo json_encode('No file specified for removal!');
  1597. }
  1598. }
  1599. // Lazy select options
  1600. function resolveSelectOptions($array, $selected = '', $multi = false) {
  1601. $output = array();
  1602. $selectedArr = ($multi?explode('|', $selected):array());
  1603. foreach ($array as $key => $value) {
  1604. if (is_array($value)) {
  1605. if (isset($value['optgroup'])) {
  1606. $output[] = '<optgroup label="'.$key.'">';
  1607. foreach($value['optgroup'] as $k => $v) {
  1608. $output[] = '<option value="'.$v['value'].'"'.($selected===$v['value']||in_array($v['value'],$selectedArr)?' selected':'').(isset($v['disabled']) && $v['disabled']?' disabled':'').'>'.$k.'</option>';
  1609. }
  1610. } else {
  1611. $output[] = '<option value="'.$value['value'].'"'.($selected===$value['value']||in_array($value['value'],$selectedArr)?' selected':'').(isset($value['disabled']) && $value['disabled']?' disabled':'').'>'.$key.'</option>';
  1612. }
  1613. } else {
  1614. $output[] = '<option value="'.$value.'"'.($selected===$value||in_array($value,$selectedArr)?' selected':'').'>'.$key.'</option>';
  1615. }
  1616. }
  1617. return implode('',$output);
  1618. }
  1619. // Check if user is allowed to continue
  1620. function qualifyUser($type, $errOnFail = false) {
  1621. if (!isset($GLOBALS['USER'])) {
  1622. require_once("user.php");
  1623. $GLOBALS['USER'] = new User('registration_callback');
  1624. }
  1625. if (is_bool($type)) {
  1626. if ($type === true) {
  1627. $authorized = ($GLOBALS['USER']->authenticated == true);
  1628. } else {
  1629. $authorized = true;
  1630. }
  1631. } elseif (is_string($type) || is_array($type)) {
  1632. if ($type !== 'false') {
  1633. if (!is_array($type)) {
  1634. $type = explode('|',$type);
  1635. }
  1636. $authorized = ($GLOBALS['USER']->authenticated && in_array($GLOBALS['USER']->role,$type));
  1637. } else {
  1638. $authorized = true;
  1639. }
  1640. } else {
  1641. debug_out('Invalid Syntax!',1);
  1642. }
  1643. if (!$authorized && $errOnFail) {
  1644. if ($GLOBALS['USER']->authenticated) {
  1645. header('Location: '.rtrim(dirname($_SERVER['SCRIPT_NAME']), '/').'/error.php?error=401');
  1646. echo '<script>window.location.href = \''.rtrim(dirname($_SERVER['SCRIPT_NAME']), '/').'/error.php?error=401\'</script>';
  1647. } else {
  1648. header('Location: '.rtrim(dirname($_SERVER['SCRIPT_NAME']), '/').'/error.php?error=999');
  1649. echo '<script>window.location.href = \''.rtrim(dirname($_SERVER['SCRIPT_NAME']), '/').'/error.php?error=999\'</script>';
  1650. }
  1651. debug_out('Not Authorized' ,1);
  1652. } else {
  1653. return $authorized;
  1654. }
  1655. }
  1656. // Build an (optionally) tabbed settings page.
  1657. function buildSettings($array) {
  1658. /*
  1659. array(
  1660. 'title' => '',
  1661. 'id' => '',
  1662. 'fields' => array( See buildField() ),
  1663. 'tabs' => array(
  1664. array(
  1665. 'title' => '',
  1666. 'id' => '',
  1667. 'image' => '',
  1668. 'fields' => array( See buildField() ),
  1669. ),
  1670. ),
  1671. );
  1672. */
  1673. $notifyExplode = explode("-", NOTIFYEFFECT);
  1674. $fieldFunc = function($fieldArr) {
  1675. $fields = '<div class="row">';
  1676. foreach($fieldArr as $key => $value) {
  1677. $isSingle = isset($value['type']);
  1678. if ($isSingle) { $value = array($value); }
  1679. $tmpField = '';
  1680. $sizeLg = max(floor(12/count($value)),2);
  1681. $sizeMd = max(floor(($isSingle?12:6)/count($value)),3);
  1682. foreach($value as $k => $v) {
  1683. $tmpField .= buildField($v, 12, $sizeMd, $sizeLg);
  1684. }
  1685. $fields .= ($isSingle?$tmpField:'<div class="row col-sm-12 content-form">'.$tmpField.'</div>');
  1686. }
  1687. $fields .= '</div>';
  1688. return $fields;
  1689. };
  1690. $fields = (isset($array['fields'])?$fieldFunc($array['fields']):'');
  1691. $tabSelectors = array();
  1692. $tabContent = array();
  1693. if (isset($array['tabs'])) {
  1694. foreach($array['tabs'] as $key => $value) {
  1695. $id = (isset($value['id'])?$value['id']:randString(32));
  1696. $tabSelectors[$key] = '<li class="apps'.($tabSelectors?'':' active').'"><a href="#tab-'.$id.'" data-toggle="tab" aria-expanded="true"><img style="height:40px; width:40px;" src="'.(isset($value['image'])?$value['image']:'images/organizr.png').'"></a></li>';
  1697. $tabContent[$key] = '<div class="tab-pane big-box fade'.($tabContent?'':' active in').'" id="tab-'.$id.'">'.$fieldFunc($value['fields']).'</div>';
  1698. }
  1699. }
  1700. $pageID = (isset($array['id'])?$array['id']:str_replace(array(' ','"',"'"),array('_'),strtolower($array['id'])));
  1701. $extraClick = ($pageID == 'appearance_settings' ? "$('#advanced_settings_form_submit').click();console.log('add theme settings');" : "");
  1702. return '
  1703. <div class="email-body">
  1704. <div class="email-header gray-bg">
  1705. <button type="button" class="btn btn-danger btn-sm waves close-button"><i class="fa fa-close"></i></button>
  1706. <button id="'.$pageID.'_form_submit" class="btn waves btn-labeled btn-success btn btn-sm text-uppercase waves-effect waves-float save-btn-form">
  1707. <span class="btn-label"><i class="fa fa-floppy-o"></i></span>Save
  1708. </button>
  1709. <h1>'.$array['title'].'</h1>
  1710. </div>
  1711. <div class="email-inner small-box">
  1712. <div class="email-inner-section">
  1713. <div class="small-box fade in" id="'.$pageID.'_frame">
  1714. <div class="col-lg-12">
  1715. '.(isset($array['customBeforeForm'])?$array['customBeforeForm']:'').'
  1716. <form class="content-form" name="'.$pageID.'" id="'.$pageID.'_form" onsubmit="return false;">
  1717. '.$fields.($tabContent?'
  1718. <div class="tabbable tabs-with-bg" id="'.$pageID.'_tabs">
  1719. <ul class="nav nav-tabs apps">
  1720. '.implode('', $tabSelectors).'
  1721. </ul>
  1722. <div class="clearfix"></div>
  1723. <div class="tab-content">
  1724. '.implode('', $tabContent).'
  1725. </div>
  1726. </div>':'').'
  1727. </form>
  1728. '.(isset($array['customAfterForm'])?$array['customAfterForm']:'').'
  1729. </div>
  1730. </div>
  1731. </div>
  1732. </div>
  1733. </div>
  1734. <script>
  1735. $(document).ready(function() {
  1736. $(\'#'.$pageID.'_form\').find(\'input, select, textarea\').on(\'change\', function() { $(this).attr(\'data-changed\', \'true\'); });
  1737. var '.$pageID.'Validate = function() { if (this.value && !RegExp(\'^\'+this.pattern+\'$\').test(this.value)) { $(this).addClass(\'invalid\'); } else { $(this).removeClass(\'invalid\'); } };
  1738. $(\'#'.$pageID.'_form\').find(\'input[pattern]\').each('.$pageID.'Validate).on(\'keyup\', '.$pageID.'Validate);
  1739. $(\'#'.$pageID.'_form\').find(\'select[multiple]\').on(\'change click\', function() { $(this).attr(\'data-changed\', \'true\'); });
  1740. $(\'#'.$pageID.'_form_submit\').on(\'click\', function () {
  1741. var newVals = {};
  1742. var hasVals = false;
  1743. var errorFields = [];
  1744. $(\'#'.$pageID.'_form\').find(\'[data-changed=true][name]\').each(function() {
  1745. hasVals = true;
  1746. if (this.type == \'checkbox\') {
  1747. newVals[this.name] = this.checked;
  1748. } else if ($(this).hasClass(\'summernote\')) {
  1749. newVals[$(this).attr(\'name\')] = $(this).siblings(\'.note-editor\').find(\'.panel-body\').html();
  1750. } else {
  1751. if (this.value && this.pattern && !RegExp(\'^\'+this.pattern+\'$\').test(this.value)) { errorFields.push(this.name); }
  1752. var fieldVal = $(this).val();
  1753. if (typeof fieldVal == \'object\') {
  1754. if (typeof fieldVal.join == \'function\') {
  1755. fieldVal = fieldVal.join(\'|\');
  1756. } else {
  1757. fieldVal = JSON.stringify(fieldVal);
  1758. }
  1759. }
  1760. newVals[this.name] = fieldVal;
  1761. }
  1762. });
  1763. if (errorFields.length) {
  1764. parent.notify(\'Fields have errors: \'+errorFields.join(\', \')+\'!\', \'bullhorn\', \'error\', 5000, \''.$notifyExplode[0].'\', \''.$notifyExplode[1].'\');
  1765. } else if (hasVals) {
  1766. console.log(newVals);
  1767. ajax_request(\'POST\', \''.(isset($array['submitAction'])?$array['submitAction']:'update-config').'\', newVals, function(data, code) {
  1768. $(\'#'.$pageID.'_form\').find(\'[data-changed=true][name]\').removeAttr(\'data-changed\');
  1769. });
  1770. '.$extraClick.'
  1771. } else {
  1772. parent.notify(\'Nothing to update!\', \'bullhorn\', \'error\', 5000, \''.$notifyExplode[0].'\', \''.$notifyExplode[1].'\');
  1773. }
  1774. return false;
  1775. });
  1776. '.(isset($array['onready'])?$array['onready']:'').'
  1777. });
  1778. </script>
  1779. ';
  1780. }
  1781. // Build Settings Fields
  1782. function buildField($params, $sizeSm = 12, $sizeMd = 12, $sizeLg = 12) {
  1783. /*
  1784. array(
  1785. 'type' => '',
  1786. 'placeholder' => '',
  1787. 'label' => '',
  1788. 'labelTranslate' => '',
  1789. 'assist' => '',
  1790. 'name' => '',
  1791. 'pattern' => '',
  1792. 'options' => array( // For SELECT only
  1793. 'Display' => 'value',
  1794. ),
  1795. )
  1796. */
  1797. // Tags
  1798. $tags = array();
  1799. foreach(array('placeholder','style','disabled','readonly','pattern','min','max','required','onkeypress','onchange','onfocus','onleave','href','onclick') as $value) {
  1800. if (isset($params[$value])) {
  1801. if (is_string($params[$value])) { $tags[] = $value.'="'.$params[$value].'"';
  1802. } else if ($params[$value] === true) { $tags[] = $value; }
  1803. }
  1804. }
  1805. $format = (isset($params['format']) && in_array($params['format'],array(false,'colour','color'))?$params['format']:false);
  1806. $name = (isset($params['name'])?$params['name']:(isset($params['id'])?$params['id']:''));
  1807. $id = (isset($params['id'])?$params['id']:(isset($params['name'])?$params['name'].'_id':randString(32)));
  1808. $val = (isset($params['value'])?$params['value']:'');
  1809. $class = (isset($params['class'])?' '.$params['class']:'');
  1810. $wrapClass = (isset($params['wrapClass'])?$params['wrapClass']:'form-content');
  1811. $assist = (isset($params['assist'])?' - i.e. '.$params['assist']:'');
  1812. $label = (isset($params['labelTranslate'])?translate($params['labelTranslate']):(isset($params['label'])?$params['label']:''));
  1813. $labelOut = '<p class="help-text">'.$label.$assist.'</p>';
  1814. // Field Design
  1815. switch ($params['type']) {
  1816. case 'text':
  1817. case 'number':
  1818. case 'password':
  1819. $field = '<input id="'.$id.'" name="'.$name.'" type="'.$params['type'].'" class="form-control material input-sm'.$class.'" '.implode(' ',$tags).' autocorrect="off" autocapitalize="off" value="'.$val.'">';
  1820. break;
  1821. case 'select':
  1822. case 'dropdown':
  1823. $field = '<select id="'.$id.'" name="'.$name.'" class="form-control material input-sm" '.implode(' ',$tags).'>'.resolveSelectOptions($params['options'], $val).'</select>';
  1824. break;
  1825. case 'select-multi':
  1826. case 'dropdown-multi':
  1827. $field = '<select id="'.$id.'" name="'.$name.'" class="form-control input-sm" '.implode(' ',$tags).' multiple="multiple">'.resolveSelectOptions($params['options'], $val, true).'</select>';
  1828. break;
  1829. case 'check':
  1830. case 'checkbox':
  1831. case 'toggle':
  1832. $checked = ((is_bool($val) && $val) || trim($val) === 'true'?' checked':'');
  1833. $colour = (isset($params['colour'])?$params['colour']:'success');
  1834. $labelOut = '<label for="'.$id.'"></label>'.$label;
  1835. $field = '<input id="'.$id.'" name="'.$name.'" type="checkbox" class="switcher switcher-'.$colour.' '.$class.'" '.implode(' ',$tags).' data-value="'.$val.'"'.$checked.'>';
  1836. break;
  1837. case 'radio':
  1838. $labelOut = '';
  1839. $checked = ((is_bool($val) && $val) || ($val && trim($val) !== 'false')?' checked':'');
  1840. $bType = (isset($params['buttonType'])?$params['buttonType']:'success');
  1841. $field = '<div class="radio radio-'.$bType.'"><input id="'.$id.'" name="'.$name.'" type="radio" class="'.$class.'" '.implode(' ',$tags).' value="'.$val.'"'.$checked.'><label for="'.$id.'">'.$label.'</label></div>';
  1842. break;
  1843. case 'date':
  1844. $field = 'Unsupported, planned.';
  1845. break;
  1846. case 'hidden':
  1847. return '<input id="'.$id.'" name="'.$name.'" type="hidden" class="'.$class.'" '.implode(' ',$tags).' value="'.$val.'">';
  1848. break;
  1849. case 'header':
  1850. $labelOut = '';
  1851. $headType = (isset($params['value'])?$params['value']:3);
  1852. $field = '<h'.$headType.' class="'.$class.'" '.implode(' ',$tags).'>'.$label.'</h'.$headType.'>';
  1853. break;
  1854. case 'button':
  1855. $labelOut = '';
  1856. $icon = (isset($params['icon'])?$params['icon']:'flask');
  1857. $bType = (isset($params['buttonType'])?$params['buttonType']:'success');
  1858. $bDropdown = (isset($params['buttonDrop'])?$params['buttonDrop']:'');
  1859. $field = ($bDropdown?'<div class="btn-group">':'').'<button id="'.$id.'" type="button" class="btn waves btn-labeled btn-'.$bType.' btn-sm text-uppercase waves-effect waves-float'.$class.''.($bDropdown?' dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"':'"').' '.implode(' ',$tags).'><span class="btn-label"><i class="fa fa-'.$icon.'"></i></span><span class="btn-text">'.$label.'</span></button>'.($bDropdown?$bDropdown.'</div>':'');
  1860. break;
  1861. case 'textarea':
  1862. $rows = (isset($params['rows'])?$params['rows']:5);
  1863. $field = '<textarea id="'.$id.'" name="'.$name.'" class="form-control'.$class.'" rows="'.$rows.'" '.implode(' ',$tags).'>'.$val.'</textarea>';
  1864. break;
  1865. case 'custom':
  1866. // Settings
  1867. $settings = array(
  1868. '$id' => $id,
  1869. '$name' => $name,
  1870. '$val' => $val,
  1871. '$label' => $label,
  1872. '$labelOut' => $labelOut,
  1873. );
  1874. // Get HTML
  1875. $html = (isset($params['html'])?$params['html']:'Nothing Specified!');
  1876. // If LabelOut is in html dont print it twice
  1877. $labelOut = (strpos($html,'$label')!==false?'':$labelOut);
  1878. // Replace variables in settings
  1879. $html = preg_replace_callback('/\$\w+\b/', function ($match) use ($settings) { return (isset($settings[$match[0]])?$settings[$match[0]]:'{'.$match[0].' is undefined}'); }, $html);
  1880. // Build Field
  1881. $field = '<div id="'.$id.'_html" class="custom-field">'.$html.'</div>';
  1882. break;
  1883. case 'space':
  1884. $labelOut = '';
  1885. $field = str_repeat('<br>', (isset($params['value'])?$params['value']:1));
  1886. break;
  1887. default:
  1888. $field = 'Unsupported field type';
  1889. break;
  1890. }
  1891. // Field Formats
  1892. switch ($format) {
  1893. case 'colour': // Fuckin Eh, Canada!
  1894. case 'color':
  1895. $labelBef = '<center>'.$label.'</center>';
  1896. $wrapClass = 'gray-bg colour-field';
  1897. $labelAft = '';
  1898. $field = str_replace(' material input-sm','',$field);
  1899. break;
  1900. default:
  1901. $labelBef = '';
  1902. $labelAft = $labelOut;
  1903. }
  1904. return '<div class="'.$wrapClass.' col-sm-'.$sizeSm.' col-md-'.$sizeMd.' col-lg-'.$sizeLg.'">'.$labelBef.$field.$labelAft.'</div>';
  1905. }
  1906. // Tab Settings Generation
  1907. function printTabRow($data) {
  1908. $hidden = false;
  1909. if ($data===false) {
  1910. $hidden = true;
  1911. $data = array( // New Tab Defaults
  1912. 'id' => 'new',
  1913. 'name' => '',
  1914. 'url' => '',
  1915. 'icon' => 'fa-diamond',
  1916. 'iconurl' => '',
  1917. 'active' => 'true',
  1918. 'user' => 'true',
  1919. 'guest' => 'true',
  1920. 'window' => 'false',
  1921. 'splash' => 'true',
  1922. 'ping' => 'false',
  1923. 'ping_url' => '',
  1924. 'defaultz' => '',
  1925. );
  1926. }
  1927. $image = '<span style="font: normal normal normal 30px/1 FontAwesome;" class="fa fa-hand-paper-o"></span>';
  1928. $output = '
  1929. <li id="tab-'.$data['id'].'" class="list-group-item" style="position: relative; left: 0px; top: 0px; '.($hidden?' display: none;':'').'">
  1930. <tab class="content-form form-inline">
  1931. <div class="row">
  1932. '.buildField(array(
  1933. 'type' => 'custom',
  1934. 'html' => '<div class="action-btns tabIconView"><a style="margin-left: 0px">'.($data['iconurl']?'<img src="'.$data['iconurl'].'" height="30" width="30">':'<span style="font: normal normal normal 30px/1 FontAwesome;" class="fa '.($data['icon']?$data['icon']:'hand-paper-o').'"></span>').'</a></div>',
  1935. ),12,1,1).'
  1936. '.buildField(array(
  1937. 'type' => 'hidden',
  1938. 'id' => 'tab-'.$data['id'].'-id',
  1939. 'name' => 'id['.$data['id'].']',
  1940. 'value' => $data['id'],
  1941. ),12,2,1).'
  1942. '.buildField(array(
  1943. 'type' => 'text',
  1944. 'id' => 'tab-'.$data['id'].'-name',
  1945. 'name' => 'name['.$data['id'].']',
  1946. 'required' => true,
  1947. 'placeholder' => 'Organizr Homepage',
  1948. 'labelTranslate' => 'TAB_NAME',
  1949. 'value' => $data['name'],
  1950. 'class' => 'darkBold',
  1951. ),12,2,1).'
  1952. '.buildField(array(
  1953. 'type' => 'text',
  1954. 'id' => 'tab-'.$data['id'].'-url',
  1955. 'name' => 'url['.$data['id'].']',
  1956. 'required' => true,
  1957. 'placeholder' => 'homepage.php',
  1958. 'labelTranslate' => 'TAB_URL',
  1959. 'value' => $data['url'],
  1960. 'class' => 'darkBold',
  1961. ),12,2,2).'
  1962. '.buildField(array(
  1963. 'type' => 'text',
  1964. 'id' => 'tab-'.$data['id'].'-iconurl',
  1965. 'name' => 'iconurl['.$data['id'].']',
  1966. 'placeholder' => 'images/organizr.png',
  1967. 'labelTranslate' => 'ICON_URL',
  1968. 'value' => $data['iconurl'],
  1969. 'class' => 'darkBold',
  1970. ),12,2,1).'
  1971. '.buildField(array(
  1972. 'type' => 'text',
  1973. 'id' => 'tab-'.$data['id'].'-icon',
  1974. 'name' => 'icon['.$data['id'].']',
  1975. 'placeholder' => 'fa-icon',
  1976. 'labelTranslate' => 'OR_ICON_NAME',
  1977. 'value' => $data['icon'],
  1978. 'class' => 'iconpickeradd darkBold',
  1979. ),12,1,1).'
  1980. '.buildField(array(
  1981. 'type' => 'text',
  1982. 'id' => 'tab-'.$data['id'].'-ping_url',
  1983. 'name' => 'ping_url['.$data['id'].']',
  1984. 'placeholder' => 'host:port',
  1985. 'labelTranslate' => 'PING_URL',
  1986. 'value' => $data['ping_url'],
  1987. 'class' => 'darkBold',
  1988. ),12,2,1).'
  1989. '.buildField(array(
  1990. 'type' => 'radio',
  1991. 'labelTranslate' => 'DEFAULT',
  1992. 'name' => 'defaultz['.$data['id'].']',
  1993. 'value' => $data['defaultz'],
  1994. 'onclick' => "$('[type=radio][id!=\''+this.id+'\']').each(function() { this.checked=false; });",
  1995. ),12,1,1).'
  1996. '.buildField(array(
  1997. 'type' => 'button',
  1998. 'icon' => 'chevron-down',
  1999. 'buttonType' => 'success',
  2000. 'labelTranslate' => 'MORE',
  2001. 'onclick' => "$(this).parent().parent().parent().find('.slideInUp').toggle()",
  2002. 'class' => 'toggleTabExtra',
  2003. ),12,1,1).'
  2004. '.buildField(array(
  2005. 'type' => 'button',
  2006. 'icon' => 'trash',
  2007. 'buttonType' => 'danger',
  2008. 'labelTranslate' => 'REMOVE',
  2009. 'onclick' => "$(this).parents('li').remove();",
  2010. ),12,1,1).'</div><div id = "tab-'.$data['id'].'-row" class = "row animated slideInUp" style = "display:none;" ><div></div>
  2011. '.buildField(array(
  2012. 'type' => 'checkbox',
  2013. 'labelTranslate' => 'ACTIVE',
  2014. 'name' => 'active['.$data['id'].']',
  2015. 'value' => $data['active'],
  2016. ),12,1,1).'
  2017. '.buildField(array(
  2018. 'type' => 'checkbox',
  2019. 'labelTranslate' => 'USER',
  2020. 'colour' => 'primary',
  2021. 'name' => 'user['.$data['id'].']',
  2022. 'value' => $data['user'],
  2023. ),12,1,1).'
  2024. '.buildField(array(
  2025. 'type' => 'checkbox',
  2026. 'labelTranslate' => 'GUEST',
  2027. 'colour' => 'warning',
  2028. 'name' => 'guest['.$data['id'].']',
  2029. 'value' => $data['guest'],
  2030. ),12,1,1).'
  2031. '.buildField(array(
  2032. 'type' => 'checkbox',
  2033. 'labelTranslate' => 'NO_IFRAME',
  2034. 'colour' => 'danger',
  2035. 'name' => 'window['.$data['id'].']',
  2036. 'value' => $data['window'],
  2037. ),12,1,1).'
  2038. '.buildField(array(
  2039. 'type' => 'checkbox',
  2040. 'labelTranslate' => 'SPLASH',
  2041. 'colour' => 'success',
  2042. 'name' => 'splash['.$data['id'].']',
  2043. 'value' => $data['splash'],
  2044. ),12,1,1).'
  2045. '.buildField(array(
  2046. 'type' => 'checkbox',
  2047. 'labelTranslate' => 'PING',
  2048. 'colour' => 'success',
  2049. 'name' => 'ping['.$data['id'].']',
  2050. 'value' => $data['ping'],
  2051. ),12,1,1).'
  2052. </div>
  2053. </tab>
  2054. </li>
  2055. ';
  2056. return $output;
  2057. }
  2058. // Timezone array
  2059. function timezoneOptions() {
  2060. $output = array();
  2061. $timezones = array();
  2062. $regions = array(
  2063. 'Africa' => DateTimeZone::AFRICA,
  2064. 'America' => DateTimeZone::AMERICA,
  2065. 'Antarctica' => DateTimeZone::ANTARCTICA,
  2066. 'Arctic' => DateTimeZone::ARCTIC,
  2067. 'Asia' => DateTimeZone::ASIA,
  2068. 'Atlantic' => DateTimeZone::ATLANTIC,
  2069. 'Australia' => DateTimeZone::AUSTRALIA,
  2070. 'Europe' => DateTimeZone::EUROPE,
  2071. 'Indian' => DateTimeZone::INDIAN,
  2072. 'Pacific' => DateTimeZone::PACIFIC
  2073. );
  2074. foreach ($regions as $name => $mask) {
  2075. $zones = DateTimeZone::listIdentifiers($mask);
  2076. foreach($zones as $timezone) {
  2077. $time = new DateTime(NULL, new DateTimeZone($timezone));
  2078. $ampm = $time->format('H') > 12 ? ' ('. $time->format('g:i a'). ')' : '';
  2079. $output[$name]['optgroup'][substr($timezone, strlen($name) + 1) . ' - ' . $time->format('H:i') . $ampm]['value'] = $timezone;
  2080. }
  2081. }
  2082. return $output;
  2083. }
  2084. // Build Database
  2085. function createSQLiteDB($path = false) {
  2086. if ($path === false) {
  2087. if (DATABASE_LOCATION){
  2088. $path = DATABASE_LOCATION;
  2089. } else {
  2090. debug_out('No Path Specified!');
  2091. }
  2092. }
  2093. if (!is_file($path.'users.db') || filesize($path.'users.db') <= 0) {
  2094. if (!isset($GLOBALS['file_db'])) {
  2095. $GLOBALS['file_db'] = new PDO('sqlite:'.$path.'users.db');
  2096. $GLOBALS['file_db']->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  2097. }
  2098. // Create Users
  2099. $users = $GLOBALS['file_db']->query('CREATE TABLE `users` (
  2100. `id` INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE,
  2101. `username` TEXT UNIQUE,
  2102. `password` TEXT,
  2103. `email` TEXT,
  2104. `token` TEXT,
  2105. `role` TEXT,
  2106. `active` TEXT,
  2107. `last` TEXT,
  2108. `auth_service` TEXT DEFAULT \'internal\'
  2109. );');
  2110. // Create Tabs
  2111. $tabs = $GLOBALS['file_db']->query('CREATE TABLE `tabs` (
  2112. `id` INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE,
  2113. `order` INTEGER,
  2114. `users_id` INTEGER,
  2115. `name` TEXT,
  2116. `url` TEXT,
  2117. `defaultz` TEXT,
  2118. `active` TEXT,
  2119. `user` TEXT,
  2120. `guest` TEXT,
  2121. `icon` TEXT,
  2122. `iconurl` TEXT,
  2123. `window` TEXT,
  2124. `splash` TEXT,
  2125. `ping` TEXT,
  2126. `ping_url` TEXT
  2127. );');
  2128. // Create Options
  2129. $options = $GLOBALS['file_db']->query('CREATE TABLE `options` (
  2130. `id` INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE,
  2131. `users_id` INTEGER UNIQUE,
  2132. `title` TEXT UNIQUE,
  2133. `topbar` TEXT,
  2134. `bottombar` TEXT,
  2135. `sidebar` TEXT,
  2136. `hoverbg` TEXT,
  2137. `topbartext` TEXT,
  2138. `activetabBG` TEXT,
  2139. `activetabicon` TEXT,
  2140. `activetabtext` TEXT,
  2141. `inactiveicon` TEXT,
  2142. `inactivetext` TEXT,
  2143. `loading` TEXT,
  2144. `hovertext` TEXT
  2145. );');
  2146. // Create Invites
  2147. $invites = $GLOBALS['file_db']->query('CREATE TABLE `invites` (
  2148. `id` INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE,
  2149. `code` TEXT UNIQUE,
  2150. `date` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
  2151. `email` TEXT,
  2152. `username` TEXT,
  2153. `dateused` TIMESTAMP,
  2154. `usedby` TEXT,
  2155. `ip` TEXT,
  2156. `valid` TEXT
  2157. );');
  2158. writeLog("success", "database created/saved");
  2159. return $users && $tabs && $options && $invites;
  2160. } else {
  2161. writeLog("error", "database was unable to be created/saved");
  2162. return false;
  2163. }
  2164. }
  2165. // Upgrade Database
  2166. function updateSQLiteDB($db_path = false, $oldVerNum = false) {
  2167. if (!$db_path) {
  2168. if (defined('DATABASE_LOCATION')) {
  2169. $db_path = DATABASE_LOCATION;
  2170. } else {
  2171. debug_out('No Path Specified',1);
  2172. }
  2173. }
  2174. if (!isset($GLOBALS['file_db'])) {
  2175. $GLOBALS['file_db'] = new PDO('sqlite:'.$db_path.'users.db');
  2176. $GLOBALS['file_db']->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  2177. }
  2178. // Cache current DB
  2179. $cache = array();
  2180. foreach($GLOBALS['file_db']->query('SELECT name FROM sqlite_master WHERE type="table";') as $table) {
  2181. foreach($GLOBALS['file_db']->query('SELECT * FROM '.$table['name'].';') as $key => $row) {
  2182. foreach($row as $k => $v) {
  2183. if (is_string($k)) {
  2184. $cache[$table['name']][$key][$k] = $v;
  2185. }
  2186. }
  2187. }
  2188. }
  2189. // Remove Current Database
  2190. $GLOBALS['file_db'] = null;
  2191. $pathDigest = pathinfo($db_path.'users.db');
  2192. if (file_exists($db_path.'users.db')) {
  2193. rename($db_path.'users.db', $pathDigest['dirname'].'/'.$pathDigest['filename'].'['.date('Y-m-d_H-i-s').']'.($oldVerNum?'['.$oldVerNum.']':'').'.bak.db');
  2194. }
  2195. // Create New Database
  2196. $success = createSQLiteDB($db_path);
  2197. // Restore Items
  2198. if ($success) {
  2199. foreach($cache as $table => $tableData) {
  2200. if ($tableData) {
  2201. $queryBase = 'INSERT INTO '.$table.' (`'.implode('`,`',array_keys(current($tableData))).'`) values ';
  2202. $insertValues = array();
  2203. reset($tableData);
  2204. foreach($tableData as $key => $value) {
  2205. $insertValues[] = '('.implode(',',array_map(function($d) {
  2206. return (isset($d)?$GLOBALS['file_db']->quote($d):'null');
  2207. }, $value)).')';
  2208. }
  2209. $GLOBALS['file_db']->query($queryBase.implode(',',$insertValues).';');
  2210. }
  2211. }
  2212. writeLog("success", "database values have been updated");
  2213. return true;
  2214. } else {
  2215. writeLog("error", "database values unable to be updated");
  2216. return false;
  2217. }
  2218. }
  2219. // Commit colours to database
  2220. function updateDBOptions($values) {
  2221. if (!isset($GLOBALS['file_db'])) {
  2222. $GLOBALS['file_db'] = new PDO('sqlite:'.DATABASE_LOCATION.'users.db');
  2223. $GLOBALS['file_db']->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  2224. }
  2225. // Commit new values to database
  2226. if ($GLOBALS['file_db']->query('UPDATE options SET '.implode(',',array_map(function($d, $k) {
  2227. return '`'.$k.'` = '.(isset($d)?"'".addslashes($d)."'":'null');
  2228. }, $values, array_keys($values))).';')->rowCount()) {
  2229. return true;
  2230. } else if ($GLOBALS['file_db']->query('INSERT OR IGNORE INTO options (`'.implode('`,`',array_keys($values)).'`) VALUES (\''.implode("','",$values).'\');')->rowCount()) {
  2231. writeLog("success", "database values for options table have been updated");
  2232. return true;
  2233. } else {
  2234. writeLog("error", "database values for options table unable to be updated");
  2235. return false;
  2236. }
  2237. }
  2238. // Send AJAX notification
  2239. function sendNotification($success, $message = false, $send = true) {
  2240. $notifyExplode = explode("-", NOTIFYEFFECT);
  2241. if ($success) {
  2242. $msg = array(
  2243. 'html' => ($message?''.$message:'<strong>'.translate("SETTINGS_SAVED").'</strong>'),
  2244. 'icon' => 'floppy-o',
  2245. 'type' => 'success',
  2246. 'length' => '5000',
  2247. 'layout' => $notifyExplode[0],
  2248. 'effect' => $notifyExplode[1],
  2249. );
  2250. } else {
  2251. $msg = array(
  2252. 'html' => ($message?''.$message:'<strong>'.translate("SETTINGS_NOT_SAVED").'</strong>'),
  2253. 'icon' => 'floppy-o',
  2254. 'type' => 'failed',
  2255. 'length' => '5000',
  2256. 'layout' => $notifyExplode[0],
  2257. 'effect' => $notifyExplode[1],
  2258. );
  2259. }
  2260. // Send and kill script?
  2261. if ($send) {
  2262. header('Content-Type: application/json');
  2263. echo json_encode(array('notify'=>$msg));
  2264. die();
  2265. }
  2266. return $msg;
  2267. }
  2268. // Load colours from the database
  2269. function loadAppearance() {
  2270. // Defaults
  2271. $defaults = array(
  2272. 'title' => 'Organizr',
  2273. 'topbartext' => '#66D9EF',
  2274. 'topbar' => '#333333',
  2275. 'bottombar' => '#333333',
  2276. 'sidebar' => '#393939',
  2277. 'hoverbg' => '#AD80FD',
  2278. 'activetabBG' => '#F92671',
  2279. 'activetabicon' => '#FFFFFF',
  2280. 'activetabtext' => '#FFFFFF',
  2281. 'inactiveicon' => '#66D9EF',
  2282. 'inactivetext' => '#66D9EF',
  2283. 'loading' => '#66D9EF',
  2284. 'hovertext' => '#000000',
  2285. );
  2286. if (DATABASE_LOCATION) {
  2287. if(is_file(DATABASE_LOCATION.'users.db') && filesize(DATABASE_LOCATION.'users.db') > 0){
  2288. if (!isset($GLOBALS['file_db'])) {
  2289. $GLOBALS['file_db'] = new PDO('sqlite:'.DATABASE_LOCATION.'users.db');
  2290. $GLOBALS['file_db']->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  2291. }
  2292. // Database Lookup
  2293. $options = $GLOBALS['file_db']->query('SELECT * FROM options');
  2294. // Replace defaults with filled options
  2295. foreach($options as $row) {
  2296. foreach($defaults as $key => $value) {
  2297. if (isset($row[$key]) && $row[$key]) {
  2298. $defaults[$key] = $row[$key];
  2299. }
  2300. }
  2301. }
  2302. }
  2303. }
  2304. // Return the Results
  2305. return $defaults;
  2306. }
  2307. // Delete Database
  2308. function deleteDatabase() {
  2309. unset($_COOKIE['Organizr']);
  2310. setcookie('Organizr', '', time() - 3600, '/');
  2311. unset($_COOKIE['OrganizrU']);
  2312. setcookie('OrganizrU', '', time() - 3600, '/');
  2313. $GLOBALS['file_db'] = null;
  2314. unlink(DATABASE_LOCATION.'users.db');
  2315. foreach(glob(substr_replace($userdirpath, "", -1).'/*') as $file) {
  2316. if(is_dir($file)) {
  2317. rmdir($file);
  2318. } elseif (!is_dir($file)) {
  2319. unlink($file);
  2320. }
  2321. }
  2322. rmdir($userdirpath);
  2323. writeLog("success", "database has been deleted");
  2324. return true;
  2325. }
  2326. // Upgrade the installation
  2327. function upgradeInstall($branch = 'master') {
  2328. function downloadFile($url, $path){
  2329. ini_set('max_execution_time',0);
  2330. $folderPath = "upgrade/";
  2331. if(!mkdir($folderPath)){
  2332. writeLog("error", "organizr could not create upgrade folder");
  2333. }
  2334. $newfname = $folderPath . $path;
  2335. $file = fopen ($url, 'rb');
  2336. if ($file) {
  2337. $newf = fopen ($newfname, 'wb');
  2338. if ($newf) {
  2339. while(!feof($file)) {
  2340. fwrite($newf, fread($file, 1024 * 8), 1024 * 8);
  2341. }
  2342. }
  2343. }else{
  2344. writeLog("error", "organizr could not download $url");
  2345. }
  2346. if ($file) {
  2347. fclose($file);
  2348. writeLog("success", "organizr finished downloading the github zip file");
  2349. }else{
  2350. writeLog("error", "organizr could not download the github zip file");
  2351. }
  2352. if ($newf) {
  2353. fclose($newf);
  2354. writeLog("success", "organizr created upgrade zip file from github zip file");
  2355. }else{
  2356. writeLog("error", "organizr could not create upgrade zip file from github zip file");
  2357. }
  2358. }
  2359. function unzipFile($zipFile){
  2360. $zip = new ZipArchive;
  2361. $extractPath = "upgrade/";
  2362. if($zip->open($extractPath . $zipFile) != "true"){
  2363. writeLog("error", "organizr could not unzip upgrade.zip");
  2364. }else{
  2365. writeLog("success", "organizr unzipped upgrade.zip");
  2366. }
  2367. /* Extract Zip File */
  2368. $zip->extractTo($extractPath);
  2369. $zip->close();
  2370. }
  2371. // Function to remove folders and files
  2372. function rrmdir($dir) {
  2373. if (is_dir($dir)) {
  2374. $files = scandir($dir);
  2375. foreach ($files as $file)
  2376. if ($file != "." && $file != "..") rrmdir("$dir/$file");
  2377. rmdir($dir);
  2378. }
  2379. else if (file_exists($dir)) unlink($dir);
  2380. }
  2381. // Function to Copy folders and files
  2382. function rcopy($src, $dst) {
  2383. if (is_dir ( $src )) {
  2384. if (!file_exists($dst)) : mkdir ( $dst ); endif;
  2385. $files = scandir ( $src );
  2386. foreach ( $files as $file )
  2387. if ($file != "." && $file != "..")
  2388. rcopy ( "$src/$file", "$dst/$file" );
  2389. } else if (file_exists ( $src ))
  2390. copy ( $src, $dst );
  2391. }
  2392. $url = 'https://github.com/causefx/Organizr/archive/'.$branch.'.zip';
  2393. $file = "upgrade.zip";
  2394. $source = __DIR__ . '/upgrade/Organizr-'.$branch.'/';
  2395. $cleanup = __DIR__ . "/upgrade/";
  2396. $destination = __DIR__ . "/";
  2397. writeLog("success", "starting organizr upgrade process");
  2398. downloadFile($url, $file);
  2399. unzipFile($file);
  2400. rcopy($source, $destination);
  2401. writeLog("success", "new organizr files copied");
  2402. rrmdir($cleanup);
  2403. writeLog("success", "organizr upgrade folder removed");
  2404. writeLog("success", "organizr has been updated");
  2405. return true;
  2406. }
  2407. // NzbGET Items
  2408. function nzbgetConnect($list = 'listgroups') {
  2409. $url = qualifyURL(NZBGETURL);
  2410. $api = curl_get($url.'/'.NZBGETUSERNAME.':'.NZBGETPASSWORD.'/jsonrpc/'.$list);
  2411. $api = json_decode($api, true);
  2412. $gotNZB = array();
  2413. if (is_array($api) || is_object($api)){
  2414. foreach ($api['result'] AS $child) {
  2415. $downloadName = htmlentities($child['NZBName'], ENT_QUOTES);
  2416. $downloadStatus = $child['Status'];
  2417. $downloadCategory = $child['Category'];
  2418. if($list == "history"){ $downloadPercent = "100"; $progressBar = ""; }
  2419. if($list == "listgroups"){ $downloadPercent = (($child['FileSizeMB'] - $child['RemainingSizeMB']) / $child['FileSizeMB']) * 100; $progressBar = "progress-bar-striped active"; }
  2420. if($child['Health'] <= "750"){
  2421. $downloadHealth = "danger";
  2422. }elseif($child['Health'] <= "900"){
  2423. $downloadHealth = "warning";
  2424. }elseif($child['Health'] <= "1000"){
  2425. $downloadHealth = "success";
  2426. }
  2427. $gotNZB[] = '<tr>
  2428. <td class="col-xs-6 nzbtable-file-row">'.$downloadName.'</td>
  2429. <td class="col-xs-2 nzbtable nzbtable-row">'.$downloadStatus.'</td>
  2430. <td class="col-xs-1 nzbtable nzbtable-row">'.$downloadCategory.'</td>
  2431. <td class="col-xs-1 nzbtable nzbtable-row">'.realSize(($child['FileSizeMB']*1024)*1024).'</td>
  2432. <td class="col-xs-2 nzbtable nzbtable-row">
  2433. <div class="progress">
  2434. <div class="progress-bar progress-bar-'.$downloadHealth.' '.$progressBar.'" role="progressbar" aria-valuenow="'.$downloadPercent.'" aria-valuemin="0" aria-valuemax="100" style="width: '.$downloadPercent.'%">
  2435. <p class="text-center">'.round($downloadPercent).'%</p>
  2436. <span class="sr-only">'.$downloadPercent.'% Complete</span>
  2437. </div>
  2438. </div>
  2439. </td>
  2440. </tr>';
  2441. }
  2442. if ($gotNZB) {
  2443. return implode('',$gotNZB);
  2444. } else {
  2445. return '<tr><td colspan="5"><p class="text-center">No Results</p></td></tr>';
  2446. }
  2447. }else{
  2448. writeLog("error", "NZBGET ERROR: could not connect - check URL and/or check token and/or Username and Password - if HTTPS, is cert valid");
  2449. }
  2450. }
  2451. // Sabnzbd Items
  2452. function sabnzbdConnect($list = 'queue') {
  2453. $url = qualifyURL(SABNZBDURL);
  2454. $api = @file_get_contents($url.'/api?mode='.$list.'&output=json&apikey='.SABNZBDKEY);
  2455. $api = json_decode($api, true);
  2456. $gotNZB = array();
  2457. if (is_array($api) || is_object($api)){
  2458. foreach ($api[$list]['slots'] AS $child) {
  2459. if($list == "queue"){ $downloadName = $child['filename']; $downloadCategory = $child['cat']; $downloadPercent = (($child['mb'] - $child['mbleft']) / $child['mb']) * 100; $progressBar = "progress-bar-striped active"; }
  2460. if($list == "history"){ $downloadName = $child['name']; $downloadCategory = $child['category']; $downloadPercent = "100"; $progressBar = ""; }
  2461. $downloadStatus = $child['status'];
  2462. $gotNZB[] = '<tr>
  2463. <td class="col-xs-6 nzbtable-file-row">'.$downloadName.'</td>
  2464. <td class="col-xs-2 nzbtable nzbtable-row">'.$downloadStatus.'</td>
  2465. <td class="col-xs-1 nzbtable nzbtable-row">'.$downloadCategory.'</td>
  2466. <td class="col-xs-1 nzbtable nzbtable-row">'.$child['size'].'</td>
  2467. <td class="col-xs-2 nzbtable nzbtable-row">
  2468. <div class="progress">
  2469. <div class="progress-bar progress-bar-success '.$progressBar.'" role="progressbar" aria-valuenow="'.$downloadPercent.'" aria-valuemin="0" aria-valuemax="100" style="width: '.$downloadPercent.'%">
  2470. <p class="text-center">'.round($downloadPercent).'%</p>
  2471. <span class="sr-only">'.$downloadPercent.'% Complete</span>
  2472. </div>
  2473. </div>
  2474. </td>
  2475. </tr>';
  2476. }
  2477. if ($gotNZB) {
  2478. return implode('',$gotNZB);
  2479. } else {
  2480. return '<tr><td colspan="5"><p class="text-center">No Results</p></td></tr>';
  2481. }
  2482. }else{
  2483. writeLog("error", "SABNZBD ERROR: could not connect - check URL and/or check token - if HTTPS, is cert valid");
  2484. }
  2485. }
  2486. // Apply new tab settings
  2487. function updateTabs($tabs) {
  2488. if (!isset($GLOBALS['file_db'])) {
  2489. $GLOBALS['file_db'] = new PDO('sqlite:'.DATABASE_LOCATION.'users.db');
  2490. $GLOBALS['file_db']->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  2491. }
  2492. // Validate
  2493. if (!isset($tabs['defaultz'])) { $tabs['defaultz'][current(array_keys($tabs['name']))] = 'true'; }
  2494. if (isset($tabs['name']) && isset($tabs['url']) && is_array($tabs['name'])) {
  2495. // Clear Existing Tabs
  2496. $GLOBALS['file_db']->query("DELETE FROM tabs");
  2497. // Process New Tabs
  2498. $totalValid = 0;
  2499. foreach ($tabs['name'] as $key => $value) {
  2500. // Qualify
  2501. if (!$value || !isset($tabs['url']) || !$tabs['url'][$key]) { continue; }
  2502. $totalValid++;
  2503. $fields = array();
  2504. foreach(array('id','name','url','icon','iconurl','order','ping_url') as $v) {
  2505. if (isset($tabs[$v]) && isset($tabs[$v][$key])) { $fields[$v] = $tabs[$v][$key]; }
  2506. }
  2507. foreach(array('active','user','guest','defaultz','window','splash','ping') as $v) {
  2508. if (isset($tabs[$v]) && isset($tabs[$v][$key])) { $fields[$v] = ($tabs[$v][$key]!=='false'?'true':'false'); }
  2509. }
  2510. $GLOBALS['file_db']->query('INSERT INTO tabs (`'.implode('`,`',array_keys($fields)).'`) VALUES (\''.implode("','",$fields).'\');');
  2511. }
  2512. writeLog("success", "tabs successfully saved");
  2513. return $totalValid;
  2514. } else {
  2515. writeLog("error", "tabs could not save");
  2516. return false;
  2517. }
  2518. writeLog("error", "tabs could not save");
  2519. return false;
  2520. }
  2521. // ==============
  2522. function clean($strin) {
  2523. $strout = null;
  2524. for ($i = 0; $i < strlen($strin); $i++) {
  2525. $ord = ord($strin[$i]);
  2526. if (($ord > 0 && $ord < 32) || ($ord >= 127)) {
  2527. $strout .= "&amp;#{$ord};";
  2528. }
  2529. else {
  2530. switch ($strin[$i]) {
  2531. case '<':
  2532. $strout .= '&lt;';
  2533. break;
  2534. case '>':
  2535. $strout .= '&gt;';
  2536. break;
  2537. case '&':
  2538. $strout .= '&amp;';
  2539. break;
  2540. case '"':
  2541. $strout .= '&quot;';
  2542. break;
  2543. default:
  2544. $strout .= $strin[$i];
  2545. }
  2546. }
  2547. }
  2548. return $strout;
  2549. }
  2550. function registration_callback($username, $email, $userdir){
  2551. global $data;
  2552. $data = array($username, $email, $userdir);
  2553. }
  2554. function printArray($arrayName){
  2555. $messageCount = count($arrayName);
  2556. $i = 0;
  2557. foreach ( $arrayName as $item ) :
  2558. $i++;
  2559. if($i < $messageCount) :
  2560. echo "<small class='text-uppercase'>" . $item . "</small> & ";
  2561. elseif($i = $messageCount) :
  2562. echo "<small class='text-uppercase'>" . $item . "</small>";
  2563. endif;
  2564. endforeach;
  2565. }
  2566. function write_ini_file($content, $path) {
  2567. if (!$handle = fopen($path, 'w')) {
  2568. return false;
  2569. }
  2570. $success = fwrite($handle, trim($content));
  2571. fclose($handle);
  2572. return $success;
  2573. }
  2574. function gotTimezone(){
  2575. $regions = array(
  2576. 'Africa' => DateTimeZone::AFRICA,
  2577. 'America' => DateTimeZone::AMERICA,
  2578. 'Antarctica' => DateTimeZone::ANTARCTICA,
  2579. 'Arctic' => DateTimeZone::ARCTIC,
  2580. 'Asia' => DateTimeZone::ASIA,
  2581. 'Atlantic' => DateTimeZone::ATLANTIC,
  2582. 'Australia' => DateTimeZone::AUSTRALIA,
  2583. 'Europe' => DateTimeZone::EUROPE,
  2584. 'Indian' => DateTimeZone::INDIAN,
  2585. 'Pacific' => DateTimeZone::PACIFIC
  2586. );
  2587. $timezones = array();
  2588. foreach ($regions as $name => $mask) {
  2589. $zones = DateTimeZone::listIdentifiers($mask);
  2590. foreach($zones as $timezone) {
  2591. $time = new DateTime(NULL, new DateTimeZone($timezone));
  2592. $ampm = $time->format('H') > 12 ? ' ('. $time->format('g:i a'). ')' : '';
  2593. $timezones[$name][$timezone] = substr($timezone, strlen($name) + 1) . ' - ' . $time->format('H:i') . $ampm;
  2594. }
  2595. }
  2596. print '<select name="timezone" id="timezone" class="form-control material input-sm" required>';
  2597. foreach($timezones as $region => $list) {
  2598. print '<optgroup label="' . $region . '">' . "\n";
  2599. foreach($list as $timezone => $name) {
  2600. if($timezone == TIMEZONE) : $selected = " selected"; else : $selected = ""; endif;
  2601. print '<option value="' . $timezone . '"' . $selected . '>' . $name . '</option>' . "\n";
  2602. }
  2603. print '</optgroup>' . "\n";
  2604. }
  2605. print '</select>';
  2606. }
  2607. function getTimezone(){
  2608. $regions = array(
  2609. 'Africa' => DateTimeZone::AFRICA,
  2610. 'America' => DateTimeZone::AMERICA,
  2611. 'Antarctica' => DateTimeZone::ANTARCTICA,
  2612. 'Arctic' => DateTimeZone::ARCTIC,
  2613. 'Asia' => DateTimeZone::ASIA,
  2614. 'Atlantic' => DateTimeZone::ATLANTIC,
  2615. 'Australia' => DateTimeZone::AUSTRALIA,
  2616. 'Europe' => DateTimeZone::EUROPE,
  2617. 'Indian' => DateTimeZone::INDIAN,
  2618. 'Pacific' => DateTimeZone::PACIFIC
  2619. );
  2620. $timezones = array();
  2621. foreach ($regions as $name => $mask) {
  2622. $zones = DateTimeZone::listIdentifiers($mask);
  2623. foreach($zones as $timezone) {
  2624. $time = new DateTime(NULL, new DateTimeZone($timezone));
  2625. $ampm = $time->format('H') > 12 ? ' ('. $time->format('g:i a'). ')' : '';
  2626. $timezones[$name][$timezone] = substr($timezone, strlen($name) + 1) . ' - ' . $time->format('H:i') . $ampm;
  2627. }
  2628. }
  2629. print '<select name="timezone" id="timezone" class="form-control material" required>';
  2630. foreach($timezones as $region => $list) {
  2631. print '<optgroup label="' . $region . '">' . "\n";
  2632. foreach($list as $timezone => $name) {
  2633. print '<option value="' . $timezone . '">' . $name . '</option>' . "\n";
  2634. }
  2635. print '</optgroup>' . "\n";
  2636. }
  2637. print '</select>';
  2638. }
  2639. function explosion($string, $position){
  2640. $getWord = explode("|", $string);
  2641. return $getWord[$position];
  2642. }
  2643. function getServerPath() {
  2644. if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == "https"){
  2645. $protocol = "https://";
  2646. }elseif (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') {
  2647. $protocol = "https://";
  2648. } else {
  2649. $protocol = "http://";
  2650. }
  2651. $domain = '';
  2652. if (isset($_SERVER['SERVER_NAME']) && strpos($_SERVER['SERVER_NAME'], '.') !== false){
  2653. $domain = $_SERVER['SERVER_NAME'];
  2654. }elseif(isset($_SERVER['HTTP_HOST'])){
  2655. if (strpos($_SERVER['HTTP_HOST'], ':') !== false) {
  2656. $domain = explode(':', $_SERVER['HTTP_HOST'])[0];
  2657. $port = explode(':', $_SERVER['HTTP_HOST'])[1];
  2658. if ($port == "80" || $port == "443"){
  2659. $domain = $domain;
  2660. }else{
  2661. $domain = $_SERVER['HTTP_HOST'];
  2662. }
  2663. }else{
  2664. $domain = $_SERVER['HTTP_HOST'];
  2665. }
  2666. }
  2667. return $protocol . $domain . str_replace("\\", "/", dirname($_SERVER['REQUEST_URI']));
  2668. }
  2669. function get_browser_name() {
  2670. $user_agent = $_SERVER['HTTP_USER_AGENT'];
  2671. if (strpos($user_agent, 'Opera') || strpos($user_agent, 'OPR/')) return 'Opera';
  2672. elseif (strpos($user_agent, 'Edge')) return 'Edge';
  2673. elseif (strpos($user_agent, 'Chrome')) return 'Chrome';
  2674. elseif (strpos($user_agent, 'Safari')) return 'Safari';
  2675. elseif (strpos($user_agent, 'Firefox')) return 'Firefox';
  2676. elseif (strpos($user_agent, 'MSIE') || strpos($user_agent, 'Trident/7')) return 'Internet Explorer';
  2677. return 'Other';
  2678. }
  2679. function getSickrageCalendarWanted($array){
  2680. $array = json_decode($array, true);
  2681. //$gotCalendar = "";
  2682. $gotCalendar = array();
  2683. $i = 0;
  2684. foreach($array['data']['missed'] AS $child) {
  2685. $i++;
  2686. $seriesName = $child['show_name'];
  2687. $episodeID = $child['tvdbid'];
  2688. $episodeAirDate = $child['airdate'];
  2689. $episodeAirDateTime = explode(" ",$child['airs']);
  2690. $episodeAirDateTime = date("H:i:s", strtotime($episodeAirDateTime[1].$episodeAirDateTime[2]));
  2691. $episodeAirDate = strtotime($episodeAirDate.$episodeAirDateTime);
  2692. $episodeAirDate = date("Y-m-d H:i:s", $episodeAirDate);
  2693. if (new DateTime() < new DateTime($episodeAirDate)) { $unaired = true; }
  2694. $downloaded = "0";
  2695. if($downloaded == "0" && isset($unaired)){ $downloaded = "indigo-bg"; }elseif($downloaded == "1"){ $downloaded = "green-bg";}else{ $downloaded = "red-bg"; }
  2696. //$gotCalendar .= "{ title: \"$seriesName\", start: \"$episodeAirDate\", className: \"$downloaded tvID--$episodeID\", imagetype: \"tv\" }, \n";
  2697. array_push($gotCalendar, array(
  2698. "id" => "Sick-Miss-".$i,
  2699. "title" => $seriesName,
  2700. "start" => $episodeAirDate,
  2701. "className" => $downloaded." tvID--".$episodeID,
  2702. "imagetype" => "tv",
  2703. ));
  2704. }
  2705. foreach($array['data']['today'] AS $child) {
  2706. $i++;
  2707. $seriesName = $child['show_name'];
  2708. $episodeID = $child['tvdbid'];
  2709. $episodeAirDate = $child['airdate'];
  2710. $episodeAirDateTime = explode(" ",$child['airs']);
  2711. $episodeAirDateTime = date("H:i:s", strtotime($episodeAirDateTime[1].$episodeAirDateTime[2]));
  2712. $episodeAirDate = strtotime($episodeAirDate.$episodeAirDateTime);
  2713. $episodeAirDate = date("Y-m-d H:i:s", $episodeAirDate);
  2714. if (new DateTime() < new DateTime($episodeAirDate)) { $unaired = true; }
  2715. $downloaded = "0";
  2716. if($downloaded == "0" && isset($unaired)){ $downloaded = "indigo-bg"; }elseif($downloaded == "1"){ $downloaded = "green-bg";}else{ $downloaded = "red-bg"; }
  2717. //$gotCalendar .= "{ title: \"$seriesName\", start: \"$episodeAirDate\", className: \"$downloaded tvID--$episodeID\", imagetype: \"tv\" }, \n";
  2718. array_push($gotCalendar, array(
  2719. "id" => "Sick-Today-".$i,
  2720. "title" => $seriesName,
  2721. "start" => $episodeAirDate,
  2722. "className" => $downloaded." tvID--".$episodeID,
  2723. "imagetype" => "tv",
  2724. ));
  2725. }
  2726. foreach($array['data']['soon'] AS $child) {
  2727. $i++;
  2728. $seriesName = $child['show_name'];
  2729. $episodeID = $child['tvdbid'];
  2730. $episodeAirDate = $child['airdate'];
  2731. $episodeAirDateTime = explode(" ",$child['airs']);
  2732. $episodeAirDateTime = date("H:i:s", strtotime($episodeAirDateTime[1].$episodeAirDateTime[2]));
  2733. $episodeAirDate = strtotime($episodeAirDate.$episodeAirDateTime);
  2734. $episodeAirDate = date("Y-m-d H:i:s", $episodeAirDate);
  2735. if (new DateTime() < new DateTime($episodeAirDate)) { $unaired = true; }
  2736. $downloaded = "0";
  2737. if($downloaded == "0" && isset($unaired)){ $downloaded = "indigo-bg"; }elseif($downloaded == "1"){ $downloaded = "green-bg";}else{ $downloaded = "red-bg"; }
  2738. //$gotCalendar .= "{ title: \"$seriesName\", start: \"$episodeAirDate\", className: \"$downloaded tvID--$episodeID\", imagetype: \"tv\" }, \n";
  2739. array_push($gotCalendar, array(
  2740. "id" => "Sick-Soon-".$i,
  2741. "title" => $seriesName,
  2742. "start" => $episodeAirDate,
  2743. "className" => $downloaded." tvID--".$episodeID,
  2744. "imagetype" => "tv",
  2745. ));
  2746. }
  2747. foreach($array['data']['later'] AS $child) {
  2748. $i++;
  2749. $seriesName = $child['show_name'];
  2750. $episodeID = $child['tvdbid'];
  2751. $episodeAirDate = $child['airdate'];
  2752. $episodeAirDateTime = explode(" ",$child['airs']);
  2753. $episodeAirDateTime = date("H:i:s", strtotime($episodeAirDateTime[1].$episodeAirDateTime[2]));
  2754. $episodeAirDate = strtotime($episodeAirDate.$episodeAirDateTime);
  2755. $episodeAirDate = date("Y-m-d H:i:s", $episodeAirDate);
  2756. if (new DateTime() < new DateTime($episodeAirDate)) { $unaired = true; }
  2757. $downloaded = "0";
  2758. if($downloaded == "0" && isset($unaired)){ $downloaded = "indigo-bg"; }elseif($downloaded == "1"){ $downloaded = "green-bg";}else{ $downloaded = "red-bg"; }
  2759. //$gotCalendar .= "{ title: \"$seriesName\", start: \"$episodeAirDate\", className: \"$downloaded tvID--$episodeID\", imagetype: \"tv\" }, \n";
  2760. array_push($gotCalendar, array(
  2761. "id" => "Sick-Later-".$i,
  2762. "title" => $seriesName,
  2763. "start" => $episodeAirDate,
  2764. "className" => $downloaded." tvID--".$episodeID,
  2765. "imagetype" => "tv",
  2766. ));
  2767. }
  2768. if ($i != 0){ return $gotCalendar; }
  2769. }
  2770. function getSickrageCalendarHistory($array){
  2771. $array = json_decode($array, true);
  2772. //$gotCalendar = "";
  2773. $gotCalendar = array();
  2774. $i = 0;
  2775. foreach($array['data'] AS $child) {
  2776. $i++;
  2777. $seriesName = $child['show_name'];
  2778. $episodeID = $child['tvdbid'];
  2779. $episodeAirDate = $child['date'];
  2780. $downloaded = "green-bg";
  2781. //$gotCalendar .= "{ title: \"$seriesName\", start: \"$episodeAirDate\", className: \"$downloaded tvID--$episodeID\", imagetype: \"tv\" }, \n";
  2782. array_push($gotCalendar, array(
  2783. "id" => "Sick-History-".$i,
  2784. "title" => $seriesName,
  2785. "start" => $episodeAirDate,
  2786. "className" => $downloaded." tvID--".$episodeID,
  2787. "imagetype" => "tv",
  2788. ));
  2789. }
  2790. if ($i != 0){ return $gotCalendar; }
  2791. }
  2792. function getSonarrCalendar($array){
  2793. $array = json_decode($array, true);
  2794. //$gotCalendar = "";
  2795. $gotCalendar = array();
  2796. $i = 0;
  2797. foreach($array AS $child) {
  2798. $i++;
  2799. $seriesName = $child['series']['title'];
  2800. $episodeID = $child['series']['tvdbId'];
  2801. if(!isset($episodeID)){ $episodeID = ""; }
  2802. $episodeName = htmlentities($child['title'], ENT_QUOTES);
  2803. if($child['episodeNumber'] == "1"){ $episodePremier = "true"; }else{ $episodePremier = "false"; }
  2804. $episodeAirDate = $child['airDateUtc'];
  2805. $episodeAirDate = strtotime($episodeAirDate);
  2806. $episodeAirDate = date("Y-m-d H:i:s", $episodeAirDate);
  2807. if (new DateTime() < new DateTime($episodeAirDate)) { $unaired = true; }
  2808. $downloaded = $child['hasFile'];
  2809. if($downloaded == "0" && isset($unaired) && $episodePremier == "true"){ $downloaded = "light-blue-bg"; }elseif($downloaded == "0" && isset($unaired)){ $downloaded = "indigo-bg"; }elseif($downloaded == "1"){ $downloaded = "green-bg";}else{ $downloaded = "red-bg"; }
  2810. //$gotCalendar .= "{ title: \"$seriesName\", start: \"$episodeAirDate\", className: \"$downloaded tvID--$episodeID\", imagetype: \"tv\" }, \n";
  2811. array_push($gotCalendar, array(
  2812. "id" => "Sonarr-".$i,
  2813. "title" => $seriesName,
  2814. "start" => $episodeAirDate,
  2815. "className" => $downloaded." tvID--".$episodeID,
  2816. "imagetype" => "tv",
  2817. ));
  2818. }
  2819. if ($i != 0){ return $gotCalendar; }
  2820. }
  2821. function getCouchCalendar(){
  2822. $url = qualifyURL(COUCHURL);
  2823. $api = curl_get($url."/api/".COUCHAPI."/media.list");
  2824. $api = json_decode($api, true);
  2825. $i = 0;
  2826. $gotCalendar = array();
  2827. if (is_array($api) || is_object($api)){
  2828. foreach($api['movies'] AS $child) {
  2829. if($child['status'] == "active" || $child['status'] == "done" ){
  2830. $i++;
  2831. $movieName = $child['info']['original_title'];
  2832. $movieID = $child['info']['tmdb_id'];
  2833. if(!isset($movieID)){ $movieID = ""; }
  2834. $physicalRelease = (isset($child['info']['released']) ? $child['info']['released'] : null);
  2835. $backupRelease = (isset($child['info']['release_date']['theater']) ? $child['info']['release_date']['theater'] : null);
  2836. $physicalRelease = (isset($physicalRelease) ? $physicalRelease : $backupRelease);
  2837. $physicalRelease = strtotime($physicalRelease);
  2838. $physicalRelease = date("Y-m-d", $physicalRelease);
  2839. if (new DateTime() < new DateTime($physicalRelease)) { $notReleased = "true"; }else{ $notReleased = "false"; }
  2840. $downloaded = ($child['status'] == "active") ? "0" : "1";
  2841. if($downloaded == "0" && $notReleased == "true"){ $downloaded = "indigo-bg"; }elseif($downloaded == "1"){ $downloaded = "green-bg"; }else{ $downloaded = "red-bg"; }
  2842. array_push($gotCalendar, array(
  2843. "id" => "CouchPotato-".$i,
  2844. "title" => $movieName,
  2845. "start" => $physicalRelease,
  2846. "className" => $downloaded." movieID--".$movieID,
  2847. "imagetype" => "film",
  2848. ));
  2849. }
  2850. }
  2851. if ($i != 0){ return $gotCalendar; }
  2852. }else{
  2853. writeLog("error", "CouchPotato ERROR: could not connect - check URL and/or check API key - if HTTPS, is cert valid");
  2854. }
  2855. }
  2856. function getRadarrCalendar($array){
  2857. $array = json_decode($array, true);
  2858. $gotCalendar = array();
  2859. $i = 0;
  2860. foreach($array AS $child) {
  2861. if(isset($child['physicalRelease'])){
  2862. $i++;
  2863. $movieName = $child['title'];
  2864. $movieID = $child['tmdbId'];
  2865. if(!isset($movieID)){ $movieID = ""; }
  2866. $physicalRelease = $child['physicalRelease'];
  2867. $physicalRelease = strtotime($physicalRelease);
  2868. $physicalRelease = date("Y-m-d", $physicalRelease);
  2869. if (new DateTime() < new DateTime($physicalRelease)) { $notReleased = "true"; }else{ $notReleased = "false"; }
  2870. $downloaded = $child['hasFile'];
  2871. if($downloaded == "0" && $notReleased == "true"){ $downloaded = "indigo-bg"; }elseif($downloaded == "1"){ $downloaded = "green-bg"; }else{ $downloaded = "red-bg"; }
  2872. array_push($gotCalendar, array(
  2873. "id" => "Radarr-".$i,
  2874. "title" => $movieName,
  2875. "start" => $physicalRelease,
  2876. "className" => $downloaded." movieID--".$movieID,
  2877. "imagetype" => "film",
  2878. ));
  2879. }
  2880. }
  2881. if ($i != 0){ return $gotCalendar; }
  2882. }
  2883. function getHeadphonesCalendar($url, $key, $list){
  2884. $url = qualifyURL(HEADPHONESURL);
  2885. $api = curl_get($url."/api?apikey=".$key."&cmd=$list");
  2886. $api = json_decode($api, true);
  2887. $i = 0;
  2888. //$gotCalendar = "";
  2889. $gotCalendar = array();;
  2890. if (is_array($api) || is_object($api)){
  2891. foreach($api AS $child) {
  2892. if($child['Status'] == "Wanted" && $list == "getWanted" && $child['ReleaseDate']){
  2893. $i++;
  2894. $albumName = addslashes($child['AlbumTitle']);
  2895. $albumArtist = htmlentities($child['ArtistName'], ENT_QUOTES);
  2896. $albumDate = (strlen($child['ReleaseDate']) > 4) ? $child['ReleaseDate'] : $child['ReleaseDate']."-01-01";
  2897. $albumID = $child['AlbumID'];
  2898. $albumDate = strtotime($albumDate);
  2899. $albumDate = date("Y-m-d", $albumDate);
  2900. $albumStatus = $child['Status'];
  2901. if (new DateTime() < new DateTime($albumDate)) { $notReleased = "true"; }else{ $notReleased = "false"; }
  2902. if($albumStatus == "Wanted" && $notReleased == "true"){ $albumStatusColor = "indigo-bg"; }elseif($albumStatus == "Downloaded"){ $albumStatusColor = "green-bg"; }else{ $albumStatusColor = "red-bg"; }
  2903. //$gotCalendar .= "{ title: \"$albumArtist - $albumName\", start: \"$albumDate\", className: \"$albumStatusColor\", imagetype: \"music\", url: \"https://musicbrainz.org/release-group/$albumID\" }, \n";
  2904. array_push($gotCalendar, array(
  2905. "id" => "Headphones-".$i,
  2906. "title" => $albumArtist.' - '.$albumName,
  2907. "start" => $albumDate,
  2908. "className" => $albumStatusColor,
  2909. "imagetype" => "music",
  2910. 'url' => "https://musicbrainz.org/release-group/".$albumID,
  2911. ));
  2912. }
  2913. if($child['Status'] == "Processed" && $list == "getHistory"){
  2914. $i++;
  2915. $find = array('_','[', ']', '\n');
  2916. $replace = array(' ','(', ')', ' ');
  2917. $albumName = addslashes(str_replace($find,$replace,$child['FolderName']));
  2918. $albumDate = $child['DateAdded'];
  2919. $albumID = $child['AlbumID'];
  2920. $albumDate = strtotime($albumDate);
  2921. $albumDate = date("Y-m-d", $albumDate);
  2922. $albumStatusColor = "green-bg";
  2923. if (new DateTime() < new DateTime($albumDate)) { $notReleased = "true"; }else{ $notReleased = "false"; }
  2924. //$gotCalendar .= "{ title: \"$albumName\", start: \"$albumDate\", className: \"$albumStatusColor\", imagetype: \"music\", url: \"https://musicbrainz.org/release-group/$albumID\" }, \n";
  2925. array_push($gotCalendar, array(
  2926. "id" => "Headphones-".$i,
  2927. "title" => $albumName,
  2928. "start" => $albumDate,
  2929. "className" => $albumStatusColor,
  2930. "imagetype" => "music",
  2931. 'url' => "https://musicbrainz.org/release-group/".$albumID,
  2932. ));
  2933. }
  2934. }
  2935. if ($i != 0){ return $gotCalendar; }
  2936. }else{
  2937. writeLog("error", "HEADPHONES $list ERROR: could not connect - check URL and/or check API key - if HTTPS, is cert valid");
  2938. }
  2939. }
  2940. function checkRootPath($string){
  2941. if($string == "\\" || $string == "/"){
  2942. return "/";
  2943. }else{
  2944. return str_replace("\\", "/", $string) . "/";
  2945. }
  2946. }
  2947. function strip($string){
  2948. $string = strip_tags($string);
  2949. return preg_replace('/[ \t]+/', ' ', preg_replace('/\s*$^\s*/m', "\n", $string));
  2950. }
  2951. function writeLog($type, $message){
  2952. if(file_exists(DATABASE_LOCATION."org.log")){
  2953. if(filesize(DATABASE_LOCATION."org.log") > 500000){
  2954. rename(DATABASE_LOCATION.'org.log',DATABASE_LOCATION.'org['.date('Y-m-d').'].log');
  2955. $message2 = date("Y-m-d H:i:s")."|".$type."|".strip("ORG LOG: Creating backup of org.log to org[".date('Y-m-d')."].log ")."\n";
  2956. file_put_contents(DATABASE_LOCATION."org.log", $message2, FILE_APPEND | LOCK_EX);
  2957. }
  2958. }
  2959. $message = date("Y-m-d H:i:s")."|".$type."|".strip($message)."\n";
  2960. file_put_contents(DATABASE_LOCATION."org.log", $message, FILE_APPEND | LOCK_EX);
  2961. }
  2962. function readLog(){
  2963. $log = file(DATABASE_LOCATION."org.log",FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
  2964. $log = array_reverse($log);
  2965. foreach($log as $line){
  2966. if(substr_count($line, '|') == 2){
  2967. $line = explode("|", strip($line));
  2968. $line[1] = ($line[1] == "error") ? '<span class="label label-danger">Error</span>' : '<span class="label label-primary">Success</span>';
  2969. echo "<tr><td>".$line[0]."</td><td>".$line[2]."</td><td>".$line[1]."</td></tr>";
  2970. }
  2971. }
  2972. }
  2973. function buildStream($array){
  2974. $result = "";
  2975. if (array_key_exists('platform', $array)) {
  2976. $result .= '<div class="reg-info" style="margin-top:0; padding-left:0; position: absolute; bottom: 10px; left: 10px;"><div style="margin-right: 0;" class="item pull-left text-center"><img alt="'.$array['platform'].'" class="img-circle" height="55px" src="images/platforms/'.getPlatform($array['platform']).'"></div></div><div class="clearfix"></div>';
  2977. }
  2978. if (array_key_exists('device', $array)) {
  2979. $result .= '<div class="reg-info" style="margin-top:0; padding-left:5%;"><div style="margin-right: 0;" class="item pull-left text-center"><span style="font-size: 15px;" class="block text-center"><i class="fa fa-laptop fa-fw"></i>'.$array['device'].'</span></div></div><div class="clearfix"></div>';
  2980. }
  2981. if (array_key_exists('stream', $array)) {
  2982. $result .= '<div class="reg-info" style="margin-top:0; padding-left:5%;"><div style="margin-right: 0;" class="item pull-left text-center"><span style="font-size: 15px;" class="block text-center"><i class="fa fa-play fa-fw"></i>'.$array['stream'].'</span></div></div><div class="clearfix"></div>';
  2983. }
  2984. if (array_key_exists('video', $array)) {
  2985. $result .= '<div class="reg-info" style="margin-top:0; padding-left:5%;"><div style="margin-right: 0;" class="item pull-left text-center"><span style="font-size: 15px;" class="block text-center"><i class="fa fa-film fa-fw"></i>'.$array['video'].'</span></div></div><div class="clearfix"></div>';
  2986. }
  2987. if (array_key_exists('audio', $array)) {
  2988. $result .= '<div class="reg-info" style="margin-top:0; padding-left:5%;"><div style="margin-right: 0;" class="item pull-left text-center"><span style="font-size: 15px;" class="block text-center"><i class="fa fa-volume-up fa-fw"></i>'.$array['audio'].'</span></div></div><div class="clearfix"></div>';
  2989. }
  2990. return $result;
  2991. }
  2992. function streamType($value){
  2993. if($value == "transcode" || $value == "Transcode"){
  2994. return "Transcode";
  2995. }elseif($value == "copy" || $value == "DirectStream"){
  2996. return "Direct Stream";
  2997. }elseif($value == "directplay" || $value == "DirectPlay"){
  2998. return "Direct Play";
  2999. }else{
  3000. return "Direct Play";
  3001. }
  3002. }
  3003. function getPlatform($platform){
  3004. $allPlatforms = array(
  3005. "Chrome" => "chrome.png",
  3006. "tvOS" => "atv.png",
  3007. "iOS" => "ios.png",
  3008. "Xbox One" => "xbox.png",
  3009. "Mystery 4" => "playstation.png",
  3010. "Samsung" => "samsung.png",
  3011. "Roku" => "roku.png",
  3012. "Emby for iOS" => "ios.png",
  3013. "Emby Mobile" => "emby.png",
  3014. "Emby Theater" => "emby.png",
  3015. "Emby Classic" => "emby.png",
  3016. "Safari" => "safari.png",
  3017. "Android" => "android.png",
  3018. "AndroidTv" => "android.png",
  3019. "Chromecast" => "chromecast.png",
  3020. "Dashboard" => "emby.png",
  3021. "Dlna" => "dlna.png",
  3022. "Windows Phone" => "wp.png",
  3023. "Windows RT" => "win8.png",
  3024. "Kodi" => "kodi.png",
  3025. );
  3026. if (array_key_exists($platform, $allPlatforms)) {
  3027. return $allPlatforms[$platform];
  3028. }else{
  3029. return "pmp.png";
  3030. }
  3031. }
  3032. function getServer(){
  3033. $server = isset($_SERVER["HTTP_HOST"]) ? $_SERVER["HTTP_HOST"] : $_SERVER["SERVER_NAME"];
  3034. return $server;
  3035. }
  3036. function prettyPrint($array) {
  3037. echo "<pre>";
  3038. print_r($array);
  3039. echo "</pre>";
  3040. echo "<br/>";
  3041. }
  3042. function checkFrame($array, $url){
  3043. if(array_key_exists("x-frame-options", $array)){
  3044. if($array['x-frame-options'] == "deny"){
  3045. return false;
  3046. }elseif($array['x-frame-options'] == "sameorgin"){
  3047. $digest = parse_url($url);
  3048. $host = (isset($digest['host'])?$digest['host']:'');
  3049. if(getServer() == $host){
  3050. return true;
  3051. }else{
  3052. return false;
  3053. }
  3054. }
  3055. }else{
  3056. if(!$array){
  3057. return false;
  3058. }
  3059. return true;
  3060. }
  3061. }
  3062. function frameTest($url){
  3063. $array = array_change_key_case(get_headers(qualifyURL($url), 1));
  3064. $url = qualifyURL($url);
  3065. if(checkFrame($array, $url)){
  3066. return true;
  3067. }else{
  3068. return false;
  3069. }
  3070. }
  3071. function sendResult($result, $icon = "floppy-o", $message = false, $success = "WAS_SUCCESSFUL", $fail = "HAS_FAILED", $send = true) {
  3072. $notifyExplode = explode("-", NOTIFYEFFECT);
  3073. if ($result) {
  3074. $msg = array(
  3075. 'html' => ($message?''.$message.' <strong>'.translate($success).'</strong>':'<strong>'.translate($success).'</strong>'),
  3076. 'icon' => $icon,
  3077. 'type' => 'success',
  3078. 'length' => '5000',
  3079. 'layout' => $notifyExplode[0],
  3080. 'effect' => $notifyExplode[1],
  3081. );
  3082. } else {
  3083. $msg = array(
  3084. 'html' => ($message?''.$message.' <strong>'.translate($fail).'</strong>':'<strong>'.translate($fail).'</strong>'),
  3085. 'icon' => $icon,
  3086. 'type' => 'error',
  3087. 'length' => '5000',
  3088. 'layout' => $notifyExplode[0],
  3089. 'effect' => $notifyExplode[1],
  3090. );
  3091. }
  3092. // Send and kill script?
  3093. if ($send) {
  3094. header('Content-Type: application/json');
  3095. echo json_encode(array('notify'=>$msg));
  3096. die();
  3097. }
  3098. return $msg;
  3099. }
  3100. function buildHomepageNotice($layout, $type, $title, $message){
  3101. switch ($layout) {
  3102. case 'elegant':
  3103. return '
  3104. <div id="homepageNotice" class="row">
  3105. <div class="col-lg-12">
  3106. <div class="content-box big-box box-shadow panel-box panel-'.$type.'">
  3107. <div class="content-title i-block">
  3108. <h4 class="zero-m"><strong>'.$title.'</strong></h4>
  3109. <div class="content-tools i-block pull-right">
  3110. <a class="close-btn">
  3111. <i class="fa fa-times"></i>
  3112. </a>
  3113. </div>
  3114. </div>
  3115. '.$message.'
  3116. </div>
  3117. </div>
  3118. </div>
  3119. ';
  3120. break;
  3121. case 'basic':
  3122. return '
  3123. <div id="homepageNotice" class="row">
  3124. <div class="col-lg-12">
  3125. <div class="panel panel-'.$type.'">
  3126. <div class="panel-heading">
  3127. <h3 class="panel-title">'.$title.'</h3>
  3128. </div>
  3129. <div class="panel-body">
  3130. '.$message.'
  3131. </div>
  3132. </div>
  3133. </div>
  3134. </div>
  3135. ';
  3136. break;
  3137. case 'jumbotron';
  3138. return '
  3139. <div id="homepageNotice" class="row">
  3140. <div class="col-lg-12">
  3141. <div class="jumbotron">
  3142. <div class="container">
  3143. <h1>'.$title.'</h1>
  3144. <p>'.$message.'</p>
  3145. </div>
  3146. </div>
  3147. </div>
  3148. </div>
  3149. ';
  3150. }
  3151. }
  3152. function embyArray($array, $type) {
  3153. $key = ($type == "video" ? "Height" : "Channels");
  3154. if (array_key_exists($key, $array)) {
  3155. switch ($type) {
  3156. case "video":
  3157. $codec = $array["Codec"];
  3158. $height = $array["Height"];
  3159. $width = $array["Width"];
  3160. break;
  3161. default:
  3162. $codec = $array["Codec"];
  3163. $channels = $array["Channels"];
  3164. }
  3165. return ($type == "video" ? "(".$codec.") (".$width."x".$height.")" : "(".$codec.") (".$channels."ch)");
  3166. }
  3167. foreach ($array as $element) {
  3168. if (is_array($element)) {
  3169. if (embyArray($element, $type)) {
  3170. return embyArray($element, $type);
  3171. }
  3172. }
  3173. }
  3174. }
  3175. // Get Now Playing Streams From Plex
  3176. function searchPlex($query){
  3177. $address = qualifyURL(PLEXURL);
  3178. $openTab = (PLEXTABNAME) ? "true" : "false";
  3179. // Perform API requests
  3180. $api = @curl_get($address."/search?query=".rawurlencode($query)."&X-Plex-Token=".PLEXTOKEN);
  3181. libxml_use_internal_errors(true);
  3182. $api = simplexml_load_string($api);
  3183. $getServer = simplexml_load_string(@curl_get($address."/?X-Plex-Token=".PLEXTOKEN));
  3184. if (!$getServer) { return 'Could not load!'; }
  3185. // Identify the local machine
  3186. $server = $getServer['machineIdentifier'];
  3187. $pre = "<table class=\"table table-hover table-stripped\"><thead><tr><th>Cover</th><th>Title</th><th>Genre</th><th>Year</th><th>Type</th><th>Added</th><th>Extra Info</th></tr></thead><tbody>";
  3188. $items = "";
  3189. $albums = $movies = $shows = 0;
  3190. $style = 'style="vertical-align: middle"';
  3191. foreach($api AS $child) {
  3192. if($child['type'] != "artist" && $child['type'] != "episode" && isset($child['librarySectionID'])){
  3193. $time = (string)$child['addedAt'];
  3194. $time = new DateTime("@$time");
  3195. $results = array(
  3196. "title" => (string)$child['title'],
  3197. "image" => (string)$child['thumb'],
  3198. "type" => (string)ucwords($child['type']),
  3199. "year" => (string)$child['year'],
  3200. "key" => (string)$child['ratingKey']."-search",
  3201. "ratingkey" => (string)$child['ratingKey'],
  3202. "genre" => (string)$child->Genre['tag'],
  3203. "added" => $time->format('Y-m-d'),
  3204. "extra" => "",
  3205. );
  3206. switch ($child['type']){
  3207. case "album":
  3208. $push = array(
  3209. "title" => (string)$child['parentTitle']." - ".(string)$child['title'],
  3210. );
  3211. $results = array_replace($results,$push);
  3212. $albums++;
  3213. break;
  3214. case "movie":
  3215. $push = array(
  3216. "extra" => "Content Rating: ".(string)$child['contentRating']."<br/>Movie Rating: ".(string)$child['rating'],
  3217. );
  3218. $results = array_replace($results,$push);
  3219. $movies++;
  3220. break;
  3221. case "show":
  3222. $push = array(
  3223. "extra" => "Seasons: ".(string)$child['childCount']."<br/>Episodes: ".(string)$child['leafCount'],
  3224. );
  3225. $results = array_replace($results,$push);
  3226. $shows++;
  3227. break;
  3228. }
  3229. if (file_exists('images/cache/'.$results['key'].'.jpg')){ $image_url = 'images/cache/'.$results['key'].'.jpg'; }
  3230. if (file_exists('images/cache/'.$results['key'].'.jpg') && (time() - 604800) > filemtime('images/cache/'.$results['key'].'.jpg') || !file_exists('images/cache/'.$results['key'].'.jpg')) {
  3231. $image_url = 'ajax.php?a=plex-image&img='.$results['image'].'&height=150&width=100&key='.$results['key'];
  3232. }
  3233. if(!$results['image']){ $image_url = "images/no-search.png"; $key = "no-search"; }
  3234. if (PLEXTABURL) {
  3235. $link = PLEXTABURL."/web/index.html#!/server/$server/details?key=/library/metadata/".$results['ratingkey'];
  3236. }else{
  3237. $link = "https://app.plex.tv/web/app#!/server/$server/details?key=/library/metadata/".$results['ratingkey'];
  3238. }
  3239. $items .= '<tr style="cursor: pointer;" class="openTab" extraTitle="'.$results['title'].'" extraType="'.$child['type'].'" openTab="'.$openTab.'" href="'.$link.'">
  3240. <th scope="row"><img src="'.$image_url.'"></th>
  3241. <td class="col-xs-2 nzbtable nzbtable-row"'.$style.'>'.$results['title'].'</td>
  3242. <td class="col-xs-3 nzbtable nzbtable-row"'.$style.'>'.$results['genre'].'</td>
  3243. <td class="col-xs-1 nzbtable nzbtable-row"'.$style.'>'.$results['year'].'</td>
  3244. <td class="col-xs-1 nzbtable nzbtable-row"'.$style.'>'.$results['type'].'</td>
  3245. <td class="col-xs-3 nzbtable nzbtable-row"'.$style.'>'.$results['added'].'</td>
  3246. <td class="col-xs-2 nzbtable nzbtable-row"'.$style.'>'.$results['extra'].'</td>
  3247. </tr>';
  3248. }
  3249. }
  3250. $totals = '<div style="margin: 10px;" class="sort-todo pull-right">
  3251. <span class="badge gray-bg"><i class="fa fa-film fa-2x white"></i><strong style="
  3252. font-size: 23px;
  3253. ">&nbsp;'.$movies.'</strong></span>
  3254. <span class="badge gray-bg"><i class="fa fa-tv fa-2x white"></i><strong style="
  3255. font-size: 23px;
  3256. ">&nbsp;'.$shows.'</strong></span>
  3257. <span class="badge gray-bg"><i class="fa fa-music fa-2x white"></i><strong style="
  3258. font-size: 23px;
  3259. ">&nbsp;'.$albums.'</strong></span>
  3260. </div>';
  3261. return (!empty($items) ? $totals.$pre.$items."</div></table>" : "<h2 class='text-center'>No Results for $query</h2>" );
  3262. }
  3263. function getBannedUsers($string){
  3264. if (strpos($string, ',') !== false) {
  3265. $banned = explode(",", $string);
  3266. }else{
  3267. $banned = array($string);
  3268. }
  3269. return $banned;
  3270. }
  3271. function getWhitelist($string){
  3272. if (strpos($string, ',') !== false) {
  3273. $whitelist = explode(",", $string);
  3274. }else{
  3275. $whitelist = array($string);
  3276. }
  3277. foreach($whitelist as &$ip){
  3278. $ip = is_numeric(substr($ip, 0, 1)) ? $ip : gethostbyname($ip);
  3279. }
  3280. return $whitelist;
  3281. }
  3282. function get_client_ip() {
  3283. $ipaddress = '';
  3284. if (isset($_SERVER['HTTP_CLIENT_IP']))
  3285. $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
  3286. else if(isset($_SERVER['HTTP_X_FORWARDED_FOR']))
  3287. $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
  3288. else if(isset($_SERVER['HTTP_X_FORWARDED']))
  3289. $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
  3290. else if(isset($_SERVER['HTTP_FORWARDED_FOR']))
  3291. $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
  3292. else if(isset($_SERVER['HTTP_FORWARDED']))
  3293. $ipaddress = $_SERVER['HTTP_FORWARDED'];
  3294. else if(isset($_SERVER['REMOTE_ADDR']))
  3295. $ipaddress = $_SERVER['REMOTE_ADDR'];
  3296. else
  3297. $ipaddress = 'UNKNOWN';
  3298. return $ipaddress;
  3299. }
  3300. //EMAIL SHIT
  3301. function sendEmail($email, $username = "Organizr User", $subject, $body, $cc = null, $bcc = null){
  3302. $mail = new PHPMailer;
  3303. $mail->isSMTP();
  3304. $mail->Host = SMTPHOST;
  3305. $mail->SMTPAuth = SMTPHOSTAUTH;
  3306. $mail->Username = SMTPHOSTUSERNAME;
  3307. $mail->Password = SMTPHOSTPASSWORD;
  3308. $mail->SMTPSecure = SMTPHOSTTYPE;
  3309. $mail->Port = SMTPHOSTPORT;
  3310. $mail->setFrom(SMTPHOSTSENDEREMAIL, SMTPHOSTSENDERNAME);
  3311. $mail->addReplyTo(SMTPHOSTSENDEREMAIL, SMTPHOSTSENDERNAME);
  3312. $mail->isHTML(true);
  3313. if($email){
  3314. $mail->addAddress($email, $username);
  3315. }
  3316. if($cc){
  3317. $mail->addCC($cc);
  3318. }
  3319. if($bcc){
  3320. if(strpos($bcc , ',') === false){
  3321. $mail->addBCC($bcc);
  3322. }else{
  3323. $allEmails = explode(",",$bcc);
  3324. foreach($allEmails as $gotEmail){
  3325. $mail->addBCC($gotEmail);
  3326. }
  3327. }
  3328. }
  3329. $mail->Subject = $subject;
  3330. $mail->Body = $body;
  3331. //$mail->send();
  3332. if(!$mail->send()) {
  3333. writeLog("error", "mail failed to send");
  3334. } else {
  3335. writeLog("success", "mail has been sent");
  3336. }
  3337. }
  3338. //EMAIL SHIT
  3339. function sendTestEmail($to, $from, $host, $auth, $username, $password, $type, $port, $sendername){
  3340. $mail = new PHPMailer;
  3341. $mail->isSMTP();
  3342. $mail->Host = $host;
  3343. $mail->SMTPAuth = $auth;
  3344. $mail->Username = $username;
  3345. $mail->Password = $password;
  3346. $mail->SMTPSecure = $type;
  3347. $mail->Port = $port;
  3348. $mail->setFrom($from, $sendername);
  3349. $mail->addReplyTo($from, $sendername);
  3350. $mail->isHTML(true);
  3351. $mail->addAddress($to, "Organizr Admin");
  3352. $mail->Subject = "Organizr Test E-Mail";
  3353. $mail->Body = "This was just a test!";
  3354. //$mail->send();
  3355. if(!$mail->send()) {
  3356. writeLog("error", "EMAIL TEST: mail failed to send - Error:".$mail->ErrorInfo);
  3357. return false;
  3358. } else {
  3359. writeLog("success", "EMAIL TEST: mail has been sent successfully");
  3360. return true;
  3361. }
  3362. }
  3363. function libraryList(){
  3364. $address = qualifyURL(PLEXURL);
  3365. $headers = array(
  3366. "Accept" => "application/json",
  3367. "X-Plex-Token" => PLEXTOKEN
  3368. );
  3369. libxml_use_internal_errors(true);
  3370. $getServer = simplexml_load_string(@curl_get($address."/?X-Plex-Token=".PLEXTOKEN));
  3371. if (!$getServer) { return 'Could not load!'; }else { $gotServer = $getServer['machineIdentifier']; }
  3372. $api = simplexml_load_string(@curl_get("https://plex.tv/api/servers/$gotServer/shared_servers", $headers));
  3373. $libraryList = array();
  3374. foreach($api->SharedServer->Section AS $child) {
  3375. $libraryList['libraries'][(string)$child['title']] = (string)$child['id'];
  3376. }
  3377. foreach($api->SharedServer AS $child) {
  3378. if(!empty($child['username'])){
  3379. $username = (string)strtolower($child['username']);
  3380. $email = (string)strtolower($child['email']);
  3381. $libraryList['users'][$username] = (string)$child['id'];
  3382. $libraryList['emails'][$email] = (string)$child['id'];
  3383. $libraryList['both'][$username] = $email;
  3384. }
  3385. }
  3386. return (!empty($libraryList) ? array_change_key_case($libraryList,CASE_LOWER) : null );
  3387. }
  3388. function plexUserShare($username){
  3389. $address = qualifyURL(PLEXURL);
  3390. $headers = array(
  3391. "Accept" => "application/json",
  3392. "Content-Type" => "application/json",
  3393. "X-Plex-Token" => PLEXTOKEN
  3394. );
  3395. libxml_use_internal_errors(true);
  3396. $getServer = simplexml_load_string(@curl_get($address."/?X-Plex-Token=".PLEXTOKEN));
  3397. if (!$getServer) { return 'Could not load!'; }else { $gotServer = $getServer['machineIdentifier']; }
  3398. $json = array(
  3399. "server_id" => $gotServer,
  3400. "shared_server" => array(
  3401. //"library_section_ids" => "[26527637]",
  3402. "invited_email" => $username
  3403. )
  3404. );
  3405. $api = curl_post("https://plex.tv/api/servers/$gotServer/shared_servers/", $json, $headers);
  3406. switch ($api['http_code']['http_code']){
  3407. case 400:
  3408. writeLog("error", "PLEX INVITE: $username already has access to the shared libraries");
  3409. $result = "$username already has access to the shared libraries";
  3410. break;
  3411. case 401:
  3412. writeLog("error", "PLEX INVITE: Invalid Plex Token");
  3413. $result = "Invalid Plex Token";
  3414. break;
  3415. case 200:
  3416. writeLog("success", "PLEX INVITE: $username now has access to your Plex Library");
  3417. $result = "$username now has access to your Plex Library";
  3418. break;
  3419. default:
  3420. writeLog("error", "PLEX INVITE: unknown error");
  3421. $result = false;
  3422. }
  3423. return (!empty($result) ? $result : null );
  3424. }
  3425. function plexUserDelete($username){
  3426. $address = qualifyURL(PLEXURL);
  3427. $headers = array(
  3428. "Accept" => "application/json",
  3429. "Content-Type" => "application/json",
  3430. "X-Plex-Token" => PLEXTOKEN
  3431. );
  3432. libxml_use_internal_errors(true);
  3433. $getServer = simplexml_load_string(@curl_get($address."/?X-Plex-Token=".PLEXTOKEN));
  3434. if (!$getServer) { return 'Could not load!'; }else { $gotServer = $getServer['machineIdentifier']; }
  3435. $id = (is_numeric($username) ? $id : convertPlexName($username, "id"));
  3436. $api = curl_delete("https://plex.tv/api/servers/$gotServer/shared_servers/$id", $headers);
  3437. switch ($api['http_code']['http_code']){
  3438. case 401:
  3439. writeLog("error", "PLEX INVITE: Invalid Plex Token");
  3440. $result = "Invalid Plex Token";
  3441. break;
  3442. case 200:
  3443. writeLog("success", "PLEX INVITE: $username doesn't have access to your Plex Library anymore");
  3444. $result = "$username doesn't have access to your Plex Library anymore";
  3445. break;
  3446. default:
  3447. writeLog("error", "PLEX INVITE: unknown error");
  3448. $result = false;
  3449. }
  3450. return (!empty($result) ? $result : null );
  3451. }
  3452. function convertPlexName($user, $type){
  3453. $array = libraryList();
  3454. switch ($type){
  3455. case "username":
  3456. $plexUser = array_search ($user, $array['users']);
  3457. break;
  3458. case "id":
  3459. if (array_key_exists(strtolower($user), $array['users'])) {
  3460. $plexUser = $array['users'][strtolower($user)];
  3461. }
  3462. break;
  3463. default:
  3464. $plexUser = false;
  3465. }
  3466. return (!empty($plexUser) ? $plexUser : null );
  3467. }
  3468. function randomCode($length = 5, $type = null) {
  3469. switch ($type){
  3470. case "alpha":
  3471. $legend = array_merge(range('A', 'Z'));
  3472. break;
  3473. case "numeric":
  3474. $legend = array_merge(range(0,9));
  3475. break;
  3476. default:
  3477. $legend = array_merge(range(0,9),range('A', 'Z'));
  3478. }
  3479. $code = "";
  3480. for($i=0; $i < $length; $i++) {
  3481. $code .= $legend[mt_rand(0, count($legend) - 1)];
  3482. }
  3483. return $code;
  3484. }
  3485. function inviteCodes($action, $code = null, $usedBy = null) {
  3486. if (!isset($GLOBALS['file_db'])) {
  3487. $GLOBALS['file_db'] = new PDO('sqlite:'.DATABASE_LOCATION.'users.db');
  3488. $GLOBALS['file_db']->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  3489. }
  3490. $now = date("Y-m-d H:i:s");
  3491. switch ($action) {
  3492. case "get":
  3493. // Start Array
  3494. $result = array();
  3495. // Database Lookup
  3496. $invites = $GLOBALS['file_db']->query('SELECT * FROM invites WHERE valid = "Yes"');
  3497. // Get Codes
  3498. foreach($invites as $row) {
  3499. array_push($result, $row['code']);
  3500. }
  3501. // Return the Results
  3502. return (!empty($result) ? $result : false );
  3503. break;
  3504. case "check":
  3505. // Start Array
  3506. $result = array();
  3507. // Database Lookup
  3508. $invites = $GLOBALS['file_db']->query('SELECT * FROM invites WHERE valid = "Yes" AND code = "'.$code.'"');
  3509. // Get Codes
  3510. foreach($invites as $row) {
  3511. $result = $row['code'];
  3512. }
  3513. // Return the Results
  3514. return (!empty($result) ? $result : false );
  3515. break;
  3516. case "use":
  3517. $currentIP = get_client_ip();
  3518. $invites = $GLOBALS['file_db']->query('UPDATE invites SET valid = "No", usedby = "'.$usedBy.'", dateused = "'.$now.'", ip = "'.$currentIP.'" WHERE code = "'.$code.'"');
  3519. if(ENABLEMAIL){
  3520. if (!isset($GLOBALS['USER'])) {
  3521. require_once("user.php");
  3522. $GLOBALS['USER'] = new User('registration_callback');
  3523. }
  3524. sendEmail($GLOBALS['USER']->adminEmail, "Admin", "Plex Invite Used", orgEmail("PLEX Invite Used", "Look who joined the cool club", "Admin", "Hey, The User: $usedBy has redeemd their invite code: [$code], their IP Address was: $currentIP", null, null, "What Next?", "Well, That is up to you. You can go check on them if you like."));
  3525. }
  3526. return (!empty($invites) ? true : false );
  3527. break;
  3528. }
  3529. }
  3530. function plexJoin($username, $email, $password){
  3531. $connectURL = 'https://plex.tv/users.json';
  3532. $headers = array(
  3533. 'Accept'=> 'application/json',
  3534. 'Content-Type' => 'application/x-www-form-urlencoded',
  3535. 'X-Plex-Product' => 'Organizr',
  3536. 'X-Plex-Version' => '1.0',
  3537. 'X-Plex-Client-Identifier' => '01010101-10101010',
  3538. );
  3539. $body = array(
  3540. 'user[email]' => $email,
  3541. 'user[username]' => $username,
  3542. 'user[password]' => $password,
  3543. );
  3544. $api = curl_post($connectURL, $body, $headers);
  3545. $json = json_decode($api['content'], true);
  3546. $errors = (!empty($json['errors']) ? true : false);
  3547. $success = (!empty($json['user']) ? true : false);
  3548. //Use This for later
  3549. $usernameError = (!empty($json['errors']['username']) ? $json['errors']['username'][0] : false);
  3550. $emailError = (!empty($json['errors']['email']) ? $json['errors']['email'][0] : false);
  3551. $passwordError = (!empty($json['errors']['password']) ? $json['errors']['password'][0] : false);
  3552. $errorMessage = "";
  3553. if($errors){
  3554. if($usernameError){ $errorMessage .= "[Username Error: ". $usernameError ."]"; }
  3555. if($emailError){ $errorMessage .= "[Email Error: ". $emailError ."]"; }
  3556. if($passwordError){ $errorMessage .= "[Password Error: ". $passwordError ."]"; }
  3557. }
  3558. switch ($api['http_code']['http_code']){
  3559. case 400:
  3560. writeLog("error", "PLEX JOIN: Error: ".$api['http_code']['http_code']." $username already has access to the shared libraries $errorMessage");
  3561. break;
  3562. case 401:
  3563. writeLog("error", "PLEX JOIN: Error: ".$api['http_code']['http_code']." invalid Plex Token $errorMessage");
  3564. break;
  3565. case 422:
  3566. writeLog("error", "PLEX JOIN: Error: ".$api['http_code']['http_code']." user info error $errorMessage");
  3567. break;
  3568. case 429:
  3569. writeLog("error", "PLEX JOIN: Error: ".$api['http_code']['http_code']." too many requests to plex.tv please try later $errorMessage");
  3570. break;
  3571. case 200:
  3572. case 201:
  3573. writeLog("success", "PLEX JOIN: $username now has access to your Plex Library");
  3574. break;
  3575. default:
  3576. writeLog("error", "PLEX JOIN: unknown error, $errorMessage Error: ".$api['http_code']['http_code']);
  3577. }
  3578. //prettyPrint($api);
  3579. //prettyPrint(json_decode($api['content'], true));
  3580. return (!empty($success) && empty($errors) ? true : false );
  3581. }
  3582. function getCert(){
  3583. $url = "http://curl.haxx.se/ca/cacert.pem";
  3584. $file = getcwd()."/config/cacert.pem";
  3585. $directory = getcwd()."/config/";
  3586. @mkdir($directory, 0770, true);
  3587. if(!file_exists($file)){
  3588. file_put_contents( $file, fopen($url, 'r'));
  3589. writeLog("success", "CERT PEM: pem file created");
  3590. }elseif (file_exists($file) && time() - 2592000 > filemtime($file)) {
  3591. file_put_contents( $file, fopen($url, 'r'));
  3592. writeLog("success", "CERT PEM: downloaded new pem file");
  3593. }
  3594. return $file;
  3595. }
  3596. function customCSS(){
  3597. if(CUSTOMCSS == "true") {
  3598. $template_file = "custom.css";
  3599. $file_handle = fopen($template_file, "rb");
  3600. echo "\n";
  3601. echo fread($file_handle, filesize($template_file));
  3602. fclose($file_handle);
  3603. echo "\n";
  3604. }
  3605. }
  3606. function tvdbToken(){
  3607. $headers = array(
  3608. "Accept" => "application/json",
  3609. "Content-Type" => "application/json"
  3610. );
  3611. $json = array(
  3612. "apikey" => "FBE7B62621F4CAD7",
  3613. "userkey" => "328BB46EB1E9A0F5",
  3614. "username" => "causefx"
  3615. );
  3616. $api = curl_post("https://api.thetvdb.com/login", $json, $headers);
  3617. return json_decode($api['content'], true)['token'];
  3618. }
  3619. function tvdbGet($id){
  3620. $headers = array(
  3621. "Accept" => "application/json",
  3622. "Authorization" => "Bearer ".tvdbToken(),
  3623. "trakt-api-key" => "4502cfdf8f7282fe454878ff8583f5636392cdc5fcac30d0cc4565f7173bf443",
  3624. "trakt-api-version" => "2"
  3625. );
  3626. $trakt = curl_get("https://api.trakt.tv/search/tvdb/$id?type=show", $headers);
  3627. @$api['trakt'] = json_decode($trakt, true)[0]['show']['ids'];
  3628. if(empty($api['trakt'])){
  3629. $series = curl_get("https://api.thetvdb.com/series/$id", $headers);
  3630. $poster = curl_get("https://api.thetvdb.com/series/$id/images/query?keyType=poster", $headers);
  3631. $backdrop = curl_get("https://api.thetvdb.com/series/$id/images/query?keyType=fanart", $headers);
  3632. $api['series'] = json_decode($series, true)['data'];
  3633. $api['poster'] = json_decode($poster, true)['data'];
  3634. $api['backdrop'] = json_decode($backdrop, true)['data'];
  3635. }
  3636. return $api;
  3637. }
  3638. function tvdbSearch($name, $type){
  3639. $name = rawurlencode(preg_replace("/\(([^()]*+|(?R))*\)/","", $name));
  3640. $headers = array(
  3641. "Accept" => "application/json",
  3642. "Authorization" => "Bearer ".tvdbToken(),
  3643. "trakt-api-key" => "4502cfdf8f7282fe454878ff8583f5636392cdc5fcac30d0cc4565f7173bf443",
  3644. "trakt-api-version" => "2"
  3645. );
  3646. $trakt = curl_get("https://api.trakt.tv/search/$type?query=$name", $headers);
  3647. @$api['trakt'] = json_decode($trakt, true)[0][$type]['ids'];
  3648. return $api;
  3649. }
  3650. function getPlexPlaylists(){
  3651. $address = qualifyURL(PLEXURL);
  3652. // Perform API requests
  3653. $api = @curl_get($address."/playlists?X-Plex-Token=".PLEXTOKEN);
  3654. libxml_use_internal_errors(true);
  3655. $api = simplexml_load_string($api);
  3656. if (is_array($api) || is_object($api)){
  3657. if (!$api->head->title){
  3658. $getServer = simplexml_load_string(@curl_get($address."/?X-Plex-Token=".PLEXTOKEN));
  3659. if (!$getServer) { return 'Could not load!'; }
  3660. // Identify the local machine
  3661. $gotServer = $getServer['machineIdentifier'];
  3662. $output = "";
  3663. $hideMenu = '<div class="pull-right"><div class="btn-group" role="group"><button type="button" id="playlist-Name" class="btn waves btn-default btn-sm dropdown-toggle waves-effect waves-float" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Choose A Playlist &nbsp;<span class="caret"></span></button><ul style="right:0; left: auto; height: 200px;" class="dropdown-menu filter-recent-playlist playlist-listing">';
  3664. foreach($api AS $child) {
  3665. $items = array();
  3666. if ($child['playlistType'] == "video" && strpos(strtolower($child['title']) , 'private') === false){
  3667. $api = @curl_get($address.$child['key']."?X-Plex-Token=".PLEXTOKEN);
  3668. $api = simplexml_load_string($api);
  3669. if (is_array($api) || is_object($api)){
  3670. if (!$api->head->title){
  3671. $className = preg_replace("/(\W)+/", "", $api['title']);
  3672. $hideMenu .= '<li data-filter="playlist-'.$className.'" data-name="'.$api['title'].'"><a class="js-filter-'.$className.'" href="javascript:void(0)">'.$api['title'].'</a></li>';
  3673. foreach($api->Video AS $child){
  3674. $items[] = resolvePlexItem($gotServer, PLEXTOKEN, $child, false, false,false,$className);
  3675. }
  3676. if (count($items)) {
  3677. $output .= ''.implode('',$items).'';
  3678. }
  3679. }
  3680. }
  3681. }
  3682. }
  3683. $hideMenu .= '</ul></div></div>';
  3684. return '<div id="playlist-all" class="content-box box-shadow big-box"><h5 id="playlist-title" style="margin-bottom: -20px" class="text-center">All Playlists</h5><div class="recentHeader inbox-pagination all">'.$hideMenu.'</div><br/><br/><div class="recentItems-playlists" data-name="all">'.$output.'</div></div>';
  3685. }else{
  3686. writeLog("error", "PLEX PLAYLIST ERROR: could not connect - check token - if HTTPS, is cert valid");
  3687. }
  3688. }else{
  3689. writeLog("error", "PLEX PLAYLIST ERROR: could not connect - check URL - if HTTPS, is cert valid");
  3690. }
  3691. }
  3692. function readExternalLog($type,$filename,$name = null){
  3693. $log = file($filename, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
  3694. $log = array_reverse($log);
  3695. foreach($log as $line){
  3696. if(!empty($line) && $line[0] != " "){
  3697. $line = strip($line);
  3698. if($type == "single"){
  3699. if( strpos( strtolower($line), "ror" ) !== false ) {
  3700. echo "<tr><td class='red-bg'>".$line."</td></tr>";
  3701. }else{
  3702. echo "<tr><td>".$line."</td></tr>";
  3703. }
  3704. }elseif($type == "all"){
  3705. if( strpos( strtolower($line), "ror" ) !== false ) {
  3706. echo "<tr><td class='red-bg'>".$name."</td>";
  3707. echo "<td class='red-bg'>".$line."</td></tr>";
  3708. }else{
  3709. echo "<tr><td>".$name."</td>";
  3710. echo "<td>".$line."</td></tr>";
  3711. }
  3712. }
  3713. }
  3714. }
  3715. }
  3716. function getLogs(){
  3717. $path = __DIR__ ."/logs/";
  3718. @mkdir($path, 0770, true);
  3719. $logs = array();
  3720. $files = array_diff(scandir($path), array('.', '..'));
  3721. foreach($files as $v){
  3722. $title = explode(".", $v)[0];
  3723. $logs[$title] = $path.$v;
  3724. }
  3725. return $logs;
  3726. }
  3727. function getBackups(){
  3728. $path = DATABASE_LOCATION ."backups/";
  3729. @mkdir($path, 0770, true);
  3730. $backups = array();
  3731. $files = array_diff(scandir($path), array('.', '..'));
  3732. return array_reverse($files);
  3733. }
  3734. function getExtension($string) {
  3735. return preg_replace("#(.+)?\.(\w+)(\?.+)?#", "$2", $string);
  3736. }
  3737. function showFile(){
  3738. $file = $_GET['file'];
  3739. $fileType = getExtension($file);
  3740. if($fileType != 'php'){
  3741. header("Content-type: ".mimeTypes()[$fileType]);
  3742. @readfile($file);
  3743. }
  3744. }
  3745. function getCalendar(){
  3746. $sonarr = new Sonarr(SONARRURL, SONARRKEY);
  3747. $radarr = new Sonarr(RADARRURL, RADARRKEY);
  3748. $sickrage = new SickRage(SICKRAGEURL, SICKRAGEKEY);
  3749. $startDate = date('Y-m-d',strtotime("-".CALENDARSTARTDAY." days"));
  3750. $endDate = date('Y-m-d',strtotime("+".CALENDARENDDAY." days"));
  3751. $calendarItems = array();
  3752. if (SONARRURL != "" && qualifyUser(SONARRHOMEAUTH)){
  3753. try {
  3754. $sonarrCalendar = getSonarrCalendar($sonarr->getCalendar($startDate, $endDate));
  3755. if(!empty($sonarrCalendar)) { $calendarItems = array_merge($calendarItems, $sonarrCalendar); }
  3756. } catch (Exception $e) {
  3757. writeLog("error", "SONARR ERROR: ".strip($e->getMessage()));
  3758. }
  3759. }
  3760. if (RADARRURL != "" && qualifyUser(RADARRHOMEAUTH)){
  3761. try {
  3762. $radarrCalendar = getRadarrCalendar($radarr->getCalendar($startDate, $endDate));
  3763. if(!empty($radarrCalendar)) { $calendarItems = array_merge($calendarItems, $radarrCalendar); }
  3764. } catch (Exception $e) {
  3765. writeLog("error", "RADARR ERROR: ".strip($e->getMessage()));
  3766. }
  3767. }
  3768. if (COUCHURL != "" && qualifyUser(COUCHHOMEAUTH)){
  3769. $couchCalendar = getCouchCalendar();
  3770. if(!empty($couchCalendar)) { $calendarItems = array_merge($calendarItems, $couchCalendar); }
  3771. }
  3772. if (HEADPHONESURL != "" && qualifyUser(HEADPHONESHOMEAUTH)){
  3773. $headphonesHistory = getHeadphonesCalendar(HEADPHONESURL, HEADPHONESKEY, "getHistory");
  3774. $headphonesWanted = getHeadphonesCalendar(HEADPHONESURL, HEADPHONESKEY, "getWanted");
  3775. if(!empty($headphonesHistory)) { $calendarItems = array_merge($calendarItems, $headphonesHistory); }
  3776. if(!empty($headphonesWanted)) { $calendarItems = array_merge($calendarItems, $headphonesWanted); }
  3777. }
  3778. if (SICKRAGEURL != "" && qualifyUser(SICKRAGEHOMEAUTH)){
  3779. try {
  3780. $sickrageFuture = getSickrageCalendarWanted($sickrage->future());
  3781. if(!empty($sickrageFuture)) { $calendarItems = array_merge($calendarItems, $sickrageFuture); }
  3782. } catch (Exception $e) {
  3783. writeLog("error", "SICKRAGE/BEARD ERROR: ".strip($e->getMessage()));
  3784. } try {
  3785. $sickrageHistory = getSickrageCalendarHistory($sickrage->history("100","downloaded"));
  3786. if(!empty($sickrageHistory)) { $calendarItems = array_merge($calendarItems, $sickrageHistory); }
  3787. } catch (Exception $e) {
  3788. writeLog("error", "SICKRAGE/BEARD ERROR: ".strip($e->getMessage()));
  3789. }
  3790. }
  3791. return $calendarItems;
  3792. }
  3793. function localURL($url){
  3794. if (strpos($url, 'https') !== false) {
  3795. preg_match("/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/", $url, $result);
  3796. $result = (!empty($result) ? true : false);
  3797. return $result;
  3798. }
  3799. }
  3800. function fileArray($files){
  3801. foreach($files as $file){
  3802. if(file_exists($file)){
  3803. $list[] = $file;
  3804. }
  3805. }
  3806. if(!empty($list)){ return $list; }
  3807. }
  3808. function backupDB(){
  3809. if (extension_loaded('ZIP')) {
  3810. $directory = DATABASE_LOCATION."backups/";
  3811. @mkdir($directory, 0770, true);
  3812. $orgFiles = array(
  3813. 'css' => 'custom.css',
  3814. 'temp' => 'cus.sd',
  3815. 'orgLog' => DATABASE_LOCATION.'org.log',
  3816. 'loginLog' => DATABASE_LOCATION.'loginLog.json',
  3817. 'chatDB' => 'chatpack.db',
  3818. 'config' => 'config/config.php',
  3819. 'database' => DATABASE_LOCATION.'users.db'
  3820. );
  3821. $files = fileArray($orgFiles);
  3822. if(!empty($files)){
  3823. writeLog("success", "BACKUP: backup process started");
  3824. $zipname = $directory.'backup['.date('Y-m-d_H-i').']['.INSTALLEDVERSION.'].zip';
  3825. $zip = new ZipArchive;
  3826. $zip->open($zipname, ZipArchive::CREATE);
  3827. foreach ($files as $file) {
  3828. $zip->addFile($file);
  3829. }
  3830. $zip->close();
  3831. writeLog("success", "BACKUP: backup process finished");
  3832. return true;
  3833. }else{
  3834. return false;
  3835. }
  3836. }else{
  3837. return false;
  3838. }
  3839. }
  3840. class Ping {
  3841. private $host;
  3842. private $ttl;
  3843. private $timeout;
  3844. private $port = 80;
  3845. private $data = 'Ping';
  3846. private $commandOutput;
  3847. /**
  3848. * Called when the Ping object is created.
  3849. *
  3850. * @param string $host
  3851. * The host to be pinged.
  3852. * @param int $ttl
  3853. * Time-to-live (TTL) (You may get a 'Time to live exceeded' error if this
  3854. * value is set too low. The TTL value indicates the scope or range in which
  3855. * a packet may be forwarded. By convention:
  3856. * - 0 = same host
  3857. * - 1 = same subnet
  3858. * - 32 = same site
  3859. * - 64 = same region
  3860. * - 128 = same continent
  3861. * - 255 = unrestricted
  3862. * @param int $timeout
  3863. * Timeout (in seconds) used for ping and fsockopen().
  3864. * @throws \Exception if the host is not set.
  3865. */
  3866. public function __construct($host, $ttl = 255, $timeout = 10) {
  3867. if (!isset($host)) {
  3868. throw new \Exception("Error: Host name not supplied.");
  3869. }
  3870. $this->host = $host;
  3871. $this->ttl = $ttl;
  3872. $this->timeout = $timeout;
  3873. }
  3874. /**
  3875. * Set the ttl (in hops).
  3876. *
  3877. * @param int $ttl
  3878. * TTL in hops.
  3879. */
  3880. public function setTtl($ttl) {
  3881. $this->ttl = $ttl;
  3882. }
  3883. /**
  3884. * Get the ttl.
  3885. *
  3886. * @return int
  3887. * The current ttl for Ping.
  3888. */
  3889. public function getTtl() {
  3890. return $this->ttl;
  3891. }
  3892. /**
  3893. * Set the timeout.
  3894. *
  3895. * @param int $timeout
  3896. * Time to wait in seconds.
  3897. */
  3898. public function setTimeout($timeout) {
  3899. $this->timeout = $timeout;
  3900. }
  3901. /**
  3902. * Get the timeout.
  3903. *
  3904. * @return int
  3905. * Current timeout for Ping.
  3906. */
  3907. public function getTimeout() {
  3908. return $this->timeout;
  3909. }
  3910. /**
  3911. * Set the host.
  3912. *
  3913. * @param string $host
  3914. * Host name or IP address.
  3915. */
  3916. public function setHost($host) {
  3917. $this->host = $host;
  3918. }
  3919. /**
  3920. * Get the host.
  3921. *
  3922. * @return string
  3923. * The current hostname for Ping.
  3924. */
  3925. public function getHost() {
  3926. return $this->host;
  3927. }
  3928. /**
  3929. * Set the port (only used for fsockopen method).
  3930. *
  3931. * Since regular pings use ICMP and don't need to worry about the concept of
  3932. * 'ports', this is only used for the fsockopen method, which pings servers by
  3933. * checking port 80 (by default).
  3934. *
  3935. * @param int $port
  3936. * Port to use for fsockopen ping (defaults to 80 if not set).
  3937. */
  3938. public function setPort($port) {
  3939. $this->port = $port;
  3940. }
  3941. /**
  3942. * Get the port (only used for fsockopen method).
  3943. *
  3944. * @return int
  3945. * The port used by fsockopen pings.
  3946. */
  3947. public function getPort() {
  3948. return $this->port;
  3949. }
  3950. /**
  3951. * Return the command output when method=exec.
  3952. * @return string
  3953. */
  3954. public function getCommandOutput(){
  3955. return $this->commandOutput;
  3956. }
  3957. /**
  3958. * Matches an IP on command output and returns.
  3959. * @return string
  3960. */
  3961. public function getIpAddress() {
  3962. $out = array();
  3963. if (preg_match('/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/', $this->commandOutput, $out)){
  3964. return $out[0];
  3965. }
  3966. return null;
  3967. }
  3968. /**
  3969. * Ping a host.
  3970. *
  3971. * @param string $method
  3972. * Method to use when pinging:
  3973. * - exec (default): Pings through the system ping command. Fast and
  3974. * robust, but a security risk if you pass through user-submitted data.
  3975. * - fsockopen: Pings a server on port 80.
  3976. * - socket: Creates a RAW network socket. Only usable in some
  3977. * environments, as creating a SOCK_RAW socket requires root privileges.
  3978. *
  3979. * @throws InvalidArgumentException if $method is not supported.
  3980. *
  3981. * @return mixed
  3982. * Latency as integer, in ms, if host is reachable or FALSE if host is down.
  3983. */
  3984. public function ping($method = 'exec') {
  3985. $latency = false;
  3986. switch ($method) {
  3987. case 'exec':
  3988. $latency = $this->pingExec();
  3989. break;
  3990. case 'fsockopen':
  3991. $latency = $this->pingFsockopen();
  3992. break;
  3993. case 'socket':
  3994. $latency = $this->pingSocket();
  3995. break;
  3996. default:
  3997. throw new \InvalidArgumentException('Unsupported ping method.');
  3998. }
  3999. // Return the latency.
  4000. return $latency;
  4001. }
  4002. /**
  4003. * The exec method uses the possibly insecure exec() function, which passes
  4004. * the input to the system. This is potentially VERY dangerous if you pass in
  4005. * any user-submitted data. Be SURE you sanitize your inputs!
  4006. *
  4007. * @return int
  4008. * Latency, in ms.
  4009. */
  4010. private function pingExec() {
  4011. $latency = false;
  4012. $ttl = escapeshellcmd($this->ttl);
  4013. $timeout = escapeshellcmd($this->timeout);
  4014. $host = escapeshellcmd($this->host);
  4015. // Exec string for Windows-based systems.
  4016. if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
  4017. // -n = number of pings; -i = ttl; -w = timeout (in milliseconds).
  4018. $exec_string = 'ping -n 1 -i ' . $ttl . ' -w ' . ($timeout * 1000) . ' ' . $host;
  4019. }
  4020. // Exec string for Darwin based systems (OS X).
  4021. else if(strtoupper(PHP_OS) === 'DARWIN') {
  4022. // -n = numeric output; -c = number of pings; -m = ttl; -t = timeout.
  4023. $exec_string = 'ping -n -c 1 -m ' . $ttl . ' -t ' . $timeout . ' ' . $host;
  4024. }
  4025. // Exec string for other UNIX-based systems (Linux).
  4026. else {
  4027. // -n = numeric output; -c = number of pings; -t = ttl; -W = timeout
  4028. $exec_string = 'ping -n -c 1 -t ' . $ttl . ' -W ' . $timeout . ' ' . $host . ' 2>&1';
  4029. }
  4030. exec($exec_string, $output, $return);
  4031. // Strip empty lines and reorder the indexes from 0 (to make results more
  4032. // uniform across OS versions).
  4033. $this->commandOutput = implode($output, '');
  4034. $output = array_values(array_filter($output));
  4035. // If the result line in the output is not empty, parse it.
  4036. if (!empty($output[1])) {
  4037. // Search for a 'time' value in the result line.
  4038. $response = preg_match("/time(?:=|<)(?<time>[\.0-9]+)(?:|\s)ms/", $output[1], $matches);
  4039. // If there's a result and it's greater than 0, return the latency.
  4040. if ($response > 0 && isset($matches['time'])) {
  4041. $latency = round($matches['time'], 2);
  4042. }
  4043. }
  4044. return $latency;
  4045. }
  4046. /**
  4047. * The fsockopen method simply tries to reach the host on a port. This method
  4048. * is often the fastest, but not necessarily the most reliable. Even if a host
  4049. * doesn't respond, fsockopen may still make a connection.
  4050. *
  4051. * @return int
  4052. * Latency, in ms.
  4053. */
  4054. private function pingFsockopen() {
  4055. $start = microtime(true);
  4056. // fsockopen prints a bunch of errors if a host is unreachable. Hide those
  4057. // irrelevant errors and deal with the results instead.
  4058. $fp = @fsockopen($this->host, $this->port, $errno, $errstr, $this->timeout);
  4059. if (!$fp) {
  4060. $latency = false;
  4061. }
  4062. else {
  4063. $latency = microtime(true) - $start;
  4064. $latency = round($latency * 1000, 2);
  4065. }
  4066. return $latency;
  4067. }
  4068. /**
  4069. * The socket method uses raw network packet data to try sending an ICMP ping
  4070. * packet to a server, then measures the response time. Using this method
  4071. * requires the script to be run with root privileges, though, so this method
  4072. * only works reliably on Windows systems and on Linux servers where the
  4073. * script is not being run as a web user.
  4074. *
  4075. * @return int
  4076. * Latency, in ms.
  4077. */
  4078. private function pingSocket() {
  4079. // Create a package.
  4080. $type = "\x08";
  4081. $code = "\x00";
  4082. $checksum = "\x00\x00";
  4083. $identifier = "\x00\x00";
  4084. $seq_number = "\x00\x00";
  4085. $package = $type . $code . $checksum . $identifier . $seq_number . $this->data;
  4086. // Calculate the checksum.
  4087. $checksum = $this->calculateChecksum($package);
  4088. // Finalize the package.
  4089. $package = $type . $code . $checksum . $identifier . $seq_number . $this->data;
  4090. // Create a socket, connect to server, then read socket and calculate.
  4091. if ($socket = socket_create(AF_INET, SOCK_RAW, 1)) {
  4092. socket_set_option($socket, SOL_SOCKET, SO_RCVTIMEO, array(
  4093. 'sec' => 10,
  4094. 'usec' => 0,
  4095. ));
  4096. // Prevent errors from being printed when host is unreachable.
  4097. @socket_connect($socket, $this->host, null);
  4098. $start = microtime(true);
  4099. // Send the package.
  4100. @socket_send($socket, $package, strlen($package), 0);
  4101. if (socket_read($socket, 255) !== false) {
  4102. $latency = microtime(true) - $start;
  4103. $latency = round($latency * 1000, 2);
  4104. }
  4105. else {
  4106. $latency = false;
  4107. }
  4108. }
  4109. else {
  4110. $latency = false;
  4111. }
  4112. // Close the socket.
  4113. socket_close($socket);
  4114. return $latency;
  4115. }
  4116. /**
  4117. * Calculate a checksum.
  4118. *
  4119. * @param string $data
  4120. * Data for which checksum will be calculated.
  4121. *
  4122. * @return string
  4123. * Binary string checksum of $data.
  4124. */
  4125. private function calculateChecksum($data) {
  4126. if (strlen($data) % 2) {
  4127. $data .= "\x00";
  4128. }
  4129. $bit = unpack('n*', $data);
  4130. $sum = array_sum($bit);
  4131. while ($sum >> 16) {
  4132. $sum = ($sum >> 16) + ($sum & 0xffff);
  4133. }
  4134. return pack('n*', ~$sum);
  4135. }
  4136. }
  4137. function ping($pings, $type = "string") {
  4138. $ping = new Ping("");
  4139. $ping->setTtl(128);
  4140. $ping->setTimeout(2);
  4141. switch ($type){
  4142. case "array":
  4143. $results = [];
  4144. foreach ($pings as $k => $v) {
  4145. if(strpos($v, ':') !== false){
  4146. $domain = explode(':', $v)[0];
  4147. $port = explode(':', $v)[1];
  4148. $ping->setHost($domain);
  4149. $ping->setPort($port);
  4150. $latency = $ping->ping('fsockopen');
  4151. }else{
  4152. $ping->setHost($v);
  4153. $latency = $ping->ping();
  4154. }
  4155. if ($latency || $latency === 0) {
  4156. $results[$k] = $latency;
  4157. } else {
  4158. $results[$k] = 0;
  4159. }
  4160. }
  4161. break;
  4162. case "string":
  4163. if(strpos($pings, ':') !== false){
  4164. $domain = explode(':', $pings)[0];
  4165. $port = explode(':', $pings)[1];
  4166. $ping->setHost($domain);
  4167. $ping->setPort($port);
  4168. $latency = $ping->ping('fsockopen');
  4169. }else{
  4170. $ping->setHost($pings);
  4171. $latency = $ping->ping();
  4172. }
  4173. if ($latency || $latency === 0) {
  4174. $results = $latency;
  4175. } else {
  4176. $results = 0;
  4177. }
  4178. break;
  4179. }
  4180. return $results;
  4181. }
  4182. function getPing($url, $style, $refresh = null){
  4183. if(ping($url) !== 0){
  4184. $class = 'success';
  4185. if(!$refresh){
  4186. $class .= " animated slideInLeft";
  4187. }
  4188. }else{
  4189. $class = "warning";
  4190. if(!$refresh){
  4191. $class .= " animated flash loop-animation-timeout";
  4192. }
  4193. }
  4194. echo '<span class="pingcheck badge ping-'.$class.'" style="position: absolute;z-index: 100;right: 5px; padding: 0px 0px;'.$style.';font-size: 10px;">&nbsp;</span>';
  4195. }
  4196. function speedTestData(){
  4197. $file_db = DATABASE_LOCATION."speedtest.db";
  4198. if(file_exists($file_db)){
  4199. $conn = new PDO("sqlite:$file_db") or die("1");
  4200. $result = $conn->query('SELECT * FROM speedtest_users');
  4201. $conn = null;
  4202. if (is_array($result) || is_object($result)){
  4203. foreach($result as $k => $v){
  4204. $return[$k] = $v;
  4205. }
  4206. return $return;
  4207. }
  4208. }
  4209. }
  4210. function speedTestDisplay($array, $output){
  4211. if (is_array($array) || is_object($array)){
  4212. if($output == "graph"){
  4213. $result = "Morris.Line({element: 'morris-line',data: [";
  4214. foreach($array as $k => $v){
  4215. $result .= "{ y: '".substr($v['timestamp'],0,10)."', a: ".$v['ul'].", b: ".$v['dl'].", c: ".$v['ping']." },";
  4216. }
  4217. $result .= "],xkey: 'y',ykeys: ['a', 'b', 'c'],labels: ['Upload', 'Download', 'Ping'],hideHover: 'auto',resize: true,lineColors: ['#63A8EB','#ccc','#000'] });";
  4218. }elseif($output == "table"){
  4219. $result = "";
  4220. foreach($array as $k => $v){
  4221. $result .= "<tr><td>".$v['timestamp']."</td><td>".$v['ip']."</td><td>".$v['dl']."</td><td>".$v['ul']."</td><td>".$v['ping']."</td><td>".$v['jitter']."</td></tr>";
  4222. }
  4223. }
  4224. return $result;
  4225. }
  4226. }
  4227. function buildMenuPhone($array){
  4228. if (is_array($array) || is_object($array)){
  4229. $result = '
  4230. <div class="content-box profile-sidebar box-shadow">
  4231. <img src="images/organizr-logo-h-d.png" width="100%" style="margin-top: -10px;">
  4232. <div class="profile-usermenu">
  4233. <ul class="nav" id="settings-list">
  4234. ';
  4235. foreach($array as $k => $v){
  4236. if($v['id'] == 'open-invites' && empty(PLEXURL)){
  4237. continue;
  4238. }
  4239. if($v['id'] == 'open-email' && ENABLEMAIL !== "true"){
  4240. continue;
  4241. }
  4242. /*$result .= '
  4243. <li>
  4244. <a id="'.$v['id'].'" box="'.$v['box'].'">'.$v['name'].'
  4245. <span class="fa-stack fa-fw pull-right" style="margin-top: -5px;margin-right: -10px;">
  4246. <i class="fa fa-'.$v['icon_1'].' fa-stack-2x '.$v['color'].'" style="font-size:null;"></i>
  4247. <i class="fa fa-'.$v['icon_2'].' fa-stack-1x fa-inverse"></i>
  4248. </span>
  4249. </a>
  4250. </li>
  4251. ';*/
  4252. $result .= '<li><a id="'.$v['id'].'" box="'.$v['box'].'"><i class="fa fa-'.$v['icon_2'].' '.$v['color'].' fa-fw pull-right"></i>'.$v['name'].'</a></li>';
  4253. }
  4254. $result .= '</ul></div></div>';
  4255. return $result;
  4256. }
  4257. }
  4258. function buildMenu($array){
  4259. if (is_array($array) || is_object($array)){
  4260. $result = '<div class="settingsList">';
  4261. foreach($array as $k => $v){
  4262. if($v['id'] == 'open-invites' && empty(PLEXURL)){
  4263. continue;
  4264. }
  4265. if($v['id'] == 'open-email' && ENABLEMAIL !== "true"){
  4266. continue;
  4267. }
  4268. $result .= '
  4269. <button id="'.$v['id'].'" box="'.$v['box'].'" type="button" style="border-radius: 0px !important; -webkit-border-radius: 0px !important;margin-bottom: 3px;margin-left:5px;color:white;" class="btn '.$v['color2'].' btn-icon waves waves-circle waves-effect waves-float settingsMenu">
  4270. <i class="mdi mdi-'.$v['icon_1'].' fa-fw pull-left" style="padding-left: '.$v['padding'].'px;font-size: 30px"></i>
  4271. <p class="" style="text-align: center;direction: rtl;display:none;margin: 2px;"><strong>'.$v['name'].'</strong></p>
  4272. </button>
  4273. ';
  4274. }
  4275. $result .= '</div>';
  4276. return $result;
  4277. }
  4278. }
  4279. function requestInvite($email, $username){
  4280. //sendEmail($email, $username = "Organizr User", $subject, $body, $cc = null){
  4281. //orgEmail($header = "Message From Admin", $title = "Important Message", $user = "Organizr User", $mainMessage = "", $button = null, $buttonURL = null, $subTitle = "", $subMessage = ""){
  4282. sendEmail($GLOBALS['USER']->adminEmail, "Admin", "Plex Invite Request", orgEmail("PLEX Invite Request", "Look who wants to join the cool club", "Admin", "Hey, The User: $user has requested access to your Plex Library.", "Generate Invite", null, "What Next?", "Well, That is up to you. You can go check on them if you like."));
  4283. }
  4284. function errormessage($msg) {
  4285. echo "<div style=\"margin-top: 50px;\">";
  4286. echo "<span style=\"color:#d89334;\">error </span>";
  4287. echo $msg;
  4288. echo "</div>";
  4289. }
  4290. function ajaxLoop($ajaxFunction, $refresh, $extraFunction = ''){
  4291. return "
  4292. setInterval(function() {
  4293. $.ajax({
  4294. url: 'ajax.php?a=".$ajaxFunction."',
  4295. timeout: 10000,
  4296. type: 'GET',
  4297. success: function(response) {
  4298. var getDiv = response;
  4299. var loadedID = $(getDiv).attr('id');
  4300. if (typeof loadedID !== 'undefined') {
  4301. $('#'+loadedID).replaceWith($(getDiv).prop('outerHTML'));
  4302. ".$extraFunction."
  4303. console.log('".$ajaxFunction." has been updated');
  4304. }else{
  4305. console.log('".$ajaxFunction." data was not sufficent or is offline');
  4306. }
  4307. },
  4308. error: function(jqXHR, textStatus, errorThrown) {
  4309. console.error('".$ajaxFunction." could not be updated');
  4310. }
  4311. });
  4312. }, ".$refresh.");
  4313. ";
  4314. }
  4315. function getOrgUsers(){
  4316. $file_db = DATABASE_LOCATION."users.db";
  4317. if(file_exists($file_db)){
  4318. $conn = new PDO("sqlite:$file_db") or die("1");
  4319. $result = $conn->query('SELECT * FROM users');
  4320. $conn = null;
  4321. if (is_array($result) || is_object($result)){
  4322. foreach($result as $k => $v){
  4323. $return[$v['username']] = $v['email'];
  4324. }
  4325. return $return;
  4326. }
  4327. }
  4328. }
  4329. function getEmails($type = 'org'){
  4330. if($type == 'plex'){
  4331. $emails = array_merge(libraryList()['both'],getOrgUsers());
  4332. }elseif($type == 'emby'){
  4333. $emails = getOrgUsers();
  4334. }else{
  4335. $emails = getOrgUsers();
  4336. }
  4337. return $emails;
  4338. }
  4339. function printEmails($emails){
  4340. $result = '';
  4341. foreach($emails as $k => $v){
  4342. $result .= '<option value="'.$v.'">'.$k.'</option>';
  4343. }
  4344. return $result;
  4345. }
  4346. function massEmail($to, $subject, $message){
  4347. if (!isset($GLOBALS['file_db'])) {
  4348. $GLOBALS['file_db'] = new PDO('sqlite:'.DATABASE_LOCATION.'users.db');
  4349. $GLOBALS['file_db']->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  4350. }
  4351. sendEmail(null, null, $subject, orgEmail("Message From Admin", "Important Information", "There", $message, null, null, "Thank You!", "Thanks for taking the time to read this message from me."),$GLOBALS['USER']->adminEmail,$to);
  4352. }
  4353. function q2a($q){
  4354. if (is_array($q) || is_object($q)){
  4355. foreach ($q as $k => $v){
  4356. $a[$k] = $v;
  4357. }
  4358. if(!empty($a)){
  4359. return $a;
  4360. }
  4361. }
  4362. }
  4363. function getOmbiToken($username, $password){
  4364. $headers = array(
  4365. "Accept" => "application/json",
  4366. "Content-Type" => "application/json"
  4367. );
  4368. $json = array(
  4369. "username" => $username,
  4370. "password" => $password,
  4371. "rememberMe" => "true",
  4372. );
  4373. $api = curl_post(OMBIURL."/api/v1/Token", $json, $headers);
  4374. if (isset($api['content'])) {
  4375. return json_decode($api['content'], true)['access_token'];
  4376. }else{
  4377. return false;
  4378. }
  4379. }
  4380. function ombiAction($id, $action, $type){
  4381. $headers = array(
  4382. "Accept" => "application/json",
  4383. "Content-Type" => "application/json",
  4384. "Apikey" => OMBIKEY
  4385. );
  4386. $body = array(
  4387. 'id' => $id,
  4388. );
  4389. switch ($type) {
  4390. case 'season':
  4391. case 'tv':
  4392. $type = 'tv';
  4393. break;
  4394. default:
  4395. $type = 'movie';
  4396. break;
  4397. }
  4398. switch ($action) {
  4399. case 'approve':
  4400. $api = curl_post(OMBIURL."/api/v1/Request/".$type."/approve", $body, $headers);
  4401. break;
  4402. case 'available':
  4403. $api = curl_post(OMBIURL."/api/v1/Request/".$type."/available", $body, $headers);
  4404. break;
  4405. case 'unavailable':
  4406. $api = curl_post(OMBIURL."/api/v1/Request/".$type."/unavailable", $body, $headers);
  4407. break;
  4408. case 'deny':
  4409. $api = curl_put(OMBIURL."/api/v1/Request/".$type."/deny", $body, $headers);
  4410. break;
  4411. case 'delete':
  4412. $api = curl_delete(OMBIURL."/api/v1/Request/".$type."/".$id, $headers);
  4413. break;
  4414. default:
  4415. # code...
  4416. break;
  4417. }
  4418. switch ($api['http_code']['http_code']){
  4419. case 401:
  4420. writeLog("error", "OMBI: Invalid API KEY");
  4421. return false;
  4422. break;
  4423. case 200:
  4424. writeLog("success", "OMBI: action completed successfully for [type: $type - action: $action - id: $id]");
  4425. return true;
  4426. break;
  4427. default:
  4428. writeLog("error", "OMBI: unknown error with request [type: $type - action: $action - id: $id]");
  4429. return false;
  4430. }
  4431. //return (!empty($result) ? $result : null );
  4432. }
  4433. function getOmbiRequests($type = "both"){
  4434. $headers = array(
  4435. "Accept" => "application/json",
  4436. "Apikey" => OMBIKEY,
  4437. );
  4438. $requests = array();
  4439. switch ($type) {
  4440. case 'movie':
  4441. $movie = json_decode(curl_get(OMBIURL."/api/v1/Request/movie", $headers), true);
  4442. break;
  4443. case 'tv':
  4444. $tv = json_decode(curl_get(OMBIURL."/api/v1/Request/tv", $headers), true);
  4445. break;
  4446. default:
  4447. $movie = json_decode(curl_get(OMBIURL."/api/v1/Request/movie", $headers), true);
  4448. $tv = json_decode(curl_get(OMBIURL."/api/v1/Request/tv", $headers), true);
  4449. break;
  4450. }
  4451. if(isset($movie)){
  4452. //$movie = array_reverse($movie);
  4453. foreach ($movie as $key => $value) {
  4454. $poster = explode('/',$value['posterPath']);
  4455. $requests[] = array(
  4456. 'id' => $value['theMovieDbId'],
  4457. 'title' => $value['title'],
  4458. 'poster' => (strpos($value['posterPath'], "/") !== false) ? 'https://image.tmdb.org/t/p/w300/'.end($poster) : 'https://image.tmdb.org/t/p/w300/'.$value['posterPath'],
  4459. 'approved' => $value['approved'],
  4460. 'available' => $value['available'],
  4461. 'denied' => $value['denied'],
  4462. 'deniedReason' => $value['deniedReason'],
  4463. 'user' => $value['requestedUser']['userName'],
  4464. 'request_id' => $value['id'],
  4465. 'request_date' => $value['requestedDate'],
  4466. 'release_date' => $value['releaseDate'],
  4467. 'type' => 'movie',
  4468. 'icon' => 'mdi mdi-filmstrip',
  4469. 'color' => 'palette-Deep-Purple-900 bg white',
  4470. );
  4471. }
  4472. }
  4473. if(isset($tv) && (is_array($tv) || is_object($tv))){
  4474. foreach ($tv as $key => $value) {
  4475. if(is_array($value['childRequests'][0])){
  4476. $requests[] = array(
  4477. 'id' => $value['tvDbId'],
  4478. 'title' => $value['title'],
  4479. 'poster' => $value['posterPath'],
  4480. 'approved' => $value['childRequests'][0]['approved'],
  4481. 'available' => $value['childRequests'][0]['available'],
  4482. 'denied' => $value['childRequests'][0]['denied'],
  4483. 'deniedReason' => $value['childRequests'][0]['deniedReason'],
  4484. 'user' => $value['childRequests'][0]['requestedUser']['userName'],
  4485. 'request_id' => $value['id'],
  4486. 'request_date' => $value['childRequests'][0]['requestedDate'],
  4487. 'release_date' => $value['releaseDate'],
  4488. 'type' => 'tv',
  4489. 'icon' => 'mdi mdi-television',
  4490. 'color' => 'grayish-blue-bg',
  4491. );
  4492. }
  4493. }
  4494. }
  4495. return (empty($requests)) ? '' : $requests;
  4496. }
  4497. function convertOmbiString($type, $value){
  4498. switch ($type) {
  4499. case 'approved':
  4500. $string['string'] = ($value) ? 'Approved' : 'Approval-Pending';
  4501. $string['icon'] = ($value) ? 'mdi mdi-check' : 'mdi mdi-clock';
  4502. $string['color'] = ($value) ? 'green-bg' : 'yellow-bg';
  4503. break;
  4504. case 'available':
  4505. $string['string'] = ($value) ? 'Available' : 'Not Downloaded';
  4506. $string['icon'] = ($value) ? 'mdi mdi-server' : 'mdi mdi-server-off';
  4507. $string['color'] = ($value) ? 'green-bg' : 'red-bg';
  4508. break;
  4509. case 'denied':
  4510. $string['string'] = ($value) ? 'Denied' : 'Approved';
  4511. $string['icon'] = ($value) ? 'mdi mdi-emoticon-sad' : 'mdi mdi-emoticon-happy';
  4512. $string['color'] = ($value) ? 'red-bg' : 'green-bg';
  4513. break;
  4514. case 'status':
  4515. switch ($value) {
  4516. case '1':
  4517. $string['string'] = 'Denied';
  4518. $string['icon'] = 'mdi mdi-window-close';
  4519. $string['color'] = 'red-bg';
  4520. break;
  4521. case '2':
  4522. $string['string'] = 'Approved';
  4523. $string['icon'] = 'mdi mdi-check';
  4524. $string['color'] = 'green-bg';
  4525. break;
  4526. case '3':
  4527. $string['string'] = 'Not Approved';
  4528. $string['icon'] = 'mdi mdi-clock';
  4529. $string['color'] = 'yellow-bg';
  4530. break;
  4531. default:
  4532. # code...
  4533. break;
  4534. }
  4535. break;
  4536. default:
  4537. $string['string'] = ($value) ? 'Approved' : 'Approval-Pending';
  4538. $string['color'] = ($value) ? 'green-bg' : 'red-bg';
  4539. break;
  4540. }
  4541. return $string;
  4542. }
  4543. function buildOmbiItem($type, $group, $user, $request){
  4544. if (is_array($request) || is_object($request)){
  4545. $actions = '';
  4546. if($request['denied']){
  4547. $status = 1;
  4548. $actions .= '<li request-type="'.$type.'" request-id="'.$request['request_id'].'" request-name="approve"><a class="requestAction" href="javascript:void(0)">Approve</a></li>';
  4549. }else{
  4550. if($request['approved']){
  4551. $status = 2;
  4552. }else{
  4553. $status = 3;
  4554. $actions .= '<li request-type="'.$type.'" request-id="'.$request['request_id'].'" request-name="approve"><a class="requestAction" href="javascript:void(0)">Approve</a></li>';
  4555. $actions .= '<li request-type="'.$type.'" request-id="'.$request['request_id'].'" request-name="deny"><a class="requestAction" href="javascript:void(0)">Deny</a></li>';
  4556. }
  4557. }
  4558. if($request['available']){
  4559. $actions .= '<li request-type="'.$type.'" request-id="'.$request['request_id'].'" request-name="unavailable"><a class="requestAction" href="javascript:void(0)">Mark as Unavailable</a></li>';
  4560. }else{
  4561. $actions .= '<li request-type="'.$type.'" request-id="'.$request['request_id'].'" request-name="available"><a class="requestAction" href="javascript:void(0)">Mark as Available</a></li>';
  4562. }
  4563. $actions .= '<li request-type="'.$type.'" request-id="'.$request['request_id'].'" request-name="delete"><a class="requestAction" href="javascript:void(0)">Delete</a></li>';
  4564. if(isset($group) && $group == 'admin'){
  4565. $actionMenu = '
  4566. <div class="requestOptions">
  4567. <div class="btn-group transparent" role="group">
  4568. <button type="button" class="btn waves btn-success btn-sm dropdown-toggle waves-effect waves-float transparent" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="mdi mdi-dots-vertical mdi-24px"></i></button>
  4569. <ul class="dropdown-menu"><h6 class="text-center requestHeader gray-bg">'.$request['user'].'</h6>'.$actions.'</ul>
  4570. </div>
  4571. </div>
  4572. ';
  4573. }else{
  4574. $actionMenu = '';
  4575. }
  4576. if((isset($group)) && $group == 'admin' || REQUESTEDUSERONLY == 'false'){
  4577. return '
  4578. <div class="item-'.$type.'-'.convertOmbiString('approved', $request['approved'])['string'].'">
  4579. '.$actionMenu.'
  4580. <a class="openTab" extraTitle="'.$request['title'].'" extraType="'.$type.'" openTab="true"><img alt="" class="slick-image-tall" data-lazy="'.$request['poster'].'"></a>
  4581. <div class="requestBottom text-center">
  4582. <div data-toggle="tooltip" data-placement="top" data-original-title="'.$request['type'].'" class="zero-m requestGroup '.$request['color'].'">
  4583. <i class="'.$request['icon'].'"></i>
  4584. </div>
  4585. <div data-toggle="tooltip" data-placement="top" data-original-title="'.convertOmbiString('status', $status)['string'].'" class="zero-m requestGroup '.convertOmbiString('status', $status)['color'].'">
  4586. <i class="'.convertOmbiString('status', $status)['icon'].'"></i>
  4587. </div>
  4588. <div data-toggle="tooltip" data-placement="top" data-original-title="'.convertOmbiString('available', $request['available'])['string'].'" class="zero-m requestGroup '.convertOmbiString('available', $request['available'])['color'].'">
  4589. <i class="'.convertOmbiString('available', $request['available'])['icon'].'"></i>
  4590. </div>
  4591. </div>
  4592. <small class="elip slick-bottom-title">'.$request['title'].'</small>
  4593. </div>';
  4594. }else{
  4595. if(strtolower($request['user']) == strtolower($user)){
  4596. return '
  4597. <div class="item-'.$type.'-'.convertOmbiString('approved', $request['approved'])['string'].'">
  4598. '.$actionMenu.'
  4599. <a class="openTab" extraTitle="'.$request['title'].'" extraType="'.$type.'" openTab="true"><img alt="" class="slick-image-tall" data-lazy="'.$request['poster'].'"></a>
  4600. <div class="requestBottom text-center">
  4601. <div data-toggle="tooltip" data-placement="top" data-original-title="'.$request['type'].'" class="zero-m requestGroup '.$request['color'].'">
  4602. <i class="'.$request['icon'].'"></i>
  4603. </div>
  4604. <div data-toggle="tooltip" data-placement="top" data-original-title="'.convertOmbiString('status', $status)['string'].'" class="zero-m requestGroup '.convertOmbiString('status', $status)['color'].'">
  4605. <i class="'.convertOmbiString('status', $status)['icon'].'"></i>
  4606. </div>
  4607. <div data-toggle="tooltip" data-placement="top" data-original-title="'.convertOmbiString('available', $request['available'])['string'].'" class="zero-m requestGroup '.convertOmbiString('available', $request['available'])['color'].'">
  4608. <i class="'.convertOmbiString('available', $request['available'])['icon'].'"></i>
  4609. </div>
  4610. </div>
  4611. <small class="elip slick-bottom-title">'.$request['title'].'</small>
  4612. </div>';
  4613. }
  4614. }
  4615. }
  4616. }
  4617. function buildOmbiList($group, $user){
  4618. $requests = array();
  4619. $movieList = getOmbiRequests('movie');
  4620. $tvList = getOmbiRequests('tv');
  4621. if(is_array($movieList) && is_array($tvList)){
  4622. $result = array_merge($movieList , $tvList );
  4623. }else{
  4624. if(is_array($movieList)){
  4625. $result = $movieList;
  4626. }elseif(is_array($movieList)){
  4627. $result = $tvList;
  4628. }else{
  4629. $result = false;
  4630. }
  4631. }
  4632. if (is_array($result) || is_object($result)){
  4633. usort($result, function ($item1, $item2) {
  4634. if ($item1['request_date'] == $item2['request_date']) return 0;
  4635. return $item1['request_date'] > $item2['request_date'] ? -1 : 1;
  4636. });
  4637. foreach ($result as $request) {
  4638. if($request['type'] == 'movie'){
  4639. $requests[] = buildOmbiItem('movie', $group, $user, $request);
  4640. }elseif($request['type'] == 'tv'){
  4641. $requests[] = buildOmbiItem('season', $group, $user, $request);
  4642. }
  4643. }
  4644. }
  4645. return outputOmbiRequests("Requested Content", $requests, ajaxLoop('ombi-requests',REQUESTREFRESH,'loadSlick();'), false);
  4646. }
  4647. function outputOmbiRequests($header = "Requested Content", $items, $script = false, $array) {
  4648. $hideMenu = '<div class="pull-right"><div class="btn-group" role="group"><button type="button" class="btn waves btn-default btn-sm dropdown-toggle waves-effect waves-float" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Filter &nbsp;<span class="caret"></span></button><ul style="right:0; left: auto" class="dropdown-menu filter-request-event">';
  4649. if(preg_grep("/item-movie-Approved/", $items)){
  4650. $hideMenu .= '<li data-filter="item-movie-Approved" data-name="Approved Movies" data-filter-on="false"><a class="js-filter-movie" href="javascript:void(0)">Approved Movies</a></li>';
  4651. }
  4652. if(preg_grep("/item-movie-Approval-Pending/", $items)){
  4653. $hideMenu .= '<li data-filter="item-movie-Approval-Pending" data-name="Approval Pending Movies" data-filter-on="false"><a class="js-filter-movie" href="javascript:void(0)">Approval Pending Movies</a></li>';
  4654. }
  4655. if(preg_grep("/item-season-Approved/", $items)){
  4656. $hideMenu .= '<li data-filter="item-season-Approved" data-name="Approved TV Shows" data-filter-on="false"><a class="js-filter-season" href="javascript:void(0)">Approved Shows</a></li>';
  4657. }
  4658. if(preg_grep("/item-season-Approval-Pending/", $items)){
  4659. $hideMenu .= '<li data-filter="item-season-Approval-Pending" data-name="Approval Pending TV Shows" data-filter-on="false"><a class="js-filter-season" href="javascript:void(0)">Approval Pending Shows</a></li>';
  4660. }
  4661. $hideMenu .= '<li data-filter="item-all" data-name="Content" data-filter-on="false"><a class="js-filter-all" href="javascript:void(0)">All</a></li>';
  4662. $hideMenu .= '</ul></div></div>';
  4663. // If None Populate Empty Item
  4664. //if (count(array_flip($items)) < 1) {
  4665. if (!count($items)) {
  4666. return '<div id="recentRequests" class="content-box box-shadow big-box"><h5 class="text-center">'.$header.'</h5><p class="text-center">No Requests Found</p></div>';
  4667. }else{
  4668. $className = str_replace(' ', '', $header);
  4669. return '<div id="recentRequests" class="content-box box-shadow big-box"><h5 id="requestContent-title" style="margin-bottom: -20px" class="text-center">'.$header.'</h5><div class="recentHeader inbox-pagination '.$className.'">'.$hideMenu.'</div><br/><br/><div class="recentItems-request" data-name="'.$className.'">'.implode('',$items).'</div></div>'.($script?'<script>'.$script.'</script>':'');
  4670. }
  4671. }
  4672. function loadIcons(){
  4673. $dirname = "images/";
  4674. $images = scandir($dirname);
  4675. $ignore = Array(".", "..", "favicon", "settings", "cache", "platforms", "._.DS_Store", ".DS_Store", "confused.png", "sowwy.png", "sort-btns", "loading.png", "titlelogo.png", "default.svg", "login.png", "no-np.png", "no-list.png", "no-np.psd", "no-list.psd", "themes", "nadaplaying.jpg", "organizr-logo-h-d.png", "organizr-logo-h.png");
  4676. $allIcons = '';
  4677. foreach($images as $curimg){
  4678. if(!in_array($curimg, $ignore)) {
  4679. $allIcons .= '
  4680. <div class="col-xs-2" style="width: 75px; height: 75px; padding-right: 0px;">
  4681. <a data-toggle="tooltip" data-placement="bottom" title="'.$dirname.$curimg.'" class="thumbnail" style="box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);">
  4682. <img style="width: 50px; height: 50px;" data-src="'.$dirname.$curimg.'" alt="thumbnail" class="allIcons lazyload shadow">
  4683. </a>
  4684. </div>
  4685. ';
  4686. }
  4687. }
  4688. return $allIcons;
  4689. }
  4690. function buildHomepageSettings(){
  4691. $homepageOrder = homepageOrder();
  4692. $homepageList = '<h4>Drag Homepage Items to Order Them</h4><div id="homepage-items" class="external-events">';
  4693. $inputList = '<div id="homepage-values" class="row">';
  4694. foreach ($homepageOrder as $key => $val) {
  4695. switch ($key) {
  4696. case 'homepageOrdercustomhtml':
  4697. $class = 'palette-Deep-Purple-100 bg gray';
  4698. $image = 'images/html.png';
  4699. if(empty(HOMEPAGECUSTOMHTML1)){
  4700. $class .= ' faded';
  4701. }
  4702. break;
  4703. case 'homepageOrdernotice':
  4704. $class = 'palette-Cyan-A400 bg gray';
  4705. $image = 'images/pin.png';
  4706. if(empty(HOMEPAGENOTICETITLE) && empty(HOMEPAGENOTICEMESSAGE)){
  4707. $class .= ' faded';
  4708. }
  4709. break;
  4710. case 'homepageOrderspeedtest':
  4711. $class = 'red-bg';
  4712. $image = 'images/settings/full-color/png/64px/speedometer.png';
  4713. if(SPEEDTEST !== "true"){
  4714. $class .= ' faded';
  4715. }
  4716. break;
  4717. case 'homepageOrdernzbget':
  4718. $class = 'green-bg';
  4719. $image = 'images/nzbget.png';
  4720. if(empty(NZBGETURL)){
  4721. $class .= ' faded';
  4722. }
  4723. break;
  4724. case 'homepageOrdersabnzbd':
  4725. $class = 'yellow-bg';
  4726. $image = 'images/sabnzbd.png';
  4727. if(empty(SABNZBDURL)){
  4728. $class .= ' faded';
  4729. }
  4730. break;
  4731. case 'homepageOrderplexsearch':
  4732. case 'homepageOrderplexnowplaying':
  4733. case 'homepageOrderplexrecent':
  4734. case 'homepageOrderplexplaylist':
  4735. $class = 'palette-Amber-A700 bg gray';
  4736. $image = 'images/plex.png';
  4737. if(empty(PLEXURL)){
  4738. $class .= ' faded';
  4739. }
  4740. break;
  4741. case 'homepageOrderembynowplaying':
  4742. case 'homepageOrderembyrecent':
  4743. $class = 'palette-Green-A700 bg gray';
  4744. $image = 'images/emby.png';
  4745. if(empty(EMBYURL)){
  4746. $class .= ' faded';
  4747. }
  4748. break;
  4749. case 'homepageOrderombi':
  4750. $class = 'orange-bg';
  4751. $image = 'images/ombi.png';
  4752. if(empty(OMBIURL)){
  4753. $class .= ' faded';
  4754. }
  4755. break;
  4756. case 'homepageOrdercalendar':
  4757. $class = 'palette-Blue-400 bg gray';
  4758. $image = 'images/calendar.png';
  4759. if(SONARRURL == "" && RADARRURL == "" && HEADPHONESURL == "" && SICKRAGEURL == "" && COUCHURL == "" ){
  4760. $class .= ' faded';
  4761. }
  4762. break;
  4763. default:
  4764. $class = 'blue-bg';
  4765. $image = '';
  4766. break;
  4767. }
  4768. $homepageList .= '
  4769. <div class="col-md-3 sort-homepage"><div class="fc-event '.$class.'">
  4770. <span class="ordinal-position text-uppercase badge badge-gray" data-link="'.$key.'" style="float:left;width: 30px;">'.$val.'</span>
  4771. &nbsp; '.strtoupper(substr($key, 13)).'
  4772. <span class="remove-event"><img style="width: 22px;" src="'.$image.'"></span>
  4773. </div></div>';
  4774. $inputList .= '<input type="hidden" name="'.$key.'">';
  4775. }
  4776. $homepageList .= '</div>';
  4777. $inputList .= '</div>';
  4778. return $homepageList.$inputList;
  4779. }
  4780. function buildHomepage($group, $user){
  4781. $homepageOrder = homepageOrder();
  4782. $homepageBuilt = '';
  4783. foreach ($homepageOrder as $key => $value) {
  4784. $homepageBuilt .= buildHomepageItem($key, $group, $user);
  4785. }
  4786. return $homepageBuilt;
  4787. }
  4788. function realSize($bytes, $decimals = 2) {
  4789. $size = array('B','kB','MB','GB','TB','PB','EB','ZB','YB');
  4790. $factor = floor((strlen($bytes) - 1) / 3);
  4791. return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . ' '.@$size[$factor];
  4792. }
  4793. function buildHomepageItem($homepageItem, $group, $user){
  4794. $homepageItemBuilt = '';
  4795. switch ($homepageItem) {
  4796. case 'homepageOrderplexsearch':
  4797. if((qualifyUser(PLEXSEARCHAUTH) && PLEXSEARCH == "true" && qualifyUser(PLEXHOMEAUTH))) {
  4798. $homepageItemBuilt .= '
  4799. <div id="searchPlexRow" class="row">
  4800. <div class="col-lg-12">
  4801. <div class="content-box box-shadow big-box todo-list">
  4802. <form id="plexSearchForm" onsubmit="return false;" autocomplete="off">
  4803. <div class="">
  4804. <div class="input-group">
  4805. <div style="border-radius: 25px 0 0 25px; border:0" class="input-group-addon gray-bg"><i class="fa fa-search white"></i></div>
  4806. <input id="searchInput" type="text" style="border-radius: 0;" autocomplete="off" name="search-title" class="form-control input-group-addon gray-bg" placeholder="Media Search">
  4807. <div id="clearSearch" style="border-radius: 0 25px 25px 0;border:0; cursor: pointer;" class="input-group-addon gray-bg"><i class="fa fa-close white"></i></div>
  4808. <button style="display:none" id="plexSearchForm_submit" class="btn btn-primary waves"></button>
  4809. </div>
  4810. </div>
  4811. </form>
  4812. <div id="resultshere" class="table-responsive"></div>
  4813. </div>
  4814. </div>
  4815. </div>
  4816. ';
  4817. }
  4818. break;
  4819. case 'homepageOrdercustomhtml':
  4820. if (qualifyUser(HOMEPAGECUSTOMHTML1AUTH) && HOMEPAGECUSTOMHTML1) {
  4821. $homepageItemBuilt .= "<div>" . HOMEPAGECUSTOMHTML1 . "</div>";
  4822. }
  4823. break;
  4824. case 'homepageOrdernotice':
  4825. if (qualifyUser(HOMEPAGENOTICEAUTH) && HOMEPAGENOTICETITLE && HOMEPAGENOTICETYPE && HOMEPAGENOTICEMESSAGE && HOMEPAGENOTICELAYOUT) {
  4826. $homepageItemBuilt .= buildHomepageNotice(HOMEPAGENOTICELAYOUT, HOMEPAGENOTICETYPE, HOMEPAGENOTICETITLE, HOMEPAGENOTICEMESSAGE);
  4827. }
  4828. break;
  4829. case 'homepageOrderspeedtest':
  4830. if(SPEEDTEST == "true" && qualifyUser(SPEEDTESTAUTH)){
  4831. $homepageItemBuilt .= '
  4832. <style type="text/css">
  4833. .flash {
  4834. animation: flash 0.6s linear infinite;
  4835. }
  4836. @keyframes flash {
  4837. 0% { opacity: 0.6; }
  4838. 50% { opacity: 1; }
  4839. }
  4840. </style>
  4841. <script type="text/javascript">
  4842. var w = null
  4843. function runTest() {
  4844. document.getElementById("startBtn").style.display = "none"
  4845. document.getElementById("testArea").style.display = ""
  4846. document.getElementById("abortBtn").style.display = ""
  4847. w = new Worker("bower_components/speed/speedtest_worker.js")
  4848. var interval = setInterval(function () { w.postMessage("status") }, 100)
  4849. w.onmessage = function (event) {
  4850. var data = event.data.split(";")
  4851. var status = Number(data[0])
  4852. var dl = document.getElementById("download")
  4853. var ul = document.getElementById("upload")
  4854. var ping = document.getElementById("ping")
  4855. var jitter = document.getElementById("jitter")
  4856. dl.className = status === 1 ? "w-name flash" : "w-name"
  4857. ping.className = status === 2 ? "w-name flash" : "w-name"
  4858. jitter.className = ul.className = status === 3 ? "w-name flash" : "w-name"
  4859. if (status >= 4) {
  4860. clearInterval(interval)
  4861. document.getElementById("abortBtn").style.display = "none"
  4862. document.getElementById("startBtn").style.display = ""
  4863. w = null
  4864. }
  4865. if (status === 5) {
  4866. document.getElementById("testArea").style.display = "none"
  4867. }
  4868. dl.textContent = data[1] + " Mbit/s";
  4869. $("#downloadpercent").attr("style", "width: " + data[1] + "%;");
  4870. $("#uploadpercent").attr("style", "width: " + data[2] + "%;");
  4871. $("#pingpercent").attr("style", "width: " + data[3] + "%;");
  4872. $("#jitterpercent").attr("style", "width: " + data[5] + "%;");
  4873. ul.textContent = data[2] + " Mbit/s";
  4874. ping.textContent = data[3] + " ms";
  4875. jitter.textContent = data[5] + " ms";
  4876. }
  4877. w.postMessage(\'start {"telemetry_level":"basic"}\')
  4878. //w.postMessage("start")
  4879. }
  4880. function abortTest() {
  4881. if (w) w.postMessage("abort")
  4882. }
  4883. </script>
  4884. <div class="row" id="testArea" style="display:none">
  4885. <div class="test col-sm-3 col-lg-3">
  4886. <div class="content-box ultra-widget green-bg" data-counter="">
  4887. <div id="downloadpercent" class="progress-bar progress-bar-striped active w-used" style=""></div>
  4888. <div class="w-content">
  4889. <div class="w-icon right pull-right"><i class="mdi mdi-cloud-download"></i></div>
  4890. <div class="w-descr left pull-left text-center">
  4891. <span class="testName text-uppercase w-name">Download</span>
  4892. <br>
  4893. <span class="w-name counter" id="download" ></span>
  4894. </div>
  4895. </div>
  4896. </div>
  4897. </div>
  4898. <div class="test col-sm-3 col-lg-3">
  4899. <div class="content-box ultra-widget red-bg" data-counter="">
  4900. <div id="uploadpercent" class="progress-bar progress-bar-striped active w-used" style=""></div>
  4901. <div class="w-content">
  4902. <div class="w-icon right pull-right"><i class="mdi mdi-cloud-upload"></i></div>
  4903. <div class="w-descr left pull-left text-center">
  4904. <span class="testName text-uppercase w-name">Upload</span>
  4905. <br>
  4906. <span class="w-name counter" id="upload" ></span>
  4907. </div>
  4908. </div>
  4909. </div>
  4910. </div>
  4911. <div class="test col-sm-3 col-lg-3">
  4912. <div class="content-box ultra-widget yellow-bg" data-counter="">
  4913. <div id="pingpercent" class="progress-bar progress-bar-striped active w-used" style=""></div>
  4914. <div class="w-content">
  4915. <div class="w-icon right pull-right"><i class="mdi mdi-timer"></i></div>
  4916. <div class="w-descr left pull-left text-center">
  4917. <span class="testName text-uppercase w-name">Latency</span>
  4918. <br>
  4919. <span class="w-name counter" id="ping" ></span>
  4920. </div>
  4921. </div>
  4922. </div>
  4923. </div>
  4924. <div class="test col-sm-3 col-lg-3">
  4925. <div class="content-box ultra-widget blue-bg" data-counter="">
  4926. <div id="jitterpercent" class="progress-bar progress-bar-striped active w-used" style=""></div>
  4927. <div class="w-content">
  4928. <div class="w-icon right pull-right"><i class="mdi mdi-pulse"></i></div>
  4929. <div class="w-descr left pull-left text-center">
  4930. <span class="testName text-uppercase w-name">Jitter</span>
  4931. <br>
  4932. <span class="w-name counter" id="jitter" ></span>
  4933. </div>
  4934. </div>
  4935. </div>
  4936. </div>
  4937. <br/>
  4938. </div>
  4939. <div id="abortBtn" class="row" style="display: none" onclick="javascript:abortTest()">
  4940. <div class="col-lg-12">
  4941. <div class="content-box red-bg" style="cursor: pointer;">
  4942. <h1 style="margin: 10px" class="text-uppercase text-center">Abort Speed Test</h1>
  4943. <div class="clearfix"></div>
  4944. </div>
  4945. </div>
  4946. </div>
  4947. <div id="startBtn" class="row" onclick="javascript:runTest()">
  4948. <div class="col-lg-12">
  4949. <div class="content-box green-bg" style="cursor: pointer;">
  4950. <h1 style="margin: 10px" class="text-uppercase text-center">Run Speed Test</h1>
  4951. <div class="clearfix"></div>
  4952. </div>
  4953. </div>
  4954. </div>
  4955. ';
  4956. }
  4957. break;
  4958. case 'homepageOrdernzbget':
  4959. if(NZBGETURL != "" && qualifyUser(NZBGETHOMEAUTH)){
  4960. $homepageItemBuilt .= buildDownloader('nzbget');
  4961. }
  4962. break;
  4963. case 'homepageOrdersabnzbd':
  4964. if(SABNZBDURL != "" && qualifyUser(SABNZBDHOMEAUTH)) {
  4965. $homepageItemBuilt .= buildDownloader('sabnzbd');
  4966. }
  4967. break;
  4968. case 'homepageOrderplexnowplaying':
  4969. if (qualifyUser(PLEXHOMEAUTH) && PLEXTOKEN) {
  4970. if(qualifyUser(PLEXPLAYINGNOWAUTH) && PLEXPLAYINGNOW == "true"){
  4971. $homepageItemBuilt .= '<div id="plexRowNowPlaying" class="row">';
  4972. $homepageItemBuilt .= getPlexStreams(12, PLEXSHOWNAMES, $group);
  4973. $homepageItemBuilt .= '</div>';
  4974. }
  4975. }
  4976. break;
  4977. case 'homepageOrderplexrecent':
  4978. if (qualifyUser(PLEXHOMEAUTH) && PLEXTOKEN) {
  4979. if(qualifyUser(PLEXRECENTMOVIEAUTH) && PLEXRECENTMOVIE == "true" || qualifyUser(PLEXRECENTTVAUTH) && PLEXRECENTTV == "true" || qualifyUser(PLEXRECENTMUSICAUTH) && PLEXRECENTMUSIC == "true"){
  4980. $plexArray = array("movie" => PLEXRECENTMOVIE, "season" => PLEXRECENTTV, "album" => PLEXRECENTMUSIC);
  4981. $homepageItemBuilt .= '<div id="plexRow" class="row"><div class="col-lg-12">';
  4982. $homepageItemBuilt .= getPlexRecent($plexArray);
  4983. $homepageItemBuilt .= '</div></div>';
  4984. }
  4985. }
  4986. break;
  4987. case 'homepageOrderplexplaylist':
  4988. if (qualifyUser(PLEXHOMEAUTH) && PLEXTOKEN) {
  4989. if(qualifyUser(PLEXPLAYLISTSAUTH) && PLEXPLAYLISTS == "true"){
  4990. $homepageItemBuilt .= '<div id="plexPlaylists" class="row"><div class="col-lg-12">';
  4991. $plexArray = array("movie" => PLEXRECENTMOVIE, "season" => PLEXRECENTTV, "album" => PLEXRECENTMUSIC);
  4992. $homepageItemBuilt .= getPlexPlaylists($plexArray);
  4993. $homepageItemBuilt .= '</div> </div>';
  4994. }
  4995. }
  4996. break;
  4997. case 'homepageOrderembynowplaying':
  4998. if (qualifyUser(EMBYHOMEAUTH) && EMBYTOKEN) {
  4999. if(qualifyUser(EMBYPLAYINGNOWAUTH) && EMBYPLAYINGNOW == "true"){
  5000. $homepageItemBuilt .= '<div id="embyRowNowPlaying" class="row">';
  5001. $homepageItemBuilt .= getEmbyStreams(12, EMBYSHOWNAMES, $group);
  5002. $homepageItemBuilt .= '</div>';
  5003. }
  5004. }
  5005. break;
  5006. case 'homepageOrderembyrecent':
  5007. if (qualifyUser(EMBYHOMEAUTH) && EMBYTOKEN) {
  5008. if(qualifyUser(EMBYRECENTMOVIEAUTH) && EMBYRECENTMOVIE == "true" || qualifyUser(EMBYRECENTTVAUTH) && EMBYRECENTTV == "true" || qualifyUser(EMBYRECENTMUSICAUTH) && EMBYRECENTMUSIC == "true"){
  5009. $embyArray = array("Movie" => EMBYRECENTMOVIE, "Episode" => EMBYRECENTTV, "MusicAlbum" => EMBYRECENTMUSIC, "Series" => EMBYRECENTTV);
  5010. $homepageItemBuilt .= '<div id="embyRow" class="row"><div class="col-lg-12">';
  5011. $homepageItemBuilt .= getEmbyRecent($embyArray);
  5012. $homepageItemBuilt .= '</div></div>';
  5013. }
  5014. }
  5015. break;
  5016. case 'homepageOrderombi':
  5017. if (qualifyUser(OMBIAUTH) && OMBIURL) {
  5018. $homepageItemBuilt .= '<div id="ombiRequests" class="row"><div class="col-lg-12">';
  5019. $homepageItemBuilt .= buildOmbiList($group, $user);
  5020. $homepageItemBuilt .= '</div></div>';
  5021. }
  5022. break;
  5023. case 'homepageOrdercalendar':
  5024. if ((SONARRURL != "" && qualifyUser(SONARRHOMEAUTH)) || (RADARRURL != "" && qualifyUser(RADARRHOMEAUTH)) || (HEADPHONESURL != "" && qualifyUser(HEADPHONESHOMEAUTH)) || (SICKRAGEURL != "" && qualifyUser(SICKRAGEHOMEAUTH)) || (COUCHURL != "" && qualifyUser(COUCHHOMEAUTH))) {
  5025. $calendarItems = '';
  5026. if(RADARRURL != ""){ $calendarItems .= '<li><a class="calendarOption" calendarOption="film" href="javascript:void(0)">Movies</a></li>'; }
  5027. if(SONARRURL != ""){ $calendarItems .= '<li><a class="calendarOption" calendarOption="tv" href="javascript:void(0)">TV Shows</a></li>'; }
  5028. if(HEADPHONESURL != ""){ $calendarItems .= '<li><a class="calendarOption" calendarOption="music" href="javascript:void(0)">Music</a></li>'; }
  5029. $homepageItemBuilt .= '
  5030. <div id="calendarLegendRow" class="row" style="padding: 0 0 10px 0;">
  5031. <div class="col-lg-12 content-form form-inline">
  5032. <div class="form-group pull-right">
  5033. <span class="swal-legend label label-primary well-sm">Legend</span>&nbsp;
  5034. <div class="btn-group" role="group">
  5035. <button id="calendarSelected" style="margin-right: 0px;" type="button" class="btn waves btn-default btn-sm dropdown-toggle waves-effect waves-float" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">View All&nbsp;<span class="caret"></span></button>
  5036. <ul style="right:0; left: auto" class="dropdown-menu">
  5037. <li><a class="calendarOption" calendarOption="all" href="javascript:void(0)">View All</a></li>
  5038. '.$calendarItems.'
  5039. </ul>
  5040. </div>
  5041. </div>
  5042. </div>
  5043. </div>
  5044. <div id="calendarRow" class="row">
  5045. <div class="col-lg-12">
  5046. <div id="calendar" class="fc-calendar box-shadow fc fc-ltr fc-unthemed"></div>
  5047. </div>
  5048. </div>
  5049. ';
  5050. }
  5051. break;
  5052. default:
  5053. # code...
  5054. break;
  5055. }
  5056. return $homepageItemBuilt;
  5057. }
  5058. function buildDownloader($name){
  5059. return '
  5060. <div id="downloadClientRow" class="row">
  5061. <div class="col-xs-12 col-md-12">
  5062. <div class="content-box">
  5063. <div class="tabbable panel with-nav-tabs panel-default">
  5064. <div class="panel-heading">
  5065. <div class="content-tools i-block pull-right">
  5066. <a id="getDownloader" class="repeat-btn">
  5067. <i class="fa fa-repeat"></i>
  5068. </a>
  5069. </div>
  5070. <h3 class="pull-left">'.strtoupper($name).'</h3>
  5071. <ul class="nav nav-tabs pull-right">
  5072. <li class="active"><a href="#downloadQueue-'.$name.'" data-toggle="tab" aria-expanded="true">'.translate("QUEUE").'</a></li>
  5073. <li class=""><a href="#downloadHistory-'.$name.'" data-toggle="tab" aria-expanded="false">'.translate("HISTORY").'</a></li>
  5074. </ul>
  5075. <div class="clearfix"></div>
  5076. </div>
  5077. <div class="panel-body">
  5078. <div class="tab-content">
  5079. <div class="tab-pane fade active in" id="downloadQueue-'.$name.'">
  5080. <div class="table-responsive" style="max-height: 300px">
  5081. <table class="table table-striped progress-widget zero-m" style="max-height: 300px">
  5082. <thead>
  5083. <tr>
  5084. <th class="col-xs-7 nzbtable-file-row">'.translate("FILE").'</th>
  5085. <th class="col-xs-2 nzbtable">'.translate("STATUS").'</th>
  5086. <th class="col-xs-1 nzbtable">'.translate("CATEGORY").'</th>
  5087. <th class="col-xs-1 nzbtable">'.translate("SIZE").'</th>
  5088. <th class="col-xs-2 nzbtable">'.translate("PROGRESS").'</th>
  5089. </tr>
  5090. </thead>
  5091. <tbody class="dl-queue '.$name.'"></tbody>
  5092. </table>
  5093. </div>
  5094. </div>
  5095. <div class="tab-pane fade" id="downloadHistory-'.$name.'">
  5096. <div class="table-responsive" style="max-height: 300px">
  5097. <table class="table table-striped progress-widget zero-m" style="max-height: 300px">
  5098. <thead>
  5099. <tr>
  5100. <th class="col-xs-7 nzbtable-file-row">'.translate("FILE").'</th>
  5101. <th class="col-xs-2 nzbtable">'.translate("STATUS").'</th>
  5102. <th class="col-xs-1 nzbtable">'.translate("CATEGORY").'</th>
  5103. <th class="col-xs-1 nzbtable">'.translate("SIZE").'</th>
  5104. <th class="col-xs-2 nzbtable">'.translate("PROGRESS").'</th>
  5105. </tr>
  5106. </thead>
  5107. <tbody class="dl-history '.$name.'"></tbody>
  5108. </table>
  5109. </div>
  5110. </div>
  5111. </div>
  5112. </div>
  5113. </div>
  5114. </div>
  5115. </div>
  5116. </div>';
  5117. }
  5118. class Mobile_Detect
  5119. {
  5120. /**
  5121. * Mobile detection type.
  5122. *
  5123. * @deprecated since version 2.6.9
  5124. */
  5125. const DETECTION_TYPE_MOBILE = 'mobile';
  5126. /**
  5127. * Extended detection type.
  5128. *
  5129. * @deprecated since version 2.6.9
  5130. */
  5131. const DETECTION_TYPE_EXTENDED = 'extended';
  5132. /**
  5133. * A frequently used regular expression to extract version #s.
  5134. *
  5135. * @deprecated since version 2.6.9
  5136. */
  5137. const VER = '([\w._\+]+)';
  5138. /**
  5139. * Top-level device.
  5140. */
  5141. const MOBILE_GRADE_A = 'A';
  5142. /**
  5143. * Mid-level device.
  5144. */
  5145. const MOBILE_GRADE_B = 'B';
  5146. /**
  5147. * Low-level device.
  5148. */
  5149. const MOBILE_GRADE_C = 'C';
  5150. /**
  5151. * Stores the version number of the current release.
  5152. */
  5153. const VERSION = '2.8.26';
  5154. /**
  5155. * A type for the version() method indicating a string return value.
  5156. */
  5157. const VERSION_TYPE_STRING = 'text';
  5158. /**
  5159. * A type for the version() method indicating a float return value.
  5160. */
  5161. const VERSION_TYPE_FLOAT = 'float';
  5162. /**
  5163. * A cache for resolved matches
  5164. * @var array
  5165. */
  5166. protected $cache = array();
  5167. /**
  5168. * The User-Agent HTTP header is stored in here.
  5169. * @var string
  5170. */
  5171. protected $userAgent = null;
  5172. /**
  5173. * HTTP headers in the PHP-flavor. So HTTP_USER_AGENT and SERVER_SOFTWARE.
  5174. * @var array
  5175. */
  5176. protected $httpHeaders = array();
  5177. /**
  5178. * CloudFront headers. E.g. CloudFront-Is-Desktop-Viewer, CloudFront-Is-Mobile-Viewer & CloudFront-Is-Tablet-Viewer.
  5179. * @var array
  5180. */
  5181. protected $cloudfrontHeaders = array();
  5182. /**
  5183. * The matching Regex.
  5184. * This is good for debug.
  5185. * @var string
  5186. */
  5187. protected $matchingRegex = null;
  5188. /**
  5189. * The matches extracted from the regex expression.
  5190. * This is good for debug.
  5191. * @var string
  5192. */
  5193. protected $matchesArray = null;
  5194. /**
  5195. * The detection type, using self::DETECTION_TYPE_MOBILE or self::DETECTION_TYPE_EXTENDED.
  5196. *
  5197. * @deprecated since version 2.6.9
  5198. *
  5199. * @var string
  5200. */
  5201. protected $detectionType = self::DETECTION_TYPE_MOBILE;
  5202. /**
  5203. * HTTP headers that trigger the 'isMobile' detection
  5204. * to be true.
  5205. *
  5206. * @var array
  5207. */
  5208. protected static $mobileHeaders = array(
  5209. 'HTTP_ACCEPT' => array('matches' => array(
  5210. // Opera Mini; @reference: http://dev.opera.com/articles/view/opera-binary-markup-language/
  5211. 'application/x-obml2d',
  5212. // BlackBerry devices.
  5213. 'application/vnd.rim.html',
  5214. 'text/vnd.wap.wml',
  5215. 'application/vnd.wap.xhtml+xml'
  5216. )),
  5217. 'HTTP_X_WAP_PROFILE' => null,
  5218. 'HTTP_X_WAP_CLIENTID' => null,
  5219. 'HTTP_WAP_CONNECTION' => null,
  5220. 'HTTP_PROFILE' => null,
  5221. // Reported by Opera on Nokia devices (eg. C3).
  5222. 'HTTP_X_OPERAMINI_PHONE_UA' => null,
  5223. 'HTTP_X_NOKIA_GATEWAY_ID' => null,
  5224. 'HTTP_X_ORANGE_ID' => null,
  5225. 'HTTP_X_VODAFONE_3GPDPCONTEXT' => null,
  5226. 'HTTP_X_HUAWEI_USERID' => null,
  5227. // Reported by Windows Smartphones.
  5228. 'HTTP_UA_OS' => null,
  5229. // Reported by Verizon, Vodafone proxy system.
  5230. 'HTTP_X_MOBILE_GATEWAY' => null,
  5231. // Seen this on HTC Sensation. SensationXE_Beats_Z715e.
  5232. 'HTTP_X_ATT_DEVICEID' => null,
  5233. // Seen this on a HTC.
  5234. 'HTTP_UA_CPU' => array('matches' => array('ARM')),
  5235. );
  5236. /**
  5237. * List of mobile devices (phones).
  5238. *
  5239. * @var array
  5240. */
  5241. protected static $phoneDevices = array(
  5242. 'iPhone' => '\biPhone\b|\biPod\b', // |\biTunes
  5243. 'BlackBerry' => 'BlackBerry|\bBB10\b|rim[0-9]+',
  5244. 'HTC' => 'HTC|HTC.*(Sensation|Evo|Vision|Explorer|6800|8100|8900|A7272|S510e|C110e|Legend|Desire|T8282)|APX515CKT|Qtek9090|APA9292KT|HD_mini|Sensation.*Z710e|PG86100|Z715e|Desire.*(A8181|HD)|ADR6200|ADR6400L|ADR6425|001HT|Inspire 4G|Android.*\bEVO\b|T-Mobile G1|Z520m',
  5245. 'Nexus' => 'Nexus One|Nexus S|Galaxy.*Nexus|Android.*Nexus.*Mobile|Nexus 4|Nexus 5|Nexus 6',
  5246. // @todo: Is 'Dell Streak' a tablet or a phone? ;)
  5247. 'Dell' => 'Dell.*Streak|Dell.*Aero|Dell.*Venue|DELL.*Venue Pro|Dell Flash|Dell Smoke|Dell Mini 3iX|XCD28|XCD35|\b001DL\b|\b101DL\b|\bGS01\b',
  5248. 'Motorola' => 'Motorola|DROIDX|DROID BIONIC|\bDroid\b.*Build|Android.*Xoom|HRI39|MOT-|A1260|A1680|A555|A853|A855|A953|A955|A956|Motorola.*ELECTRIFY|Motorola.*i1|i867|i940|MB200|MB300|MB501|MB502|MB508|MB511|MB520|MB525|MB526|MB611|MB612|MB632|MB810|MB855|MB860|MB861|MB865|MB870|ME501|ME502|ME511|ME525|ME600|ME632|ME722|ME811|ME860|ME863|ME865|MT620|MT710|MT716|MT720|MT810|MT870|MT917|Motorola.*TITANIUM|WX435|WX445|XT300|XT301|XT311|XT316|XT317|XT319|XT320|XT390|XT502|XT530|XT531|XT532|XT535|XT603|XT610|XT611|XT615|XT681|XT701|XT702|XT711|XT720|XT800|XT806|XT860|XT862|XT875|XT882|XT883|XT894|XT901|XT907|XT909|XT910|XT912|XT928|XT926|XT915|XT919|XT925|XT1021|\bMoto E\b',
  5249. 'Samsung' => '\bSamsung\b|SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B3730|GT-B3740|GT-B5510|GT-B5512|GT-B5722|GT-B6520|GT-B7300|GT-B7320|GT-B7330|GT-B7350|GT-B7510|GT-B7722|GT-B7800|GT-C3010|GT-C3011|GT-C3060|GT-C3200|GT-C3212|GT-C3212I|GT-C3262|GT-C3222|GT-C3300|GT-C3300K|GT-C3303|GT-C3303K|GT-C3310|GT-C3322|GT-C3330|GT-C3350|GT-C3500|GT-C3510|GT-C3530|GT-C3630|GT-C3780|GT-C5010|GT-C5212|GT-C6620|GT-C6625|GT-C6712|GT-E1050|GT-E1070|GT-E1075|GT-E1080|GT-E1081|GT-E1085|GT-E1087|GT-E1100|GT-E1107|GT-E1110|GT-E1120|GT-E1125|GT-E1130|GT-E1160|GT-E1170|GT-E1175|GT-E1180|GT-E1182|GT-E1200|GT-E1210|GT-E1225|GT-E1230|GT-E1390|GT-E2100|GT-E2120|GT-E2121|GT-E2152|GT-E2220|GT-E2222|GT-E2230|GT-E2232|GT-E2250|GT-E2370|GT-E2550|GT-E2652|GT-E3210|GT-E3213|GT-I5500|GT-I5503|GT-I5700|GT-I5800|GT-I5801|GT-I6410|GT-I6420|GT-I7110|GT-I7410|GT-I7500|GT-I8000|GT-I8150|GT-I8160|GT-I8190|GT-I8320|GT-I8330|GT-I8350|GT-I8530|GT-I8700|GT-I8703|GT-I8910|GT-I9000|GT-I9001|GT-I9003|GT-I9010|GT-I9020|GT-I9023|GT-I9070|GT-I9082|GT-I9100|GT-I9103|GT-I9220|GT-I9250|GT-I9300|GT-I9305|GT-I9500|GT-I9505|GT-M3510|GT-M5650|GT-M7500|GT-M7600|GT-M7603|GT-M8800|GT-M8910|GT-N7000|GT-S3110|GT-S3310|GT-S3350|GT-S3353|GT-S3370|GT-S3650|GT-S3653|GT-S3770|GT-S3850|GT-S5210|GT-S5220|GT-S5229|GT-S5230|GT-S5233|GT-S5250|GT-S5253|GT-S5260|GT-S5263|GT-S5270|GT-S5300|GT-S5330|GT-S5350|GT-S5360|GT-S5363|GT-S5369|GT-S5380|GT-S5380D|GT-S5560|GT-S5570|GT-S5600|GT-S5603|GT-S5610|GT-S5620|GT-S5660|GT-S5670|GT-S5690|GT-S5750|GT-S5780|GT-S5830|GT-S5839|GT-S6102|GT-S6500|GT-S7070|GT-S7200|GT-S7220|GT-S7230|GT-S7233|GT-S7250|GT-S7500|GT-S7530|GT-S7550|GT-S7562|GT-S7710|GT-S8000|GT-S8003|GT-S8500|GT-S8530|GT-S8600|SCH-A310|SCH-A530|SCH-A570|SCH-A610|SCH-A630|SCH-A650|SCH-A790|SCH-A795|SCH-A850|SCH-A870|SCH-A890|SCH-A930|SCH-A950|SCH-A970|SCH-A990|SCH-I100|SCH-I110|SCH-I400|SCH-I405|SCH-I500|SCH-I510|SCH-I515|SCH-I600|SCH-I730|SCH-I760|SCH-I770|SCH-I830|SCH-I910|SCH-I920|SCH-I959|SCH-LC11|SCH-N150|SCH-N300|SCH-R100|SCH-R300|SCH-R351|SCH-R400|SCH-R410|SCH-T300|SCH-U310|SCH-U320|SCH-U350|SCH-U360|SCH-U365|SCH-U370|SCH-U380|SCH-U410|SCH-U430|SCH-U450|SCH-U460|SCH-U470|SCH-U490|SCH-U540|SCH-U550|SCH-U620|SCH-U640|SCH-U650|SCH-U660|SCH-U700|SCH-U740|SCH-U750|SCH-U810|SCH-U820|SCH-U900|SCH-U940|SCH-U960|SCS-26UC|SGH-A107|SGH-A117|SGH-A127|SGH-A137|SGH-A157|SGH-A167|SGH-A177|SGH-A187|SGH-A197|SGH-A227|SGH-A237|SGH-A257|SGH-A437|SGH-A517|SGH-A597|SGH-A637|SGH-A657|SGH-A667|SGH-A687|SGH-A697|SGH-A707|SGH-A717|SGH-A727|SGH-A737|SGH-A747|SGH-A767|SGH-A777|SGH-A797|SGH-A817|SGH-A827|SGH-A837|SGH-A847|SGH-A867|SGH-A877|SGH-A887|SGH-A897|SGH-A927|SGH-B100|SGH-B130|SGH-B200|SGH-B220|SGH-C100|SGH-C110|SGH-C120|SGH-C130|SGH-C140|SGH-C160|SGH-C170|SGH-C180|SGH-C200|SGH-C207|SGH-C210|SGH-C225|SGH-C230|SGH-C417|SGH-C450|SGH-D307|SGH-D347|SGH-D357|SGH-D407|SGH-D415|SGH-D780|SGH-D807|SGH-D980|SGH-E105|SGH-E200|SGH-E315|SGH-E316|SGH-E317|SGH-E335|SGH-E590|SGH-E635|SGH-E715|SGH-E890|SGH-F300|SGH-F480|SGH-I200|SGH-I300|SGH-I320|SGH-I550|SGH-I577|SGH-I600|SGH-I607|SGH-I617|SGH-I627|SGH-I637|SGH-I677|SGH-I700|SGH-I717|SGH-I727|SGH-i747M|SGH-I777|SGH-I780|SGH-I827|SGH-I847|SGH-I857|SGH-I896|SGH-I897|SGH-I900|SGH-I907|SGH-I917|SGH-I927|SGH-I937|SGH-I997|SGH-J150|SGH-J200|SGH-L170|SGH-L700|SGH-M110|SGH-M150|SGH-M200|SGH-N105|SGH-N500|SGH-N600|SGH-N620|SGH-N625|SGH-N700|SGH-N710|SGH-P107|SGH-P207|SGH-P300|SGH-P310|SGH-P520|SGH-P735|SGH-P777|SGH-Q105|SGH-R210|SGH-R220|SGH-R225|SGH-S105|SGH-S307|SGH-T109|SGH-T119|SGH-T139|SGH-T209|SGH-T219|SGH-T229|SGH-T239|SGH-T249|SGH-T259|SGH-T309|SGH-T319|SGH-T329|SGH-T339|SGH-T349|SGH-T359|SGH-T369|SGH-T379|SGH-T409|SGH-T429|SGH-T439|SGH-T459|SGH-T469|SGH-T479|SGH-T499|SGH-T509|SGH-T519|SGH-T539|SGH-T559|SGH-T589|SGH-T609|SGH-T619|SGH-T629|SGH-T639|SGH-T659|SGH-T669|SGH-T679|SGH-T709|SGH-T719|SGH-T729|SGH-T739|SGH-T746|SGH-T749|SGH-T759|SGH-T769|SGH-T809|SGH-T819|SGH-T839|SGH-T919|SGH-T929|SGH-T939|SGH-T959|SGH-T989|SGH-U100|SGH-U200|SGH-U800|SGH-V205|SGH-V206|SGH-X100|SGH-X105|SGH-X120|SGH-X140|SGH-X426|SGH-X427|SGH-X475|SGH-X495|SGH-X497|SGH-X507|SGH-X600|SGH-X610|SGH-X620|SGH-X630|SGH-X700|SGH-X820|SGH-X890|SGH-Z130|SGH-Z150|SGH-Z170|SGH-ZX10|SGH-ZX20|SHW-M110|SPH-A120|SPH-A400|SPH-A420|SPH-A460|SPH-A500|SPH-A560|SPH-A600|SPH-A620|SPH-A660|SPH-A700|SPH-A740|SPH-A760|SPH-A790|SPH-A800|SPH-A820|SPH-A840|SPH-A880|SPH-A900|SPH-A940|SPH-A960|SPH-D600|SPH-D700|SPH-D710|SPH-D720|SPH-I300|SPH-I325|SPH-I330|SPH-I350|SPH-I500|SPH-I600|SPH-I700|SPH-L700|SPH-M100|SPH-M220|SPH-M240|SPH-M300|SPH-M305|SPH-M320|SPH-M330|SPH-M350|SPH-M360|SPH-M370|SPH-M380|SPH-M510|SPH-M540|SPH-M550|SPH-M560|SPH-M570|SPH-M580|SPH-M610|SPH-M620|SPH-M630|SPH-M800|SPH-M810|SPH-M850|SPH-M900|SPH-M910|SPH-M920|SPH-M930|SPH-N100|SPH-N200|SPH-N240|SPH-N300|SPH-N400|SPH-Z400|SWC-E100|SCH-i909|GT-N7100|GT-N7105|SCH-I535|SM-N900A|SGH-I317|SGH-T999L|GT-S5360B|GT-I8262|GT-S6802|GT-S6312|GT-S6310|GT-S5312|GT-S5310|GT-I9105|GT-I8510|GT-S6790N|SM-G7105|SM-N9005|GT-S5301|GT-I9295|GT-I9195|SM-C101|GT-S7392|GT-S7560|GT-B7610|GT-I5510|GT-S7582|GT-S7530E|GT-I8750|SM-G9006V|SM-G9008V|SM-G9009D|SM-G900A|SM-G900D|SM-G900F|SM-G900H|SM-G900I|SM-G900J|SM-G900K|SM-G900L|SM-G900M|SM-G900P|SM-G900R4|SM-G900S|SM-G900T|SM-G900V|SM-G900W8|SHV-E160K|SCH-P709|SCH-P729|SM-T2558|GT-I9205|SM-G9350|SM-J120F|SM-G920F|SM-G920V|SM-G930F|SM-N910C',
  5250. 'LG' => '\bLG\b;|LG[- ]?(C800|C900|E400|E610|E900|E-900|F160|F180K|F180L|F180S|730|855|L160|LS740|LS840|LS970|LU6200|MS690|MS695|MS770|MS840|MS870|MS910|P500|P700|P705|VM696|AS680|AS695|AX840|C729|E970|GS505|272|C395|E739BK|E960|L55C|L75C|LS696|LS860|P769BK|P350|P500|P509|P870|UN272|US730|VS840|VS950|LN272|LN510|LS670|LS855|LW690|MN270|MN510|P509|P769|P930|UN200|UN270|UN510|UN610|US670|US740|US760|UX265|UX840|VN271|VN530|VS660|VS700|VS740|VS750|VS910|VS920|VS930|VX9200|VX11000|AX840A|LW770|P506|P925|P999|E612|D955|D802|MS323)',
  5251. 'Sony' => 'SonyST|SonyLT|SonyEricsson|SonyEricssonLT15iv|LT18i|E10i|LT28h|LT26w|SonyEricssonMT27i|C5303|C6902|C6903|C6906|C6943|D2533',
  5252. 'Asus' => 'Asus.*Galaxy|PadFone.*Mobile',
  5253. 'NokiaLumia' => 'Lumia [0-9]{3,4}',
  5254. // http://www.micromaxinfo.com/mobiles/smartphones
  5255. // Added because the codes might conflict with Acer Tablets.
  5256. 'Micromax' => 'Micromax.*\b(A210|A92|A88|A72|A111|A110Q|A115|A116|A110|A90S|A26|A51|A35|A54|A25|A27|A89|A68|A65|A57|A90)\b',
  5257. // @todo Complete the regex.
  5258. 'Palm' => 'PalmSource|Palm', // avantgo|blazer|elaine|hiptop|plucker|xiino ;
  5259. 'Vertu' => 'Vertu|Vertu.*Ltd|Vertu.*Ascent|Vertu.*Ayxta|Vertu.*Constellation(F|Quest)?|Vertu.*Monika|Vertu.*Signature', // Just for fun ;)
  5260. // http://www.pantech.co.kr/en/prod/prodList.do?gbrand=VEGA (PANTECH)
  5261. // Most of the VEGA devices are legacy. PANTECH seem to be newer devices based on Android.
  5262. 'Pantech' => 'PANTECH|IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|IM-A725L|IM-A780L|IM-A775C|IM-A770K|IM-A760S|IM-A750K|IM-A740S|IM-A730S|IM-A720L|IM-A710K|IM-A690L|IM-A690S|IM-A650S|IM-A630K|IM-A600S|VEGA PTL21|PT003|P8010|ADR910L|P6030|P6020|P9070|P4100|P9060|P5000|CDM8992|TXT8045|ADR8995|IS11PT|P2030|P6010|P8000|PT002|IS06|CDM8999|P9050|PT001|TXT8040|P2020|P9020|P2000|P7040|P7000|C790',
  5263. // http://www.fly-phone.com/devices/smartphones/ ; Included only smartphones.
  5264. 'Fly' => 'IQ230|IQ444|IQ450|IQ440|IQ442|IQ441|IQ245|IQ256|IQ236|IQ255|IQ235|IQ245|IQ275|IQ240|IQ285|IQ280|IQ270|IQ260|IQ250',
  5265. // http://fr.wikomobile.com
  5266. 'Wiko' => 'KITE 4G|HIGHWAY|GETAWAY|STAIRWAY|DARKSIDE|DARKFULL|DARKNIGHT|DARKMOON|SLIDE|WAX 4G|RAINBOW|BLOOM|SUNSET|GOA(?!nna)|LENNY|BARRY|IGGY|OZZY|CINK FIVE|CINK PEAX|CINK PEAX 2|CINK SLIM|CINK SLIM 2|CINK +|CINK KING|CINK PEAX|CINK SLIM|SUBLIM',
  5267. 'iMobile' => 'i-mobile (IQ|i-STYLE|idea|ZAA|Hitz)',
  5268. // Added simvalley mobile just for fun. They have some interesting devices.
  5269. // http://www.simvalley.fr/telephonie---gps-_22_telephonie-mobile_telephones_.html
  5270. 'SimValley' => '\b(SP-80|XT-930|SX-340|XT-930|SX-310|SP-360|SP60|SPT-800|SP-120|SPT-800|SP-140|SPX-5|SPX-8|SP-100|SPX-8|SPX-12)\b',
  5271. // Wolfgang - a brand that is sold by Aldi supermarkets.
  5272. // http://www.wolfgangmobile.com/
  5273. 'Wolfgang' => 'AT-B24D|AT-AS50HD|AT-AS40W|AT-AS55HD|AT-AS45q2|AT-B26D|AT-AS50Q',
  5274. 'Alcatel' => 'Alcatel',
  5275. 'Nintendo' => 'Nintendo 3DS',
  5276. // http://en.wikipedia.org/wiki/Amoi
  5277. 'Amoi' => 'Amoi',
  5278. // http://en.wikipedia.org/wiki/INQ
  5279. 'INQ' => 'INQ',
  5280. // @Tapatalk is a mobile app; http://support.tapatalk.com/threads/smf-2-0-2-os-and-browser-detection-plugin-and-tapatalk.15565/#post-79039
  5281. 'GenericPhone' => 'Tapatalk|PDA;|SAGEM|\bmmp\b|pocket|\bpsp\b|symbian|Smartphone|smartfon|treo|up.browser|up.link|vodafone|\bwap\b|nokia|Series40|Series60|S60|SonyEricsson|N900|MAUI.*WAP.*Browser',
  5282. );
  5283. /**
  5284. * List of tablet devices.
  5285. *
  5286. * @var array
  5287. */
  5288. protected static $tabletDevices = array(
  5289. // @todo: check for mobile friendly emails topic.
  5290. 'iPad' => 'iPad|iPad.*Mobile',
  5291. // Removed |^.*Android.*Nexus(?!(?:Mobile).)*$
  5292. // @see #442
  5293. 'NexusTablet' => 'Android.*Nexus[\s]+(7|9|10)',
  5294. 'SamsungTablet' => 'SAMSUNG.*Tablet|Galaxy.*Tab|SC-01C|GT-P1000|GT-P1003|GT-P1010|GT-P3105|GT-P6210|GT-P6800|GT-P6810|GT-P7100|GT-P7300|GT-P7310|GT-P7500|GT-P7510|SCH-I800|SCH-I815|SCH-I905|SGH-I957|SGH-I987|SGH-T849|SGH-T859|SGH-T869|SPH-P100|GT-P3100|GT-P3108|GT-P3110|GT-P5100|GT-P5110|GT-P6200|GT-P7320|GT-P7511|GT-N8000|GT-P8510|SGH-I497|SPH-P500|SGH-T779|SCH-I705|SCH-I915|GT-N8013|GT-P3113|GT-P5113|GT-P8110|GT-N8010|GT-N8005|GT-N8020|GT-P1013|GT-P6201|GT-P7501|GT-N5100|GT-N5105|GT-N5110|SHV-E140K|SHV-E140L|SHV-E140S|SHV-E150S|SHV-E230K|SHV-E230L|SHV-E230S|SHW-M180K|SHW-M180L|SHW-M180S|SHW-M180W|SHW-M300W|SHW-M305W|SHW-M380K|SHW-M380S|SHW-M380W|SHW-M430W|SHW-M480K|SHW-M480S|SHW-M480W|SHW-M485W|SHW-M486W|SHW-M500W|GT-I9228|SCH-P739|SCH-I925|GT-I9200|GT-P5200|GT-P5210|GT-P5210X|SM-T311|SM-T310|SM-T310X|SM-T210|SM-T210R|SM-T211|SM-P600|SM-P601|SM-P605|SM-P900|SM-P901|SM-T217|SM-T217A|SM-T217S|SM-P6000|SM-T3100|SGH-I467|XE500|SM-T110|GT-P5220|GT-I9200X|GT-N5110X|GT-N5120|SM-P905|SM-T111|SM-T2105|SM-T315|SM-T320|SM-T320X|SM-T321|SM-T520|SM-T525|SM-T530NU|SM-T230NU|SM-T330NU|SM-T900|XE500T1C|SM-P605V|SM-P905V|SM-T337V|SM-T537V|SM-T707V|SM-T807V|SM-P600X|SM-P900X|SM-T210X|SM-T230|SM-T230X|SM-T325|GT-P7503|SM-T531|SM-T330|SM-T530|SM-T705|SM-T705C|SM-T535|SM-T331|SM-T800|SM-T700|SM-T537|SM-T807|SM-P907A|SM-T337A|SM-T537A|SM-T707A|SM-T807A|SM-T237|SM-T807P|SM-P607T|SM-T217T|SM-T337T|SM-T807T|SM-T116NQ|SM-T116BU|SM-P550|SM-T350|SM-T550|SM-T9000|SM-P9000|SM-T705Y|SM-T805|GT-P3113|SM-T710|SM-T810|SM-T815|SM-T360|SM-T533|SM-T113|SM-T335|SM-T715|SM-T560|SM-T670|SM-T677|SM-T377|SM-T567|SM-T357T|SM-T555|SM-T561|SM-T713|SM-T719|SM-T813|SM-T819|SM-T580|SM-T355Y|SM-T280|SM-T817A|SM-T820|SM-W700|SM-P580|SM-T587|SM-P350|SM-P555M|SM-P355M|SM-T113NU|SM-T815Y', // SCH-P709|SCH-P729|SM-T2558|GT-I9205 - Samsung Mega - treat them like a regular phone.
  5295. // http://docs.aws.amazon.com/silk/latest/developerguide/user-agent.html
  5296. 'Kindle' => 'Kindle|Silk.*Accelerated|Android.*\b(KFOT|KFTT|KFJWI|KFJWA|KFOTE|KFSOWI|KFTHWI|KFTHWA|KFAPWI|KFAPWA|WFJWAE|KFSAWA|KFSAWI|KFASWI|KFARWI|KFFOWI|KFGIWI|KFMEWI)\b|Android.*Silk/[0-9.]+ like Chrome/[0-9.]+ (?!Mobile)',
  5297. // Only the Surface tablets with Windows RT are considered mobile.
  5298. // http://msdn.microsoft.com/en-us/library/ie/hh920767(v=vs.85).aspx
  5299. 'SurfaceTablet' => 'Windows NT [0-9.]+; ARM;.*(Tablet|ARMBJS)',
  5300. // http://shopping1.hp.com/is-bin/INTERSHOP.enfinity/WFS/WW-USSMBPublicStore-Site/en_US/-/USD/ViewStandardCatalog-Browse?CatalogCategoryID=JfIQ7EN5lqMAAAEyDcJUDwMT
  5301. 'HPTablet' => 'HP Slate (7|8|10)|HP ElitePad 900|hp-tablet|EliteBook.*Touch|HP 8|Slate 21|HP SlateBook 10',
  5302. // Watch out for PadFone, see #132.
  5303. // http://www.asus.com/de/Tablets_Mobile/Memo_Pad_Products/
  5304. 'AsusTablet' => '^.*PadFone((?!Mobile).)*$|Transformer|TF101|TF101G|TF300T|TF300TG|TF300TL|TF700T|TF700KL|TF701T|TF810C|ME171|ME301T|ME302C|ME371MG|ME370T|ME372MG|ME172V|ME173X|ME400C|Slider SL101|\bK00F\b|\bK00C\b|\bK00E\b|\bK00L\b|TX201LA|ME176C|ME102A|\bM80TA\b|ME372CL|ME560CG|ME372CG|ME302KL| K010 | K011 | K017 | K01E |ME572C|ME103K|ME170C|ME171C|\bME70C\b|ME581C|ME581CL|ME8510C|ME181C|P01Y|PO1MA|P01Z|\bP027\b',
  5305. 'BlackBerryTablet' => 'PlayBook|RIM Tablet',
  5306. 'HTCtablet' => 'HTC_Flyer_P512|HTC Flyer|HTC Jetstream|HTC-P715a|HTC EVO View 4G|PG41200|PG09410',
  5307. 'MotorolaTablet' => 'xoom|sholest|MZ615|MZ605|MZ505|MZ601|MZ602|MZ603|MZ604|MZ606|MZ607|MZ608|MZ609|MZ615|MZ616|MZ617',
  5308. 'NookTablet' => 'Android.*Nook|NookColor|nook browser|BNRV200|BNRV200A|BNTV250|BNTV250A|BNTV400|BNTV600|LogicPD Zoom2',
  5309. // http://www.acer.ro/ac/ro/RO/content/drivers
  5310. // http://www.packardbell.co.uk/pb/en/GB/content/download (Packard Bell is part of Acer)
  5311. // http://us.acer.com/ac/en/US/content/group/tablets
  5312. // http://www.acer.de/ac/de/DE/content/models/tablets/
  5313. // Can conflict with Micromax and Motorola phones codes.
  5314. 'AcerTablet' => 'Android.*; \b(A100|A101|A110|A200|A210|A211|A500|A501|A510|A511|A700|A701|W500|W500P|W501|W501P|W510|W511|W700|G100|G100W|B1-A71|B1-710|B1-711|A1-810|A1-811|A1-830)\b|W3-810|\bA3-A10\b|\bA3-A11\b|\bA3-A20\b|\bA3-A30',
  5315. // http://eu.computers.toshiba-europe.com/innovation/family/Tablets/1098744/banner_id/tablet_footerlink/
  5316. // http://us.toshiba.com/tablets/tablet-finder
  5317. // http://www.toshiba.co.jp/regza/tablet/
  5318. 'ToshibaTablet' => 'Android.*(AT100|AT105|AT200|AT205|AT270|AT275|AT300|AT305|AT1S5|AT500|AT570|AT700|AT830)|TOSHIBA.*FOLIO',
  5319. // http://www.nttdocomo.co.jp/english/service/developer/smart_phone/technical_info/spec/index.html
  5320. // http://www.lg.com/us/tablets
  5321. 'LGTablet' => '\bL-06C|LG-V909|LG-V900|LG-V700|LG-V510|LG-V500|LG-V410|LG-V400|LG-VK810\b',
  5322. 'FujitsuTablet' => 'Android.*\b(F-01D|F-02F|F-05E|F-10D|M532|Q572)\b',
  5323. // Prestigio Tablets http://www.prestigio.com/support
  5324. 'PrestigioTablet' => 'PMP3170B|PMP3270B|PMP3470B|PMP7170B|PMP3370B|PMP3570C|PMP5870C|PMP3670B|PMP5570C|PMP5770D|PMP3970B|PMP3870C|PMP5580C|PMP5880D|PMP5780D|PMP5588C|PMP7280C|PMP7280C3G|PMP7280|PMP7880D|PMP5597D|PMP5597|PMP7100D|PER3464|PER3274|PER3574|PER3884|PER5274|PER5474|PMP5097CPRO|PMP5097|PMP7380D|PMP5297C|PMP5297C_QUAD|PMP812E|PMP812E3G|PMP812F|PMP810E|PMP880TD|PMT3017|PMT3037|PMT3047|PMT3057|PMT7008|PMT5887|PMT5001|PMT5002',
  5325. // http://support.lenovo.com/en_GB/downloads/default.page?#
  5326. 'LenovoTablet' => 'Lenovo TAB|Idea(Tab|Pad)( A1|A10| K1|)|ThinkPad([ ]+)?Tablet|YT3-850M|YT3-X90L|YT3-X90F|YT3-X90X|Lenovo.*(S2109|S2110|S5000|S6000|K3011|A3000|A3500|A1000|A2107|A2109|A1107|A5500|A7600|B6000|B8000|B8080)(-|)(FL|F|HV|H|)',
  5327. // http://www.dell.com/support/home/us/en/04/Products/tab_mob/tablets
  5328. 'DellTablet' => 'Venue 11|Venue 8|Venue 7|Dell Streak 10|Dell Streak 7',
  5329. // http://www.yarvik.com/en/matrix/tablets/
  5330. 'YarvikTablet' => 'Android.*\b(TAB210|TAB211|TAB224|TAB250|TAB260|TAB264|TAB310|TAB360|TAB364|TAB410|TAB411|TAB420|TAB424|TAB450|TAB460|TAB461|TAB464|TAB465|TAB467|TAB468|TAB07-100|TAB07-101|TAB07-150|TAB07-151|TAB07-152|TAB07-200|TAB07-201-3G|TAB07-210|TAB07-211|TAB07-212|TAB07-214|TAB07-220|TAB07-400|TAB07-485|TAB08-150|TAB08-200|TAB08-201-3G|TAB08-201-30|TAB09-100|TAB09-211|TAB09-410|TAB10-150|TAB10-201|TAB10-211|TAB10-400|TAB10-410|TAB13-201|TAB274EUK|TAB275EUK|TAB374EUK|TAB462EUK|TAB474EUK|TAB9-200)\b',
  5331. 'MedionTablet' => 'Android.*\bOYO\b|LIFE.*(P9212|P9514|P9516|S9512)|LIFETAB',
  5332. 'ArnovaTablet' => '97G4|AN10G2|AN7bG3|AN7fG3|AN8G3|AN8cG3|AN7G3|AN9G3|AN7dG3|AN7dG3ST|AN7dG3ChildPad|AN10bG3|AN10bG3DT|AN9G2',
  5333. // http://www.intenso.de/kategorie_en.php?kategorie=33
  5334. // @todo: http://www.nbhkdz.com/read/b8e64202f92a2df129126bff.html - investigate
  5335. 'IntensoTablet' => 'INM8002KP|INM1010FP|INM805ND|Intenso Tab|TAB1004',
  5336. // IRU.ru Tablets http://www.iru.ru/catalog/soho/planetable/
  5337. 'IRUTablet' => 'M702pro',
  5338. 'MegafonTablet' => 'MegaFon V9|\bZTE V9\b|Android.*\bMT7A\b',
  5339. // http://www.e-boda.ro/tablete-pc.html
  5340. 'EbodaTablet' => 'E-Boda (Supreme|Impresspeed|Izzycomm|Essential)',
  5341. // http://www.allview.ro/produse/droseries/lista-tablete-pc/
  5342. 'AllViewTablet' => 'Allview.*(Viva|Alldro|City|Speed|All TV|Frenzy|Quasar|Shine|TX1|AX1|AX2)',
  5343. // http://wiki.archosfans.com/index.php?title=Main_Page
  5344. // @note Rewrite the regex format after we add more UAs.
  5345. 'ArchosTablet' => '\b(101G9|80G9|A101IT)\b|Qilive 97R|Archos5|\bARCHOS (70|79|80|90|97|101|FAMILYPAD|)(b|c|)(G10| Cobalt| TITANIUM(HD|)| Xenon| Neon|XSK| 2| XS 2| PLATINUM| CARBON|GAMEPAD)\b',
  5346. // http://www.ainol.com/plugin.php?identifier=ainol&module=product
  5347. 'AinolTablet' => 'NOVO7|NOVO8|NOVO10|Novo7Aurora|Novo7Basic|NOVO7PALADIN|novo9-Spark',
  5348. 'NokiaLumiaTablet' => 'Lumia 2520',
  5349. // @todo: inspect http://esupport.sony.com/US/p/select-system.pl?DIRECTOR=DRIVER
  5350. // Readers http://www.atsuhiro-me.net/ebook/sony-reader/sony-reader-web-browser
  5351. // http://www.sony.jp/support/tablet/
  5352. 'SonyTablet' => 'Sony.*Tablet|Xperia Tablet|Sony Tablet S|SO-03E|SGPT12|SGPT13|SGPT114|SGPT121|SGPT122|SGPT123|SGPT111|SGPT112|SGPT113|SGPT131|SGPT132|SGPT133|SGPT211|SGPT212|SGPT213|SGP311|SGP312|SGP321|EBRD1101|EBRD1102|EBRD1201|SGP351|SGP341|SGP511|SGP512|SGP521|SGP541|SGP551|SGP621|SGP612|SOT31',
  5353. // http://www.support.philips.com/support/catalog/worldproducts.jsp?userLanguage=en&userCountry=cn&categoryid=3G_LTE_TABLET_SU_CN_CARE&title=3G%20tablets%20/%20LTE%20range&_dyncharset=UTF-8
  5354. 'PhilipsTablet' => '\b(PI2010|PI3000|PI3100|PI3105|PI3110|PI3205|PI3210|PI3900|PI4010|PI7000|PI7100)\b',
  5355. // db + http://www.cube-tablet.com/buy-products.html
  5356. 'CubeTablet' => 'Android.*(K8GT|U9GT|U10GT|U16GT|U17GT|U18GT|U19GT|U20GT|U23GT|U30GT)|CUBE U8GT',
  5357. // http://www.cobyusa.com/?p=pcat&pcat_id=3001
  5358. 'CobyTablet' => 'MID1042|MID1045|MID1125|MID1126|MID7012|MID7014|MID7015|MID7034|MID7035|MID7036|MID7042|MID7048|MID7127|MID8042|MID8048|MID8127|MID9042|MID9740|MID9742|MID7022|MID7010',
  5359. // http://www.match.net.cn/products.asp
  5360. 'MIDTablet' => 'M9701|M9000|M9100|M806|M1052|M806|T703|MID701|MID713|MID710|MID727|MID760|MID830|MID728|MID933|MID125|MID810|MID732|MID120|MID930|MID800|MID731|MID900|MID100|MID820|MID735|MID980|MID130|MID833|MID737|MID960|MID135|MID860|MID736|MID140|MID930|MID835|MID733|MID4X10',
  5361. // http://www.msi.com/support
  5362. // @todo Research the Windows Tablets.
  5363. 'MSITablet' => 'MSI \b(Primo 73K|Primo 73L|Primo 81L|Primo 77|Primo 93|Primo 75|Primo 76|Primo 73|Primo 81|Primo 91|Primo 90|Enjoy 71|Enjoy 7|Enjoy 10)\b',
  5364. // @todo http://www.kyoceramobile.com/support/drivers/
  5365. // 'KyoceraTablet' => null,
  5366. // @todo http://intexuae.com/index.php/category/mobile-devices/tablets-products/
  5367. // 'IntextTablet' => null,
  5368. // http://pdadb.net/index.php?m=pdalist&list=SMiT (NoName Chinese Tablets)
  5369. // http://www.imp3.net/14/show.php?itemid=20454
  5370. 'SMiTTablet' => 'Android.*(\bMID\b|MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)',
  5371. // http://www.rock-chips.com/index.php?do=prod&pid=2
  5372. 'RockChipTablet' => 'Android.*(RK2818|RK2808A|RK2918|RK3066)|RK2738|RK2808A',
  5373. // http://www.fly-phone.com/devices/tablets/ ; http://www.fly-phone.com/service/
  5374. 'FlyTablet' => 'IQ310|Fly Vision',
  5375. // http://www.bqreaders.com/gb/tablets-prices-sale.html
  5376. 'bqTablet' => 'Android.*(bq)?.*(Elcano|Curie|Edison|Maxwell|Kepler|Pascal|Tesla|Hypatia|Platon|Newton|Livingstone|Cervantes|Avant|Aquaris [E|M]10)|Maxwell.*Lite|Maxwell.*Plus',
  5377. // http://www.huaweidevice.com/worldwide/productFamily.do?method=index&directoryId=5011&treeId=3290
  5378. // http://www.huaweidevice.com/worldwide/downloadCenter.do?method=index&directoryId=3372&treeId=0&tb=1&type=software (including legacy tablets)
  5379. 'HuaweiTablet' => 'MediaPad|MediaPad 7 Youth|IDEOS S7|S7-201c|S7-202u|S7-101|S7-103|S7-104|S7-105|S7-106|S7-201|S7-Slim',
  5380. // Nec or Medias Tab
  5381. 'NecTablet' => '\bN-06D|\bN-08D',
  5382. // Pantech Tablets: http://www.pantechusa.com/phones/
  5383. 'PantechTablet' => 'Pantech.*P4100',
  5384. // Broncho Tablets: http://www.broncho.cn/ (hard to find)
  5385. 'BronchoTablet' => 'Broncho.*(N701|N708|N802|a710)',
  5386. // http://versusuk.com/support.html
  5387. 'VersusTablet' => 'TOUCHPAD.*[78910]|\bTOUCHTAB\b',
  5388. // http://www.zync.in/index.php/our-products/tablet-phablets
  5389. 'ZyncTablet' => 'z1000|Z99 2G|z99|z930|z999|z990|z909|Z919|z900',
  5390. // http://www.positivoinformatica.com.br/www/pessoal/tablet-ypy/
  5391. 'PositivoTablet' => 'TB07STA|TB10STA|TB07FTA|TB10FTA',
  5392. // https://www.nabitablet.com/
  5393. 'NabiTablet' => 'Android.*\bNabi',
  5394. 'KoboTablet' => 'Kobo Touch|\bK080\b|\bVox\b Build|\bArc\b Build',
  5395. // French Danew Tablets http://www.danew.com/produits-tablette.php
  5396. 'DanewTablet' => 'DSlide.*\b(700|701R|702|703R|704|802|970|971|972|973|974|1010|1012)\b',
  5397. // Texet Tablets and Readers http://www.texet.ru/tablet/
  5398. 'TexetTablet' => 'NaviPad|TB-772A|TM-7045|TM-7055|TM-9750|TM-7016|TM-7024|TM-7026|TM-7041|TM-7043|TM-7047|TM-8041|TM-9741|TM-9747|TM-9748|TM-9751|TM-7022|TM-7021|TM-7020|TM-7011|TM-7010|TM-7023|TM-7025|TM-7037W|TM-7038W|TM-7027W|TM-9720|TM-9725|TM-9737W|TM-1020|TM-9738W|TM-9740|TM-9743W|TB-807A|TB-771A|TB-727A|TB-725A|TB-719A|TB-823A|TB-805A|TB-723A|TB-715A|TB-707A|TB-705A|TB-709A|TB-711A|TB-890HD|TB-880HD|TB-790HD|TB-780HD|TB-770HD|TB-721HD|TB-710HD|TB-434HD|TB-860HD|TB-840HD|TB-760HD|TB-750HD|TB-740HD|TB-730HD|TB-722HD|TB-720HD|TB-700HD|TB-500HD|TB-470HD|TB-431HD|TB-430HD|TB-506|TB-504|TB-446|TB-436|TB-416|TB-146SE|TB-126SE',
  5399. // Avoid detecting 'PLAYSTATION 3' as mobile.
  5400. 'PlaystationTablet' => 'Playstation.*(Portable|Vita)',
  5401. // http://www.trekstor.de/surftabs.html
  5402. 'TrekstorTablet' => 'ST10416-1|VT10416-1|ST70408-1|ST702xx-1|ST702xx-2|ST80208|ST97216|ST70104-2|VT10416-2|ST10216-2A|SurfTab',
  5403. // http://www.pyleaudio.com/Products.aspx?%2fproducts%2fPersonal-Electronics%2fTablets
  5404. 'PyleAudioTablet' => '\b(PTBL10CEU|PTBL10C|PTBL72BC|PTBL72BCEU|PTBL7CEU|PTBL7C|PTBL92BC|PTBL92BCEU|PTBL9CEU|PTBL9CUK|PTBL9C)\b',
  5405. // http://www.advandigital.com/index.php?link=content-product&jns=JP001
  5406. // because of the short codenames we have to include whitespaces to reduce the possible conflicts.
  5407. 'AdvanTablet' => 'Android.* \b(E3A|T3X|T5C|T5B|T3E|T3C|T3B|T1J|T1F|T2A|T1H|T1i|E1C|T1-E|T5-A|T4|E1-B|T2Ci|T1-B|T1-D|O1-A|E1-A|T1-A|T3A|T4i)\b ',
  5408. // http://www.danytech.com/category/tablet-pc
  5409. 'DanyTechTablet' => 'Genius Tab G3|Genius Tab S2|Genius Tab Q3|Genius Tab G4|Genius Tab Q4|Genius Tab G-II|Genius TAB GII|Genius TAB GIII|Genius Tab S1',
  5410. // http://www.galapad.net/product.html
  5411. 'GalapadTablet' => 'Android.*\bG1\b',
  5412. // http://www.micromaxinfo.com/tablet/funbook
  5413. 'MicromaxTablet' => 'Funbook|Micromax.*\b(P250|P560|P360|P362|P600|P300|P350|P500|P275)\b',
  5414. // http://www.karbonnmobiles.com/products_tablet.php
  5415. 'KarbonnTablet' => 'Android.*\b(A39|A37|A34|ST8|ST10|ST7|Smart Tab3|Smart Tab2)\b',
  5416. // http://www.myallfine.com/Products.asp
  5417. 'AllFineTablet' => 'Fine7 Genius|Fine7 Shine|Fine7 Air|Fine8 Style|Fine9 More|Fine10 Joy|Fine11 Wide',
  5418. // http://www.proscanvideo.com/products-search.asp?itemClass=TABLET&itemnmbr=
  5419. 'PROSCANTablet' => '\b(PEM63|PLT1023G|PLT1041|PLT1044|PLT1044G|PLT1091|PLT4311|PLT4311PL|PLT4315|PLT7030|PLT7033|PLT7033D|PLT7035|PLT7035D|PLT7044K|PLT7045K|PLT7045KB|PLT7071KG|PLT7072|PLT7223G|PLT7225G|PLT7777G|PLT7810K|PLT7849G|PLT7851G|PLT7852G|PLT8015|PLT8031|PLT8034|PLT8036|PLT8080K|PLT8082|PLT8088|PLT8223G|PLT8234G|PLT8235G|PLT8816K|PLT9011|PLT9045K|PLT9233G|PLT9735|PLT9760G|PLT9770G)\b',
  5420. // http://www.yonesnav.com/products/products.php
  5421. 'YONESTablet' => 'BQ1078|BC1003|BC1077|RK9702|BC9730|BC9001|IT9001|BC7008|BC7010|BC708|BC728|BC7012|BC7030|BC7027|BC7026',
  5422. // http://www.cjshowroom.com/eproducts.aspx?classcode=004001001
  5423. // China manufacturer makes tablets for different small brands (eg. http://www.zeepad.net/index.html)
  5424. 'ChangJiaTablet' => 'TPC7102|TPC7103|TPC7105|TPC7106|TPC7107|TPC7201|TPC7203|TPC7205|TPC7210|TPC7708|TPC7709|TPC7712|TPC7110|TPC8101|TPC8103|TPC8105|TPC8106|TPC8203|TPC8205|TPC8503|TPC9106|TPC9701|TPC97101|TPC97103|TPC97105|TPC97106|TPC97111|TPC97113|TPC97203|TPC97603|TPC97809|TPC97205|TPC10101|TPC10103|TPC10106|TPC10111|TPC10203|TPC10205|TPC10503',
  5425. // http://www.gloryunion.cn/products.asp
  5426. // http://www.allwinnertech.com/en/apply/mobile.html
  5427. // http://www.ptcl.com.pk/pd_content.php?pd_id=284 (EVOTAB)
  5428. // @todo: Softwiner tablets?
  5429. // aka. Cute or Cool tablets. Not sure yet, must research to avoid collisions.
  5430. 'GUTablet' => 'TX-A1301|TX-M9002|Q702|kf026', // A12R|D75A|D77|D79|R83|A95|A106C|R15|A75|A76|D71|D72|R71|R73|R77|D82|R85|D92|A97|D92|R91|A10F|A77F|W71F|A78F|W78F|W81F|A97F|W91F|W97F|R16G|C72|C73E|K72|K73|R96G
  5431. // http://www.pointofview-online.com/showroom.php?shop_mode=product_listing&category_id=118
  5432. 'PointOfViewTablet' => 'TAB-P506|TAB-navi-7-3G-M|TAB-P517|TAB-P-527|TAB-P701|TAB-P703|TAB-P721|TAB-P731N|TAB-P741|TAB-P825|TAB-P905|TAB-P925|TAB-PR945|TAB-PL1015|TAB-P1025|TAB-PI1045|TAB-P1325|TAB-PROTAB[0-9]+|TAB-PROTAB25|TAB-PROTAB26|TAB-PROTAB27|TAB-PROTAB26XL|TAB-PROTAB2-IPS9|TAB-PROTAB30-IPS9|TAB-PROTAB25XXL|TAB-PROTAB26-IPS10|TAB-PROTAB30-IPS10',
  5433. // http://www.overmax.pl/pl/katalog-produktow,p8/tablety,c14/
  5434. // @todo: add more tests.
  5435. 'OvermaxTablet' => 'OV-(SteelCore|NewBase|Basecore|Baseone|Exellen|Quattor|EduTab|Solution|ACTION|BasicTab|TeddyTab|MagicTab|Stream|TB-08|TB-09)',
  5436. // http://hclmetablet.com/India/index.php
  5437. 'HCLTablet' => 'HCL.*Tablet|Connect-3G-2.0|Connect-2G-2.0|ME Tablet U1|ME Tablet U2|ME Tablet G1|ME Tablet X1|ME Tablet Y2|ME Tablet Sync',
  5438. // http://www.edigital.hu/Tablet_es_e-book_olvaso/Tablet-c18385.html
  5439. 'DPSTablet' => 'DPS Dream 9|DPS Dual 7',
  5440. // http://www.visture.com/index.asp
  5441. 'VistureTablet' => 'V97 HD|i75 3G|Visture V4( HD)?|Visture V5( HD)?|Visture V10',
  5442. // http://www.mijncresta.nl/tablet
  5443. 'CrestaTablet' => 'CTP(-)?810|CTP(-)?818|CTP(-)?828|CTP(-)?838|CTP(-)?888|CTP(-)?978|CTP(-)?980|CTP(-)?987|CTP(-)?988|CTP(-)?989',
  5444. // MediaTek - http://www.mediatek.com/_en/01_products/02_proSys.php?cata_sn=1&cata1_sn=1&cata2_sn=309
  5445. 'MediatekTablet' => '\bMT8125|MT8389|MT8135|MT8377\b',
  5446. // Concorde tab
  5447. 'ConcordeTablet' => 'Concorde([ ]+)?Tab|ConCorde ReadMan',
  5448. // GoClever Tablets - http://www.goclever.com/uk/products,c1/tablet,c5/
  5449. 'GoCleverTablet' => 'GOCLEVER TAB|A7GOCLEVER|M1042|M7841|M742|R1042BK|R1041|TAB A975|TAB A7842|TAB A741|TAB A741L|TAB M723G|TAB M721|TAB A1021|TAB I921|TAB R721|TAB I720|TAB T76|TAB R70|TAB R76.2|TAB R106|TAB R83.2|TAB M813G|TAB I721|GCTA722|TAB I70|TAB I71|TAB S73|TAB R73|TAB R74|TAB R93|TAB R75|TAB R76.1|TAB A73|TAB A93|TAB A93.2|TAB T72|TAB R83|TAB R974|TAB R973|TAB A101|TAB A103|TAB A104|TAB A104.2|R105BK|M713G|A972BK|TAB A971|TAB R974.2|TAB R104|TAB R83.3|TAB A1042',
  5450. // Modecom Tablets - http://www.modecom.eu/tablets/portal/
  5451. 'ModecomTablet' => 'FreeTAB 9000|FreeTAB 7.4|FreeTAB 7004|FreeTAB 7800|FreeTAB 2096|FreeTAB 7.5|FreeTAB 1014|FreeTAB 1001 |FreeTAB 8001|FreeTAB 9706|FreeTAB 9702|FreeTAB 7003|FreeTAB 7002|FreeTAB 1002|FreeTAB 7801|FreeTAB 1331|FreeTAB 1004|FreeTAB 8002|FreeTAB 8014|FreeTAB 9704|FreeTAB 1003',
  5452. // Vonino Tablets - http://www.vonino.eu/tablets
  5453. 'VoninoTablet' => '\b(Argus[ _]?S|Diamond[ _]?79HD|Emerald[ _]?78E|Luna[ _]?70C|Onyx[ _]?S|Onyx[ _]?Z|Orin[ _]?HD|Orin[ _]?S|Otis[ _]?S|SpeedStar[ _]?S|Magnet[ _]?M9|Primus[ _]?94[ _]?3G|Primus[ _]?94HD|Primus[ _]?QS|Android.*\bQ8\b|Sirius[ _]?EVO[ _]?QS|Sirius[ _]?QS|Spirit[ _]?S)\b',
  5454. // ECS Tablets - http://www.ecs.com.tw/ECSWebSite/Product/Product_Tablet_List.aspx?CategoryID=14&MenuID=107&childid=M_107&LanID=0
  5455. 'ECSTablet' => 'V07OT2|TM105A|S10OT1|TR10CS1',
  5456. // Storex Tablets - http://storex.fr/espace_client/support.html
  5457. // @note: no need to add all the tablet codes since they are guided by the first regex.
  5458. 'StorexTablet' => 'eZee[_\']?(Tab|Go)[0-9]+|TabLC7|Looney Tunes Tab',
  5459. // Generic Vodafone tablets.
  5460. 'VodafoneTablet' => 'SmartTab([ ]+)?[0-9]+|SmartTabII10|SmartTabII7|VF-1497',
  5461. // French tablets - Essentiel B http://www.boulanger.fr/tablette_tactile_e-book/tablette_tactile_essentiel_b/cl_68908.htm?multiChoiceToDelete=brand&mc_brand=essentielb
  5462. // Aka: http://www.essentielb.fr/
  5463. 'EssentielBTablet' => 'Smart[ \']?TAB[ ]+?[0-9]+|Family[ \']?TAB2',
  5464. // Ross & Moor - http://ross-moor.ru/
  5465. 'RossMoorTablet' => 'RM-790|RM-997|RMD-878G|RMD-974R|RMT-705A|RMT-701|RME-601|RMT-501|RMT-711',
  5466. // i-mobile http://product.i-mobilephone.com/Mobile_Device
  5467. 'iMobileTablet' => 'i-mobile i-note',
  5468. // http://www.tolino.de/de/vergleichen/
  5469. 'TolinoTablet' => 'tolino tab [0-9.]+|tolino shine',
  5470. // AudioSonic - a Kmart brand
  5471. // http://www.kmart.com.au/webapp/wcs/stores/servlet/Search?langId=-1&storeId=10701&catalogId=10001&categoryId=193001&pageSize=72&currentPage=1&searchCategory=193001%2b4294965664&sortBy=p_MaxPrice%7c1
  5472. 'AudioSonicTablet' => '\bC-22Q|T7-QC|T-17B|T-17P\b',
  5473. // AMPE Tablets - http://www.ampe.com.my/product-category/tablets/
  5474. // @todo: add them gradually to avoid conflicts.
  5475. 'AMPETablet' => 'Android.* A78 ',
  5476. // Skk Mobile - http://skkmobile.com.ph/product_tablets.php
  5477. 'SkkTablet' => 'Android.* (SKYPAD|PHOENIX|CYCLOPS)',
  5478. // Tecno Mobile (only tablet) - http://www.tecno-mobile.com/index.php/product?filterby=smart&list_order=all&page=1
  5479. 'TecnoTablet' => 'TECNO P9',
  5480. // JXD (consoles & tablets) - http://jxd.hk/products.asp?selectclassid=009008&clsid=3
  5481. 'JXDTablet' => 'Android.* \b(F3000|A3300|JXD5000|JXD3000|JXD2000|JXD300B|JXD300|S5800|S7800|S602b|S5110b|S7300|S5300|S602|S603|S5100|S5110|S601|S7100a|P3000F|P3000s|P101|P200s|P1000m|P200m|P9100|P1000s|S6600b|S908|P1000|P300|S18|S6600|S9100)\b',
  5482. // i-Joy tablets - http://www.i-joy.es/en/cat/products/tablets/
  5483. 'iJoyTablet' => 'Tablet (Spirit 7|Essentia|Galatea|Fusion|Onix 7|Landa|Titan|Scooby|Deox|Stella|Themis|Argon|Unique 7|Sygnus|Hexen|Finity 7|Cream|Cream X2|Jade|Neon 7|Neron 7|Kandy|Scape|Saphyr 7|Rebel|Biox|Rebel|Rebel 8GB|Myst|Draco 7|Myst|Tab7-004|Myst|Tadeo Jones|Tablet Boing|Arrow|Draco Dual Cam|Aurix|Mint|Amity|Revolution|Finity 9|Neon 9|T9w|Amity 4GB Dual Cam|Stone 4GB|Stone 8GB|Andromeda|Silken|X2|Andromeda II|Halley|Flame|Saphyr 9,7|Touch 8|Planet|Triton|Unique 10|Hexen 10|Memphis 4GB|Memphis 8GB|Onix 10)',
  5484. // http://www.intracon.eu/tablet
  5485. 'FX2Tablet' => 'FX2 PAD7|FX2 PAD10',
  5486. // http://www.xoro.de/produkte/
  5487. // @note: Might be the same brand with 'Simply tablets'
  5488. 'XoroTablet' => 'KidsPAD 701|PAD[ ]?712|PAD[ ]?714|PAD[ ]?716|PAD[ ]?717|PAD[ ]?718|PAD[ ]?720|PAD[ ]?721|PAD[ ]?722|PAD[ ]?790|PAD[ ]?792|PAD[ ]?900|PAD[ ]?9715D|PAD[ ]?9716DR|PAD[ ]?9718DR|PAD[ ]?9719QR|PAD[ ]?9720QR|TelePAD1030|Telepad1032|TelePAD730|TelePAD731|TelePAD732|TelePAD735Q|TelePAD830|TelePAD9730|TelePAD795|MegaPAD 1331|MegaPAD 1851|MegaPAD 2151',
  5489. // http://www1.viewsonic.com/products/computing/tablets/
  5490. 'ViewsonicTablet' => 'ViewPad 10pi|ViewPad 10e|ViewPad 10s|ViewPad E72|ViewPad7|ViewPad E100|ViewPad 7e|ViewSonic VB733|VB100a',
  5491. // http://www.odys.de/web/internet-tablet_en.html
  5492. 'OdysTablet' => 'LOOX|XENO10|ODYS[ -](Space|EVO|Xpress|NOON)|\bXELIO\b|Xelio10Pro|XELIO7PHONETAB|XELIO10EXTREME|XELIOPT2|NEO_QUAD10',
  5493. // http://www.captiva-power.de/products.html#tablets-en
  5494. 'CaptivaTablet' => 'CAPTIVA PAD',
  5495. // IconBIT - http://www.iconbit.com/products/tablets/
  5496. 'IconbitTablet' => 'NetTAB|NT-3702|NT-3702S|NT-3702S|NT-3603P|NT-3603P|NT-0704S|NT-0704S|NT-3805C|NT-3805C|NT-0806C|NT-0806C|NT-0909T|NT-0909T|NT-0907S|NT-0907S|NT-0902S|NT-0902S',
  5497. // http://www.teclast.com/topic.php?channelID=70&topicID=140&pid=63
  5498. 'TeclastTablet' => 'T98 4G|\bP80\b|\bX90HD\b|X98 Air|X98 Air 3G|\bX89\b|P80 3G|\bX80h\b|P98 Air|\bX89HD\b|P98 3G|\bP90HD\b|P89 3G|X98 3G|\bP70h\b|P79HD 3G|G18d 3G|\bP79HD\b|\bP89s\b|\bA88\b|\bP10HD\b|\bP19HD\b|G18 3G|\bP78HD\b|\bA78\b|\bP75\b|G17s 3G|G17h 3G|\bP85t\b|\bP90\b|\bP11\b|\bP98t\b|\bP98HD\b|\bG18d\b|\bP85s\b|\bP11HD\b|\bP88s\b|\bA80HD\b|\bA80se\b|\bA10h\b|\bP89\b|\bP78s\b|\bG18\b|\bP85\b|\bA70h\b|\bA70\b|\bG17\b|\bP18\b|\bA80s\b|\bA11s\b|\bP88HD\b|\bA80h\b|\bP76s\b|\bP76h\b|\bP98\b|\bA10HD\b|\bP78\b|\bP88\b|\bA11\b|\bA10t\b|\bP76a\b|\bP76t\b|\bP76e\b|\bP85HD\b|\bP85a\b|\bP86\b|\bP75HD\b|\bP76v\b|\bA12\b|\bP75a\b|\bA15\b|\bP76Ti\b|\bP81HD\b|\bA10\b|\bT760VE\b|\bT720HD\b|\bP76\b|\bP73\b|\bP71\b|\bP72\b|\bT720SE\b|\bC520Ti\b|\bT760\b|\bT720VE\b|T720-3GE|T720-WiFi',
  5499. // Onda - http://www.onda-tablet.com/buy-android-onda.html?dir=desc&limit=all&order=price
  5500. 'OndaTablet' => '\b(V975i|Vi30|VX530|V701|Vi60|V701s|Vi50|V801s|V719|Vx610w|VX610W|V819i|Vi10|VX580W|Vi10|V711s|V813|V811|V820w|V820|Vi20|V711|VI30W|V712|V891w|V972|V819w|V820w|Vi60|V820w|V711|V813s|V801|V819|V975s|V801|V819|V819|V818|V811|V712|V975m|V101w|V961w|V812|V818|V971|V971s|V919|V989|V116w|V102w|V973|Vi40)\b[\s]+',
  5501. 'JaytechTablet' => 'TPC-PA762',
  5502. 'BlaupunktTablet' => 'Endeavour 800NG|Endeavour 1010',
  5503. // http://www.digma.ru/support/download/
  5504. // @todo: Ebooks also (if requested)
  5505. 'DigmaTablet' => '\b(iDx10|iDx9|iDx8|iDx7|iDxD7|iDxD8|iDsQ8|iDsQ7|iDsQ8|iDsD10|iDnD7|3TS804H|iDsQ11|iDj7|iDs10)\b',
  5506. // http://www.evolioshop.com/ro/tablete-pc.html
  5507. // http://www.evolio.ro/support/downloads_static.html?cat=2
  5508. // @todo: Research some more
  5509. 'EvolioTablet' => 'ARIA_Mini_wifi|Aria[ _]Mini|Evolio X10|Evolio X7|Evolio X8|\bEvotab\b|\bNeura\b',
  5510. // @todo http://www.lavamobiles.com/tablets-data-cards
  5511. 'LavaTablet' => 'QPAD E704|\bIvoryS\b|E-TAB IVORY|\bE-TAB\b',
  5512. // http://www.breezetablet.com/
  5513. 'AocTablet' => 'MW0811|MW0812|MW0922|MTK8382|MW1031|MW0831|MW0821|MW0931|MW0712',
  5514. // http://www.mpmaneurope.com/en/products/internet-tablets-14/android-tablets-14/
  5515. 'MpmanTablet' => 'MP11 OCTA|MP10 OCTA|MPQC1114|MPQC1004|MPQC994|MPQC974|MPQC973|MPQC804|MPQC784|MPQC780|\bMPG7\b|MPDCG75|MPDCG71|MPDC1006|MP101DC|MPDC9000|MPDC905|MPDC706HD|MPDC706|MPDC705|MPDC110|MPDC100|MPDC99|MPDC97|MPDC88|MPDC8|MPDC77|MP709|MID701|MID711|MID170|MPDC703|MPQC1010',
  5516. // https://www.celkonmobiles.com/?_a=categoryphones&sid=2
  5517. 'CelkonTablet' => 'CT695|CT888|CT[\s]?910|CT7 Tab|CT9 Tab|CT3 Tab|CT2 Tab|CT1 Tab|C820|C720|\bCT-1\b',
  5518. // http://www.wolderelectronics.com/productos/manuales-y-guias-rapidas/categoria-2-miTab
  5519. 'WolderTablet' => 'miTab \b(DIAMOND|SPACE|BROOKLYN|NEO|FLY|MANHATTAN|FUNK|EVOLUTION|SKY|GOCAR|IRON|GENIUS|POP|MINT|EPSILON|BROADWAY|JUMP|HOP|LEGEND|NEW AGE|LINE|ADVANCE|FEEL|FOLLOW|LIKE|LINK|LIVE|THINK|FREEDOM|CHICAGO|CLEVELAND|BALTIMORE-GH|IOWA|BOSTON|SEATTLE|PHOENIX|DALLAS|IN 101|MasterChef)\b',
  5520. // http://www.mi.com/en
  5521. 'MiTablet' => '\bMI PAD\b|\bHM NOTE 1W\b',
  5522. // http://www.nbru.cn/index.html
  5523. 'NibiruTablet' => 'Nibiru M1|Nibiru Jupiter One',
  5524. // http://navroad.com/products/produkty/tablety/
  5525. // http://navroad.com/products/produkty/tablety/
  5526. 'NexoTablet' => 'NEXO NOVA|NEXO 10|NEXO AVIO|NEXO FREE|NEXO GO|NEXO EVO|NEXO 3G|NEXO SMART|NEXO KIDDO|NEXO MOBI',
  5527. // http://leader-online.com/new_site/product-category/tablets/
  5528. // http://www.leader-online.net.au/List/Tablet
  5529. 'LeaderTablet' => 'TBLT10Q|TBLT10I|TBL-10WDKB|TBL-10WDKBO2013|TBL-W230V2|TBL-W450|TBL-W500|SV572|TBLT7I|TBA-AC7-8G|TBLT79|TBL-8W16|TBL-10W32|TBL-10WKB|TBL-W100',
  5530. // http://www.datawind.com/ubislate/
  5531. 'UbislateTablet' => 'UbiSlate[\s]?7C',
  5532. // http://www.pocketbook-int.com/ru/support
  5533. 'PocketBookTablet' => 'Pocketbook',
  5534. // http://www.kocaso.com/product_tablet.html
  5535. 'KocasoTablet' => '\b(TB-1207)\b',
  5536. // http://global.hisense.com/product/asia/tablet/Sero7/201412/t20141215_91832.htm
  5537. 'HisenseTablet' => '\b(F5281|E2371)\b',
  5538. // http://www.tesco.com/direct/hudl/
  5539. 'Hudl' => 'Hudl HT7S3|Hudl 2',
  5540. // http://www.telstra.com.au/home-phone/thub-2/
  5541. 'TelstraTablet' => 'T-Hub2',
  5542. 'GenericTablet' => 'Android.*\b97D\b|Tablet(?!.*PC)|BNTV250A|MID-WCDMA|LogicPD Zoom2|\bA7EB\b|CatNova8|A1_07|CT704|CT1002|\bM721\b|rk30sdk|\bEVOTAB\b|M758A|ET904|ALUMIUM10|Smartfren Tab|Endeavour 1010|Tablet-PC-4|Tagi Tab|\bM6pro\b|CT1020W|arc 10HD|\bTP750\b|\bQTAQZ3\b'
  5543. );
  5544. /**
  5545. * List of mobile Operating Systems.
  5546. *
  5547. * @var array
  5548. */
  5549. protected static $operatingSystems = array(
  5550. 'AndroidOS' => 'Android',
  5551. 'BlackBerryOS' => 'blackberry|\bBB10\b|rim tablet os',
  5552. 'PalmOS' => 'PalmOS|avantgo|blazer|elaine|hiptop|palm|plucker|xiino',
  5553. 'SymbianOS' => 'Symbian|SymbOS|Series60|Series40|SYB-[0-9]+|\bS60\b',
  5554. // @reference: http://en.wikipedia.org/wiki/Windows_Mobile
  5555. 'WindowsMobileOS' => 'Windows CE.*(PPC|Smartphone|Mobile|[0-9]{3}x[0-9]{3})|Window Mobile|Windows Phone [0-9.]+|WCE;',
  5556. // @reference: http://en.wikipedia.org/wiki/Windows_Phone
  5557. // http://wifeng.cn/?r=blog&a=view&id=106
  5558. // http://nicksnettravels.builttoroam.com/post/2011/01/10/Bogus-Windows-Phone-7-User-Agent-String.aspx
  5559. // http://msdn.microsoft.com/library/ms537503.aspx
  5560. // https://msdn.microsoft.com/en-us/library/hh869301(v=vs.85).aspx
  5561. 'WindowsPhoneOS' => 'Windows Phone 10.0|Windows Phone 8.1|Windows Phone 8.0|Windows Phone OS|XBLWP7|ZuneWP7|Windows NT 6.[23]; ARM;',
  5562. 'iOS' => '\biPhone.*Mobile|\biPod|\biPad',
  5563. // http://en.wikipedia.org/wiki/MeeGo
  5564. // @todo: research MeeGo in UAs
  5565. 'MeeGoOS' => 'MeeGo',
  5566. // http://en.wikipedia.org/wiki/Maemo
  5567. // @todo: research Maemo in UAs
  5568. 'MaemoOS' => 'Maemo',
  5569. 'JavaOS' => 'J2ME/|\bMIDP\b|\bCLDC\b', // '|Java/' produces bug #135
  5570. 'webOS' => 'webOS|hpwOS',
  5571. 'badaOS' => '\bBada\b',
  5572. 'BREWOS' => 'BREW',
  5573. );
  5574. /**
  5575. * List of mobile User Agents.
  5576. *
  5577. * IMPORTANT: This is a list of only mobile browsers.
  5578. * Mobile Detect 2.x supports only mobile browsers,
  5579. * it was never designed to detect all browsers.
  5580. * The change will come in 2017 in the 3.x release for PHP7.
  5581. *
  5582. * @var array
  5583. */
  5584. protected static $browsers = array(
  5585. //'Vivaldi' => 'Vivaldi',
  5586. // @reference: https://developers.google.com/chrome/mobile/docs/user-agent
  5587. 'Chrome' => '\bCrMo\b|CriOS|Android.*Chrome/[.0-9]* (Mobile)?',
  5588. 'Dolfin' => '\bDolfin\b',
  5589. 'Opera' => 'Opera.*Mini|Opera.*Mobi|Android.*Opera|Mobile.*OPR/[0-9.]+|Coast/[0-9.]+',
  5590. 'Skyfire' => 'Skyfire',
  5591. 'Edge' => 'Mobile Safari/[.0-9]* Edge',
  5592. 'IE' => 'IEMobile|MSIEMobile', // |Trident/[.0-9]+
  5593. 'Firefox' => 'fennec|firefox.*maemo|(Mobile|Tablet).*Firefox|Firefox.*Mobile|FxiOS',
  5594. 'Bolt' => 'bolt',
  5595. 'TeaShark' => 'teashark',
  5596. 'Blazer' => 'Blazer',
  5597. // @reference: http://developer.apple.com/library/safari/#documentation/AppleApplications/Reference/SafariWebContent/OptimizingforSafarioniPhone/OptimizingforSafarioniPhone.html#//apple_ref/doc/uid/TP40006517-SW3
  5598. 'Safari' => 'Version.*Mobile.*Safari|Safari.*Mobile|MobileSafari',
  5599. // http://en.wikipedia.org/wiki/Midori_(web_browser)
  5600. //'Midori' => 'midori',
  5601. //'Tizen' => 'Tizen',
  5602. 'UCBrowser' => 'UC.*Browser|UCWEB',
  5603. 'baiduboxapp' => 'baiduboxapp',
  5604. 'baidubrowser' => 'baidubrowser',
  5605. // https://github.com/serbanghita/Mobile-Detect/issues/7
  5606. 'DiigoBrowser' => 'DiigoBrowser',
  5607. // http://www.puffinbrowser.com/index.php
  5608. 'Puffin' => 'Puffin',
  5609. // http://mercury-browser.com/index.html
  5610. 'Mercury' => '\bMercury\b',
  5611. // http://en.wikipedia.org/wiki/Obigo_Browser
  5612. 'ObigoBrowser' => 'Obigo',
  5613. // http://en.wikipedia.org/wiki/NetFront
  5614. 'NetFront' => 'NF-Browser',
  5615. // @reference: http://en.wikipedia.org/wiki/Minimo
  5616. // http://en.wikipedia.org/wiki/Vision_Mobile_Browser
  5617. 'GenericBrowser' => 'NokiaBrowser|OviBrowser|OneBrowser|TwonkyBeamBrowser|SEMC.*Browser|FlyFlow|Minimo|NetFront|Novarra-Vision|MQQBrowser|MicroMessenger',
  5618. // @reference: https://en.wikipedia.org/wiki/Pale_Moon_(web_browser)
  5619. 'PaleMoon' => 'Android.*PaleMoon|Mobile.*PaleMoon',
  5620. );
  5621. /**
  5622. * Utilities.
  5623. *
  5624. * @var array
  5625. */
  5626. protected static $utilities = array(
  5627. // Experimental. When a mobile device wants to switch to 'Desktop Mode'.
  5628. // http://scottcate.com/technology/windows-phone-8-ie10-desktop-or-mobile/
  5629. // https://github.com/serbanghita/Mobile-Detect/issues/57#issuecomment-15024011
  5630. // https://developers.facebook.com/docs/sharing/best-practices
  5631. 'Bot' => 'Googlebot|facebookexternalhit|AdsBot-Google|Google Keyword Suggestion|Facebot|YandexBot|YandexMobileBot|bingbot|ia_archiver|AhrefsBot|Ezooms|GSLFbot|WBSearchBot|Twitterbot|TweetmemeBot|Twikle|PaperLiBot|Wotbox|UnwindFetchor|Exabot|MJ12bot|YandexImages|TurnitinBot|Pingdom',
  5632. 'MobileBot' => 'Googlebot-Mobile|AdsBot-Google-Mobile|YahooSeeker/M1A1-R2D2',
  5633. 'DesktopMode' => 'WPDesktop',
  5634. 'TV' => 'SonyDTV|HbbTV', // experimental
  5635. 'WebKit' => '(webkit)[ /]([\w.]+)',
  5636. // @todo: Include JXD consoles.
  5637. 'Console' => '\b(Nintendo|Nintendo WiiU|Nintendo 3DS|PLAYSTATION|Xbox)\b',
  5638. 'Watch' => 'SM-V700',
  5639. );
  5640. /**
  5641. * All possible HTTP headers that represent the
  5642. * User-Agent string.
  5643. *
  5644. * @var array
  5645. */
  5646. protected static $uaHttpHeaders = array(
  5647. // The default User-Agent string.
  5648. 'HTTP_USER_AGENT',
  5649. // Header can occur on devices using Opera Mini.
  5650. 'HTTP_X_OPERAMINI_PHONE_UA',
  5651. // Vodafone specific header: http://www.seoprinciple.com/mobile-web-community-still-angry-at-vodafone/24/
  5652. 'HTTP_X_DEVICE_USER_AGENT',
  5653. 'HTTP_X_ORIGINAL_USER_AGENT',
  5654. 'HTTP_X_SKYFIRE_PHONE',
  5655. 'HTTP_X_BOLT_PHONE_UA',
  5656. 'HTTP_DEVICE_STOCK_UA',
  5657. 'HTTP_X_UCBROWSER_DEVICE_UA'
  5658. );
  5659. /**
  5660. * The individual segments that could exist in a User-Agent string. VER refers to the regular
  5661. * expression defined in the constant self::VER.
  5662. *
  5663. * @var array
  5664. */
  5665. protected static $properties = array(
  5666. // Build
  5667. 'Mobile' => 'Mobile/[VER]',
  5668. 'Build' => 'Build/[VER]',
  5669. 'Version' => 'Version/[VER]',
  5670. 'VendorID' => 'VendorID/[VER]',
  5671. // Devices
  5672. 'iPad' => 'iPad.*CPU[a-z ]+[VER]',
  5673. 'iPhone' => 'iPhone.*CPU[a-z ]+[VER]',
  5674. 'iPod' => 'iPod.*CPU[a-z ]+[VER]',
  5675. //'BlackBerry' => array('BlackBerry[VER]', 'BlackBerry [VER];'),
  5676. 'Kindle' => 'Kindle/[VER]',
  5677. // Browser
  5678. 'Chrome' => array('Chrome/[VER]', 'CriOS/[VER]', 'CrMo/[VER]'),
  5679. 'Coast' => array('Coast/[VER]'),
  5680. 'Dolfin' => 'Dolfin/[VER]',
  5681. // @reference: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/User-Agent/Firefox
  5682. 'Firefox' => array('Firefox/[VER]', 'FxiOS/[VER]'),
  5683. 'Fennec' => 'Fennec/[VER]',
  5684. // http://msdn.microsoft.com/en-us/library/ms537503(v=vs.85).aspx
  5685. // https://msdn.microsoft.com/en-us/library/ie/hh869301(v=vs.85).aspx
  5686. 'Edge' => 'Edge/[VER]',
  5687. 'IE' => array('IEMobile/[VER];', 'IEMobile [VER]', 'MSIE [VER];', 'Trident/[0-9.]+;.*rv:[VER]'),
  5688. // http://en.wikipedia.org/wiki/NetFront
  5689. 'NetFront' => 'NetFront/[VER]',
  5690. 'NokiaBrowser' => 'NokiaBrowser/[VER]',
  5691. 'Opera' => array( ' OPR/[VER]', 'Opera Mini/[VER]', 'Version/[VER]' ),
  5692. 'Opera Mini' => 'Opera Mini/[VER]',
  5693. 'Opera Mobi' => 'Version/[VER]',
  5694. 'UC Browser' => 'UC Browser[VER]',
  5695. 'MQQBrowser' => 'MQQBrowser/[VER]',
  5696. 'MicroMessenger' => 'MicroMessenger/[VER]',
  5697. 'baiduboxapp' => 'baiduboxapp/[VER]',
  5698. 'baidubrowser' => 'baidubrowser/[VER]',
  5699. 'SamsungBrowser' => 'SamsungBrowser/[VER]',
  5700. 'Iron' => 'Iron/[VER]',
  5701. // @note: Safari 7534.48.3 is actually Version 5.1.
  5702. // @note: On BlackBerry the Version is overwriten by the OS.
  5703. 'Safari' => array( 'Version/[VER]', 'Safari/[VER]' ),
  5704. 'Skyfire' => 'Skyfire/[VER]',
  5705. 'Tizen' => 'Tizen/[VER]',
  5706. 'Webkit' => 'webkit[ /][VER]',
  5707. 'PaleMoon' => 'PaleMoon/[VER]',
  5708. // Engine
  5709. 'Gecko' => 'Gecko/[VER]',
  5710. 'Trident' => 'Trident/[VER]',
  5711. 'Presto' => 'Presto/[VER]',
  5712. 'Goanna' => 'Goanna/[VER]',
  5713. // OS
  5714. 'iOS' => ' \bi?OS\b [VER][ ;]{1}',
  5715. 'Android' => 'Android [VER]',
  5716. 'BlackBerry' => array('BlackBerry[\w]+/[VER]', 'BlackBerry.*Version/[VER]', 'Version/[VER]'),
  5717. 'BREW' => 'BREW [VER]',
  5718. 'Java' => 'Java/[VER]',
  5719. // @reference: http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/08/29/introducing-the-ie9-on-windows-phone-mango-user-agent-string.aspx
  5720. // @reference: http://en.wikipedia.org/wiki/Windows_NT#Releases
  5721. 'Windows Phone OS' => array( 'Windows Phone OS [VER]', 'Windows Phone [VER]'),
  5722. 'Windows Phone' => 'Windows Phone [VER]',
  5723. 'Windows CE' => 'Windows CE/[VER]',
  5724. // http://social.msdn.microsoft.com/Forums/en-US/windowsdeveloperpreviewgeneral/thread/6be392da-4d2f-41b4-8354-8dcee20c85cd
  5725. 'Windows NT' => 'Windows NT [VER]',
  5726. 'Symbian' => array('SymbianOS/[VER]', 'Symbian/[VER]'),
  5727. 'webOS' => array('webOS/[VER]', 'hpwOS/[VER];'),
  5728. );
  5729. /**
  5730. * Construct an instance of this class.
  5731. *
  5732. * @param array $headers Specify the headers as injection. Should be PHP _SERVER flavored.
  5733. * If left empty, will use the global _SERVER['HTTP_*'] vars instead.
  5734. * @param string $userAgent Inject the User-Agent header. If null, will use HTTP_USER_AGENT
  5735. * from the $headers array instead.
  5736. */
  5737. public function __construct(
  5738. array $headers = null,
  5739. $userAgent = null
  5740. ) {
  5741. $this->setHttpHeaders($headers);
  5742. $this->setUserAgent($userAgent);
  5743. }
  5744. /**
  5745. * Get the current script version.
  5746. * This is useful for the demo.php file,
  5747. * so people can check on what version they are testing
  5748. * for mobile devices.
  5749. *
  5750. * @return string The version number in semantic version format.
  5751. */
  5752. public static function getScriptVersion()
  5753. {
  5754. return self::VERSION;
  5755. }
  5756. /**
  5757. * Set the HTTP Headers. Must be PHP-flavored. This method will reset existing headers.
  5758. *
  5759. * @param array $httpHeaders The headers to set. If null, then using PHP's _SERVER to extract
  5760. * the headers. The default null is left for backwards compatibility.
  5761. */
  5762. public function setHttpHeaders($httpHeaders = null)
  5763. {
  5764. // use global _SERVER if $httpHeaders aren't defined
  5765. if (!is_array($httpHeaders) || !count($httpHeaders)) {
  5766. $httpHeaders = $_SERVER;
  5767. }
  5768. // clear existing headers
  5769. $this->httpHeaders = array();
  5770. // Only save HTTP headers. In PHP land, that means only _SERVER vars that
  5771. // start with HTTP_.
  5772. foreach ($httpHeaders as $key => $value) {
  5773. if (substr($key, 0, 5) === 'HTTP_') {
  5774. $this->httpHeaders[$key] = $value;
  5775. }
  5776. }
  5777. // In case we're dealing with CloudFront, we need to know.
  5778. $this->setCfHeaders($httpHeaders);
  5779. }
  5780. /**
  5781. * Retrieves the HTTP headers.
  5782. *
  5783. * @return array
  5784. */
  5785. public function getHttpHeaders()
  5786. {
  5787. return $this->httpHeaders;
  5788. }
  5789. /**
  5790. * Retrieves a particular header. If it doesn't exist, no exception/error is caused.
  5791. * Simply null is returned.
  5792. *
  5793. * @param string $header The name of the header to retrieve. Can be HTTP compliant such as
  5794. * "User-Agent" or "X-Device-User-Agent" or can be php-esque with the
  5795. * all-caps, HTTP_ prefixed, underscore seperated awesomeness.
  5796. *
  5797. * @return string|null The value of the header.
  5798. */
  5799. public function getHttpHeader($header)
  5800. {
  5801. // are we using PHP-flavored headers?
  5802. if (strpos($header, '_') === false) {
  5803. $header = str_replace('-', '_', $header);
  5804. $header = strtoupper($header);
  5805. }
  5806. // test the alternate, too
  5807. $altHeader = 'HTTP_' . $header;
  5808. //Test both the regular and the HTTP_ prefix
  5809. if (isset($this->httpHeaders[$header])) {
  5810. return $this->httpHeaders[$header];
  5811. } elseif (isset($this->httpHeaders[$altHeader])) {
  5812. return $this->httpHeaders[$altHeader];
  5813. }
  5814. return null;
  5815. }
  5816. public function getMobileHeaders()
  5817. {
  5818. return self::$mobileHeaders;
  5819. }
  5820. /**
  5821. * Get all possible HTTP headers that
  5822. * can contain the User-Agent string.
  5823. *
  5824. * @return array List of HTTP headers.
  5825. */
  5826. public function getUaHttpHeaders()
  5827. {
  5828. return self::$uaHttpHeaders;
  5829. }
  5830. /**
  5831. * Set CloudFront headers
  5832. * http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/header-caching.html#header-caching-web-device
  5833. *
  5834. * @param array $cfHeaders List of HTTP headers
  5835. *
  5836. * @return boolean If there were CloudFront headers to be set
  5837. */
  5838. public function setCfHeaders($cfHeaders = null) {
  5839. // use global _SERVER if $cfHeaders aren't defined
  5840. if (!is_array($cfHeaders) || !count($cfHeaders)) {
  5841. $cfHeaders = $_SERVER;
  5842. }
  5843. // clear existing headers
  5844. $this->cloudfrontHeaders = array();
  5845. // Only save CLOUDFRONT headers. In PHP land, that means only _SERVER vars that
  5846. // start with cloudfront-.
  5847. $response = false;
  5848. foreach ($cfHeaders as $key => $value) {
  5849. if (substr(strtolower($key), 0, 16) === 'http_cloudfront_') {
  5850. $this->cloudfrontHeaders[strtoupper($key)] = $value;
  5851. $response = true;
  5852. }
  5853. }
  5854. return $response;
  5855. }
  5856. /**
  5857. * Retrieves the cloudfront headers.
  5858. *
  5859. * @return array
  5860. */
  5861. public function getCfHeaders()
  5862. {
  5863. return $this->cloudfrontHeaders;
  5864. }
  5865. /**
  5866. * Set the User-Agent to be used.
  5867. *
  5868. * @param string $userAgent The user agent string to set.
  5869. *
  5870. * @return string|null
  5871. */
  5872. public function setUserAgent($userAgent = null)
  5873. {
  5874. // Invalidate cache due to #375
  5875. $this->cache = array();
  5876. if (false === empty($userAgent)) {
  5877. return $this->userAgent = $userAgent;
  5878. } else {
  5879. $this->userAgent = null;
  5880. foreach ($this->getUaHttpHeaders() as $altHeader) {
  5881. if (false === empty($this->httpHeaders[$altHeader])) { // @todo: should use getHttpHeader(), but it would be slow. (Serban)
  5882. $this->userAgent .= $this->httpHeaders[$altHeader] . " ";
  5883. }
  5884. }
  5885. if (!empty($this->userAgent)) {
  5886. return $this->userAgent = trim($this->userAgent);
  5887. }
  5888. }
  5889. if (count($this->getCfHeaders()) > 0) {
  5890. return $this->userAgent = 'Amazon CloudFront';
  5891. }
  5892. return $this->userAgent = null;
  5893. }
  5894. /**
  5895. * Retrieve the User-Agent.
  5896. *
  5897. * @return string|null The user agent if it's set.
  5898. */
  5899. public function getUserAgent()
  5900. {
  5901. return $this->userAgent;
  5902. }
  5903. /**
  5904. * Set the detection type. Must be one of self::DETECTION_TYPE_MOBILE or
  5905. * self::DETECTION_TYPE_EXTENDED. Otherwise, nothing is set.
  5906. *
  5907. * @deprecated since version 2.6.9
  5908. *
  5909. * @param string $type The type. Must be a self::DETECTION_TYPE_* constant. The default
  5910. * parameter is null which will default to self::DETECTION_TYPE_MOBILE.
  5911. */
  5912. public function setDetectionType($type = null)
  5913. {
  5914. if ($type === null) {
  5915. $type = self::DETECTION_TYPE_MOBILE;
  5916. }
  5917. if ($type !== self::DETECTION_TYPE_MOBILE && $type !== self::DETECTION_TYPE_EXTENDED) {
  5918. return;
  5919. }
  5920. $this->detectionType = $type;
  5921. }
  5922. public function getMatchingRegex()
  5923. {
  5924. return $this->matchingRegex;
  5925. }
  5926. public function getMatchesArray()
  5927. {
  5928. return $this->matchesArray;
  5929. }
  5930. /**
  5931. * Retrieve the list of known phone devices.
  5932. *
  5933. * @return array List of phone devices.
  5934. */
  5935. public static function getPhoneDevices()
  5936. {
  5937. return self::$phoneDevices;
  5938. }
  5939. /**
  5940. * Retrieve the list of known tablet devices.
  5941. *
  5942. * @return array List of tablet devices.
  5943. */
  5944. public static function getTabletDevices()
  5945. {
  5946. return self::$tabletDevices;
  5947. }
  5948. /**
  5949. * Alias for getBrowsers() method.
  5950. *
  5951. * @return array List of user agents.
  5952. */
  5953. public static function getUserAgents()
  5954. {
  5955. return self::getBrowsers();
  5956. }
  5957. /**
  5958. * Retrieve the list of known browsers. Specifically, the user agents.
  5959. *
  5960. * @return array List of browsers / user agents.
  5961. */
  5962. public static function getBrowsers()
  5963. {
  5964. return self::$browsers;
  5965. }
  5966. /**
  5967. * Retrieve the list of known utilities.
  5968. *
  5969. * @return array List of utilities.
  5970. */
  5971. public static function getUtilities()
  5972. {
  5973. return self::$utilities;
  5974. }
  5975. /**
  5976. * Method gets the mobile detection rules. This method is used for the magic methods $detect->is*().
  5977. *
  5978. * @deprecated since version 2.6.9
  5979. *
  5980. * @return array All the rules (but not extended).
  5981. */
  5982. public static function getMobileDetectionRules()
  5983. {
  5984. static $rules;
  5985. if (!$rules) {
  5986. $rules = array_merge(
  5987. self::$phoneDevices,
  5988. self::$tabletDevices,
  5989. self::$operatingSystems,
  5990. self::$browsers
  5991. );
  5992. }
  5993. return $rules;
  5994. }
  5995. /**
  5996. * Method gets the mobile detection rules + utilities.
  5997. * The reason this is separate is because utilities rules
  5998. * don't necessary imply mobile. This method is used inside
  5999. * the new $detect->is('stuff') method.
  6000. *
  6001. * @deprecated since version 2.6.9
  6002. *
  6003. * @return array All the rules + extended.
  6004. */
  6005. public function getMobileDetectionRulesExtended()
  6006. {
  6007. static $rules;
  6008. if (!$rules) {
  6009. // Merge all rules together.
  6010. $rules = array_merge(
  6011. self::$phoneDevices,
  6012. self::$tabletDevices,
  6013. self::$operatingSystems,
  6014. self::$browsers,
  6015. self::$utilities
  6016. );
  6017. }
  6018. return $rules;
  6019. }
  6020. /**
  6021. * Retrieve the current set of rules.
  6022. *
  6023. * @deprecated since version 2.6.9
  6024. *
  6025. * @return array
  6026. */
  6027. public function getRules()
  6028. {
  6029. if ($this->detectionType == self::DETECTION_TYPE_EXTENDED) {
  6030. return self::getMobileDetectionRulesExtended();
  6031. } else {
  6032. return self::getMobileDetectionRules();
  6033. }
  6034. }
  6035. /**
  6036. * Retrieve the list of mobile operating systems.
  6037. *
  6038. * @return array The list of mobile operating systems.
  6039. */
  6040. public static function getOperatingSystems()
  6041. {
  6042. return self::$operatingSystems;
  6043. }
  6044. /**
  6045. * Check the HTTP headers for signs of mobile.
  6046. * This is the fastest mobile check possible; it's used
  6047. * inside isMobile() method.
  6048. *
  6049. * @return bool
  6050. */
  6051. public function checkHttpHeadersForMobile()
  6052. {
  6053. foreach ($this->getMobileHeaders() as $mobileHeader => $matchType) {
  6054. if (isset($this->httpHeaders[$mobileHeader])) {
  6055. if (is_array($matchType['matches'])) {
  6056. foreach ($matchType['matches'] as $_match) {
  6057. if (strpos($this->httpHeaders[$mobileHeader], $_match) !== false) {
  6058. return true;
  6059. }
  6060. }
  6061. return false;
  6062. } else {
  6063. return true;
  6064. }
  6065. }
  6066. }
  6067. return false;
  6068. }
  6069. /**
  6070. * Magic overloading method.
  6071. *
  6072. * @method boolean is[...]()
  6073. * @param string $name
  6074. * @param array $arguments
  6075. * @return mixed
  6076. * @throws BadMethodCallException when the method doesn't exist and doesn't start with 'is'
  6077. */
  6078. public function __call($name, $arguments)
  6079. {
  6080. // make sure the name starts with 'is', otherwise
  6081. if (substr($name, 0, 2) !== 'is') {
  6082. throw new BadMethodCallException("No such method exists: $name");
  6083. }
  6084. $this->setDetectionType(self::DETECTION_TYPE_MOBILE);
  6085. $key = substr($name, 2);
  6086. return $this->matchUAAgainstKey($key);
  6087. }
  6088. /**
  6089. * Find a detection rule that matches the current User-agent.
  6090. *
  6091. * @param null $userAgent deprecated
  6092. * @return boolean
  6093. */
  6094. protected function matchDetectionRulesAgainstUA($userAgent = null)
  6095. {
  6096. // Begin general search.
  6097. foreach ($this->getRules() as $_regex) {
  6098. if (empty($_regex)) {
  6099. continue;
  6100. }
  6101. if ($this->match($_regex, $userAgent)) {
  6102. return true;
  6103. }
  6104. }
  6105. return false;
  6106. }
  6107. /**
  6108. * Search for a certain key in the rules array.
  6109. * If the key is found then try to match the corresponding
  6110. * regex against the User-Agent.
  6111. *
  6112. * @param string $key
  6113. *
  6114. * @return boolean
  6115. */
  6116. protected function matchUAAgainstKey($key)
  6117. {
  6118. // Make the keys lowercase so we can match: isIphone(), isiPhone(), isiphone(), etc.
  6119. $key = strtolower($key);
  6120. if (false === isset($this->cache[$key])) {
  6121. // change the keys to lower case
  6122. $_rules = array_change_key_case($this->getRules());
  6123. if (false === empty($_rules[$key])) {
  6124. $this->cache[$key] = $this->match($_rules[$key]);
  6125. }
  6126. if (false === isset($this->cache[$key])) {
  6127. $this->cache[$key] = false;
  6128. }
  6129. }
  6130. return $this->cache[$key];
  6131. }
  6132. /**
  6133. * Check if the device is mobile.
  6134. * Returns true if any type of mobile device detected, including special ones
  6135. * @param null $userAgent deprecated
  6136. * @param null $httpHeaders deprecated
  6137. * @return bool
  6138. */
  6139. public function isMobile($userAgent = null, $httpHeaders = null)
  6140. {
  6141. if ($httpHeaders) {
  6142. $this->setHttpHeaders($httpHeaders);
  6143. }
  6144. if ($userAgent) {
  6145. $this->setUserAgent($userAgent);
  6146. }
  6147. // Check specifically for cloudfront headers if the useragent === 'Amazon CloudFront'
  6148. if ($this->getUserAgent() === 'Amazon CloudFront') {
  6149. $cfHeaders = $this->getCfHeaders();
  6150. if(array_key_exists('HTTP_CLOUDFRONT_IS_MOBILE_VIEWER', $cfHeaders) && $cfHeaders['HTTP_CLOUDFRONT_IS_MOBILE_VIEWER'] === 'true') {
  6151. return true;
  6152. }
  6153. }
  6154. $this->setDetectionType(self::DETECTION_TYPE_MOBILE);
  6155. if ($this->checkHttpHeadersForMobile()) {
  6156. return true;
  6157. } else {
  6158. return $this->matchDetectionRulesAgainstUA();
  6159. }
  6160. }
  6161. /**
  6162. * Check if the device is a tablet.
  6163. * Return true if any type of tablet device is detected.
  6164. *
  6165. * @param string $userAgent deprecated
  6166. * @param array $httpHeaders deprecated
  6167. * @return bool
  6168. */
  6169. public function isTablet($userAgent = null, $httpHeaders = null)
  6170. {
  6171. // Check specifically for cloudfront headers if the useragent === 'Amazon CloudFront'
  6172. if ($this->getUserAgent() === 'Amazon CloudFront') {
  6173. $cfHeaders = $this->getCfHeaders();
  6174. if(array_key_exists('HTTP_CLOUDFRONT_IS_TABLET_VIEWER', $cfHeaders) && $cfHeaders['HTTP_CLOUDFRONT_IS_TABLET_VIEWER'] === 'true') {
  6175. return true;
  6176. }
  6177. }
  6178. $this->setDetectionType(self::DETECTION_TYPE_MOBILE);
  6179. foreach (self::$tabletDevices as $_regex) {
  6180. if ($this->match($_regex, $userAgent)) {
  6181. return true;
  6182. }
  6183. }
  6184. return false;
  6185. }
  6186. /**
  6187. * This method checks for a certain property in the
  6188. * userAgent.
  6189. * @todo: The httpHeaders part is not yet used.
  6190. *
  6191. * @param string $key
  6192. * @param string $userAgent deprecated
  6193. * @param string $httpHeaders deprecated
  6194. * @return bool|int|null
  6195. */
  6196. public function is($key, $userAgent = null, $httpHeaders = null)
  6197. {
  6198. // Set the UA and HTTP headers only if needed (eg. batch mode).
  6199. if ($httpHeaders) {
  6200. $this->setHttpHeaders($httpHeaders);
  6201. }
  6202. if ($userAgent) {
  6203. $this->setUserAgent($userAgent);
  6204. }
  6205. $this->setDetectionType(self::DETECTION_TYPE_EXTENDED);
  6206. return $this->matchUAAgainstKey($key);
  6207. }
  6208. /**
  6209. * Some detection rules are relative (not standard),
  6210. * because of the diversity of devices, vendors and
  6211. * their conventions in representing the User-Agent or
  6212. * the HTTP headers.
  6213. *
  6214. * This method will be used to check custom regexes against
  6215. * the User-Agent string.
  6216. *
  6217. * @param $regex
  6218. * @param string $userAgent
  6219. * @return bool
  6220. *
  6221. * @todo: search in the HTTP headers too.
  6222. */
  6223. public function match($regex, $userAgent = null)
  6224. {
  6225. $match = (bool) preg_match(sprintf('#%s#is', $regex), (false === empty($userAgent) ? $userAgent : $this->userAgent), $matches);
  6226. // If positive match is found, store the results for debug.
  6227. if ($match) {
  6228. $this->matchingRegex = $regex;
  6229. $this->matchesArray = $matches;
  6230. }
  6231. return $match;
  6232. }
  6233. /**
  6234. * Get the properties array.
  6235. *
  6236. * @return array
  6237. */
  6238. public static function getProperties()
  6239. {
  6240. return self::$properties;
  6241. }
  6242. /**
  6243. * Prepare the version number.
  6244. *
  6245. * @todo Remove the error supression from str_replace() call.
  6246. *
  6247. * @param string $ver The string version, like "2.6.21.2152";
  6248. *
  6249. * @return float
  6250. */
  6251. public function prepareVersionNo($ver)
  6252. {
  6253. $ver = str_replace(array('_', ' ', '/'), '.', $ver);
  6254. $arrVer = explode('.', $ver, 2);
  6255. if (isset($arrVer[1])) {
  6256. $arrVer[1] = @str_replace('.', '', $arrVer[1]); // @todo: treat strings versions.
  6257. }
  6258. return (float) implode('.', $arrVer);
  6259. }
  6260. /**
  6261. * Check the version of the given property in the User-Agent.
  6262. * Will return a float number. (eg. 2_0 will return 2.0, 4.3.1 will return 4.31)
  6263. *
  6264. * @param string $propertyName The name of the property. See self::getProperties() array
  6265. * keys for all possible properties.
  6266. * @param string $type Either self::VERSION_TYPE_STRING to get a string value or
  6267. * self::VERSION_TYPE_FLOAT indicating a float value. This parameter
  6268. * is optional and defaults to self::VERSION_TYPE_STRING. Passing an
  6269. * invalid parameter will default to the this type as well.
  6270. *
  6271. * @return string|float The version of the property we are trying to extract.
  6272. */
  6273. public function version($propertyName, $type = self::VERSION_TYPE_STRING)
  6274. {
  6275. if (empty($propertyName)) {
  6276. return false;
  6277. }
  6278. // set the $type to the default if we don't recognize the type
  6279. if ($type !== self::VERSION_TYPE_STRING && $type !== self::VERSION_TYPE_FLOAT) {
  6280. $type = self::VERSION_TYPE_STRING;
  6281. }
  6282. $properties = self::getProperties();
  6283. // Check if the property exists in the properties array.
  6284. if (true === isset($properties[$propertyName])) {
  6285. // Prepare the pattern to be matched.
  6286. // Make sure we always deal with an array (string is converted).
  6287. $properties[$propertyName] = (array) $properties[$propertyName];
  6288. foreach ($properties[$propertyName] as $propertyMatchString) {
  6289. $propertyPattern = str_replace('[VER]', self::VER, $propertyMatchString);
  6290. // Identify and extract the version.
  6291. preg_match(sprintf('#%s#is', $propertyPattern), $this->userAgent, $match);
  6292. if (false === empty($match[1])) {
  6293. $version = ($type == self::VERSION_TYPE_FLOAT ? $this->prepareVersionNo($match[1]) : $match[1]);
  6294. return $version;
  6295. }
  6296. }
  6297. }
  6298. return false;
  6299. }
  6300. /**
  6301. * Retrieve the mobile grading, using self::MOBILE_GRADE_* constants.
  6302. *
  6303. * @return string One of the self::MOBILE_GRADE_* constants.
  6304. */
  6305. public function mobileGrade()
  6306. {
  6307. $isMobile = $this->isMobile();
  6308. if (
  6309. // Apple iOS 4-7.0 – Tested on the original iPad (4.3 / 5.0), iPad 2 (4.3 / 5.1 / 6.1), iPad 3 (5.1 / 6.0), iPad Mini (6.1), iPad Retina (7.0), iPhone 3GS (4.3), iPhone 4 (4.3 / 5.1), iPhone 4S (5.1 / 6.0), iPhone 5 (6.0), and iPhone 5S (7.0)
  6310. $this->is('iOS') && $this->version('iPad', self::VERSION_TYPE_FLOAT) >= 4.3 ||
  6311. $this->is('iOS') && $this->version('iPhone', self::VERSION_TYPE_FLOAT) >= 4.3 ||
  6312. $this->is('iOS') && $this->version('iPod', self::VERSION_TYPE_FLOAT) >= 4.3 ||
  6313. // Android 2.1-2.3 - Tested on the HTC Incredible (2.2), original Droid (2.2), HTC Aria (2.1), Google Nexus S (2.3). Functional on 1.5 & 1.6 but performance may be sluggish, tested on Google G1 (1.5)
  6314. // Android 3.1 (Honeycomb) - Tested on the Samsung Galaxy Tab 10.1 and Motorola XOOM
  6315. // Android 4.0 (ICS) - Tested on a Galaxy Nexus. Note: transition performance can be poor on upgraded devices
  6316. // Android 4.1 (Jelly Bean) - Tested on a Galaxy Nexus and Galaxy 7
  6317. ( $this->version('Android', self::VERSION_TYPE_FLOAT)>2.1 && $this->is('Webkit') ) ||
  6318. // Windows Phone 7.5-8 - Tested on the HTC Surround (7.5), HTC Trophy (7.5), LG-E900 (7.5), Nokia 800 (7.8), HTC Mazaa (7.8), Nokia Lumia 520 (8), Nokia Lumia 920 (8), HTC 8x (8)
  6319. $this->version('Windows Phone OS', self::VERSION_TYPE_FLOAT) >= 7.5 ||
  6320. // Tested on the Torch 9800 (6) and Style 9670 (6), BlackBerry® Torch 9810 (7), BlackBerry Z10 (10)
  6321. $this->is('BlackBerry') && $this->version('BlackBerry', self::VERSION_TYPE_FLOAT) >= 6.0 ||
  6322. // Blackberry Playbook (1.0-2.0) - Tested on PlayBook
  6323. $this->match('Playbook.*Tablet') ||
  6324. // Palm WebOS (1.4-3.0) - Tested on the Palm Pixi (1.4), Pre (1.4), Pre 2 (2.0), HP TouchPad (3.0)
  6325. ( $this->version('webOS', self::VERSION_TYPE_FLOAT) >= 1.4 && $this->match('Palm|Pre|Pixi') ) ||
  6326. // Palm WebOS 3.0 - Tested on HP TouchPad
  6327. $this->match('hp.*TouchPad') ||
  6328. // Firefox Mobile 18 - Tested on Android 2.3 and 4.1 devices
  6329. ( $this->is('Firefox') && $this->version('Firefox', self::VERSION_TYPE_FLOAT) >= 18 ) ||
  6330. // Chrome for Android - Tested on Android 4.0, 4.1 device
  6331. ( $this->is('Chrome') && $this->is('AndroidOS') && $this->version('Android', self::VERSION_TYPE_FLOAT) >= 4.0 ) ||
  6332. // Skyfire 4.1 - Tested on Android 2.3 device
  6333. ( $this->is('Skyfire') && $this->version('Skyfire', self::VERSION_TYPE_FLOAT) >= 4.1 && $this->is('AndroidOS') && $this->version('Android', self::VERSION_TYPE_FLOAT) >= 2.3 ) ||
  6334. // Opera Mobile 11.5-12: Tested on Android 2.3
  6335. ( $this->is('Opera') && $this->version('Opera Mobi', self::VERSION_TYPE_FLOAT) >= 11.5 && $this->is('AndroidOS') ) ||
  6336. // Meego 1.2 - Tested on Nokia 950 and N9
  6337. $this->is('MeeGoOS') ||
  6338. // Tizen (pre-release) - Tested on early hardware
  6339. $this->is('Tizen') ||
  6340. // Samsung Bada 2.0 - Tested on a Samsung Wave 3, Dolphin browser
  6341. // @todo: more tests here!
  6342. $this->is('Dolfin') && $this->version('Bada', self::VERSION_TYPE_FLOAT) >= 2.0 ||
  6343. // UC Browser - Tested on Android 2.3 device
  6344. ( ($this->is('UC Browser') || $this->is('Dolfin')) && $this->version('Android', self::VERSION_TYPE_FLOAT) >= 2.3 ) ||
  6345. // Kindle 3 and Fire - Tested on the built-in WebKit browser for each
  6346. ( $this->match('Kindle Fire') ||
  6347. $this->is('Kindle') && $this->version('Kindle', self::VERSION_TYPE_FLOAT) >= 3.0 ) ||
  6348. // Nook Color 1.4.1 - Tested on original Nook Color, not Nook Tablet
  6349. $this->is('AndroidOS') && $this->is('NookTablet') ||
  6350. // Chrome Desktop 16-24 - Tested on OS X 10.7 and Windows 7
  6351. $this->version('Chrome', self::VERSION_TYPE_FLOAT) >= 16 && !$isMobile ||
  6352. // Safari Desktop 5-6 - Tested on OS X 10.7 and Windows 7
  6353. $this->version('Safari', self::VERSION_TYPE_FLOAT) >= 5.0 && !$isMobile ||
  6354. // Firefox Desktop 10-18 - Tested on OS X 10.7 and Windows 7
  6355. $this->version('Firefox', self::VERSION_TYPE_FLOAT) >= 10.0 && !$isMobile ||
  6356. // Internet Explorer 7-9 - Tested on Windows XP, Vista and 7
  6357. $this->version('IE', self::VERSION_TYPE_FLOAT) >= 7.0 && !$isMobile ||
  6358. // Opera Desktop 10-12 - Tested on OS X 10.7 and Windows 7
  6359. $this->version('Opera', self::VERSION_TYPE_FLOAT) >= 10 && !$isMobile
  6360. ){
  6361. return self::MOBILE_GRADE_A;
  6362. }
  6363. if (
  6364. $this->is('iOS') && $this->version('iPad', self::VERSION_TYPE_FLOAT)<4.3 ||
  6365. $this->is('iOS') && $this->version('iPhone', self::VERSION_TYPE_FLOAT)<4.3 ||
  6366. $this->is('iOS') && $this->version('iPod', self::VERSION_TYPE_FLOAT)<4.3 ||
  6367. // Blackberry 5.0: Tested on the Storm 2 9550, Bold 9770
  6368. $this->is('Blackberry') && $this->version('BlackBerry', self::VERSION_TYPE_FLOAT) >= 5 && $this->version('BlackBerry', self::VERSION_TYPE_FLOAT)<6 ||
  6369. //Opera Mini (5.0-6.5) - Tested on iOS 3.2/4.3 and Android 2.3
  6370. ($this->version('Opera Mini', self::VERSION_TYPE_FLOAT) >= 5.0 && $this->version('Opera Mini', self::VERSION_TYPE_FLOAT) <= 7.0 &&
  6371. ($this->version('Android', self::VERSION_TYPE_FLOAT) >= 2.3 || $this->is('iOS')) ) ||
  6372. // Nokia Symbian^3 - Tested on Nokia N8 (Symbian^3), C7 (Symbian^3), also works on N97 (Symbian^1)
  6373. $this->match('NokiaN8|NokiaC7|N97.*Series60|Symbian/3') ||
  6374. // @todo: report this (tested on Nokia N71)
  6375. $this->version('Opera Mobi', self::VERSION_TYPE_FLOAT) >= 11 && $this->is('SymbianOS')
  6376. ){
  6377. return self::MOBILE_GRADE_B;
  6378. }
  6379. if (
  6380. // Blackberry 4.x - Tested on the Curve 8330
  6381. $this->version('BlackBerry', self::VERSION_TYPE_FLOAT) <= 5.0 ||
  6382. // Windows Mobile - Tested on the HTC Leo (WinMo 5.2)
  6383. $this->match('MSIEMobile|Windows CE.*Mobile') || $this->version('Windows Mobile', self::VERSION_TYPE_FLOAT) <= 5.2 ||
  6384. // Tested on original iPhone (3.1), iPhone 3 (3.2)
  6385. $this->is('iOS') && $this->version('iPad', self::VERSION_TYPE_FLOAT) <= 3.2 ||
  6386. $this->is('iOS') && $this->version('iPhone', self::VERSION_TYPE_FLOAT) <= 3.2 ||
  6387. $this->is('iOS') && $this->version('iPod', self::VERSION_TYPE_FLOAT) <= 3.2 ||
  6388. // Internet Explorer 7 and older - Tested on Windows XP
  6389. $this->version('IE', self::VERSION_TYPE_FLOAT) <= 7.0 && !$isMobile
  6390. ){
  6391. return self::MOBILE_GRADE_C;
  6392. }
  6393. // All older smartphone platforms and featurephones - Any device that doesn't support media queries
  6394. // will receive the basic, C grade experience.
  6395. return self::MOBILE_GRADE_C;
  6396. }
  6397. }
  6398. $mobileDetect = new Mobile_Detect;
  6399. $userDevice = ($mobileDetect->isMobile() ? ($mobileDetect->isTablet() ? 'tablet' : 'phone') : 'computer');
  6400. function orgEmail($header = "Message From Admin", $title = "Important Message", $user = "Organizr User", $mainMessage = "", $button = null, $buttonURL = null, $subTitle = "", $subMessage = ""){
  6401. $path = getServerPath();
  6402. return '
  6403. <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional //EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6404. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
  6405. <head>
  6406. <!--[if gte mso 9]><xml>
  6407. <o:OfficeDocumentSettings>
  6408. <o:AllowPNG/>
  6409. <o:PixelsPerInch>96</o:PixelsPerInch>
  6410. </o:OfficeDocumentSettings>
  6411. </xml><![endif]-->
  6412. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6413. <meta name="viewport" content="width=device-width">
  6414. <!--[if !mso]><!-->
  6415. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6416. <!--<![endif]-->
  6417. <title></title>
  6418. <!--[if !mso]><!-- -->
  6419. <link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet" type="text/css">
  6420. <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">
  6421. <!--<![endif]-->
  6422. <style type="text/css" id="media-query">
  6423. body {
  6424. margin: 0;
  6425. padding: 0;
  6426. }
  6427. table,
  6428. tr,
  6429. td {
  6430. vertical-align: top;
  6431. border-collapse: collapse;
  6432. }
  6433. .ie-browser table,
  6434. .mso-container table {
  6435. table-layout: fixed;
  6436. }
  6437. * {
  6438. line-height: inherit;
  6439. }
  6440. a[x-apple-data-detectors=true] {
  6441. color: inherit !important;
  6442. text-decoration: none !important;
  6443. }
  6444. [owa] .img-container div,
  6445. [owa] .img-container button {
  6446. display: block !important;
  6447. }
  6448. [owa] .fullwidth button {
  6449. width: 100% !important;
  6450. }
  6451. [owa] .block-grid .col {
  6452. display: table-cell;
  6453. float: none !important;
  6454. vertical-align: top;
  6455. }
  6456. .ie-browser .num12,
  6457. .ie-browser .block-grid,
  6458. [owa] .num12,
  6459. [owa] .block-grid {
  6460. width: 615px !important;
  6461. }
  6462. .ExternalClass,
  6463. .ExternalClass p,
  6464. .ExternalClass span,
  6465. .ExternalClass font,
  6466. .ExternalClass td,
  6467. .ExternalClass div {
  6468. line-height: 100%;
  6469. }
  6470. .ie-browser .mixed-two-up .num4,
  6471. [owa] .mixed-two-up .num4 {
  6472. width: 204px !important;
  6473. }
  6474. .ie-browser .mixed-two-up .num8,
  6475. [owa] .mixed-two-up .num8 {
  6476. width: 408px !important;
  6477. }
  6478. .ie-browser .block-grid.two-up .col,
  6479. [owa] .block-grid.two-up .col {
  6480. width: 307px !important;
  6481. }
  6482. .ie-browser .block-grid.three-up .col,
  6483. [owa] .block-grid.three-up .col {
  6484. width: 205px !important;
  6485. }
  6486. .ie-browser .block-grid.four-up .col,
  6487. [owa] .block-grid.four-up .col {
  6488. width: 153px !important;
  6489. }
  6490. .ie-browser .block-grid.five-up .col,
  6491. [owa] .block-grid.five-up .col {
  6492. width: 123px !important;
  6493. }
  6494. .ie-browser .block-grid.six-up .col,
  6495. [owa] .block-grid.six-up .col {
  6496. width: 102px !important;
  6497. }
  6498. .ie-browser .block-grid.seven-up .col,
  6499. [owa] .block-grid.seven-up .col {
  6500. width: 87px !important;
  6501. }
  6502. .ie-browser .block-grid.eight-up .col,
  6503. [owa] .block-grid.eight-up .col {
  6504. width: 76px !important;
  6505. }
  6506. .ie-browser .block-grid.nine-up .col,
  6507. [owa] .block-grid.nine-up .col {
  6508. width: 68px !important;
  6509. }
  6510. .ie-browser .block-grid.ten-up .col,
  6511. [owa] .block-grid.ten-up .col {
  6512. width: 61px !important;
  6513. }
  6514. .ie-browser .block-grid.eleven-up .col,
  6515. [owa] .block-grid.eleven-up .col {
  6516. width: 55px !important;
  6517. }
  6518. .ie-browser .block-grid.twelve-up .col,
  6519. [owa] .block-grid.twelve-up .col {
  6520. width: 51px !important;
  6521. }
  6522. @media only screen and (min-width: 635px) {
  6523. .block-grid {
  6524. width: 615px !important;
  6525. }
  6526. .block-grid .col {
  6527. display: table-cell;
  6528. Float: none !important;
  6529. vertical-align: top;
  6530. }
  6531. .block-grid .col.num12 {
  6532. width: 615px !important;
  6533. }
  6534. .block-grid.mixed-two-up .col.num4 {
  6535. width: 204px !important;
  6536. }
  6537. .block-grid.mixed-two-up .col.num8 {
  6538. width: 408px !important;
  6539. }
  6540. .block-grid.two-up .col {
  6541. width: 307px !important;
  6542. }
  6543. .block-grid.three-up .col {
  6544. width: 205px !important;
  6545. }
  6546. .block-grid.four-up .col {
  6547. width: 153px !important;
  6548. }
  6549. .block-grid.five-up .col {
  6550. width: 123px !important;
  6551. }
  6552. .block-grid.six-up .col {
  6553. width: 102px !important;
  6554. }
  6555. .block-grid.seven-up .col {
  6556. width: 87px !important;
  6557. }
  6558. .block-grid.eight-up .col {
  6559. width: 76px !important;
  6560. }
  6561. .block-grid.nine-up .col {
  6562. width: 68px !important;
  6563. }
  6564. .block-grid.ten-up .col {
  6565. width: 61px !important;
  6566. }
  6567. .block-grid.eleven-up .col {
  6568. width: 55px !important;
  6569. }
  6570. .block-grid.twelve-up .col {
  6571. width: 51px !important;
  6572. }
  6573. }
  6574. @media (max-width: 635px) {
  6575. .block-grid,
  6576. .col {
  6577. min-width: 320px !important;
  6578. max-width: 100% !important;
  6579. }
  6580. .block-grid {
  6581. width: calc(100% - 40px) !important;
  6582. }
  6583. .col {
  6584. width: 100% !important;
  6585. }
  6586. .col>div {
  6587. margin: 0 auto;
  6588. }
  6589. img.fullwidth {
  6590. max-width: 100% !important;
  6591. }
  6592. }
  6593. </style>
  6594. </head>
  6595. <body class="clean-body" style="margin: 0;padding: 0;-webkit-text-size-adjust: 100%;background-color: #FFFFFF">
  6596. <!--[if IE]><div class="ie-browser"><![endif]-->
  6597. <!--[if mso]><div class="mso-container"><![endif]-->
  6598. <div class="nl-container" style="min-width: 320px;Margin: 0 auto;background-color: #FFFFFF">
  6599. <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td align="center" style="background-color: #FFFFFF;"><![endif]-->
  6600. <div style="background-color:#333333;">
  6601. <div style="Margin: 0 auto;min-width: 320px;max-width: 615px;width: 615px;width: calc(30500% - 193060px);overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;"
  6602. class="block-grid ">
  6603. <div style="border-collapse: collapse;display: table;width: 100%;">
  6604. <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="background-color:#333333;" align="center"><table cellpadding="0" cellspacing="0" border="0" style="width: 615px;"><tr class="layout-full-width" style="background-color:transparent;"><![endif]-->
  6605. <!--[if (mso)|(IE)]><td align="center" width="615" style=" width:615px; padding-right: 0px; padding-left: 0px; padding-top:0px; padding-bottom:0px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><![endif]-->
  6606. <div class="col num12" style="min-width: 320px;max-width: 615px;width: 615px;width: calc(29500% - 180810px);background-color: transparent;">
  6607. <div style="background-color: transparent; width: 100% !important;">
  6608. <!--[if (!mso)&(!IE)]><!-->
  6609. <div style="border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent; padding-top:0px; padding-bottom:0px; padding-right: 0px; padding-left: 0px;">
  6610. <!--<![endif]-->
  6611. <div align="left" class="img-container left fullwidth" style="padding-right: 30px; padding-left: 30px;">
  6612. <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 30px; padding-left: 30px;" align="left"><![endif]-->
  6613. <img class="left fullwidth" align="left" border="0" src="'.$path.'images/organizr-logo-h.png" alt="Image" title="Image"
  6614. style="outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: block !important;border: 0;height: auto;float: none;width: 100%;max-width: 555px"
  6615. width="555">
  6616. <!--[if mso]></td></tr></table><![endif]-->
  6617. </div>
  6618. <!--[if (!mso)&(!IE)]><!-->
  6619. </div>
  6620. <!--<![endif]-->
  6621. </div>
  6622. </div>
  6623. <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
  6624. </div>
  6625. </div>
  6626. </div>
  6627. <div style="background-color:#333333;">
  6628. <div style="Margin: 0 auto;min-width: 320px;max-width: 615px;width: 615px;width: calc(30500% - 193060px);overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;"
  6629. class="block-grid ">
  6630. <div style="border-collapse: collapse;display: table;width: 100%;">
  6631. <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="background-color:#333333;" align="center"><table cellpadding="0" cellspacing="0" border="0" style="width: 615px;"><tr class="layout-full-width" style="background-color:transparent;"><![endif]-->
  6632. <!--[if (mso)|(IE)]><td align="center" width="615" style=" width:615px; padding-right: 0px; padding-left: 0px; padding-top:0px; padding-bottom:0px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><![endif]-->
  6633. <div class="col num12" style="min-width: 320px;max-width: 615px;width: 615px;width: calc(29500% - 180810px);background-color: transparent;">
  6634. <div style="background-color: transparent; width: 100% !important;">
  6635. <!--[if (!mso)&(!IE)]><!-->
  6636. <div style="border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent; padding-top:0px; padding-bottom:0px; padding-right: 0px; padding-left: 0px;">
  6637. <!--<![endif]-->
  6638. <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top: 0px; padding-bottom: 0px;"><![endif]-->
  6639. <div style="font-family:\'Lato\', Tahoma, Verdana, Segoe, sans-serif;line-height:120%;color:#FFFFFF; padding-right: 0px; padding-left: 0px; padding-top: 0px; padding-bottom: 0px;">
  6640. <div style="font-size:12px;line-height:14px;color:#FFFFFF;font-family:\'Lato\', Tahoma, Verdana, Segoe, sans-serif;text-align:left;">
  6641. <p style="margin: 0;font-size: 12px;line-height: 14px;text-align: center"><span style="font-size: 16px; line-height: 19px;"><strong><span style="line-height: 19px; font-size: 16px;">'.$header.'</span></strong>
  6642. </span>
  6643. </p>
  6644. </div>
  6645. </div>
  6646. <!--[if mso]></td></tr></table><![endif]-->
  6647. <!--[if (!mso)&(!IE)]><!-->
  6648. </div>
  6649. <!--<![endif]-->
  6650. </div>
  6651. </div>
  6652. <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
  6653. </div>
  6654. </div>
  6655. </div>
  6656. <div style="background-color:#393939;">
  6657. <div style="Margin: 0 auto;min-width: 320px;max-width: 615px;width: 615px;width: calc(30500% - 193060px);overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;"
  6658. class="block-grid ">
  6659. <div style="border-collapse: collapse;display: table;width: 100%;">
  6660. <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="background-color:#393939;" align="center"><table cellpadding="0" cellspacing="0" border="0" style="width: 615px;"><tr class="layout-full-width" style="background-color:transparent;"><![endif]-->
  6661. <!--[if (mso)|(IE)]><td align="center" width="615" style=" width:615px; padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><![endif]-->
  6662. <div class="col num12" style="min-width: 320px;max-width: 615px;width: 615px;width: calc(29500% - 180810px);background-color: transparent;">
  6663. <div style="background-color: transparent; width: 100% !important;">
  6664. <!--[if (!mso)&(!IE)]><!-->
  6665. <div style="border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
  6666. <!--<![endif]-->
  6667. <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 30px; padding-left: 30px; padding-top: 0px; padding-bottom: 0px;"><![endif]-->
  6668. <div style="font-family:\'Ubuntu\', Tahoma, Verdana, Segoe, sans-serif;line-height:120%;color:#FFFFFF; padding-right: 30px; padding-left: 30px; padding-top: 0px; padding-bottom: 0px;">
  6669. <div style="font-family:Ubuntu, Tahoma, Verdana, Segoe, sans-serif;font-size:12px;line-height:14px;color:#FFFFFF;text-align:left;">
  6670. <p style="margin: 0;font-size: 12px;line-height: 14px;text-align: center"><span style="font-size: 16px; line-height: 19px;"><strong>'.$title.'</strong></span></p>
  6671. </div>
  6672. </div>
  6673. <!--[if mso]></td></tr></table><![endif]-->
  6674. <div style="padding-right: 5px; padding-left: 5px; padding-top: 5px; padding-bottom: 5px;">
  6675. <!--[if (mso)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 5px;padding-left: 5px; padding-top: 5px; padding-bottom: 5px;"><table width="55%" align="center" cellpadding="0" cellspacing="0" border="0"><tr><td><![endif]-->
  6676. <div align="center">
  6677. <div style="border-top: 2px solid #66D9EF; width:55%; line-height:2px; height:2px; font-size:2px;">&#160;</div>
  6678. </div>
  6679. <!--[if (mso)]></td></tr></table></td></tr></table><![endif]-->
  6680. </div>
  6681. <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 30px; padding-left: 30px; padding-top: 15px; padding-bottom: 10px;"><![endif]-->
  6682. <div style="font-family:\'Lato\', Tahoma, Verdana, Segoe, sans-serif;line-height:120%;color:#FFFFFF; padding-right: 30px; padding-left: 30px; padding-top: 15px; padding-bottom: 10px;">
  6683. <div style="font-family:\'Lato\',Tahoma,Verdana,Segoe,sans-serif;font-size:12px;line-height:14px;color:#FFFFFF;text-align:left;">
  6684. <p style="margin: 0;font-size: 12px;line-height: 14px"><span style="font-size: 28px; line-height: 33px;">Hey '.$user.',</span></p>
  6685. </div>
  6686. </div>
  6687. <!--[if mso]></td></tr></table><![endif]-->
  6688. <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 15px; padding-left: 30px; padding-top: 10px; padding-bottom: 25px;"><![endif]-->
  6689. <div style="font-family:\'Lato\', Tahoma, Verdana, Segoe, sans-serif;line-height:180%;color:#FFFFFF; padding-right: 15px; padding-left: 30px; padding-top: 10px; padding-bottom: 25px;">
  6690. <div style="font-size:12px;line-height:22px;font-family:\'Lato\',Tahoma,Verdana,Segoe,sans-serif;color:#FFFFFF;text-align:left;">
  6691. <p style="margin: 0;font-size: 14px;line-height: 25px"><span style="font-size: 18px; line-height: 32px;"><em><span style="line-height: 32px; font-size: 18px;">'.$mainMessage.'</span></em>
  6692. </span>
  6693. </p>
  6694. </div>
  6695. </div>
  6696. <!--[if mso]></td></tr></table><![endif]-->
  6697. <div align="center" class="button-container center" style="padding-right: 30px; padding-left: 30px; padding-top:15px; padding-bottom:15px;">
  6698. <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;"><tr><td style="padding-right: 30px; padding-left: 30px; padding-top:15px; padding-bottom:15px;" align="center"><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="'.$path.'" style="height:48px; v-text-anchor:middle; width:194px;" arcsize="53%" strokecolor="" fillcolor="#66D9EF"><w:anchorlock/><center style="color:#000; font-family:\'Lato\', Tahoma, Verdana, Segoe, sans-serif; font-size:18px;"><![endif]-->
  6699. <a href="'.$buttonURL.'" target="_blank" style="display: inline-block;text-decoration: none;-webkit-text-size-adjust: none;text-align: center;color: #000; background-color: #66D9EF; border-radius: 25px; -webkit-border-radius: 25px; -moz-border-radius: 25px; max-width: 180px; width: 114px; width: auto; border-top: 3px solid transparent; border-right: 3px solid transparent; border-bottom: 3px solid transparent; border-left: 3px solid transparent; padding-top: 5px; padding-right: 30px; padding-bottom: 5px; padding-left: 30px; font-family: \'Lato\', Tahoma, Verdana, Segoe, sans-serif;mso-border-alt: none">
  6700. <span style="font-size:12px;line-height:21px;"><span style="font-size: 18px; line-height: 32px;" data-mce-style="font-size: 18px; line-height: 44px;">'.$button.'</span></span></a>
  6701. <!--[if mso]></center></v:roundrect></td></tr></table><![endif]-->
  6702. </div>
  6703. <!--[if mso]></center></v:roundrect></td></tr></table><![endif]-->
  6704. </div>
  6705. <!--[if (!mso)&(!IE)]><!-->
  6706. </div>
  6707. <!--<![endif]-->
  6708. </div>
  6709. </div>
  6710. <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
  6711. </div>
  6712. </div>
  6713. </div>
  6714. <div style="background-color:#ffffff;">
  6715. <div style="Margin: 0 auto;min-width: 320px;max-width: 615px;width: 615px;width: calc(30500% - 193060px);overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;"
  6716. class="block-grid ">
  6717. <div style="border-collapse: collapse;display: table;width: 100%;">
  6718. <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="background-color:#ffffff;" align="center"><table cellpadding="0" cellspacing="0" border="0" style="width: 615px;"><tr class="layout-full-width" style="background-color:transparent;"><![endif]-->
  6719. <!--[if (mso)|(IE)]><td align="center" width="615" style=" width:615px; padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:30px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><![endif]-->
  6720. <div class="col num12" style="min-width: 320px;max-width: 615px;width: 615px;width: calc(29500% - 180810px);background-color: transparent;">
  6721. <div style="background-color: transparent; width: 100% !important;">
  6722. <!--[if (!mso)&(!IE)]><!-->
  6723. <div style="border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent; padding-top:5px; padding-bottom:30px; padding-right: 0px; padding-left: 0px;">
  6724. <!--<![endif]-->
  6725. <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 10px; padding-left: 10px; padding-top: 0px; padding-bottom: 10px;"><![endif]-->
  6726. <div style="font-family:\'Lato\', Tahoma, Verdana, Segoe, sans-serif;line-height:120%;color:#555555; padding-right: 10px; padding-left: 10px; padding-top: 0px; padding-bottom: 10px;">
  6727. <div style="font-size:12px;line-height:14px;color:#555555;font-family:\'Lato\', Tahoma, Verdana, Segoe, sans-serif;text-align:left;">
  6728. <p style="margin: 0;font-size: 14px;line-height: 17px;text-align: center"><strong><span style="font-size: 26px; line-height: 31px;">'.$subTitle.'<br></span></strong></p>
  6729. </div>
  6730. </div>
  6731. <!--[if mso]></td></tr></table><![endif]-->
  6732. <div style="padding-right: 20px; padding-left: 20px; padding-top: 15px; padding-bottom: 20px;">
  6733. <!--[if (mso)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 20px;padding-left: 20px; padding-top: 15px; padding-bottom: 20px;"><table width="40%" align="center" cellpadding="0" cellspacing="0" border="0"><tr><td><![endif]-->
  6734. <div align="center">
  6735. <div style="border-top: 3px solid #66D9EF; width:40%; line-height:3px; height:3px; font-size:3px;">&#160;</div>
  6736. </div>
  6737. <!--[if (mso)]></td></tr></table></td></tr></table><![endif]-->
  6738. </div>
  6739. <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 10px; padding-left: 10px; padding-top: 0px; padding-bottom: 0px;"><![endif]-->
  6740. <div style="font-family:\'Lato\', Tahoma, Verdana, Segoe, sans-serif;line-height:180%;color:#7E7D7D; padding-right: 10px; padding-left: 10px; padding-top: 0px; padding-bottom: 0px;">
  6741. <div style="font-size:12px;line-height:22px;color:#7E7D7D;font-family:\'Lato\', Tahoma, Verdana, Segoe, sans-serif;text-align:left;">
  6742. <p style="margin: 0;font-size: 14px;line-height: 25px;text-align: center"><em><span style="font-size: 18px; line-height: 32px;">'.$subMessage.'</span></em></p>
  6743. </div>
  6744. </div>
  6745. <!--[if mso]></td></tr></table><![endif]-->
  6746. <!--[if (!mso)&(!IE)]><!-->
  6747. </div>
  6748. <!--<![endif]-->
  6749. </div>
  6750. </div>
  6751. <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
  6752. </div>
  6753. </div>
  6754. </div>
  6755. <div style="background-color:#333333;">
  6756. <div style="Margin: 0 auto;min-width: 320px;max-width: 615px;width: 615px;width: calc(30500% - 193060px);overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;"
  6757. class="block-grid ">
  6758. <div style="border-collapse: collapse;display: table;width: 100%;">
  6759. <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="background-color:#333333;" align="center"><table cellpadding="0" cellspacing="0" border="0" style="width: 615px;"><tr class="layout-full-width" style="background-color:transparent;"><![endif]-->
  6760. <!--[if (mso)|(IE)]><td align="center" width="615" style=" width:615px; padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><![endif]-->
  6761. <div class="col num12" style="min-width: 320px;max-width: 615px;width: 615px;width: calc(29500% - 180810px);background-color: transparent;">
  6762. <div style="background-color: transparent; width: 100% !important;">
  6763. <!--[if (!mso)&(!IE)]><!-->
  6764. <div style="border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
  6765. <!--<![endif]-->
  6766. <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 10px; padding-left: 10px; padding-top: 10px; padding-bottom: 10px;"><![endif]-->
  6767. <div style="font-family:\'Lato\', Tahoma, Verdana, Segoe, sans-serif;line-height:120%;color:#959595; padding-right: 10px; padding-left: 10px; padding-top: 10px; padding-bottom: 10px;">
  6768. <div style="font-size:12px;line-height:14px;color:#959595;font-family:\'Lato\', Tahoma, Verdana, Segoe, sans-serif;text-align:left;">
  6769. <p style="margin: 0;font-size: 14px;line-height: 17px;text-align: center">This&#160;email was sent by <a style="color:#AD80FD;text-decoration: underline;" title="Organizr"
  6770. href="https://github.com/causefx/Organizr" target="_blank" rel="noopener noreferrer">Organizr</a><strong><br></strong></p>
  6771. </div>
  6772. </div>
  6773. <!--[if mso]></td></tr></table><![endif]-->
  6774. <!--[if (!mso)&(!IE)]><!-->
  6775. </div>
  6776. <!--<![endif]-->
  6777. </div>
  6778. </div>
  6779. <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
  6780. </div>
  6781. </div>
  6782. </div>
  6783. <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
  6784. </div>
  6785. <!--[if (mso)|(IE)]></div><![endif]-->
  6786. </body>
  6787. </html>
  6788. ';
  6789. }
  6790. function mimeTypes(){
  6791. return array(
  6792. '123' => 'application/vnd.lotus-1-2-3',
  6793. '3dml' => 'text/vnd.in3d.3dml',
  6794. '3ds' => 'image/x-3ds',
  6795. '3g2' => 'video/3gpp2',
  6796. '3gp' => 'video/3gpp',
  6797. '7z' => 'application/x-7z-compressed',
  6798. 'aab' => 'application/x-authorware-bin',
  6799. 'aac' => 'audio/x-aac',
  6800. 'aam' => 'application/x-authorware-map',
  6801. 'aas' => 'application/x-authorware-seg',
  6802. 'abw' => 'application/x-abiword',
  6803. 'ac' => 'application/pkix-attr-cert',
  6804. 'acc' => 'application/vnd.americandynamics.acc',
  6805. 'ace' => 'application/x-ace-compressed',
  6806. 'acu' => 'application/vnd.acucobol',
  6807. 'acutc' => 'application/vnd.acucorp',
  6808. 'adp' => 'audio/adpcm',
  6809. 'aep' => 'application/vnd.audiograph',
  6810. 'afm' => 'application/x-font-type1',
  6811. 'afp' => 'application/vnd.ibm.modcap',
  6812. 'ahead' => 'application/vnd.ahead.space',
  6813. 'ai' => 'application/postscript',
  6814. 'aif' => 'audio/x-aiff',
  6815. 'aifc' => 'audio/x-aiff',
  6816. 'aiff' => 'audio/x-aiff',
  6817. 'air' => 'application/vnd.adobe.air-application-installer-package+zip',
  6818. 'ait' => 'application/vnd.dvb.ait',
  6819. 'ami' => 'application/vnd.amiga.ami',
  6820. 'apk' => 'application/vnd.android.package-archive',
  6821. 'appcache' => 'text/cache-manifest',
  6822. 'application' => 'application/x-ms-application',
  6823. 'apr' => 'application/vnd.lotus-approach',
  6824. 'arc' => 'application/x-freearc',
  6825. 'asc' => 'application/pgp-signature',
  6826. 'asf' => 'video/x-ms-asf',
  6827. 'asm' => 'text/x-asm',
  6828. 'aso' => 'application/vnd.accpac.simply.aso',
  6829. 'asx' => 'video/x-ms-asf',
  6830. 'atc' => 'application/vnd.acucorp',
  6831. 'atom' => 'application/atom+xml',
  6832. 'atomcat' => 'application/atomcat+xml',
  6833. 'atomsvc' => 'application/atomsvc+xml',
  6834. 'atx' => 'application/vnd.antix.game-component',
  6835. 'au' => 'audio/basic',
  6836. 'avi' => 'video/x-msvideo',
  6837. 'aw' => 'application/applixware',
  6838. 'azf' => 'application/vnd.airzip.filesecure.azf',
  6839. 'azs' => 'application/vnd.airzip.filesecure.azs',
  6840. 'azw' => 'application/vnd.amazon.ebook',
  6841. 'bat' => 'application/x-msdownload',
  6842. 'bcpio' => 'application/x-bcpio',
  6843. 'bdf' => 'application/x-font-bdf',
  6844. 'bdm' => 'application/vnd.syncml.dm+wbxml',
  6845. 'bed' => 'application/vnd.realvnc.bed',
  6846. 'bh2' => 'application/vnd.fujitsu.oasysprs',
  6847. 'bin' => 'application/octet-stream',
  6848. 'blb' => 'application/x-blorb',
  6849. 'blorb' => 'application/x-blorb',
  6850. 'bmi' => 'application/vnd.bmi',
  6851. 'bmp' => 'image/bmp',
  6852. 'book' => 'application/vnd.framemaker',
  6853. 'box' => 'application/vnd.previewsystems.box',
  6854. 'boz' => 'application/x-bzip2',
  6855. 'bpk' => 'application/octet-stream',
  6856. 'btif' => 'image/prs.btif',
  6857. 'bz' => 'application/x-bzip',
  6858. 'bz2' => 'application/x-bzip2',
  6859. 'c' => 'text/x-c',
  6860. 'c11amc' => 'application/vnd.cluetrust.cartomobile-config',
  6861. 'c11amz' => 'application/vnd.cluetrust.cartomobile-config-pkg',
  6862. 'c4d' => 'application/vnd.clonk.c4group',
  6863. 'c4f' => 'application/vnd.clonk.c4group',
  6864. 'c4g' => 'application/vnd.clonk.c4group',
  6865. 'c4p' => 'application/vnd.clonk.c4group',
  6866. 'c4u' => 'application/vnd.clonk.c4group',
  6867. 'cab' => 'application/vnd.ms-cab-compressed',
  6868. 'caf' => 'audio/x-caf',
  6869. 'cap' => 'application/vnd.tcpdump.pcap',
  6870. 'car' => 'application/vnd.curl.car',
  6871. 'cat' => 'application/vnd.ms-pki.seccat',
  6872. 'cb7' => 'application/x-cbr',
  6873. 'cba' => 'application/x-cbr',
  6874. 'cbr' => 'application/x-cbr',
  6875. 'cbt' => 'application/x-cbr',
  6876. 'cbz' => 'application/x-cbr',
  6877. 'cc' => 'text/x-c',
  6878. 'cct' => 'application/x-director',
  6879. 'ccxml' => 'application/ccxml+xml',
  6880. 'cdbcmsg' => 'application/vnd.contact.cmsg',
  6881. 'cdf' => 'application/x-netcdf',
  6882. 'cdkey' => 'application/vnd.mediastation.cdkey',
  6883. 'cdmia' => 'application/cdmi-capability',
  6884. 'cdmic' => 'application/cdmi-container',
  6885. 'cdmid' => 'application/cdmi-domain',
  6886. 'cdmio' => 'application/cdmi-object',
  6887. 'cdmiq' => 'application/cdmi-queue',
  6888. 'cdx' => 'chemical/x-cdx',
  6889. 'cdxml' => 'application/vnd.chemdraw+xml',
  6890. 'cdy' => 'application/vnd.cinderella',
  6891. 'cer' => 'application/pkix-cert',
  6892. 'cfs' => 'application/x-cfs-compressed',
  6893. 'cgm' => 'image/cgm',
  6894. 'chat' => 'application/x-chat',
  6895. 'chm' => 'application/vnd.ms-htmlhelp',
  6896. 'chrt' => 'application/vnd.kde.kchart',
  6897. 'cif' => 'chemical/x-cif',
  6898. 'cii' => 'application/vnd.anser-web-certificate-issue-initiation',
  6899. 'cil' => 'application/vnd.ms-artgalry',
  6900. 'cla' => 'application/vnd.claymore',
  6901. 'class' => 'application/java-vm',
  6902. 'clkk' => 'application/vnd.crick.clicker.keyboard',
  6903. 'clkp' => 'application/vnd.crick.clicker.palette',
  6904. 'clkt' => 'application/vnd.crick.clicker.template',
  6905. 'clkw' => 'application/vnd.crick.clicker.wordbank',
  6906. 'clkx' => 'application/vnd.crick.clicker',
  6907. 'clp' => 'application/x-msclip',
  6908. 'cmc' => 'application/vnd.cosmocaller',
  6909. 'cmdf' => 'chemical/x-cmdf',
  6910. 'cml' => 'chemical/x-cml',
  6911. 'cmp' => 'application/vnd.yellowriver-custom-menu',
  6912. 'cmx' => 'image/x-cmx',
  6913. 'cod' => 'application/vnd.rim.cod',
  6914. 'com' => 'application/x-msdownload',
  6915. 'conf' => 'text/plain',
  6916. 'cpio' => 'application/x-cpio',
  6917. 'cpp' => 'text/x-c',
  6918. 'cpt' => 'application/mac-compactpro',
  6919. 'crd' => 'application/x-mscardfile',
  6920. 'crl' => 'application/pkix-crl',
  6921. 'crt' => 'application/x-x509-ca-cert',
  6922. 'cryptonote' => 'application/vnd.rig.cryptonote',
  6923. 'csh' => 'application/x-csh',
  6924. 'csml' => 'chemical/x-csml',
  6925. 'csp' => 'application/vnd.commonspace',
  6926. 'css' => 'text/css',
  6927. 'cst' => 'application/x-director',
  6928. 'csv' => 'text/csv',
  6929. 'cu' => 'application/cu-seeme',
  6930. 'curl' => 'text/vnd.curl',
  6931. 'cww' => 'application/prs.cww',
  6932. 'cxt' => 'application/x-director',
  6933. 'cxx' => 'text/x-c',
  6934. 'dae' => 'model/vnd.collada+xml',
  6935. 'daf' => 'application/vnd.mobius.daf',
  6936. 'dart' => 'application/vnd.dart',
  6937. 'dataless' => 'application/vnd.fdsn.seed',
  6938. 'davmount' => 'application/davmount+xml',
  6939. 'dbk' => 'application/docbook+xml',
  6940. 'dcr' => 'application/x-director',
  6941. 'dcurl' => 'text/vnd.curl.dcurl',
  6942. 'dd2' => 'application/vnd.oma.dd2+xml',
  6943. 'ddd' => 'application/vnd.fujixerox.ddd',
  6944. 'deb' => 'application/x-debian-package',
  6945. 'def' => 'text/plain',
  6946. 'deploy' => 'application/octet-stream',
  6947. 'der' => 'application/x-x509-ca-cert',
  6948. 'dfac' => 'application/vnd.dreamfactory',
  6949. 'dgc' => 'application/x-dgc-compressed',
  6950. 'dic' => 'text/x-c',
  6951. 'dir' => 'application/x-director',
  6952. 'dis' => 'application/vnd.mobius.dis',
  6953. 'dist' => 'application/octet-stream',
  6954. 'distz' => 'application/octet-stream',
  6955. 'djv' => 'image/vnd.djvu',
  6956. 'djvu' => 'image/vnd.djvu',
  6957. 'dll' => 'application/x-msdownload',
  6958. 'dmg' => 'application/x-apple-diskimage',
  6959. 'dmp' => 'application/vnd.tcpdump.pcap',
  6960. 'dms' => 'application/octet-stream',
  6961. 'dna' => 'application/vnd.dna',
  6962. 'doc' => 'application/msword',
  6963. 'docm' => 'application/vnd.ms-word.document.macroenabled.12',
  6964. 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
  6965. 'dot' => 'application/msword',
  6966. 'dotm' => 'application/vnd.ms-word.template.macroenabled.12',
  6967. 'dotx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template',
  6968. 'dp' => 'application/vnd.osgi.dp',
  6969. 'dpg' => 'application/vnd.dpgraph',
  6970. 'dra' => 'audio/vnd.dra',
  6971. 'dsc' => 'text/prs.lines.tag',
  6972. 'dssc' => 'application/dssc+der',
  6973. 'dtb' => 'application/x-dtbook+xml',
  6974. 'dtd' => 'application/xml-dtd',
  6975. 'dts' => 'audio/vnd.dts',
  6976. 'dtshd' => 'audio/vnd.dts.hd',
  6977. 'dump' => 'application/octet-stream',
  6978. 'dvb' => 'video/vnd.dvb.file',
  6979. 'dvi' => 'application/x-dvi',
  6980. 'dwf' => 'model/vnd.dwf',
  6981. 'dwg' => 'image/vnd.dwg',
  6982. 'dxf' => 'image/vnd.dxf',
  6983. 'dxp' => 'application/vnd.spotfire.dxp',
  6984. 'dxr' => 'application/x-director',
  6985. 'ecelp4800' => 'audio/vnd.nuera.ecelp4800',
  6986. 'ecelp7470' => 'audio/vnd.nuera.ecelp7470',
  6987. 'ecelp9600' => 'audio/vnd.nuera.ecelp9600',
  6988. 'ecma' => 'application/ecmascript',
  6989. 'edm' => 'application/vnd.novadigm.edm',
  6990. 'edx' => 'application/vnd.novadigm.edx',
  6991. 'efif' => 'application/vnd.picsel',
  6992. 'ei6' => 'application/vnd.pg.osasli',
  6993. 'elc' => 'application/octet-stream',
  6994. 'emf' => 'application/x-msmetafile',
  6995. 'eml' => 'message/rfc822',
  6996. 'emma' => 'application/emma+xml',
  6997. 'emz' => 'application/x-msmetafile',
  6998. 'eol' => 'audio/vnd.digital-winds',
  6999. 'eot' => 'application/vnd.ms-fontobject',
  7000. 'eps' => 'application/postscript',
  7001. 'epub' => 'application/epub+zip',
  7002. 'es3' => 'application/vnd.eszigno3+xml',
  7003. 'esa' => 'application/vnd.osgi.subsystem',
  7004. 'esf' => 'application/vnd.epson.esf',
  7005. 'et3' => 'application/vnd.eszigno3+xml',
  7006. 'etx' => 'text/x-setext',
  7007. 'eva' => 'application/x-eva',
  7008. 'evy' => 'application/x-envoy',
  7009. 'exe' => 'application/x-msdownload',
  7010. 'exi' => 'application/exi',
  7011. 'ext' => 'application/vnd.novadigm.ext',
  7012. 'ez' => 'application/andrew-inset',
  7013. 'ez2' => 'application/vnd.ezpix-album',
  7014. 'ez3' => 'application/vnd.ezpix-package',
  7015. 'f' => 'text/x-fortran',
  7016. 'f4v' => 'video/x-f4v',
  7017. 'f77' => 'text/x-fortran',
  7018. 'f90' => 'text/x-fortran',
  7019. 'fbs' => 'image/vnd.fastbidsheet',
  7020. 'fcdt' => 'application/vnd.adobe.formscentral.fcdt',
  7021. 'fcs' => 'application/vnd.isac.fcs',
  7022. 'fdf' => 'application/vnd.fdf',
  7023. 'fe_launch' => 'application/vnd.denovo.fcselayout-link',
  7024. 'fg5' => 'application/vnd.fujitsu.oasysgp',
  7025. 'fgd' => 'application/x-director',
  7026. 'fh' => 'image/x-freehand',
  7027. 'fh4' => 'image/x-freehand',
  7028. 'fh5' => 'image/x-freehand',
  7029. 'fh7' => 'image/x-freehand',
  7030. 'fhc' => 'image/x-freehand',
  7031. 'fig' => 'application/x-xfig',
  7032. 'flac' => 'audio/x-flac',
  7033. 'fli' => 'video/x-fli',
  7034. 'flo' => 'application/vnd.micrografx.flo',
  7035. 'flv' => 'video/x-flv',
  7036. 'flw' => 'application/vnd.kde.kivio',
  7037. 'flx' => 'text/vnd.fmi.flexstor',
  7038. 'fly' => 'text/vnd.fly',
  7039. 'fm' => 'application/vnd.framemaker',
  7040. 'fnc' => 'application/vnd.frogans.fnc',
  7041. 'for' => 'text/x-fortran',
  7042. 'fpx' => 'image/vnd.fpx',
  7043. 'frame' => 'application/vnd.framemaker',
  7044. 'fsc' => 'application/vnd.fsc.weblaunch',
  7045. 'fst' => 'image/vnd.fst',
  7046. 'ftc' => 'application/vnd.fluxtime.clip',
  7047. 'fti' => 'application/vnd.anser-web-funds-transfer-initiation',
  7048. 'fvt' => 'video/vnd.fvt',
  7049. 'fxp' => 'application/vnd.adobe.fxp',
  7050. 'fxpl' => 'application/vnd.adobe.fxp',
  7051. 'fzs' => 'application/vnd.fuzzysheet',
  7052. 'g2w' => 'application/vnd.geoplan',
  7053. 'g3' => 'image/g3fax',
  7054. 'g3w' => 'application/vnd.geospace',
  7055. 'gac' => 'application/vnd.groove-account',
  7056. 'gam' => 'application/x-tads',
  7057. 'gbr' => 'application/rpki-ghostbusters',
  7058. 'gca' => 'application/x-gca-compressed',
  7059. 'gdl' => 'model/vnd.gdl',
  7060. 'geo' => 'application/vnd.dynageo',
  7061. 'gex' => 'application/vnd.geometry-explorer',
  7062. 'ggb' => 'application/vnd.geogebra.file',
  7063. 'ggt' => 'application/vnd.geogebra.tool',
  7064. 'ghf' => 'application/vnd.groove-help',
  7065. 'gif' => 'image/gif',
  7066. 'gim' => 'application/vnd.groove-identity-message',
  7067. 'gml' => 'application/gml+xml',
  7068. 'gmx' => 'application/vnd.gmx',
  7069. 'gnumeric' => 'application/x-gnumeric',
  7070. 'gph' => 'application/vnd.flographit',
  7071. 'gpx' => 'application/gpx+xml',
  7072. 'gqf' => 'application/vnd.grafeq',
  7073. 'gqs' => 'application/vnd.grafeq',
  7074. 'gram' => 'application/srgs',
  7075. 'gramps' => 'application/x-gramps-xml',
  7076. 'gre' => 'application/vnd.geometry-explorer',
  7077. 'grv' => 'application/vnd.groove-injector',
  7078. 'grxml' => 'application/srgs+xml',
  7079. 'gsf' => 'application/x-font-ghostscript',
  7080. 'gtar' => 'application/x-gtar',
  7081. 'gtm' => 'application/vnd.groove-tool-message',
  7082. 'gtw' => 'model/vnd.gtw',
  7083. 'gv' => 'text/vnd.graphviz',
  7084. 'gxf' => 'application/gxf',
  7085. 'gxt' => 'application/vnd.geonext',
  7086. 'h' => 'text/x-c',
  7087. 'h261' => 'video/h261',
  7088. 'h263' => 'video/h263',
  7089. 'h264' => 'video/h264',
  7090. 'hal' => 'application/vnd.hal+xml',
  7091. 'hbci' => 'application/vnd.hbci',
  7092. 'hdf' => 'application/x-hdf',
  7093. 'hh' => 'text/x-c',
  7094. 'hlp' => 'application/winhlp',
  7095. 'hpgl' => 'application/vnd.hp-hpgl',
  7096. 'hpid' => 'application/vnd.hp-hpid',
  7097. 'hps' => 'application/vnd.hp-hps',
  7098. 'hqx' => 'application/mac-binhex40',
  7099. 'htke' => 'application/vnd.kenameaapp',
  7100. 'htm' => 'text/html',
  7101. 'html' => 'text/html',
  7102. 'hvd' => 'application/vnd.yamaha.hv-dic',
  7103. 'hvp' => 'application/vnd.yamaha.hv-voice',
  7104. 'hvs' => 'application/vnd.yamaha.hv-script',
  7105. 'i2g' => 'application/vnd.intergeo',
  7106. 'icc' => 'application/vnd.iccprofile',
  7107. 'ice' => 'x-conference/x-cooltalk',
  7108. 'icm' => 'application/vnd.iccprofile',
  7109. 'ico' => 'image/x-icon',
  7110. 'ics' => 'text/calendar',
  7111. 'ief' => 'image/ief',
  7112. 'ifb' => 'text/calendar',
  7113. 'ifm' => 'application/vnd.shana.informed.formdata',
  7114. 'iges' => 'model/iges',
  7115. 'igl' => 'application/vnd.igloader',
  7116. 'igm' => 'application/vnd.insors.igm',
  7117. 'igs' => 'model/iges',
  7118. 'igx' => 'application/vnd.micrografx.igx',
  7119. 'iif' => 'application/vnd.shana.informed.interchange',
  7120. 'imp' => 'application/vnd.accpac.simply.imp',
  7121. 'ims' => 'application/vnd.ms-ims',
  7122. 'in' => 'text/plain',
  7123. 'ink' => 'application/inkml+xml',
  7124. 'inkml' => 'application/inkml+xml',
  7125. 'install' => 'application/x-install-instructions',
  7126. 'iota' => 'application/vnd.astraea-software.iota',
  7127. 'ipfix' => 'application/ipfix',
  7128. 'ipk' => 'application/vnd.shana.informed.package',
  7129. 'irm' => 'application/vnd.ibm.rights-management',
  7130. 'irp' => 'application/vnd.irepository.package+xml',
  7131. 'iso' => 'application/x-iso9660-image',
  7132. 'itp' => 'application/vnd.shana.informed.formtemplate',
  7133. 'ivp' => 'application/vnd.immervision-ivp',
  7134. 'ivu' => 'application/vnd.immervision-ivu',
  7135. 'jad' => 'text/vnd.sun.j2me.app-descriptor',
  7136. 'jam' => 'application/vnd.jam',
  7137. 'jar' => 'application/java-archive',
  7138. 'java' => 'text/x-java-source',
  7139. 'jisp' => 'application/vnd.jisp',
  7140. 'jlt' => 'application/vnd.hp-jlyt',
  7141. 'jnlp' => 'application/x-java-jnlp-file',
  7142. 'joda' => 'application/vnd.joost.joda-archive',
  7143. 'jpe' => 'image/jpeg',
  7144. 'jpeg' => 'image/jpeg',
  7145. 'jpg' => 'image/jpeg',
  7146. 'jpgm' => 'video/jpm',
  7147. 'jpgv' => 'video/jpeg',
  7148. 'jpm' => 'video/jpm',
  7149. 'js' => 'application/javascript',
  7150. 'json' => 'application/json',
  7151. 'jsonml' => 'application/jsonml+json',
  7152. 'kar' => 'audio/midi',
  7153. 'karbon' => 'application/vnd.kde.karbon',
  7154. 'kfo' => 'application/vnd.kde.kformula',
  7155. 'kia' => 'application/vnd.kidspiration',
  7156. 'kml' => 'application/vnd.google-earth.kml+xml',
  7157. 'kmz' => 'application/vnd.google-earth.kmz',
  7158. 'kne' => 'application/vnd.kinar',
  7159. 'knp' => 'application/vnd.kinar',
  7160. 'kon' => 'application/vnd.kde.kontour',
  7161. 'kpr' => 'application/vnd.kde.kpresenter',
  7162. 'kpt' => 'application/vnd.kde.kpresenter',
  7163. 'kpxx' => 'application/vnd.ds-keypoint',
  7164. 'ksp' => 'application/vnd.kde.kspread',
  7165. 'ktr' => 'application/vnd.kahootz',
  7166. 'ktx' => 'image/ktx',
  7167. 'ktz' => 'application/vnd.kahootz',
  7168. 'kwd' => 'application/vnd.kde.kword',
  7169. 'kwt' => 'application/vnd.kde.kword',
  7170. 'lasxml' => 'application/vnd.las.las+xml',
  7171. 'latex' => 'application/x-latex',
  7172. 'lbd' => 'application/vnd.llamagraphics.life-balance.desktop',
  7173. 'lbe' => 'application/vnd.llamagraphics.life-balance.exchange+xml',
  7174. 'les' => 'application/vnd.hhe.lesson-player',
  7175. 'lha' => 'application/x-lzh-compressed',
  7176. 'link66' => 'application/vnd.route66.link66+xml',
  7177. 'list' => 'text/plain',
  7178. 'list3820' => 'application/vnd.ibm.modcap',
  7179. 'listafp' => 'application/vnd.ibm.modcap',
  7180. 'lnk' => 'application/x-ms-shortcut',
  7181. 'log' => 'text/plain',
  7182. 'lostxml' => 'application/lost+xml',
  7183. 'lrf' => 'application/octet-stream',
  7184. 'lrm' => 'application/vnd.ms-lrm',
  7185. 'ltf' => 'application/vnd.frogans.ltf',
  7186. 'lvp' => 'audio/vnd.lucent.voice',
  7187. 'lwp' => 'application/vnd.lotus-wordpro',
  7188. 'lzh' => 'application/x-lzh-compressed',
  7189. 'm13' => 'application/x-msmediaview',
  7190. 'm14' => 'application/x-msmediaview',
  7191. 'm1v' => 'video/mpeg',
  7192. 'm21' => 'application/mp21',
  7193. 'm2a' => 'audio/mpeg',
  7194. 'm2v' => 'video/mpeg',
  7195. 'm3a' => 'audio/mpeg',
  7196. 'm3u' => 'audio/x-mpegurl',
  7197. 'm3u8' => 'application/vnd.apple.mpegurl',
  7198. 'm4a' => 'audio/mp4',
  7199. 'm4u' => 'video/vnd.mpegurl',
  7200. 'm4v' => 'video/x-m4v',
  7201. 'ma' => 'application/mathematica',
  7202. 'mads' => 'application/mads+xml',
  7203. 'mag' => 'application/vnd.ecowin.chart',
  7204. 'maker' => 'application/vnd.framemaker',
  7205. 'man' => 'text/troff',
  7206. 'mar' => 'application/octet-stream',
  7207. 'mathml' => 'application/mathml+xml',
  7208. 'mb' => 'application/mathematica',
  7209. 'mbk' => 'application/vnd.mobius.mbk',
  7210. 'mbox' => 'application/mbox',
  7211. 'mc1' => 'application/vnd.medcalcdata',
  7212. 'mcd' => 'application/vnd.mcd',
  7213. 'mcurl' => 'text/vnd.curl.mcurl',
  7214. 'mdb' => 'application/x-msaccess',
  7215. 'mdi' => 'image/vnd.ms-modi',
  7216. 'me' => 'text/troff',
  7217. 'mesh' => 'model/mesh',
  7218. 'meta4' => 'application/metalink4+xml',
  7219. 'metalink' => 'application/metalink+xml',
  7220. 'mets' => 'application/mets+xml',
  7221. 'mfm' => 'application/vnd.mfmp',
  7222. 'mft' => 'application/rpki-manifest',
  7223. 'mgp' => 'application/vnd.osgeo.mapguide.package',
  7224. 'mgz' => 'application/vnd.proteus.magazine',
  7225. 'mid' => 'audio/midi',
  7226. 'midi' => 'audio/midi',
  7227. 'mie' => 'application/x-mie',
  7228. 'mif' => 'application/vnd.mif',
  7229. 'mime' => 'message/rfc822',
  7230. 'mj2' => 'video/mj2',
  7231. 'mjp2' => 'video/mj2',
  7232. 'mk3d' => 'video/x-matroska',
  7233. 'mka' => 'audio/x-matroska',
  7234. 'mks' => 'video/x-matroska',
  7235. 'mkv' => 'video/x-matroska',
  7236. 'mlp' => 'application/vnd.dolby.mlp',
  7237. 'mmd' => 'application/vnd.chipnuts.karaoke-mmd',
  7238. 'mmf' => 'application/vnd.smaf',
  7239. 'mmr' => 'image/vnd.fujixerox.edmics-mmr',
  7240. 'mng' => 'video/x-mng',
  7241. 'mny' => 'application/x-msmoney',
  7242. 'mobi' => 'application/x-mobipocket-ebook',
  7243. 'mods' => 'application/mods+xml',
  7244. 'mov' => 'video/quicktime',
  7245. 'movie' => 'video/x-sgi-movie',
  7246. 'mp2' => 'audio/mpeg',
  7247. 'mp21' => 'application/mp21',
  7248. 'mp2a' => 'audio/mpeg',
  7249. 'mp3' => 'audio/mpeg',
  7250. 'mp4' => 'video/mp4',
  7251. 'mp4a' => 'audio/mp4',
  7252. 'mp4s' => 'application/mp4',
  7253. 'mp4v' => 'video/mp4',
  7254. 'mpc' => 'application/vnd.mophun.certificate',
  7255. 'mpe' => 'video/mpeg',
  7256. 'mpeg' => 'video/mpeg',
  7257. 'mpg' => 'video/mpeg',
  7258. 'mpg4' => 'video/mp4',
  7259. 'mpga' => 'audio/mpeg',
  7260. 'mpkg' => 'application/vnd.apple.installer+xml',
  7261. 'mpm' => 'application/vnd.blueice.multipass',
  7262. 'mpn' => 'application/vnd.mophun.application',
  7263. 'mpp' => 'application/vnd.ms-project',
  7264. 'mpt' => 'application/vnd.ms-project',
  7265. 'mpy' => 'application/vnd.ibm.minipay',
  7266. 'mqy' => 'application/vnd.mobius.mqy',
  7267. 'mrc' => 'application/marc',
  7268. 'mrcx' => 'application/marcxml+xml',
  7269. 'ms' => 'text/troff',
  7270. 'mscml' => 'application/mediaservercontrol+xml',
  7271. 'mseed' => 'application/vnd.fdsn.mseed',
  7272. 'mseq' => 'application/vnd.mseq',
  7273. 'msf' => 'application/vnd.epson.msf',
  7274. 'msh' => 'model/mesh',
  7275. 'msi' => 'application/x-msdownload',
  7276. 'msl' => 'application/vnd.mobius.msl',
  7277. 'msty' => 'application/vnd.muvee.style',
  7278. 'mts' => 'model/vnd.mts',
  7279. 'mus' => 'application/vnd.musician',
  7280. 'musicxml' => 'application/vnd.recordare.musicxml+xml',
  7281. 'mvb' => 'application/x-msmediaview',
  7282. 'mwf' => 'application/vnd.mfer',
  7283. 'mxf' => 'application/mxf',
  7284. 'mxl' => 'application/vnd.recordare.musicxml',
  7285. 'mxml' => 'application/xv+xml',
  7286. 'mxs' => 'application/vnd.triscape.mxs',
  7287. 'mxu' => 'video/vnd.mpegurl',
  7288. 'n-gage' => 'application/vnd.nokia.n-gage.symbian.install',
  7289. 'n3' => 'text/n3',
  7290. 'nb' => 'application/mathematica',
  7291. 'nbp' => 'application/vnd.wolfram.player',
  7292. 'nc' => 'application/x-netcdf',
  7293. 'ncx' => 'application/x-dtbncx+xml',
  7294. 'nfo' => 'text/x-nfo',
  7295. 'ngdat' => 'application/vnd.nokia.n-gage.data',
  7296. 'nitf' => 'application/vnd.nitf',
  7297. 'nlu' => 'application/vnd.neurolanguage.nlu',
  7298. 'nml' => 'application/vnd.enliven',
  7299. 'nnd' => 'application/vnd.noblenet-directory',
  7300. 'nns' => 'application/vnd.noblenet-sealer',
  7301. 'nnw' => 'application/vnd.noblenet-web',
  7302. 'npx' => 'image/vnd.net-fpx',
  7303. 'nsc' => 'application/x-conference',
  7304. 'nsf' => 'application/vnd.lotus-notes',
  7305. 'ntf' => 'application/vnd.nitf',
  7306. 'nzb' => 'application/x-nzb',
  7307. 'oa2' => 'application/vnd.fujitsu.oasys2',
  7308. 'oa3' => 'application/vnd.fujitsu.oasys3',
  7309. 'oas' => 'application/vnd.fujitsu.oasys',
  7310. 'obd' => 'application/x-msbinder',
  7311. 'obj' => 'application/x-tgif',
  7312. 'oda' => 'application/oda',
  7313. 'odb' => 'application/vnd.oasis.opendocument.database',
  7314. 'odc' => 'application/vnd.oasis.opendocument.chart',
  7315. 'odf' => 'application/vnd.oasis.opendocument.formula',
  7316. 'odft' => 'application/vnd.oasis.opendocument.formula-template',
  7317. 'odg' => 'application/vnd.oasis.opendocument.graphics',
  7318. 'odi' => 'application/vnd.oasis.opendocument.image',
  7319. 'odm' => 'application/vnd.oasis.opendocument.text-master',
  7320. 'odp' => 'application/vnd.oasis.opendocument.presentation',
  7321. 'ods' => 'application/vnd.oasis.opendocument.spreadsheet',
  7322. 'odt' => 'application/vnd.oasis.opendocument.text',
  7323. 'oga' => 'audio/ogg',
  7324. 'ogg' => 'audio/ogg',
  7325. 'ogv' => 'video/ogg',
  7326. 'ogx' => 'application/ogg',
  7327. 'omdoc' => 'application/omdoc+xml',
  7328. 'onepkg' => 'application/onenote',
  7329. 'onetmp' => 'application/onenote',
  7330. 'onetoc' => 'application/onenote',
  7331. 'onetoc2' => 'application/onenote',
  7332. 'opf' => 'application/oebps-package+xml',
  7333. 'opml' => 'text/x-opml',
  7334. 'oprc' => 'application/vnd.palm',
  7335. 'org' => 'application/vnd.lotus-organizer',
  7336. 'osf' => 'application/vnd.yamaha.openscoreformat',
  7337. 'osfpvg' => 'application/vnd.yamaha.openscoreformat.osfpvg+xml',
  7338. 'otc' => 'application/vnd.oasis.opendocument.chart-template',
  7339. 'otf' => 'application/x-font-otf',
  7340. 'otg' => 'application/vnd.oasis.opendocument.graphics-template',
  7341. 'oth' => 'application/vnd.oasis.opendocument.text-web',
  7342. 'oti' => 'application/vnd.oasis.opendocument.image-template',
  7343. 'otp' => 'application/vnd.oasis.opendocument.presentation-template',
  7344. 'ots' => 'application/vnd.oasis.opendocument.spreadsheet-template',
  7345. 'ott' => 'application/vnd.oasis.opendocument.text-template',
  7346. 'oxps' => 'application/oxps',
  7347. 'oxt' => 'application/vnd.openofficeorg.extension',
  7348. 'p' => 'text/x-pascal',
  7349. 'p10' => 'application/pkcs10',
  7350. 'p12' => 'application/x-pkcs12',
  7351. 'p7b' => 'application/x-pkcs7-certificates',
  7352. 'p7c' => 'application/pkcs7-mime',
  7353. 'p7m' => 'application/pkcs7-mime',
  7354. 'p7r' => 'application/x-pkcs7-certreqresp',
  7355. 'p7s' => 'application/pkcs7-signature',
  7356. 'p8' => 'application/pkcs8',
  7357. 'pas' => 'text/x-pascal',
  7358. 'paw' => 'application/vnd.pawaafile',
  7359. 'pbd' => 'application/vnd.powerbuilder6',
  7360. 'pbm' => 'image/x-portable-bitmap',
  7361. 'pcap' => 'application/vnd.tcpdump.pcap',
  7362. 'pcf' => 'application/x-font-pcf',
  7363. 'pcl' => 'application/vnd.hp-pcl',
  7364. 'pclxl' => 'application/vnd.hp-pclxl',
  7365. 'pct' => 'image/x-pict',
  7366. 'pcurl' => 'application/vnd.curl.pcurl',
  7367. 'pcx' => 'image/x-pcx',
  7368. 'pdb' => 'application/vnd.palm',
  7369. 'pdf' => 'application/pdf',
  7370. 'pfa' => 'application/x-font-type1',
  7371. 'pfb' => 'application/x-font-type1',
  7372. 'pfm' => 'application/x-font-type1',
  7373. 'pfr' => 'application/font-tdpfr',
  7374. 'pfx' => 'application/x-pkcs12',
  7375. 'pgm' => 'image/x-portable-graymap',
  7376. 'pgn' => 'application/x-chess-pgn',
  7377. 'pgp' => 'application/pgp-encrypted',
  7378. 'pic' => 'image/x-pict',
  7379. 'pkg' => 'application/octet-stream',
  7380. 'pki' => 'application/pkixcmp',
  7381. 'pkipath' => 'application/pkix-pkipath',
  7382. 'plb' => 'application/vnd.3gpp.pic-bw-large',
  7383. 'plc' => 'application/vnd.mobius.plc',
  7384. 'plf' => 'application/vnd.pocketlearn',
  7385. 'pls' => 'application/pls+xml',
  7386. 'pml' => 'application/vnd.ctc-posml',
  7387. 'png' => 'image/png',
  7388. 'pnm' => 'image/x-portable-anymap',
  7389. 'portpkg' => 'application/vnd.macports.portpkg',
  7390. 'pot' => 'application/vnd.ms-powerpoint',
  7391. 'potm' => 'application/vnd.ms-powerpoint.template.macroenabled.12',
  7392. 'potx' => 'application/vnd.openxmlformats-officedocument.presentationml.template',
  7393. 'ppam' => 'application/vnd.ms-powerpoint.addin.macroenabled.12',
  7394. 'ppd' => 'application/vnd.cups-ppd',
  7395. 'ppm' => 'image/x-portable-pixmap',
  7396. 'pps' => 'application/vnd.ms-powerpoint',
  7397. 'ppsm' => 'application/vnd.ms-powerpoint.slideshow.macroenabled.12',
  7398. 'ppsx' => 'application/vnd.openxmlformats-officedocument.presentationml.slideshow',
  7399. 'ppt' => 'application/vnd.ms-powerpoint',
  7400. 'pptm' => 'application/vnd.ms-powerpoint.presentation.macroenabled.12',
  7401. 'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
  7402. 'pqa' => 'application/vnd.palm',
  7403. 'prc' => 'application/x-mobipocket-ebook',
  7404. 'pre' => 'application/vnd.lotus-freelance',
  7405. 'prf' => 'application/pics-rules',
  7406. 'ps' => 'application/postscript',
  7407. 'psb' => 'application/vnd.3gpp.pic-bw-small',
  7408. 'psd' => 'image/vnd.adobe.photoshop',
  7409. 'psf' => 'application/x-font-linux-psf',
  7410. 'pskcxml' => 'application/pskc+xml',
  7411. 'ptid' => 'application/vnd.pvi.ptid1',
  7412. 'pub' => 'application/x-mspublisher',
  7413. 'pvb' => 'application/vnd.3gpp.pic-bw-var',
  7414. 'pwn' => 'application/vnd.3m.post-it-notes',
  7415. 'pya' => 'audio/vnd.ms-playready.media.pya',
  7416. 'pyv' => 'video/vnd.ms-playready.media.pyv',
  7417. 'qam' => 'application/vnd.epson.quickanime',
  7418. 'qbo' => 'application/vnd.intu.qbo',
  7419. 'qfx' => 'application/vnd.intu.qfx',
  7420. 'qps' => 'application/vnd.publishare-delta-tree',
  7421. 'qt' => 'video/quicktime',
  7422. 'qwd' => 'application/vnd.quark.quarkxpress',
  7423. 'qwt' => 'application/vnd.quark.quarkxpress',
  7424. 'qxb' => 'application/vnd.quark.quarkxpress',
  7425. 'qxd' => 'application/vnd.quark.quarkxpress',
  7426. 'qxl' => 'application/vnd.quark.quarkxpress',
  7427. 'qxt' => 'application/vnd.quark.quarkxpress',
  7428. 'ra' => 'audio/x-pn-realaudio',
  7429. 'ram' => 'audio/x-pn-realaudio',
  7430. 'rar' => 'application/x-rar-compressed',
  7431. 'ras' => 'image/x-cmu-raster',
  7432. 'rcprofile' => 'application/vnd.ipunplugged.rcprofile',
  7433. 'rdf' => 'application/rdf+xml',
  7434. 'rdz' => 'application/vnd.data-vision.rdz',
  7435. 'rep' => 'application/vnd.businessobjects',
  7436. 'res' => 'application/x-dtbresource+xml',
  7437. 'rgb' => 'image/x-rgb',
  7438. 'rif' => 'application/reginfo+xml',
  7439. 'rip' => 'audio/vnd.rip',
  7440. 'ris' => 'application/x-research-info-systems',
  7441. 'rl' => 'application/resource-lists+xml',
  7442. 'rlc' => 'image/vnd.fujixerox.edmics-rlc',
  7443. 'rld' => 'application/resource-lists-diff+xml',
  7444. 'rm' => 'application/vnd.rn-realmedia',
  7445. 'rmi' => 'audio/midi',
  7446. 'rmp' => 'audio/x-pn-realaudio-plugin',
  7447. 'rms' => 'application/vnd.jcp.javame.midlet-rms',
  7448. 'rmvb' => 'application/vnd.rn-realmedia-vbr',
  7449. 'rnc' => 'application/relax-ng-compact-syntax',
  7450. 'roa' => 'application/rpki-roa',
  7451. 'roff' => 'text/troff',
  7452. 'rp9' => 'application/vnd.cloanto.rp9',
  7453. 'rpss' => 'application/vnd.nokia.radio-presets',
  7454. 'rpst' => 'application/vnd.nokia.radio-preset',
  7455. 'rq' => 'application/sparql-query',
  7456. 'rs' => 'application/rls-services+xml',
  7457. 'rsd' => 'application/rsd+xml',
  7458. 'rss' => 'application/rss+xml',
  7459. 'rtf' => 'application/rtf',
  7460. 'rtx' => 'text/richtext',
  7461. 's' => 'text/x-asm',
  7462. 's3m' => 'audio/s3m',
  7463. 'saf' => 'application/vnd.yamaha.smaf-audio',
  7464. 'sbml' => 'application/sbml+xml',
  7465. 'sc' => 'application/vnd.ibm.secure-container',
  7466. 'scd' => 'application/x-msschedule',
  7467. 'scm' => 'application/vnd.lotus-screencam',
  7468. 'scq' => 'application/scvp-cv-request',
  7469. 'scs' => 'application/scvp-cv-response',
  7470. 'scurl' => 'text/vnd.curl.scurl',
  7471. 'sda' => 'application/vnd.stardivision.draw',
  7472. 'sdc' => 'application/vnd.stardivision.calc',
  7473. 'sdd' => 'application/vnd.stardivision.impress',
  7474. 'sdkd' => 'application/vnd.solent.sdkm+xml',
  7475. 'sdkm' => 'application/vnd.solent.sdkm+xml',
  7476. 'sdp' => 'application/sdp',
  7477. 'sdw' => 'application/vnd.stardivision.writer',
  7478. 'see' => 'application/vnd.seemail',
  7479. 'seed' => 'application/vnd.fdsn.seed',
  7480. 'sema' => 'application/vnd.sema',
  7481. 'semd' => 'application/vnd.semd',
  7482. 'semf' => 'application/vnd.semf',
  7483. 'ser' => 'application/java-serialized-object',
  7484. 'setpay' => 'application/set-payment-initiation',
  7485. 'setreg' => 'application/set-registration-initiation',
  7486. 'sfd-hdstx' => 'application/vnd.hydrostatix.sof-data',
  7487. 'sfs' => 'application/vnd.spotfire.sfs',
  7488. 'sfv' => 'text/x-sfv',
  7489. 'sgi' => 'image/sgi',
  7490. 'sgl' => 'application/vnd.stardivision.writer-global',
  7491. 'sgm' => 'text/sgml',
  7492. 'sgml' => 'text/sgml',
  7493. 'sh' => 'application/x-sh',
  7494. 'shar' => 'application/x-shar',
  7495. 'shf' => 'application/shf+xml',
  7496. 'sid' => 'image/x-mrsid-image',
  7497. 'sig' => 'application/pgp-signature',
  7498. 'sil' => 'audio/silk',
  7499. 'silo' => 'model/mesh',
  7500. 'sis' => 'application/vnd.symbian.install',
  7501. 'sisx' => 'application/vnd.symbian.install',
  7502. 'sit' => 'application/x-stuffit',
  7503. 'sitx' => 'application/x-stuffitx',
  7504. 'skd' => 'application/vnd.koan',
  7505. 'skm' => 'application/vnd.koan',
  7506. 'skp' => 'application/vnd.koan',
  7507. 'skt' => 'application/vnd.koan',
  7508. 'sldm' => 'application/vnd.ms-powerpoint.slide.macroenabled.12',
  7509. 'sldx' => 'application/vnd.openxmlformats-officedocument.presentationml.slide',
  7510. 'slt' => 'application/vnd.epson.salt',
  7511. 'sm' => 'application/vnd.stepmania.stepchart',
  7512. 'smf' => 'application/vnd.stardivision.math',
  7513. 'smi' => 'application/smil+xml',
  7514. 'smil' => 'application/smil+xml',
  7515. 'smv' => 'video/x-smv',
  7516. 'smzip' => 'application/vnd.stepmania.package',
  7517. 'snd' => 'audio/basic',
  7518. 'snf' => 'application/x-font-snf',
  7519. 'so' => 'application/octet-stream',
  7520. 'spc' => 'application/x-pkcs7-certificates',
  7521. 'spf' => 'application/vnd.yamaha.smaf-phrase',
  7522. 'spl' => 'application/x-futuresplash',
  7523. 'spot' => 'text/vnd.in3d.spot',
  7524. 'spp' => 'application/scvp-vp-response',
  7525. 'spq' => 'application/scvp-vp-request',
  7526. 'spx' => 'audio/ogg',
  7527. 'sql' => 'application/x-sql',
  7528. 'src' => 'application/x-wais-source',
  7529. 'srt' => 'application/x-subrip',
  7530. 'sru' => 'application/sru+xml',
  7531. 'srx' => 'application/sparql-results+xml',
  7532. 'ssdl' => 'application/ssdl+xml',
  7533. 'sse' => 'application/vnd.kodak-descriptor',
  7534. 'ssf' => 'application/vnd.epson.ssf',
  7535. 'ssml' => 'application/ssml+xml',
  7536. 'st' => 'application/vnd.sailingtracker.track',
  7537. 'stc' => 'application/vnd.sun.xml.calc.template',
  7538. 'std' => 'application/vnd.sun.xml.draw.template',
  7539. 'stf' => 'application/vnd.wt.stf',
  7540. 'sti' => 'application/vnd.sun.xml.impress.template',
  7541. 'stk' => 'application/hyperstudio',
  7542. 'stl' => 'application/vnd.ms-pki.stl',
  7543. 'str' => 'application/vnd.pg.format',
  7544. 'stw' => 'application/vnd.sun.xml.writer.template',
  7545. 'sub' => 'image/vnd.dvb.subtitle',
  7546. 'sub' => 'text/vnd.dvb.subtitle',
  7547. 'sus' => 'application/vnd.sus-calendar',
  7548. 'susp' => 'application/vnd.sus-calendar',
  7549. 'sv4cpio' => 'application/x-sv4cpio',
  7550. 'sv4crc' => 'application/x-sv4crc',
  7551. 'svc' => 'application/vnd.dvb.service',
  7552. 'svd' => 'application/vnd.svd',
  7553. 'svg' => 'image/svg+xml',
  7554. 'svgz' => 'image/svg+xml',
  7555. 'swa' => 'application/x-director',
  7556. 'swf' => 'application/x-shockwave-flash',
  7557. 'swi' => 'application/vnd.aristanetworks.swi',
  7558. 'sxc' => 'application/vnd.sun.xml.calc',
  7559. 'sxd' => 'application/vnd.sun.xml.draw',
  7560. 'sxg' => 'application/vnd.sun.xml.writer.global',
  7561. 'sxi' => 'application/vnd.sun.xml.impress',
  7562. 'sxm' => 'application/vnd.sun.xml.math',
  7563. 'sxw' => 'application/vnd.sun.xml.writer',
  7564. 't' => 'text/troff',
  7565. 't3' => 'application/x-t3vm-image',
  7566. 'taglet' => 'application/vnd.mynfc',
  7567. 'tao' => 'application/vnd.tao.intent-module-archive',
  7568. 'tar' => 'application/x-tar',
  7569. 'tcap' => 'application/vnd.3gpp2.tcap',
  7570. 'tcl' => 'application/x-tcl',
  7571. 'teacher' => 'application/vnd.smart.teacher',
  7572. 'tei' => 'application/tei+xml',
  7573. 'teicorpus' => 'application/tei+xml',
  7574. 'tex' => 'application/x-tex',
  7575. 'texi' => 'application/x-texinfo',
  7576. 'texinfo' => 'application/x-texinfo',
  7577. 'text' => 'text/plain',
  7578. 'tfi' => 'application/thraud+xml',
  7579. 'tfm' => 'application/x-tex-tfm',
  7580. 'tga' => 'image/x-tga',
  7581. 'thmx' => 'application/vnd.ms-officetheme',
  7582. 'tif' => 'image/tiff',
  7583. 'tiff' => 'image/tiff',
  7584. 'tmo' => 'application/vnd.tmobile-livetv',
  7585. 'torrent' => 'application/x-bittorrent',
  7586. 'tpl' => 'application/vnd.groove-tool-template',
  7587. 'tpt' => 'application/vnd.trid.tpt',
  7588. 'tr' => 'text/troff',
  7589. 'tra' => 'application/vnd.trueapp',
  7590. 'trm' => 'application/x-msterminal',
  7591. 'tsd' => 'application/timestamped-data',
  7592. 'tsv' => 'text/tab-separated-values',
  7593. 'ttc' => 'application/x-font-ttf',
  7594. 'ttf' => 'application/x-font-ttf',
  7595. 'ttl' => 'text/turtle',
  7596. 'twd' => 'application/vnd.simtech-mindmapper',
  7597. 'twds' => 'application/vnd.simtech-mindmapper',
  7598. 'txd' => 'application/vnd.genomatix.tuxedo',
  7599. 'txf' => 'application/vnd.mobius.txf',
  7600. 'txt' => 'text/plain',
  7601. 'u32' => 'application/x-authorware-bin',
  7602. 'udeb' => 'application/x-debian-package',
  7603. 'ufd' => 'application/vnd.ufdl',
  7604. 'ufdl' => 'application/vnd.ufdl',
  7605. 'ulx' => 'application/x-glulx',
  7606. 'umj' => 'application/vnd.umajin',
  7607. 'unityweb' => 'application/vnd.unity',
  7608. 'uoml' => 'application/vnd.uoml+xml',
  7609. 'uri' => 'text/uri-list',
  7610. 'uris' => 'text/uri-list',
  7611. 'urls' => 'text/uri-list',
  7612. 'ustar' => 'application/x-ustar',
  7613. 'utz' => 'application/vnd.uiq.theme',
  7614. 'uu' => 'text/x-uuencode',
  7615. 'uva' => 'audio/vnd.dece.audio',
  7616. 'uvd' => 'application/vnd.dece.data',
  7617. 'uvf' => 'application/vnd.dece.data',
  7618. 'uvg' => 'image/vnd.dece.graphic',
  7619. 'uvh' => 'video/vnd.dece.hd',
  7620. 'uvi' => 'image/vnd.dece.graphic',
  7621. 'uvm' => 'video/vnd.dece.mobile',
  7622. 'uvp' => 'video/vnd.dece.pd',
  7623. 'uvs' => 'video/vnd.dece.sd',
  7624. 'uvt' => 'application/vnd.dece.ttml+xml',
  7625. 'uvu' => 'video/vnd.uvvu.mp4',
  7626. 'uvv' => 'video/vnd.dece.video',
  7627. 'uvva' => 'audio/vnd.dece.audio',
  7628. 'uvvd' => 'application/vnd.dece.data',
  7629. 'uvvf' => 'application/vnd.dece.data',
  7630. 'uvvg' => 'image/vnd.dece.graphic',
  7631. 'uvvh' => 'video/vnd.dece.hd',
  7632. 'uvvi' => 'image/vnd.dece.graphic',
  7633. 'uvvm' => 'video/vnd.dece.mobile',
  7634. 'uvvp' => 'video/vnd.dece.pd',
  7635. 'uvvs' => 'video/vnd.dece.sd',
  7636. 'uvvt' => 'application/vnd.dece.ttml+xml',
  7637. 'uvvu' => 'video/vnd.uvvu.mp4',
  7638. 'uvvv' => 'video/vnd.dece.video',
  7639. 'uvvx' => 'application/vnd.dece.unspecified',
  7640. 'uvvz' => 'application/vnd.dece.zip',
  7641. 'uvx' => 'application/vnd.dece.unspecified',
  7642. 'uvz' => 'application/vnd.dece.zip',
  7643. 'vcard' => 'text/vcard',
  7644. 'vcd' => 'application/x-cdlink',
  7645. 'vcf' => 'text/x-vcard',
  7646. 'vcg' => 'application/vnd.groove-vcard',
  7647. 'vcs' => 'text/x-vcalendar',
  7648. 'vcx' => 'application/vnd.vcx',
  7649. 'vis' => 'application/vnd.visionary',
  7650. 'viv' => 'video/vnd.vivo',
  7651. 'vob' => 'video/x-ms-vob',
  7652. 'vor' => 'application/vnd.stardivision.writer',
  7653. 'vox' => 'application/x-authorware-bin',
  7654. 'vrml' => 'model/vrml',
  7655. 'vsd' => 'application/vnd.visio',
  7656. 'vsf' => 'application/vnd.vsf',
  7657. 'vss' => 'application/vnd.visio',
  7658. 'vst' => 'application/vnd.visio',
  7659. 'vsw' => 'application/vnd.visio',
  7660. 'vtu' => 'model/vnd.vtu',
  7661. 'vxml' => 'application/voicexml+xml',
  7662. 'w3d' => 'application/x-director',
  7663. 'wad' => 'application/x-doom',
  7664. 'wav' => 'audio/x-wav',
  7665. 'wax' => 'audio/x-ms-wax',
  7666. 'wbmp' => 'image/vnd.wap.wbmp',
  7667. 'wbs' => 'application/vnd.criticaltools.wbs+xml',
  7668. 'wbxml' => 'application/vnd.wap.wbxml',
  7669. 'wcm' => 'application/vnd.ms-works',
  7670. 'wdb' => 'application/vnd.ms-works',
  7671. 'wdp' => 'image/vnd.ms-photo',
  7672. 'weba' => 'audio/webm',
  7673. 'webm' => 'video/webm',
  7674. 'webp' => 'image/webp',
  7675. 'wg' => 'application/vnd.pmi.widget',
  7676. 'wgt' => 'application/widget',
  7677. 'wks' => 'application/vnd.ms-works',
  7678. 'wm' => 'video/x-ms-wm',
  7679. 'wma' => 'audio/x-ms-wma',
  7680. 'wmd' => 'application/x-ms-wmd',
  7681. 'wmf' => 'application/x-msmetafile',
  7682. 'wml' => 'text/vnd.wap.wml',
  7683. 'wmlc' => 'application/vnd.wap.wmlc',
  7684. 'wmls' => 'text/vnd.wap.wmlscript',
  7685. 'wmlsc' => 'application/vnd.wap.wmlscriptc',
  7686. 'wmv' => 'video/x-ms-wmv',
  7687. 'wmx' => 'video/x-ms-wmx',
  7688. 'wmz' => 'application/x-ms-wmz',
  7689. 'wmz' => 'application/x-msmetafile',
  7690. 'woff' => 'application/font-woff',
  7691. 'wpd' => 'application/vnd.wordperfect',
  7692. 'wpl' => 'application/vnd.ms-wpl',
  7693. 'wps' => 'application/vnd.ms-works',
  7694. 'wqd' => 'application/vnd.wqd',
  7695. 'wri' => 'application/x-mswrite',
  7696. 'wrl' => 'model/vrml',
  7697. 'wsdl' => 'application/wsdl+xml',
  7698. 'wspolicy' => 'application/wspolicy+xml',
  7699. 'wtb' => 'application/vnd.webturbo',
  7700. 'wvx' => 'video/x-ms-wvx',
  7701. 'x32' => 'application/x-authorware-bin',
  7702. 'x3d' => 'model/x3d+xml',
  7703. 'x3db' => 'model/x3d+binary',
  7704. 'x3dbz' => 'model/x3d+binary',
  7705. 'x3dv' => 'model/x3d+vrml',
  7706. 'x3dvz' => 'model/x3d+vrml',
  7707. 'x3dz' => 'model/x3d+xml',
  7708. 'xaml' => 'application/xaml+xml',
  7709. 'xap' => 'application/x-silverlight-app',
  7710. 'xar' => 'application/vnd.xara',
  7711. 'xbap' => 'application/x-ms-xbap',
  7712. 'xbd' => 'application/vnd.fujixerox.docuworks.binder',
  7713. 'xbm' => 'image/x-xbitmap',
  7714. 'xdf' => 'application/xcap-diff+xml',
  7715. 'xdm' => 'application/vnd.syncml.dm+xml',
  7716. 'xdp' => 'application/vnd.adobe.xdp+xml',
  7717. 'xdssc' => 'application/dssc+xml',
  7718. 'xdw' => 'application/vnd.fujixerox.docuworks',
  7719. 'xenc' => 'application/xenc+xml',
  7720. 'xer' => 'application/patch-ops-error+xml',
  7721. 'xfdf' => 'application/vnd.adobe.xfdf',
  7722. 'xfdl' => 'application/vnd.xfdl',
  7723. 'xht' => 'application/xhtml+xml',
  7724. 'xhtml' => 'application/xhtml+xml',
  7725. 'xhvml' => 'application/xv+xml',
  7726. 'xif' => 'image/vnd.xiff',
  7727. 'xla' => 'application/vnd.ms-excel',
  7728. 'xlam' => 'application/vnd.ms-excel.addin.macroenabled.12',
  7729. 'xlc' => 'application/vnd.ms-excel',
  7730. 'xlf' => 'application/x-xliff+xml',
  7731. 'xlm' => 'application/vnd.ms-excel',
  7732. 'xls' => 'application/vnd.ms-excel',
  7733. 'xlsb' => 'application/vnd.ms-excel.sheet.binary.macroenabled.12',
  7734. 'xlsm' => 'application/vnd.ms-excel.sheet.macroenabled.12',
  7735. 'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
  7736. 'xlt' => 'application/vnd.ms-excel',
  7737. 'xltm' => 'application/vnd.ms-excel.template.macroenabled.12',
  7738. 'xltx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.template',
  7739. 'xlw' => 'application/vnd.ms-excel',
  7740. 'xm' => 'audio/xm',
  7741. 'xml' => 'application/xml',
  7742. 'xo' => 'application/vnd.olpc-sugar',
  7743. 'xop' => 'application/xop+xml',
  7744. 'xpi' => 'application/x-xpinstall',
  7745. 'xpl' => 'application/xproc+xml',
  7746. 'xpm' => 'image/x-xpixmap',
  7747. 'xpr' => 'application/vnd.is-xpr',
  7748. 'xps' => 'application/vnd.ms-xpsdocument',
  7749. 'xpw' => 'application/vnd.intercon.formnet',
  7750. 'xpx' => 'application/vnd.intercon.formnet',
  7751. 'xsl' => 'application/xml',
  7752. 'xslt' => 'application/xslt+xml',
  7753. 'xsm' => 'application/vnd.syncml+xml',
  7754. 'xspf' => 'application/xspf+xml',
  7755. 'xul' => 'application/vnd.mozilla.xul+xml',
  7756. 'xvm' => 'application/xv+xml',
  7757. 'xvml' => 'application/xv+xml',
  7758. 'xwd' => 'image/x-xwindowdump',
  7759. 'xyz' => 'chemical/x-xyz',
  7760. 'xz' => 'application/x-xz',
  7761. 'yang' => 'application/yang',
  7762. 'yin' => 'application/yin+xml',
  7763. 'z1' => 'application/x-zmachine',
  7764. 'z2' => 'application/x-zmachine',
  7765. 'z3' => 'application/x-zmachine',
  7766. 'z4' => 'application/x-zmachine',
  7767. 'z5' => 'application/x-zmachine',
  7768. 'z6' => 'application/x-zmachine',
  7769. 'z7' => 'application/x-zmachine',
  7770. 'z8' => 'application/x-zmachine',
  7771. 'zaz' => 'application/vnd.zzazz.deck+xml',
  7772. 'zip' => 'application/zip',
  7773. 'zir' => 'application/vnd.zul',
  7774. 'zirz' => 'application/vnd.zul',
  7775. 'zmm' => 'application/vnd.handheld-entertainment+xml'
  7776. );
  7777. }
  7778. // Always run this
  7779. if(strpos($_SERVER['SCRIPT_NAME'], 'check.php') == false){
  7780. dependCheck();
  7781. }