functions.php 164 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089
  1. <?php
  2. // ===================================
  3. // Define Version
  4. define('INSTALLEDVERSION', '1.42');
  5. // ===================================
  6. // Debugging output functions
  7. function debug_out($variable, $die = false) {
  8. $trace = debug_backtrace()[0];
  9. echo "<center><img height='200px' src='images/confused.png'></center>";
  10. echo "<center>Look's like something happened, here are the errors and perhaps how to fix them:</center>";
  11. 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>';
  12. if ($die) { http_response_code(503); die(); }
  13. }
  14. // ==== Auth Plugins START ====
  15. if (function_exists('ldap_connect')) :
  16. // Pass credentials to LDAP backend
  17. function plugin_auth_ldap($username, $password) {
  18. $ldapServers = explode(',',AUTHBACKENDHOST);
  19. foreach($ldapServers as $key => $value) {
  20. // Calculate parts
  21. $digest = parse_url(trim($value));
  22. $scheme = strtolower((isset($digest['scheme'])?$digest['scheme']:'ldap'));
  23. $host = (isset($digest['host'])?$digest['host']:(isset($digest['path'])?$digest['path']:''));
  24. $port = (isset($digest['port'])?$digest['port']:(strtolower($scheme)=='ldap'?389:636));
  25. // Reassign
  26. $ldapServers[$key] = $scheme.'://'.$host.':'.$port;
  27. }
  28. // returns true or false
  29. $ldap = ldap_connect(implode(' ',$ldapServers));
  30. if ($bind = ldap_bind($ldap, AUTHBACKENDDOMAIN.'\\'.$username, $password)) {
  31. writeLog("success", "LDAP authentication success");
  32. return true;
  33. } else {
  34. writeLog("error", "LDPA could not authenticate");
  35. return false;
  36. }
  37. writeLog("error", "LDPA could not authenticate");
  38. return false;
  39. }
  40. else :
  41. // Ldap Auth Missing Dependancy
  42. function plugin_auth_ldap_disabled() {
  43. return 'LDAP - Disabled (Dependancy: php-ldap missing!)';
  44. }
  45. endif;
  46. // Pass credentials to FTP backend
  47. function plugin_auth_ftp($username, $password) {
  48. // Calculate parts
  49. $digest = parse_url(AUTHBACKENDHOST);
  50. $scheme = strtolower((isset($digest['scheme'])?$digest['scheme']:(function_exists('ftp_ssl_connect')?'ftps':'ftp')));
  51. $host = (isset($digest['host'])?$digest['host']:(isset($digest['path'])?$digest['path']:''));
  52. $port = (isset($digest['port'])?$digest['port']:21);
  53. // Determine Connection Type
  54. if ($scheme == 'ftps') {
  55. $conn_id = ftp_ssl_connect($host, $port, 20);
  56. } elseif ($scheme == 'ftp') {
  57. $conn_id = ftp_connect($host, $port, 20);
  58. } else {
  59. debug_out('Invalid FTP scheme. Use ftp or ftps');
  60. writeLog("error", "invalid FTP scheme");
  61. return false;
  62. }
  63. // Check if valid FTP connection
  64. if ($conn_id) {
  65. // Attempt login
  66. @$login_result = ftp_login($conn_id, $username, $password);
  67. ftp_close($conn_id);
  68. // Return Result
  69. if ($login_result) {
  70. writeLog("success", "$username authenticated");
  71. return true;
  72. } else {
  73. writeLog("error", "$username could not authenticate");
  74. return false;
  75. }
  76. } else {
  77. return false;
  78. }
  79. return false;
  80. }
  81. // Pass credentials to Emby Backend
  82. function plugin_auth_emby_local($username, $password) {
  83. $embyAddress = qualifyURL(EMBYURL);
  84. $headers = array(
  85. 'Authorization'=> 'MediaBrowser UserId="e8837bc1-ad67-520e-8cd2-f629e3155721", Client="None", Device="Organizr", DeviceId="xxx", Version="1.0.0.0"',
  86. 'Content-Type' => 'application/json',
  87. );
  88. $body = array(
  89. 'Username' => $username,
  90. 'Password' => sha1($password),
  91. 'PasswordMd5' => md5($password),
  92. );
  93. $response = post_router($embyAddress.'/Users/AuthenticateByName', $body, $headers);
  94. if (isset($response['content'])) {
  95. $json = json_decode($response['content'], true);
  96. if (is_array($json) && isset($json['SessionInfo']) && isset($json['User']) && $json['User']['HasPassword'] == true) {
  97. // Login Success - Now Logout Emby Session As We No Longer Need It
  98. $headers = array(
  99. 'X-Mediabrowser-Token' => $json['AccessToken'],
  100. );
  101. $response = post_router($embyAddress.'/Sessions/Logout', array(), $headers);
  102. return true;
  103. }
  104. }
  105. return false;
  106. }
  107. if (function_exists('curl_version')) :
  108. // Authenticate Against Emby Local (first) and Emby Connect
  109. function plugin_auth_emby_all($username, $password) {
  110. $localResult = plugin_auth_emby_local($username, $password);
  111. if ($localResult) {
  112. return $localResult;
  113. } else {
  114. return plugin_auth_emby_connect($username, $password);
  115. }
  116. }
  117. // Authenicate against emby connect
  118. function plugin_auth_emby_connect($username, $password) {
  119. $embyAddress = qualifyURL(EMBYURL);
  120. // Get A User
  121. $connectId = '';
  122. $userIds = json_decode(file_get_contents($embyAddress.'/Users?api_key='.EMBYTOKEN),true);
  123. if (is_array($userIds)) {
  124. foreach ($userIds as $key => $value) { // Scan for this user
  125. if (isset($value['ConnectUserName']) && isset($value['ConnectUserId'])) { // Qualifty as connect account
  126. if ($value['ConnectUserName'] == $username || $value['Name'] == $username) {
  127. $connectId = $value['ConnectUserId'];
  128. break;
  129. }
  130. }
  131. }
  132. if ($connectId) {
  133. $connectURL = 'https://connect.emby.media/service/user/authenticate';
  134. $headers = array(
  135. 'Accept'=> 'application/json',
  136. 'Content-Type' => 'application/x-www-form-urlencoded',
  137. );
  138. $body = array(
  139. 'nameOrEmail' => $username,
  140. 'rawpw' => $password,
  141. );
  142. $result = curl_post($connectURL, $body, $headers);
  143. if (isset($result['content'])) {
  144. $json = json_decode($result['content'], true);
  145. if (is_array($json) && isset($json['AccessToken']) && isset($json['User']) && $json['User']['Id'] == $connectId) {
  146. return array(
  147. 'email' => $json['User']['Email'],
  148. 'image' => $json['User']['ImageUrl'],
  149. );
  150. }
  151. }
  152. }
  153. }
  154. return false;
  155. }
  156. // Pass credentials to Plex Backend
  157. function plugin_auth_plex($username, $password) {
  158. // Quick out
  159. if ((strtolower(PLEXUSERNAME) == strtolower($username)) && $password == PLEXPASSWORD) {
  160. writeLog("success", $username." authenticated by plex");
  161. return true;
  162. }
  163. //Get User List
  164. $userURL = 'https://plex.tv/pms/friends/all';
  165. $userHeaders = array(
  166. 'Authorization' => 'Basic '.base64_encode(PLEXUSERNAME.':'.PLEXPASSWORD),
  167. );
  168. $userXML = simplexml_load_string(curl_get($userURL, $userHeaders));
  169. if (is_array($userXML) || is_object($userXML)) {
  170. $isUser = false;
  171. $usernameLower = strtolower($username);
  172. foreach($userXML AS $child) {
  173. if(isset($child['username']) && strtolower($child['username']) == $usernameLower) {
  174. $isUser = true;
  175. writeLog("success", $usernameLower." was found in plex friends list");
  176. break;
  177. }
  178. }
  179. if ($isUser) {
  180. //Login User
  181. $connectURL = 'https://plex.tv/users/sign_in.json';
  182. $headers = array(
  183. 'Accept'=> 'application/json',
  184. 'Content-Type' => 'application/x-www-form-urlencoded',
  185. 'X-Plex-Product' => 'Organizr',
  186. 'X-Plex-Version' => '1.0',
  187. 'X-Plex-Client-Identifier' => '01010101-10101010',
  188. );
  189. $body = array(
  190. 'user[login]' => $username,
  191. 'user[password]' => $password,
  192. );
  193. $result = curl_post($connectURL, $body, $headers);
  194. if (isset($result['content'])) {
  195. $json = json_decode($result['content'], true);
  196. if (is_array($json) && isset($json['user']) && isset($json['user']['username']) && strtolower($json['user']['username']) == $usernameLower) {
  197. writeLog("success", $json['user']['username']." was logged into organizr using plex credentials");
  198. return array(
  199. 'email' => $json['user']['email'],
  200. 'image' => $json['user']['thumb']
  201. );
  202. }
  203. }
  204. }else{
  205. writeLog("error", "$username is not an authorized PLEX user or entered invalid password");
  206. }
  207. }else{
  208. writeLog("error", "error occured logging into plex might want to check curl.cainfo=/path/to/downloaded/cacert.pem in php.ini");
  209. }
  210. return false;
  211. }
  212. else :
  213. // Plex Auth Missing Dependancy
  214. function plugin_auth_plex_disabled() {
  215. return 'Plex - Disabled (Dependancy: php-curl missing!)';
  216. }
  217. // Emby Connect Auth Missing Dependancy
  218. function plugin_auth_emby_connect_disabled() {
  219. return 'Emby Connect - Disabled (Dependancy: php-curl missing!)';
  220. }
  221. // Emby Both Auth Missing Dependancy
  222. function plugin_auth_emby_both_disabled() {
  223. return 'Emby Both - Disabled (Dependancy: php-curl missing!)';
  224. }
  225. endif;
  226. // ==== Auth Plugins END ====
  227. // ==== General Class Definitions START ====
  228. class setLanguage {
  229. private $language = null;
  230. private $langCode = null;
  231. function __construct($language = false) {
  232. // Default
  233. if (!$language) {
  234. $language = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2) : "en";
  235. }
  236. if (!file_exists("lang/{$language}.ini")) {
  237. $language = 'en';
  238. }
  239. $this->langCode = $language;
  240. $this->language = parse_ini_file("lang/{$language}.ini", false, INI_SCANNER_RAW);
  241. if (file_exists("lang/{$language}.cust.ini")) {
  242. foreach($tmp = parse_ini_file("lang/{$language}.cust.ini", false, INI_SCANNER_RAW) as $k => $v) {
  243. $this->language[$k] = $v;
  244. }
  245. }
  246. }
  247. public function getLang() {
  248. return $this->langCode;
  249. }
  250. public function translate($originalWord) {
  251. $getArg = func_num_args();
  252. if ($getArg > 1) {
  253. $allWords = func_get_args();
  254. array_shift($allWords);
  255. } else {
  256. $allWords = array();
  257. }
  258. $translatedWord = isset($this->language[$originalWord]) ? $this->language[$originalWord] : null;
  259. if (!$translatedWord) {
  260. return ucwords(str_replace("_", " ", strtolower($originalWord)));
  261. }
  262. $translatedWord = htmlspecialchars($translatedWord, ENT_QUOTES);
  263. return vsprintf($translatedWord, $allWords);
  264. }
  265. }
  266. $language = new setLanguage;
  267. // ==== General Class Definitions END ====
  268. // Direct request to curl if it exists, otherwise handle if not HTTPS
  269. function post_router($url, $data, $headers = array(), $referer='') {
  270. if (function_exists('curl_version')) {
  271. return curl_post($url, $data, $headers, $referer);
  272. } else {
  273. return post_request($url, $data, $headers, $referer);
  274. }
  275. }
  276. if (function_exists('curl_version')) :
  277. // Curl Post
  278. function curl_post($url, $data, $headers = array(), $referer='') {
  279. // Initiate cURL
  280. $curlReq = curl_init($url);
  281. // As post request
  282. curl_setopt($curlReq, CURLOPT_CUSTOMREQUEST, "POST");
  283. curl_setopt($curlReq, CURLOPT_RETURNTRANSFER, true);
  284. curl_setopt($curlReq, CURLOPT_CAINFO, getCert());
  285. // Format Data
  286. switch (isset($headers['Content-Type'])?$headers['Content-Type']:'') {
  287. case 'application/json':
  288. curl_setopt($curlReq, CURLOPT_POSTFIELDS, json_encode($data));
  289. break;
  290. case 'application/x-www-form-urlencoded';
  291. curl_setopt($curlReq, CURLOPT_POSTFIELDS, http_build_query($data));
  292. break;
  293. default:
  294. $headers['Content-Type'] = 'application/x-www-form-urlencoded';
  295. curl_setopt($curlReq, CURLOPT_POSTFIELDS, http_build_query($data));
  296. }
  297. // Format Headers
  298. $cHeaders = array();
  299. foreach ($headers as $k => $v) {
  300. $cHeaders[] = $k.': '.$v;
  301. }
  302. if (count($cHeaders)) {
  303. curl_setopt($curlReq, CURLOPT_HTTPHEADER, $cHeaders);
  304. }
  305. // Execute
  306. $result = curl_exec($curlReq);
  307. $httpcode = curl_getinfo($curlReq);
  308. // Close
  309. curl_close($curlReq);
  310. // Return
  311. return array('content'=>$result, 'http_code'=>$httpcode);
  312. }
  313. //Curl Get Function
  314. function curl_get($url, $headers = array()) {
  315. // Initiate cURL
  316. $curlReq = curl_init($url);
  317. // As post request
  318. curl_setopt($curlReq, CURLOPT_CUSTOMREQUEST, "GET");
  319. curl_setopt($curlReq, CURLOPT_RETURNTRANSFER, true);
  320. curl_setopt($curlReq, CURLOPT_CAINFO, getCert());
  321. curl_setopt($curlReq, CURLOPT_CONNECTTIMEOUT, 5);
  322. // Format Headers
  323. $cHeaders = array();
  324. foreach ($headers as $k => $v) {
  325. $cHeaders[] = $k.': '.$v;
  326. }
  327. if (count($cHeaders)) {
  328. curl_setopt($curlReq, CURLOPT_HTTPHEADER, $cHeaders);
  329. }
  330. // Execute
  331. $result = curl_exec($curlReq);
  332. // Close
  333. curl_close($curlReq);
  334. // Return
  335. return $result;
  336. }
  337. //Curl Delete Function
  338. function curl_delete($url, $headers = array()) {
  339. // Initiate cURL
  340. $curlReq = curl_init($url);
  341. // As post request
  342. curl_setopt($curlReq, CURLOPT_CUSTOMREQUEST, "DELETE");
  343. curl_setopt($curlReq, CURLOPT_RETURNTRANSFER, true);
  344. curl_setopt($curlReq, CURLOPT_CONNECTTIMEOUT, 5);
  345. curl_setopt($curlReq, CURLOPT_CAINFO, getCert());
  346. // Format Headers
  347. $cHeaders = array();
  348. foreach ($headers as $k => $v) {
  349. $cHeaders[] = $k.': '.$v;
  350. }
  351. if (count($cHeaders)) {
  352. curl_setopt($curlReq, CURLOPT_HTTPHEADER, $cHeaders);
  353. }
  354. // Execute
  355. $result = curl_exec($curlReq);
  356. $httpcode = curl_getinfo($curlReq);
  357. // Close
  358. curl_close($curlReq);
  359. // Return
  360. return array('content'=>$result, 'http_code'=>$httpcode);
  361. }
  362. endif;
  363. //Case-Insensitive Function
  364. function in_arrayi($needle, $haystack) {
  365. return in_array(strtolower($needle), array_map('strtolower', $haystack));
  366. }
  367. // HTTP post request (Removes need for curl, probably useless)
  368. function post_request($url, $data, $headers = array(), $referer='') {
  369. // Adapted from http://stackoverflow.com/a/28387011/6810513
  370. // Convert the data array into URL Parameters like a=b&foo=bar etc.
  371. if (isset($headers['Content-Type'])) {
  372. switch ($headers['Content-Type']) {
  373. case 'application/json':
  374. $data = json_encode($data);
  375. break;
  376. case 'application/x-www-form-urlencoded':
  377. $data = http_build_query($data);
  378. break;
  379. }
  380. } else {
  381. $headers['Content-Type'] = 'application/x-www-form-urlencoded';
  382. $data = http_build_query($data);
  383. }
  384. // parse the given URL
  385. $urlDigest = parse_url($url);
  386. // extract host and path:
  387. $host = $urlDigest['host'];
  388. $path = $urlDigest['path'];
  389. if ($urlDigest['scheme'] != 'http') {
  390. die('Error: Only HTTP request are supported, please use cURL to add HTTPS support! ('.$urlDigest['scheme'].'://'.$host.')');
  391. }
  392. // open a socket connection on port 80 - timeout: 30 sec
  393. $fp = fsockopen($host, (isset($urlDigest['port'])?':'.$urlDigest['port']:80), $errno, $errstr, 30);
  394. if ($fp){
  395. // send the request headers:
  396. fputs($fp, "POST $path HTTP/1.1\r\n");
  397. fputs($fp, "Host: $host\r\n");
  398. if ($referer != '')
  399. fputs($fp, "Referer: $referer\r\n");
  400. fputs($fp, "Content-length: ". strlen($data) ."\r\n");
  401. foreach($headers as $k => $v) {
  402. fputs($fp, $k.": ".$v."\r\n");
  403. }
  404. fputs($fp, "Connection: close\r\n\r\n");
  405. fputs($fp, $data);
  406. $result = '';
  407. while(!feof($fp)) {
  408. // receive the results of the request
  409. $result .= fgets($fp, 128);
  410. }
  411. }
  412. else {
  413. return array(
  414. 'status' => 'err',
  415. 'error' => "$errstr ($errno)"
  416. );
  417. }
  418. // close the socket connection:
  419. fclose($fp);
  420. // split the result header from the content
  421. $result = explode("\r\n\r\n", $result, 2);
  422. $header = isset($result[0]) ? $result[0] : '';
  423. $content = isset($result[1]) ? $result[1] : '';
  424. // return as structured array:
  425. return array(
  426. 'status' => 'ok',
  427. 'header' => $header,
  428. 'content' => $content,
  429. );
  430. }
  431. // Format item from Emby for Carousel
  432. function resolveEmbyItem($address, $token, $item, $nowPlaying = false, $showNames = false, $role = false, $moreInfo = false) {
  433. // Static Height
  434. $height = 444;
  435. // Get Item Details
  436. $itemDetails = json_decode(file_get_contents($address.'/Items?Ids='.$item['Id'].'&api_key='.$token),true)['Items'][0];
  437. if (substr_count(EMBYURL, ':') == 2) {
  438. $URL = "http://app.emby.media/itemdetails.html?id=".$itemDetails['Id'];
  439. }else{
  440. $URL = EMBYURL."/web/itemdetails.html?id=".$itemDetails['Id'];
  441. }
  442. //$URL = "http://app.emby.media/itemdetails.html?id=".$itemDetails['Id'];
  443. switch ($itemDetails['Type']) {
  444. case 'Episode':
  445. $title = (isset($itemDetails['SeriesName'])?$itemDetails['SeriesName']:"");
  446. $imageId = (isset($itemDetails['SeriesId'])?$itemDetails['SeriesId']:$itemDetails['Id']);
  447. $width = 300;
  448. $style = '';
  449. $image = 'slick-image-tall';
  450. if(!$nowPlaying){
  451. $imageType = (isset($itemDetails['ImageTags']['Primary']) ? "Primary" : false);
  452. $key = $itemDetails['Id'] . "-list";
  453. }else{
  454. $height = 281;
  455. $width = 500;
  456. $imageId = isset($itemDetails['ParentThumbItemId']) ? $itemDetails['ParentThumbItemId'] : (isset($itemDetails['ParentBackdropItemId']) ? $itemDetails['ParentBackdropItemId'] : false);
  457. $imageType = isset($itemDetails['ParentThumbItemId']) ? "Thumb" : (isset($itemDetails['ParentBackdropItemId']) ? "Backdrop" : false);
  458. $key = (isset($itemDetails['ParentThumbItemId']) ? $itemDetails['ParentThumbItemId']."-np" : "none-np");
  459. $elapsed = $moreInfo['PlayState']['PositionTicks'];
  460. $duration = $moreInfo['NowPlayingItem']['RunTimeTicks'];
  461. $watched = (!empty($elapsed) ? floor(($elapsed / $duration) * 100) : 0);
  462. //$transcoded = floor($item->TranscodeSession['progress']- $watched);
  463. $stream = $moreInfo['PlayState']['PlayMethod'];
  464. $user = $role == "admin" ? $moreInfo['UserName'] : "";
  465. $id = $moreInfo['DeviceId'];
  466. $streamInfo = buildStream(array(
  467. 'platform' => (string) $moreInfo['Client'],
  468. 'device' => (string) $moreInfo['DeviceName'],
  469. 'stream' => "&nbsp;".streamType($stream),
  470. 'video' => streamType($stream)." ".embyArray($moreInfo['NowPlayingItem']['MediaStreams'], "video"),
  471. 'audio' => "&nbsp;".streamType($stream)." ".embyArray($moreInfo['NowPlayingItem']['MediaStreams'], "audio"),
  472. ));
  473. $state = (($moreInfo['PlayState']['IsPaused'] == "1") ? "pause" : "play");
  474. $topTitle = '<h5 class="text-center zero-m elip">'.$title.' - '.$itemDetails['Name'].'</h5>';
  475. $bottomTitle = '<small class="zero-m">S'.$itemDetails['ParentIndexNumber'].' · E'.$itemDetails['IndexNumber'].'</small>';
  476. if($showNames == "true"){ $bottomTitle .= '</small><small class="zero-m pull-right">'.$user.'</small>'; }
  477. }
  478. break;
  479. case 'MusicAlbum':
  480. case 'Audio':
  481. $title = $itemDetails['Name'];
  482. $imageId = $itemDetails['Id'];
  483. $width = 444;
  484. $style = '';
  485. $image = 'slick-image-short';
  486. if(!$nowPlaying){
  487. $imageType = (isset($itemDetails['ImageTags']['Primary']) ? "Primary" : false);
  488. $key = $itemDetails['Id'] . "-list";
  489. }else{
  490. $height = 281;
  491. $width = 500;
  492. $imageId = (isset($itemDetails['ParentBackdropItemId']) ? $itemDetails['ParentBackdropItemId'] : false);
  493. $imageType = (isset($itemDetails['ParentBackdropItemId']) ? "Backdrop" : false);
  494. $key = (isset($itemDetails['ParentBackdropItemId']) ? $itemDetails['ParentBackdropItemId'] : "no-np") . "-np";
  495. $elapsed = $moreInfo['PlayState']['PositionTicks'];
  496. $duration = $moreInfo['NowPlayingItem']['RunTimeTicks'];
  497. $watched = (!empty($elapsed) ? floor(($elapsed / $duration) * 100) : 0);
  498. //$transcoded = floor($item->TranscodeSession['progress']- $watched);
  499. $stream = $moreInfo['PlayState']['PlayMethod'];
  500. $user = $role == "admin" ? $moreInfo['UserName'] : "";
  501. $id = $moreInfo['DeviceId'];
  502. $streamInfo = buildStream(array(
  503. 'platform' => (string) $moreInfo['Client'],
  504. 'device' => (string) $moreInfo['DeviceName'],
  505. 'stream' => "&nbsp;".streamType($stream),
  506. 'audio' => "&nbsp;".streamType($stream)." ".embyArray($moreInfo['NowPlayingItem']['MediaStreams'], "audio"),
  507. ));
  508. $state = (($moreInfo['PlayState']['IsPaused'] == "1") ? "pause" : "play");
  509. $topTitle = '<h5 class="text-center zero-m elip">'.$itemDetails['AlbumArtist'].' - '.$itemDetails['Album'].'</h5>';
  510. $bottomTitle = '<small class="zero-m">'.$title.'</small>';
  511. if($showNames == "true"){ $bottomTitle .= '</small><small class="zero-m pull-right">'.$user.'</small>'; }
  512. }
  513. break;
  514. case 'TvChannel':
  515. $title = $itemDetails['CurrentProgram']['Name'];
  516. $imageId = $itemDetails['Id'];
  517. $width = 300;
  518. $style = '';
  519. $image = 'slick-image-tall';
  520. if(!$nowPlaying){
  521. $imageType = "Primary";
  522. $key = $itemDetails['Id'] . "-list";
  523. }else{
  524. $height = 281;
  525. $width = 500;
  526. $imageType = "Thumb";
  527. $key = $itemDetails['Id'] . "-np";
  528. $useImage = "images/livetv.png";
  529. $watched = "0";
  530. $stream = $moreInfo['PlayState']['PlayMethod'];
  531. $user = $role == "admin" ? $moreInfo['UserName'] : "";
  532. $id = $moreInfo['DeviceId'];
  533. $streamInfo = buildStream(array(
  534. 'platform' => (string) $moreInfo['Client'],
  535. 'device' => (string) $moreInfo['DeviceName'],
  536. 'stream' => "&nbsp;".streamType($stream),
  537. 'video' => streamType($stream)." ".embyArray($moreInfo['NowPlayingItem']['MediaStreams'], "video"),
  538. 'audio' => "&nbsp;".streamType($stream)." ".embyArray($moreInfo['NowPlayingItem']['MediaStreams'], "audio"),
  539. ));
  540. $state = (($moreInfo['PlayState']['IsPaused'] == "1") ? "pause" : "play");
  541. $topTitle = '<h5 class="text-center zero-m elip">'.$title.'</h5>';
  542. $bottomTitle = '<small class="zero-m">'.$itemDetails['Name'].' - '.$itemDetails['ChannelNumber'].'</small>';
  543. if($showNames == "true"){ $bottomTitle .= '</small><small class="zero-m pull-right">'.$user.'</small>'; }
  544. }
  545. break;
  546. default:
  547. $title = $itemDetails['Name'];
  548. $imageId = $itemDetails['Id'];
  549. $width = 300;
  550. $style = '';
  551. $image = 'slick-image-tall';
  552. if(!$nowPlaying){
  553. $imageType = (isset($itemDetails['ImageTags']['Primary']) ? "Primary" : false);
  554. $key = $itemDetails['Id'] . "-list";
  555. }else{
  556. $height = 281;
  557. $width = 500;
  558. $imageType = isset($itemDetails['ImageTags']['Thumb']) ? "Thumb" : (isset($itemDetails['BackdropImageTags']) ? "Backdrop" : false);
  559. $key = $itemDetails['Id'] . "-np";
  560. $elapsed = $moreInfo['PlayState']['PositionTicks'];
  561. $duration = $moreInfo['NowPlayingItem']['RunTimeTicks'];
  562. $watched = (!empty($elapsed) ? floor(($elapsed / $duration) * 100) : 0);
  563. //$transcoded = floor($item->TranscodeSession['progress']- $watched);
  564. $stream = $moreInfo['PlayState']['PlayMethod'];
  565. $user = $role == "admin" ? $moreInfo['UserName'] : "";
  566. $id = $moreInfo['DeviceId'];
  567. $streamInfo = buildStream(array(
  568. 'platform' => (string) $moreInfo['Client'],
  569. 'device' => (string) $moreInfo['DeviceName'],
  570. 'stream' => "&nbsp;".streamType($stream),
  571. 'video' => streamType($stream)." ".embyArray($moreInfo['NowPlayingItem']['MediaStreams'], "video"),
  572. 'audio' => "&nbsp;".streamType($stream)." ".embyArray($moreInfo['NowPlayingItem']['MediaStreams'], "audio"),
  573. ));
  574. $state = (($moreInfo['PlayState']['IsPaused'] == "1") ? "pause" : "play");
  575. $topTitle = '<h5 class="text-center zero-m elip">'.$title.'</h5>';
  576. $bottomTitle = '<small class="zero-m">'.$moreInfo['NowPlayingItem']['ProductionYear'].'</small>';
  577. if($showNames == "true"){ $bottomTitle .= '</small><small class="zero-m pull-right">'.$user.'</small>'; }
  578. }
  579. }
  580. // If No Overview
  581. if (!isset($itemDetails['Overview'])) {
  582. $itemDetails['Overview'] = '';
  583. }
  584. if (file_exists('images/cache/'.$key.'.jpg')){ $image_url = 'images/cache/'.$key.'.jpg'; }
  585. if (file_exists('images/cache/'.$key.'.jpg') && (time() - 604800) > filemtime('images/cache/'.$key.'.jpg') || !file_exists('images/cache/'.$key.'.jpg')) {
  586. $image_url = 'ajax.php?a=emby-image&type='.$imageType.'&img='.$imageId.'&height='.$height.'&width='.$width.'&key='.$key.'';
  587. }
  588. if($nowPlaying){
  589. if(!$imageType){ $image_url = "images/no-np.png"; $key = "no-np"; }
  590. if(!$imageId){ $image_url = "images/no-np.png"; $key = "no-np"; }
  591. }else{
  592. if(!$imageType){ $image_url = "images/no-list.png"; $key = "no-list"; }
  593. if(!$imageId){ $image_url = "images/no-list.png"; $key = "no-list"; }
  594. }
  595. if(isset($useImage)){ $image_url = $useImage; }
  596. // Assemble Item And Cache Into Array
  597. if($nowPlaying){
  598. //prettyPrint($itemDetails);
  599. 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="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: 500px; display:inherit;" src="'.$image_url.'" alt="'.$itemDetails['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: 0%"></div></div><div class="caption"><i style="float:left" class="fa fa-'.$state.'"></i>'.$topTitle.''.$bottomTitle.'</div></div></div>';
  600. }else{
  601. return '<div class="item-'.$itemDetails['Type'].'"><a href="'.$URL.'" target="_blank"><img alt="'.$itemDetails['Name'].'" class="'.$image.'" data-lazy="'.$image_url.'"></a><small style="margin-right: 13px" class="elip">'.$title.'</small></div>';
  602. }
  603. }
  604. // Format item from Plex for Carousel
  605. function resolvePlexItem($server, $token, $item, $nowPlaying = false, $showNames = false, $role = false, $playlist = false) {
  606. // Static Height
  607. $height = 444;
  608. $playlist = ($playlist) ? " playlist-$playlist" : "";
  609. switch ($item['type']) {
  610. case 'season':
  611. $title = $item['parentTitle'];
  612. $summary = $item['parentSummary'];
  613. $width = 300;
  614. $image = 'slick-image-tall';
  615. $style = '';
  616. if(!$nowPlaying){
  617. $thumb = $item['thumb'];
  618. $key = $item['ratingKey'] . "-list";
  619. }else {
  620. $height = 281;
  621. $width = 500;
  622. $thumb = $item['art'];
  623. $key = $item['ratingKey'] . "-np";
  624. $elapsed = $item['viewOffset'];
  625. $duration = ($item['duration']) ? $item['duration'] : $item->Media['duration'];
  626. $watched = (!empty($elapsed) ? floor(($elapsed / $duration) * 100) : 0);
  627. $transcoded = floor($item->TranscodeSession['progress']- $watched);
  628. $stream = $item->Media->Part->Stream['decision'];
  629. $user = $role == "admin" ? $item->User['title'] : "";
  630. $id = str_replace('"', '', $item->Player['machineIdentifier']);
  631. $streamInfo = buildStream(array(
  632. 'platform' => (string) $item->Player['platform'],
  633. 'device' => (string) $item->Player['device'],
  634. 'stream' => "&nbsp;".streamType($item->Media->Part['decision']),
  635. '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'].")",
  636. 'audio' => "&nbsp;".streamType($item->Media->Part->Stream[1]['decision'])." (".$item->Media->Part->Stream[1]['codec'].") (".$item->Media->Part->Stream[1]['channels']."ch)",
  637. ));
  638. $state = (($item->Player['state'] == "paused") ? "pause" : "play");
  639. }
  640. break;
  641. case 'episode':
  642. $title = $item['grandparentTitle'];
  643. $summary = $item['title'];
  644. $width = 300;
  645. $image = 'slick-image-tall';
  646. $style = '';
  647. if(!$nowPlaying){
  648. $thumb = ($item['parentThumb'] ? $item['parentThumb'] : $item['grandparentThumb']);
  649. $key = $item['ratingKey'] . "-list";
  650. }else {
  651. $height = 281;
  652. $width = 500;
  653. $thumb = $item['art'];
  654. $key = $item['ratingKey'] . "-np";
  655. $elapsed = $item['viewOffset'];
  656. $duration = ($item['duration']) ? $item['duration'] : $item->Media['duration'];
  657. $watched = (!empty($elapsed) ? floor(($elapsed / $duration) * 100) : 0);
  658. $transcoded = floor($item->TranscodeSession['progress']- $watched);
  659. $stream = $item->Media->Part->Stream['decision'];
  660. $user = $role == "admin" ? $item->User['title'] : "";
  661. $id = str_replace('"', '', $item->Player['machineIdentifier']);
  662. $streamInfo = buildStream(array(
  663. 'platform' => (string) $item->Player['platform'],
  664. 'device' => (string) $item->Player['device'],
  665. 'stream' => "&nbsp;".streamType($item->Media->Part['decision']),
  666. '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'].")",
  667. 'audio' => "&nbsp;".streamType($item->Media->Part->Stream[1]['decision'])." (".$item->Media->Part->Stream[1]['codec'].") (".$item->Media->Part->Stream[1]['channels']."ch)",
  668. ));
  669. $state = (($item->Player['state'] == "paused") ? "pause" : "play");
  670. $topTitle = '<h5 class="text-center zero-m elip">'.$title.' - '.$item['title'].'</h5>';
  671. $bottomTitle = '<small class="zero-m">S'.$item['parentIndex'].' · E'.$item['index'].'</small>';
  672. if($showNames == "true"){ $bottomTitle .= '<small class="zero-m pull-right">'.$user.'</small>'; }
  673. }
  674. break;
  675. case 'clip':
  676. $title = $item['title'];
  677. $summary = $item['summary'];
  678. $width = 300;
  679. $image = 'slick-image-tall';
  680. $style = '';
  681. if(!$nowPlaying){
  682. $thumb = $item['thumb'];
  683. $key = $item['ratingKey'] . "-list";
  684. }else {
  685. $height = 281;
  686. $width = 500;
  687. $thumb = $item['art'];
  688. $key = isset($item['ratingKey']) ? $item['ratingKey'] . "-np" : (isset($item['live']) ? "livetv.png" : ":)");
  689. $useImage = (isset($item['live']) ? "images/livetv.png" : null);
  690. $extraInfo = isset($item['extraType']) ? "Trailer" : (isset($item['live']) ? "Live TV" : ":)");
  691. $elapsed = $item['viewOffset'];
  692. $duration = ($item['duration']) ? $item['duration'] : $item->Media['duration'];
  693. $watched = (!empty($elapsed) ? floor(($elapsed / $duration) * 100) : 0);
  694. $transcoded = floor($item->TranscodeSession['progress']- $watched);
  695. $stream = $item->Media->Part->Stream['decision'];
  696. $user = $role == "admin" ? $item->User['title'] : "";
  697. $id = str_replace('"', '', $item->Player['machineIdentifier']);
  698. $streamInfo = buildStream(array(
  699. 'platform' => (string) $item->Player['platform'],
  700. 'device' => (string) $item->Player['device'],
  701. 'stream' => "&nbsp;".streamType($item->Media->Part['decision']),
  702. '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'].")",
  703. 'audio' => "&nbsp;".streamType($item->Media->Part->Stream[1]['decision'])." (".$item->Media->Part->Stream[1]['codec'].") (".$item->Media->Part->Stream[1]['channels']."ch)",
  704. ));
  705. $state = (($item->Player['state'] == "paused") ? "pause" : "play");
  706. $topTitle = '<h5 class="text-center zero-m elip">'.$title.'</h5>';
  707. $bottomTitle = '<small class="zero-m">'.$extraInfo.'</small>';
  708. if($showNames == "true"){ $bottomTitle .= '<small class="zero-m pull-right">'.$user.'</small>'; }
  709. }
  710. break;
  711. case 'album':
  712. case 'track':
  713. $title = $item['parentTitle'];
  714. $summary = $item['title'];
  715. $image = 'slick-image-short';
  716. $style = 'left: 160px !important;';
  717. $item['ratingKey'] = $item['parentRatingKey'];
  718. if(!$nowPlaying){
  719. $width = 444;
  720. $thumb = $item['thumb'];
  721. $key = $item['ratingKey'] . "-list";
  722. }else {
  723. $height = 281;
  724. $width = 500;
  725. $thumb = $item['art'];
  726. $key = $item['ratingKey'] . "-np";
  727. $elapsed = $item['viewOffset'];
  728. $duration = ($item['duration']) ? $item['duration'] : $item->Media['duration'];
  729. $watched = (!empty($elapsed) ? floor(($elapsed / $duration) * 100) : 0);
  730. $transcoded = floor($item->TranscodeSession['progress']- $watched);
  731. $stream = $item->Media->Part->Stream['decision'];
  732. $user = $role == "admin" ? $item->User['title'] : "";
  733. $id = str_replace('"', '', $item->Player['machineIdentifier']);
  734. $streamInfo = buildStream(array(
  735. 'platform' => (string) $item->Player['platform'],
  736. 'device' => (string) $item->Player['device'],
  737. 'stream' => "&nbsp;".streamType($item->Media->Part['decision']),
  738. 'audio' => "&nbsp;".streamType($item->Media->Part->Stream[0]['decision'])." (".$item->Media->Part->Stream[0]['codec'].") (".$item->Media->Part->Stream[0]['channels']."ch)",
  739. ));
  740. $state = (($item->Player['state'] == "paused") ? "pause" : "play");
  741. $topTitle = '<h5 class="text-center zero-m elip">'.$item['grandparentTitle'].' - '.$item['title'].'</h5>';
  742. $bottomTitle = '<small class="zero-m">'.$title.'</small>';
  743. if($showNames == "true"){ $bottomTitle .= '<small class="zero-m pull-right">'.$user.'</small>'; }
  744. }
  745. break;
  746. default:
  747. $title = $item['title'];
  748. $summary = $item['summary'];
  749. $image = 'slick-image-tall';
  750. $style = '';
  751. if(!$nowPlaying){
  752. $width = 300;
  753. $thumb = $item['thumb'];
  754. $key = $item['ratingKey'] . "-list";
  755. }else {
  756. $height = 281;
  757. $width = 500;
  758. $thumb = $item['art'];
  759. $key = $item['ratingKey'] . "-np";
  760. $elapsed = $item['viewOffset'];
  761. $duration = ($item['duration']) ? $item['duration'] : $item->Media['duration'];
  762. $watched = (!empty($elapsed) ? floor(($elapsed / $duration) * 100) : 0);
  763. $transcoded = floor($item->TranscodeSession['progress']- $watched);
  764. $stream = $item->Media->Part->Stream['decision'];
  765. $user = $role == "admin" ? $item->User['title'] : "";
  766. $id = str_replace('"', '', $item->Player['machineIdentifier']);
  767. $streamInfo = buildStream(array(
  768. 'platform' => (string) $item->Player['platform'],
  769. 'device' => (string) $item->Player['device'],
  770. 'stream' => "&nbsp;".streamType($item->Media->Part['decision']),
  771. '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'].")",
  772. 'audio' => "&nbsp;".streamType($item->Media->Part->Stream[1]['decision'])." (".$item->Media->Part->Stream[1]['codec'].") (".$item->Media->Part->Stream[1]['channels']."ch)",
  773. ));
  774. $state = (($item->Player['state'] == "paused") ? "pause" : "play");
  775. $topTitle = '<h5 class="text-center zero-m elip">'.$title.'</h5>';
  776. $bottomTitle = '<small class="zero-m">'.$item['year'].'</small>';
  777. if($showNames == "true"){ $bottomTitle .= '<small class="zero-m pull-right">'.$user.'</small>'; }
  778. }
  779. }
  780. if (substr_count(PLEXURL, '.') != 2) {
  781. $address = "https://app.plex.tv/web/app#!/server/$server/details?key=/library/metadata/".$item['ratingKey'];
  782. }else{
  783. $address = PLEXURL."/web/index.html#!/server/$server/details?key=/library/metadata/".$item['ratingKey'];
  784. }
  785. // If No Overview
  786. if (!isset($itemDetails['Overview'])) { $itemDetails['Overview'] = ''; }
  787. if (file_exists('images/cache/'.$key.'.jpg')){ $image_url = 'images/cache/'.$key.'.jpg'; }
  788. if (file_exists('images/cache/'.$key.'.jpg') && (time() - 604800) > filemtime('images/cache/'.$key.'.jpg') || !file_exists('images/cache/'.$key.'.jpg')) {
  789. $image_url = 'ajax.php?a=plex-image&img='.$thumb.'&height='.$height.'&width='.$width.'&key='.$key.'';
  790. }
  791. if($nowPlaying){
  792. if(!$thumb){ $image_url = "images/no-np.png"; $key = "no-np"; }
  793. }else{
  794. if(!$thumb){ $image_url = "images/no-list.png"; $key = "no-list"; }
  795. }
  796. if(isset($useImage)){ $image_url = $useImage; }
  797. $openTab = (PLEXTABNAME) ? "true" : "false";
  798. // Assemble Item And Cache Into Array
  799. if($nowPlaying){
  800. 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="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 class="openTab" openTab="'.$openTab.'" href="'.$address.'" target="_blank"><img style="width: 500px; display:inherit;" src="'.$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>';
  801. }else{
  802. return '<div class="item-'.$item['type'].$playlist.'"><a class="openTab" openTab="'.$openTab.'" href="'.$address.'" target="_blank"><img alt="'.$item['Name'].'" class="'.$image.'" data-lazy="'.$image_url.'"></a><small style="margin-right: 13px" class="elip">'.$title.'</small></div>';
  803. }
  804. }
  805. //Recent Added
  806. function outputRecentAdded($header, $items, $script = false, $array) {
  807. $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<span class="caret"></span></button><ul style="right:0; left: auto" class="dropdown-menu filter-recent-event">';
  808. if($array["movie"] == "true"){
  809. $hideMenu .= '<li data-filter="item-movie" data-filter-on="false"><a class="js-filter-movie" href="javascript:void(0)">Movies</a></li>';
  810. }
  811. if($array["season"] == "true"){
  812. $hideMenu .= '<li data-filter="item-season" data-filter-on="false"><a class="js-filter-season" href="javascript:void(0)">Shows</a></li>';
  813. }
  814. if($array["album"] == "true"){
  815. $hideMenu .= '<li data-filter="item-album" data-filter-on="false"><a class="js-filter-album" href="javascript:void(0)">Music</a></li>';
  816. }
  817. $hideMenu .= '</ul></div></div>';
  818. // If None Populate Empty Item
  819. if (!count($items)) {
  820. return '<div id="recentMedia" class="content-box box-shadow big-box"><h5 class="text-center">'.$header.'</h5><p class="text-center">No Media Found</p></div>';
  821. }else{
  822. $className = str_replace(' ', '', $header);
  823. return '<div id="recentMedia" class="content-box box-shadow big-box"><h5 style="margin-bottom: -20px" class="text-center">'.$header.'</h5><div class="recentHeader inbox-pagination '.$className.'">'.$hideMenu.'</div><br/><br/><div class="recentItems-recent" data-name="'.$className.'">'.implode('',$items).'</div></div>'.($script?'<script>'.$script.'</script>':'');
  824. }
  825. }
  826. // Create Carousel
  827. function outputNowPlaying($header, $size, $type, $items, $script = false) {
  828. // If None Populate Empty Item
  829. if (!count($items)) {
  830. return '<div id=streamz></div>'.($script?'<script>'.$script.'</script>':'');
  831. }else{
  832. return '<div id=streamz><h5 class="zero-m big-box"><strong>'.$header.'</strong></h5>'.implode('',$items).'</div>'.($script?'<script>'.$script.'</script>':'');
  833. }
  834. }
  835. // Get Now Playing Streams From Emby
  836. function getEmbyStreams($size, $showNames, $role) {
  837. $address = qualifyURL(EMBYURL);
  838. $api = json_decode(@file_get_contents($address.'/Sessions?api_key='.EMBYTOKEN),true);
  839. if (!is_array($api)) { return 'Could not load!'; }
  840. $playingItems = array();
  841. foreach($api as $key => $value) {
  842. if (isset($value['NowPlayingItem'])) {
  843. $playingItems[] = resolveEmbyItem($address, EMBYTOKEN, $value['NowPlayingItem'], true, $showNames, $role, $value);
  844. }
  845. }
  846. return outputNowPlaying(translate('PLAYING_NOW_ON_EMBY'), $size, 'streams-emby', $playingItems, "
  847. setInterval(function() {
  848. $('<div></div>').load('ajax.php?a=emby-streams',function() {
  849. var element = $(this).find('[id]');
  850. var loadedID = element.attr('id');
  851. $('#'+loadedID).replaceWith(element);
  852. console.log('Loaded updated: '+loadedID);
  853. });
  854. }, 15000);
  855. ");
  856. }
  857. // Get Now Playing Streams From Plex
  858. function getPlexStreams($size, $showNames, $role){
  859. $address = qualifyURL(PLEXURL);
  860. // Perform API requests
  861. $api = @curl_get($address."/status/sessions?X-Plex-Token=".PLEXTOKEN);
  862. $api = simplexml_load_string($api);
  863. if (is_array($api) || is_object($api)){
  864. if (!$api->head->title){
  865. $getServer = simplexml_load_string(@curl_get($address."/?X-Plex-Token=".PLEXTOKEN));
  866. if (!$getServer) { return 'Could not load!'; }
  867. // Identify the local machine
  868. $gotServer = $getServer['machineIdentifier'];
  869. $items = array();
  870. foreach($api AS $child) {
  871. $items[] = resolvePlexItem($gotServer, PLEXTOKEN, $child, true, $showNames, $role);
  872. }
  873. return outputNowPlaying(translate('PLAYING_NOW_ON_PLEX')." ( ".count($items)." Streams )", $size, 'streams-plex', $items, "
  874. setInterval(function() {
  875. $('<div></div>').load('ajax.php?a=plex-streams',function() {
  876. var element = $(this).find('[id]');
  877. var loadedID = element.attr('id');
  878. $('#'+loadedID).replaceWith(element);
  879. console.log('Loaded updated: '+loadedID);
  880. });
  881. }, 15000);
  882. ");
  883. }else{
  884. writeLog("error", "PLEX STREAM ERROR: could not connect - check token - if HTTPS, is cert valid");
  885. }
  886. }else{
  887. writeLog("error", "PLEX STREAM ERROR: could not connect - check URL - if HTTPS, is cert valid");
  888. }
  889. }
  890. // Get Recent Content From Emby
  891. function getEmbyRecent($array) {
  892. $address = qualifyURL(EMBYURL);
  893. $header = translate('RECENT_CONTENT');
  894. // Currently Logged In User
  895. $username = false;
  896. if (isset($GLOBALS['USER'])) {
  897. $username = strtolower($GLOBALS['USER']->username);
  898. }
  899. // Get A User
  900. $userIds = json_decode(@file_get_contents($address.'/Users?api_key='.EMBYTOKEN),true);
  901. if (!is_array($userIds)) { return 'Could not load!'; }
  902. $showPlayed = true;
  903. foreach ($userIds as $value) { // Scan for admin user
  904. if (isset($value['Policy']) && isset($value['Policy']['IsAdministrator']) && $value['Policy']['IsAdministrator']) {
  905. $userId = $value['Id'];
  906. }
  907. if ($username && strtolower($value['Name']) == $username) {
  908. $userId = $value['Id'];
  909. $showPlayed = false;
  910. break;
  911. }
  912. }
  913. // Get the latest Items
  914. $latest = json_decode(file_get_contents($address.'/Users/'.$userId.'/Items/Latest?EnableImages=false&Limit='.EMBYRECENTITEMS.'&api_key='.EMBYTOKEN.($showPlayed?'':'&IsPlayed=false')),true);
  915. // For Each Item In Category
  916. $items = array();
  917. foreach ($latest as $k => $v) {
  918. $type = (string) $v['Type'];
  919. if(@$array[$type] == "true"){
  920. $items[] = resolveEmbyItem($address, EMBYTOKEN, $v, false, false, false);
  921. }
  922. }
  923. $array["movie"] = $array["Movie"];
  924. $array["season"] = $array["Episode"];
  925. $array["album"] = $array["MusicAlbum"];
  926. unset($array["Movie"]);
  927. unset($array["Episode"]);
  928. unset($array["MusicAlbum"]);
  929. unset($array["Series"]);
  930. return outputRecentAdded($header, $items, "", $array);
  931. }
  932. // Get Recent Content From Plex
  933. function getPlexRecent($array){
  934. $address = qualifyURL(PLEXURL);
  935. $header = translate('RECENT_CONTENT');
  936. // Perform Requests
  937. $api = @curl_get($address."/library/recentlyAdded?limit=".PLEXRECENTITEMS."&X-Plex-Token=".PLEXTOKEN);
  938. $api = simplexml_load_string($api);
  939. if (is_array($api) || is_object($api)){
  940. if (!$api->head->title){
  941. $getServer = simplexml_load_string(@curl_get($address."/?X-Plex-Token=".PLEXTOKEN));
  942. if (!$getServer) { return 'Could not load!'; }
  943. // Identify the local machine
  944. $gotServer = $getServer['machineIdentifier'];
  945. $items = array();
  946. foreach($api AS $child) {
  947. $type = (string) $child['type'];
  948. if($array[$type] == "true"){
  949. $items[] = resolvePlexItem($gotServer, PLEXTOKEN, $child, false, false, false);
  950. }
  951. }
  952. return outputRecentAdded($header, $items, "", $array);
  953. }else{
  954. writeLog("error", "PLEX STREAM ERROR: could not connect - check token - if HTTPS, is cert valid");
  955. }
  956. }else{
  957. writeLog("error", "PLEX STREAM ERROR: could not connect - check URL - if HTTPS, is cert valid");
  958. }
  959. }
  960. // Get Image From Emby
  961. function getEmbyImage() {
  962. $embyAddress = qualifyURL(EMBYURL);
  963. if (!file_exists('images/cache')) {
  964. mkdir('images/cache', 0777, true);
  965. }
  966. $itemId = $_GET['img'];
  967. $key = $_GET['key'];
  968. $itemType = $_GET['type'];
  969. $imgParams = array();
  970. if (isset($_GET['height'])) { $imgParams['height'] = 'maxHeight='.$_GET['height']; }
  971. if (isset($_GET['width'])) { $imgParams['width'] = 'maxWidth='.$_GET['width']; }
  972. if(isset($itemId)) {
  973. $image_src = $embyAddress . '/Items/'.$itemId.'/Images/'.$itemType.'?'.implode('&', $imgParams);
  974. $cachefile = 'images/cache/'.$key.'.jpg';
  975. $cachetime = 604800;
  976. // Serve from the cache if it is younger than $cachetime
  977. if (file_exists($cachefile) && time() - $cachetime < filemtime($cachefile)) {
  978. header("Content-type: image/jpeg");
  979. @readfile($cachefile);
  980. exit;
  981. }
  982. ob_start(); // Start the output buffer
  983. header('Content-type: image/jpeg');
  984. @readfile($image_src);
  985. // Cache the output to a file
  986. $fp = fopen($cachefile, 'wb');
  987. fwrite($fp, ob_get_contents());
  988. fclose($fp);
  989. ob_end_flush(); // Send the output to the browser
  990. die();
  991. } else {
  992. debug_out('Invalid Request',1);
  993. }
  994. }
  995. // Get Image From Plex
  996. function getPlexImage() {
  997. $plexAddress = qualifyURL(PLEXURL);
  998. if (!file_exists('images/cache')) {
  999. mkdir('images/cache', 0777, true);
  1000. }
  1001. $image_url = $_GET['img'];
  1002. $key = $_GET['key'];
  1003. $image_height = $_GET['height'];
  1004. $image_width = $_GET['width'];
  1005. if(isset($image_url) && isset($image_height) && isset($image_width)) {
  1006. $image_src = $plexAddress . '/photo/:/transcode?height='.$image_height.'&width='.$image_width.'&upscale=1&url=' . $image_url . '&X-Plex-Token=' . PLEXTOKEN;
  1007. $cachefile = 'images/cache/'.$key.'.jpg';
  1008. $cachetime = 604800;
  1009. // Serve from the cache if it is younger than $cachetime
  1010. if (file_exists($cachefile) && time() - $cachetime < filemtime($cachefile)) {
  1011. header("Content-type: image/jpeg");
  1012. @readfile($cachefile);
  1013. exit;
  1014. }
  1015. ob_start(); // Start the output buffer
  1016. header('Content-type: image/jpeg');
  1017. @readfile($image_src);
  1018. // Cache the output to a file
  1019. $fp = fopen($cachefile, 'wb');
  1020. fwrite($fp, ob_get_contents());
  1021. fclose($fp);
  1022. ob_end_flush(); // Send the output to the browser
  1023. die();
  1024. } else {
  1025. echo "Invalid Plex Request";
  1026. }
  1027. }
  1028. // Simplier access to class
  1029. function translate($string) {
  1030. if (isset($GLOBALS['language'])) {
  1031. return $GLOBALS['language']->translate($string);
  1032. } else {
  1033. return '!Translations Not Loaded!';
  1034. }
  1035. }
  1036. // Generate Random string
  1037. function randString($length = 10, $chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ') {
  1038. $tmp = '';
  1039. for ($i = 0; $i < $length; $i++) {
  1040. $tmp .= substr(str_shuffle($chars), 0, 1);
  1041. }
  1042. return $tmp;
  1043. }
  1044. // Create config file in the return syntax
  1045. function createConfig($array, $path = 'config/config.php', $nest = 0) {
  1046. // Define Initial Value
  1047. $output = array();
  1048. // Sort Items
  1049. ksort($array);
  1050. // Update the current config version
  1051. if (!$nest) {
  1052. // Inject Current Version
  1053. $output[] = "\t'CONFIG_VERSION' => '".(isset($array['apply_CONFIG_VERSION'])?$array['apply_CONFIG_VERSION']:INSTALLEDVERSION)."'";
  1054. }
  1055. unset($array['CONFIG_VERSION']);
  1056. unset($array['apply_CONFIG_VERSION']);
  1057. // Process Settings
  1058. foreach ($array as $k => $v) {
  1059. $allowCommit = true;
  1060. switch (gettype($v)) {
  1061. case 'boolean':
  1062. $item = ($v?'true':'false');
  1063. break;
  1064. case 'integer':
  1065. case 'double':
  1066. case 'integer':
  1067. case 'NULL':
  1068. $item = $v;
  1069. break;
  1070. case 'string':
  1071. $item = "'".str_replace(array('\\',"'"),array('\\\\',"\'"),$v)."'";
  1072. break;
  1073. case 'array':
  1074. $item = createConfig($v, false, $nest+1);
  1075. break;
  1076. default:
  1077. $allowCommit = false;
  1078. }
  1079. if($allowCommit) {
  1080. $output[] = str_repeat("\t",$nest+1)."'$k' => $item";
  1081. }
  1082. }
  1083. // Build output
  1084. $output = (!$nest?"<?php\nreturn ":'')."array(\n".implode(",\n",$output)."\n".str_repeat("\t",$nest).')'.(!$nest?';':'');
  1085. if (!$nest && $path) {
  1086. $pathDigest = pathinfo($path);
  1087. @mkdir($pathDigest['dirname'], 0770, true);
  1088. if (file_exists($path)) {
  1089. rename($path, $pathDigest['dirname'].'/'.$pathDigest['filename'].'.bak.php');
  1090. }
  1091. $file = fopen($path, 'w');
  1092. fwrite($file, $output);
  1093. fclose($file);
  1094. if (file_exists($path)) {
  1095. return true;
  1096. }
  1097. writeLog("error", "config was unable to write");
  1098. return false;
  1099. } else {
  1100. writeLog("success", "config was updated with new values");
  1101. return $output;
  1102. }
  1103. }
  1104. // Load a config file written in the return syntax
  1105. function loadConfig($path = 'config/config.php') {
  1106. // Adapted from http://stackoverflow.com/a/14173339/6810513
  1107. if (!is_file($path)) {
  1108. return null;
  1109. } else {
  1110. return (array) call_user_func(function() use($path) {
  1111. return include($path);
  1112. });
  1113. }
  1114. }
  1115. // Commit new values to the configuration
  1116. function updateConfig($new, $current = false) {
  1117. // Get config if not supplied
  1118. if ($current === false) {
  1119. $current = loadConfig();
  1120. } else if (is_string($current) && is_file($current)) {
  1121. $current = loadConfig($current);
  1122. }
  1123. // Inject Parts
  1124. foreach ($new as $k => $v) {
  1125. $current[$k] = $v;
  1126. }
  1127. // Return Create
  1128. return createConfig($current);
  1129. }
  1130. // Inject Defaults As Needed
  1131. function fillDefaultConfig($array, $path = 'config/configDefaults.php') {
  1132. if (is_string($path)) {
  1133. $loadedDefaults = loadConfig($path);
  1134. } else {
  1135. $loadedDefaults = $path;
  1136. }
  1137. return (is_array($loadedDefaults) ? fillDefaultConfig_recurse($array, $loadedDefaults) : false);
  1138. }
  1139. // support function for fillDefaultConfig()
  1140. function fillDefaultConfig_recurse($current, $defaults) {
  1141. foreach($defaults as $k => $v) {
  1142. if (!isset($current[$k])) {
  1143. $current[$k] = $v;
  1144. } else if (is_array($current[$k]) && is_array($v)) {
  1145. $current[$k] = fillDefaultConfig_recurse($current[$k], $v);
  1146. }
  1147. }
  1148. return $current;
  1149. };
  1150. // Define Scalar Variables (nest non-secular with underscores)
  1151. function defineConfig($array, $anyCase = true, $nest_prefix = false) {
  1152. foreach($array as $k => $v) {
  1153. if (is_scalar($v) && !defined($nest_prefix.$k)) {
  1154. define($nest_prefix.$k, $v, $anyCase);
  1155. } else if (is_array($v)) {
  1156. defineConfig($v, $anyCase, $nest_prefix.$k.'_');
  1157. }
  1158. }
  1159. }
  1160. // This function exists only because I am lazy
  1161. function configLazy($path = 'config/config.php') {
  1162. // Load config or default
  1163. if (file_exists($path)) {
  1164. $config = fillDefaultConfig(loadConfig($path));
  1165. } else {
  1166. $config = loadConfig('config/configDefaults.php');
  1167. }
  1168. if (is_array($config)) {
  1169. defineConfig($config);
  1170. }
  1171. return $config;
  1172. }
  1173. // Qualify URL
  1174. function qualifyURL($url) {
  1175. //local address?
  1176. if(substr($url, 0,1) == "/"){
  1177. if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') {
  1178. $protocol = "https://";
  1179. } else {
  1180. $protocol = "http://";
  1181. }
  1182. $url = $protocol.getServer().$url;
  1183. }
  1184. // Get Digest
  1185. $digest = parse_url($url);
  1186. // http/https
  1187. if (!isset($digest['scheme'])) {
  1188. if (isset($digest['port']) && in_array($digest['port'], array(80,8080,8096,32400,7878,8989,8182,8081,6789))) {
  1189. $scheme = 'http';
  1190. } else {
  1191. $scheme = 'https';
  1192. }
  1193. } else {
  1194. $scheme = $digest['scheme'];
  1195. }
  1196. // Host
  1197. $host = (isset($digest['host'])?$digest['host']:'');
  1198. // Port
  1199. $port = (isset($digest['port'])?':'.$digest['port']:'');
  1200. // Path
  1201. $path = (isset($digest['path'])?$digest['path']:'');
  1202. // Output
  1203. return $scheme.'://'.$host.$port.$path;
  1204. }
  1205. // Function to be called at top of each to allow upgrading environment as the spec changes
  1206. function upgradeCheck() {
  1207. // Upgrade to 1.31
  1208. if (file_exists('homepageSettings.ini.php')) {
  1209. $databaseConfig = parse_ini_file('databaseLocation.ini.php', true);
  1210. $homepageConfig = parse_ini_file('homepageSettings.ini.php', true);
  1211. $databaseConfig = array_merge($databaseConfig, $homepageConfig);
  1212. $databaseData = '; <?php die("Access denied"); ?>' . "\r\n";
  1213. foreach($databaseConfig as $k => $v) {
  1214. if(substr($v, -1) == "/") : $v = rtrim($v, "/"); endif;
  1215. $databaseData .= $k . " = \"" . $v . "\"\r\n";
  1216. }
  1217. write_ini_file($databaseData, 'databaseLocation.ini.php');
  1218. unlink('homepageSettings.ini.php');
  1219. unset($databaseData);
  1220. unset($homepageConfig);
  1221. }
  1222. // Upgrade to 1.32
  1223. if (file_exists('databaseLocation.ini.php')) {
  1224. // Load Existing
  1225. $config = parse_ini_file('databaseLocation.ini.php', true);
  1226. // Refactor
  1227. $config['database_Location'] = preg_replace('/\/\/$/','/',$config['databaseLocation'].'/');
  1228. $config['user_home'] = $config['database_Location'].'users/';
  1229. unset($config['databaseLocation']);
  1230. // Turn Off Emby And Plex Recent
  1231. $config["embyURL"] = $config["embyURL"].(!empty($config["embyPort"])?':'.$config["embyPort"]:'');
  1232. unset($config["embyPort"]);
  1233. $config["plexURL"] = $config["plexURL"].(!empty($config["plexPort"])?':'.$config["plexPort"]:'');
  1234. unset($config["plexPort"]);
  1235. $config["nzbgetURL"] = $config["nzbgetURL"].(!empty($config["nzbgetPort"])?':'.$config["nzbgetPort"]:'');
  1236. unset($config["nzbgetPort"]);
  1237. $config["sabnzbdURL"] = $config["sabnzbdURL"].(!empty($config["sabnzbdPort"])?':'.$config["sabnzbdPort"]:'');
  1238. unset($config["sabnzbdPort"]);
  1239. $config["headphonesURL"] = $config["headphonesURL"].(!empty($config["headphonesPort"])?':'.$config["headphonesPort"]:'');
  1240. unset($config["headphonesPort"]);
  1241. // Write config file
  1242. $config['CONFIG_VERSION'] = '1.32';
  1243. copy('config/config.php', 'config/config['.date('Y-m-d_H-i-s').'][pre1.32].bak.php');
  1244. $createConfigSuccess = createConfig($config);
  1245. // Create new config
  1246. if ($createConfigSuccess) {
  1247. if (file_exists('config/config.php')) {
  1248. // Remove Old ini file
  1249. unlink('databaseLocation.ini.php');
  1250. } else {
  1251. debug_out('Something is not right here!');
  1252. }
  1253. } else {
  1254. debug_out('Couldn\'t create updated configuration.' ,1);
  1255. }
  1256. }
  1257. // Upgrade to 1.33
  1258. $config = loadConfig();
  1259. if (isset($config['database_Location']) && (!isset($config['CONFIG_VERSION']) || $config['CONFIG_VERSION'] < '1.33')) {
  1260. // Fix User Directory
  1261. $config['database_Location'] = preg_replace('/\/\/$/','/',$config['database_Location'].'/');
  1262. $config['user_home'] = $config['database_Location'].'users/';
  1263. unset($config['USER_HOME']);
  1264. // Backend auth merge
  1265. if (isset($config['authBackendPort']) && !isset(parse_url($config['authBackendHost'])['port'])) {
  1266. $config['authBackendHost'] .= ':'.$config['authBackendPort'];
  1267. }
  1268. unset($config['authBackendPort']);
  1269. // If auth is being used move it to embyURL as that is now used in auth functions
  1270. 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')))) {
  1271. $config['embyURL'] = $config['authBackendHost'];
  1272. }
  1273. // Upgrade database to latest version
  1274. updateSQLiteDB($config['database_Location'],'1.32');
  1275. // Update Version and Commit
  1276. $config['apply_CONFIG_VERSION'] = '1.33';
  1277. copy('config/config.php', 'config/config['.date('Y-m-d_H-i-s').'][1.32].bak.php');
  1278. $createConfigSuccess = createConfig($config);
  1279. unset($config);
  1280. }
  1281. // Upgrade to 1.34
  1282. $config = loadConfig();
  1283. if (isset($config['database_Location']) && (!isset($config['CONFIG_VERSION']) || $config['CONFIG_VERSION'] < '1.34')) {
  1284. // Upgrade database to latest version
  1285. updateSQLiteDB($config['database_Location'],'1.33');
  1286. // Update Version and Commit
  1287. $config['CONFIG_VERSION'] = '1.34';
  1288. copy('config/config.php', 'config/config['.date('Y-m-d_H-i-s').'][1.33].bak.php');
  1289. $createConfigSuccess = createConfig($config);
  1290. unset($config);
  1291. }
  1292. // Upgrade to 1.40
  1293. $config = loadConfig();
  1294. if (isset($config['database_Location']) && (!isset($config['CONFIG_VERSION']) || $config['CONFIG_VERSION'] < '1.40')) {
  1295. // Upgrade database to latest version
  1296. updateSQLiteDB($config['database_Location'],'1.38');
  1297. // Update Version and Commit
  1298. $config['CONFIG_VERSION'] = '1.40';
  1299. copy('config/config.php', 'config/config['.date('Y-m-d_H-i-s').'][1.38].bak.php');
  1300. $createConfigSuccess = createConfig($config);
  1301. unset($config);
  1302. }
  1303. return true;
  1304. }
  1305. // Get OS from server
  1306. function getOS(){
  1307. if(PHP_SHLIB_SUFFIX == "dll"){
  1308. return "win";
  1309. }else{
  1310. return "nix";
  1311. }
  1312. }
  1313. //Get Error by Server OS
  1314. function getError($os, $error){
  1315. $ini = (!empty(php_ini_loaded_file()) ? php_ini_loaded_file() : "php.ini");
  1316. $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'");
  1317. $errors = array(
  1318. 'pdo_sqlite' => array(
  1319. 'win' => '<b>PDO:SQLite</b> not enabled, uncomment ;extension=php_pdo_sqlite.dll in the file php.ini | '.$ext,
  1320. 'nix' => '<b>PDO:SQLite</b> not enabled, PHP7 -> run sudo apt-get install php7.0-sqlite | PHP5 -> run sudo apt-get install php5-sqlite',
  1321. ),
  1322. 'sqlite3' => array(
  1323. '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',
  1324. 'nix' => '<b>SQLite3</b> not enabled, run sudo apt-get install php-sqlite3',
  1325. ),
  1326. 'curl' => array(
  1327. 'win' => '<b>cURL</b> not enabled, uncomment ;extension=php_curl.dll in the file php.ini | '.$ext,
  1328. 'nix' => '<b>cURL</b> not enabled, PHP7 -> sudo apt-get install php-curl | PHP5 -> run sudo apt-get install php5.6-curl',
  1329. ),
  1330. 'zip' => array(
  1331. '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',
  1332. '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',
  1333. ),
  1334. );
  1335. return (isset($errors[$error][$os]) ? $errors[$error][$os] : 'No Error Info Found');
  1336. }
  1337. // Check if all software dependancies are met
  1338. function dependCheck() {
  1339. $output = array();
  1340. $i = 1;
  1341. if (!extension_loaded('pdo_sqlite')) { $output["Step $i"] = getError(getOS(),'pdo_sqlite'); $i++; }
  1342. if (!extension_loaded('curl')) { $output["Step $i"] = getError(getOS(),'curl'); $i++; }
  1343. if (!extension_loaded('zip')) { $output["Step $i"] = getError(getOS(),'zip'); $i++; }
  1344. //if (!extension_loaded('sqlite3')) { $output[] = getError(getOS(),'sqlite3'); }
  1345. if ($output) {
  1346. $output["Step $i"] = "<b>Restart PHP and/or Webserver to apply changes</b>"; $i++;
  1347. $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++;
  1348. debug_out($output,1);
  1349. }
  1350. return true;
  1351. }
  1352. // Process file uploads
  1353. function uploadFiles($path, $ext_mask = null) {
  1354. if (isset($_FILES) && count($_FILES)) {
  1355. require_once('class.uploader.php');
  1356. $uploader = new Uploader();
  1357. $data = $uploader->upload($_FILES['files'], array(
  1358. 'limit' => 10,
  1359. 'maxSize' => 10,
  1360. 'extensions' => $ext_mask,
  1361. 'required' => false,
  1362. 'uploadDir' => str_replace('//','/',$path.'/'),
  1363. 'title' => array('name'),
  1364. 'removeFiles' => true,
  1365. 'replace' => true,
  1366. ));
  1367. if($data['isComplete']){
  1368. $files = $data['data'];
  1369. writeLog("success", $files['metas'][0]['name']." was uploaded");
  1370. echo json_encode($files['metas'][0]['name']);
  1371. }
  1372. if($data['hasErrors']){
  1373. $errors = $data['errors'];
  1374. writeLog("error", $files['metas'][0]['name']." was not able to upload");
  1375. echo json_encode($errors);
  1376. }
  1377. } else {
  1378. writeLog("error", "image was not uploaded");
  1379. echo json_encode('No files submitted!');
  1380. }
  1381. }
  1382. // Remove file
  1383. function removeFiles($path) {
  1384. if(is_file($path)) {
  1385. writeLog("success", "image was removed");
  1386. unlink($path);
  1387. } else {
  1388. writeLog("error", "image was not removed");
  1389. echo json_encode('No file specified for removal!');
  1390. }
  1391. }
  1392. // Lazy select options
  1393. function resolveSelectOptions($array, $selected = '', $multi = false) {
  1394. $output = array();
  1395. $selectedArr = ($multi?explode('|', $selected):array());
  1396. foreach ($array as $key => $value) {
  1397. if (is_array($value)) {
  1398. if (isset($value['optgroup'])) {
  1399. $output[] = '<optgroup label="'.$key.'">';
  1400. foreach($value['optgroup'] as $k => $v) {
  1401. $output[] = '<option value="'.$v['value'].'"'.($selected===$v['value']||in_array($v['value'],$selectedArr)?' selected':'').(isset($v['disabled']) && $v['disabled']?' disabled':'').'>'.$k.'</option>';
  1402. }
  1403. } else {
  1404. $output[] = '<option value="'.$value['value'].'"'.($selected===$value['value']||in_array($value['value'],$selectedArr)?' selected':'').(isset($value['disabled']) && $value['disabled']?' disabled':'').'>'.$key.'</option>';
  1405. }
  1406. } else {
  1407. $output[] = '<option value="'.$value.'"'.($selected===$value||in_array($value,$selectedArr)?' selected':'').'>'.$key.'</option>';
  1408. }
  1409. }
  1410. return implode('',$output);
  1411. }
  1412. // Check if user is allowed to continue
  1413. function qualifyUser($type, $errOnFail = false) {
  1414. if (!isset($GLOBALS['USER'])) {
  1415. require_once("user.php");
  1416. $GLOBALS['USER'] = new User('registration_callback');
  1417. }
  1418. if (is_bool($type)) {
  1419. if ($type === true) {
  1420. $authorized = ($GLOBALS['USER']->authenticated == true);
  1421. } else {
  1422. $authorized = true;
  1423. }
  1424. } elseif (is_string($type) || is_array($type)) {
  1425. if ($type !== 'false') {
  1426. if (!is_array($type)) {
  1427. $type = explode('|',$type);
  1428. }
  1429. $authorized = ($GLOBALS['USER']->authenticated && in_array($GLOBALS['USER']->role,$type));
  1430. } else {
  1431. $authorized = true;
  1432. }
  1433. } else {
  1434. debug_out('Invalid Syntax!',1);
  1435. }
  1436. if (!$authorized && $errOnFail) {
  1437. if ($GLOBALS['USER']->authenticated) {
  1438. header('Location: error.php?error=401');
  1439. echo '<script>window.location.href = \''.dirname($_SERVER['SCRIPT_NAME']).'/error.php?error=401\'</script>';
  1440. } else {
  1441. header('Location: error.php?error=999');
  1442. echo '<script>window.location.href = \''.dirname($_SERVER['SCRIPT_NAME']).'/error.php?error=999\'</script>';
  1443. }
  1444. debug_out('Not Authorized' ,1);
  1445. } else {
  1446. return $authorized;
  1447. }
  1448. }
  1449. // Build an (optionally) tabbed settings page.
  1450. function buildSettings($array) {
  1451. /*
  1452. array(
  1453. 'title' => '',
  1454. 'id' => '',
  1455. 'fields' => array( See buildField() ),
  1456. 'tabs' => array(
  1457. array(
  1458. 'title' => '',
  1459. 'id' => '',
  1460. 'image' => '',
  1461. 'fields' => array( See buildField() ),
  1462. ),
  1463. ),
  1464. );
  1465. */
  1466. $notifyExplode = explode("-", NOTIFYEFFECT);
  1467. $fieldFunc = function($fieldArr) {
  1468. $fields = '<div class="row">';
  1469. foreach($fieldArr as $key => $value) {
  1470. $isSingle = isset($value['type']);
  1471. if ($isSingle) { $value = array($value); }
  1472. $tmpField = '';
  1473. $sizeLg = max(floor(12/count($value)),2);
  1474. $sizeMd = max(floor(($isSingle?12:6)/count($value)),3);
  1475. foreach($value as $k => $v) {
  1476. $tmpField .= buildField($v, 12, $sizeMd, $sizeLg);
  1477. }
  1478. $fields .= ($isSingle?$tmpField:'<div class="row col-sm-12 content-form">'.$tmpField.'</div>');
  1479. }
  1480. $fields .= '</div>';
  1481. return $fields;
  1482. };
  1483. $fields = (isset($array['fields'])?$fieldFunc($array['fields']):'');
  1484. $tabSelectors = array();
  1485. $tabContent = array();
  1486. if (isset($array['tabs'])) {
  1487. foreach($array['tabs'] as $key => $value) {
  1488. $id = (isset($value['id'])?$value['id']:randString(32));
  1489. $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>';
  1490. $tabContent[$key] = '<div class="tab-pane big-box fade'.($tabContent?'':' active in').'" id="tab-'.$id.'">'.$fieldFunc($value['fields']).'</div>';
  1491. }
  1492. }
  1493. $pageID = (isset($array['id'])?$array['id']:str_replace(array(' ','"',"'"),array('_'),strtolower($array['id'])));
  1494. return '
  1495. <div class="email-body">
  1496. <div class="email-header gray-bg">
  1497. <button type="button" class="btn btn-danger btn-sm waves close-button"><i class="fa fa-close"></i></button>
  1498. <h1>'.$array['title'].'</h1>
  1499. </div>
  1500. <div class="email-inner small-box">
  1501. <div class="email-inner-section">
  1502. <div class="small-box fade in" id="'.$pageID.'_frame">
  1503. <div class="col-lg-12">
  1504. '.(isset($array['customBeforeForm'])?$array['customBeforeForm']:'').'
  1505. <form class="content-form" name="'.$pageID.'" id="'.$pageID.'_form" onsubmit="return false;">
  1506. <button id="'.$pageID.'_form_submit" class="btn waves btn-labeled btn-success btn btn-sm pull-right text-uppercase waves-effect waves-float">
  1507. <span class="btn-label"><i class="fa fa-floppy-o"></i></span>Save
  1508. </button>
  1509. '.$fields.($tabContent?'
  1510. <div class="tabbable tabs-with-bg" id="'.$pageID.'_tabs">
  1511. <ul class="nav nav-tabs apps">
  1512. '.implode('', $tabSelectors).'
  1513. </ul>
  1514. <div class="clearfix"></div>
  1515. <div class="tab-content">
  1516. '.implode('', $tabContent).'
  1517. </div>
  1518. </div>':'').'
  1519. </form>
  1520. '.(isset($array['customAfterForm'])?$array['customAfterForm']:'').'
  1521. </div>
  1522. </div>
  1523. </div>
  1524. </div>
  1525. </div>
  1526. <script>
  1527. $(document).ready(function() {
  1528. $(\'#'.$pageID.'_form\').find(\'input, select, textarea\').on(\'change\', function() { $(this).attr(\'data-changed\', \'true\'); });
  1529. var '.$pageID.'Validate = function() { if (this.value && !RegExp(\'^\'+this.pattern+\'$\').test(this.value)) { $(this).addClass(\'invalid\'); } else { $(this).removeClass(\'invalid\'); } };
  1530. $(\'#'.$pageID.'_form\').find(\'input[pattern]\').each('.$pageID.'Validate).on(\'keyup\', '.$pageID.'Validate);
  1531. $(\'#'.$pageID.'_form\').find(\'select[multiple]\').on(\'change click\', function() { $(this).attr(\'data-changed\', \'true\'); });
  1532. $(\'#'.$pageID.'_form_submit\').on(\'click\', function () {
  1533. var newVals = {};
  1534. var hasVals = false;
  1535. var errorFields = [];
  1536. $(\'#'.$pageID.'_form\').find(\'[data-changed=true][name]\').each(function() {
  1537. hasVals = true;
  1538. if (this.type == \'checkbox\') {
  1539. newVals[this.name] = this.checked;
  1540. } else if ($(this).hasClass(\'summernote\')) {
  1541. newVals[$(this).attr(\'name\')] = $(this).siblings(\'.note-editor\').find(\'.panel-body\').html();
  1542. } else {
  1543. if (this.value && this.pattern && !RegExp(\'^\'+this.pattern+\'$\').test(this.value)) { errorFields.push(this.name); }
  1544. var fieldVal = $(this).val();
  1545. if (typeof fieldVal == \'object\') {
  1546. if (typeof fieldVal.join == \'function\') {
  1547. fieldVal = fieldVal.join(\'|\');
  1548. } else {
  1549. fieldVal = JSON.stringify(fieldVal);
  1550. }
  1551. }
  1552. newVals[this.name] = fieldVal;
  1553. }
  1554. });
  1555. if (errorFields.length) {
  1556. parent.notify(\'Fields have errors: \'+errorFields.join(\', \')+\'!\', \'bullhorn\', \'error\', 5000, \''.$notifyExplode[0].'\', \''.$notifyExplode[1].'\');
  1557. } else if (hasVals) {
  1558. console.log(newVals);
  1559. ajax_request(\'POST\', \''.(isset($array['submitAction'])?$array['submitAction']:'update-config').'\', newVals, function(data, code) {
  1560. $(\'#'.$pageID.'_form\').find(\'[data-changed=true][name]\').removeAttr(\'data-changed\');
  1561. });
  1562. } else {
  1563. parent.notify(\'Nothing to update!\', \'bullhorn\', \'error\', 5000, \''.$notifyExplode[0].'\', \''.$notifyExplode[1].'\');
  1564. }
  1565. return false;
  1566. });
  1567. '.(isset($array['onready'])?$array['onready']:'').'
  1568. });
  1569. </script>
  1570. ';
  1571. }
  1572. // Build Settings Fields
  1573. function buildField($params, $sizeSm = 12, $sizeMd = 12, $sizeLg = 12) {
  1574. /*
  1575. array(
  1576. 'type' => '',
  1577. 'placeholder' => '',
  1578. 'label' => '',
  1579. 'labelTranslate' => '',
  1580. 'assist' => '',
  1581. 'name' => '',
  1582. 'pattern' => '',
  1583. 'options' => array( // For SELECT only
  1584. 'Display' => 'value',
  1585. ),
  1586. )
  1587. */
  1588. // Tags
  1589. $tags = array();
  1590. foreach(array('placeholder','style','disabled','readonly','pattern','min','max','required','onkeypress','onchange','onfocus','onleave','href','onclick') as $value) {
  1591. if (isset($params[$value])) {
  1592. if (is_string($params[$value])) { $tags[] = $value.'="'.$params[$value].'"';
  1593. } else if ($params[$value] === true) { $tags[] = $value; }
  1594. }
  1595. }
  1596. $format = (isset($params['format']) && in_array($params['format'],array(false,'colour','color'))?$params['format']:false);
  1597. $name = (isset($params['name'])?$params['name']:(isset($params['id'])?$params['id']:''));
  1598. $id = (isset($params['id'])?$params['id']:(isset($params['name'])?$params['name'].'_id':randString(32)));
  1599. $val = (isset($params['value'])?$params['value']:'');
  1600. $class = (isset($params['class'])?' '.$params['class']:'');
  1601. $wrapClass = (isset($params['wrapClass'])?$params['wrapClass']:'form-content');
  1602. $assist = (isset($params['assist'])?' - i.e. '.$params['assist']:'');
  1603. $label = (isset($params['labelTranslate'])?translate($params['labelTranslate']):(isset($params['label'])?$params['label']:''));
  1604. $labelOut = '<p class="help-text">'.$label.$assist.'</p>';
  1605. // Field Design
  1606. switch ($params['type']) {
  1607. case 'text':
  1608. case 'number':
  1609. case 'password':
  1610. $field = '<input id="'.$id.'" name="'.$name.'" type="'.$params['type'].'" class="form-control material input-sm'.$class.'" '.implode(' ',$tags).' autocorrect="off" autocapitalize="off" value="'.$val.'">';
  1611. break;
  1612. case 'select':
  1613. case 'dropdown':
  1614. $field = '<select id="'.$id.'" name="'.$name.'" class="form-control material input-sm" '.implode(' ',$tags).'>'.resolveSelectOptions($params['options'], $val).'</select>';
  1615. break;
  1616. case 'select-multi':
  1617. case 'dropdown-multi':
  1618. $field = '<select id="'.$id.'" name="'.$name.'" class="form-control input-sm" '.implode(' ',$tags).' multiple="multiple">'.resolveSelectOptions($params['options'], $val, true).'</select>';
  1619. break;
  1620. case 'check':
  1621. case 'checkbox':
  1622. case 'toggle':
  1623. $checked = ((is_bool($val) && $val) || trim($val) === 'true'?' checked':'');
  1624. $colour = (isset($params['colour'])?$params['colour']:'success');
  1625. $labelOut = '<label for="'.$id.'"></label>'.$label;
  1626. $field = '<input id="'.$id.'" name="'.$name.'" type="checkbox" class="switcher switcher-'.$colour.' '.$class.'" '.implode(' ',$tags).' data-value="'.$val.'"'.$checked.'>';
  1627. break;
  1628. case 'radio':
  1629. $labelOut = '';
  1630. $checked = ((is_bool($val) && $val) || ($val && trim($val) !== 'false')?' checked':'');
  1631. $bType = (isset($params['buttonType'])?$params['buttonType']:'success');
  1632. $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>';
  1633. break;
  1634. case 'date':
  1635. $field = 'Unsupported, planned.';
  1636. break;
  1637. case 'hidden':
  1638. return '<input id="'.$id.'" name="'.$name.'" type="hidden" class="'.$class.'" '.implode(' ',$tags).' value="'.$val.'">';
  1639. break;
  1640. case 'header':
  1641. $labelOut = '';
  1642. $headType = (isset($params['value'])?$params['value']:3);
  1643. $field = '<h'.$headType.' class="'.$class.'" '.implode(' ',$tags).'>'.$label.'</h'.$headType.'>';
  1644. break;
  1645. case 'button':
  1646. $labelOut = '';
  1647. $icon = (isset($params['icon'])?$params['icon']:'flask');
  1648. $bType = (isset($params['buttonType'])?$params['buttonType']:'success');
  1649. $bDropdown = (isset($params['buttonDrop'])?$params['buttonDrop']:'');
  1650. $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>'.$label.'</button>'.($bDropdown?$bDropdown.'</div>':'');
  1651. break;
  1652. case 'textarea':
  1653. $rows = (isset($params['rows'])?$params['rows']:5);
  1654. $field = '<textarea id="'.$id.'" name="'.$name.'" class="form-control'.$class.'" rows="'.$rows.'" '.implode(' ',$tags).'>'.$val.'</textarea>';
  1655. break;
  1656. case 'custom':
  1657. // Settings
  1658. $settings = array(
  1659. '$id' => $id,
  1660. '$name' => $name,
  1661. '$val' => $val,
  1662. '$label' => $label,
  1663. '$labelOut' => $labelOut,
  1664. );
  1665. // Get HTML
  1666. $html = (isset($params['html'])?$params['html']:'Nothing Specified!');
  1667. // If LabelOut is in html dont print it twice
  1668. $labelOut = (strpos($html,'$label')!==false?'':$labelOut);
  1669. // Replace variables in settings
  1670. $html = preg_replace_callback('/\$\w+\b/', function ($match) use ($settings) { return (isset($settings[$match[0]])?$settings[$match[0]]:'{'.$match[0].' is undefined}'); }, $html);
  1671. // Build Field
  1672. $field = '<div id="'.$id.'_html" class="custom-field">'.$html.'</div>';
  1673. break;
  1674. case 'space':
  1675. $labelOut = '';
  1676. $field = str_repeat('<br>', (isset($params['value'])?$params['value']:1));
  1677. break;
  1678. default:
  1679. $field = 'Unsupported field type';
  1680. break;
  1681. }
  1682. // Field Formats
  1683. switch ($format) {
  1684. case 'colour': // Fuckin Eh, Canada!
  1685. case 'color':
  1686. $labelBef = '<center>'.$label.'</center>';
  1687. $wrapClass = 'gray-bg colour-field';
  1688. $labelAft = '';
  1689. $field = str_replace(' material input-sm','',$field);
  1690. break;
  1691. default:
  1692. $labelBef = '';
  1693. $labelAft = $labelOut;
  1694. }
  1695. return '<div class="'.$wrapClass.' col-sm-'.$sizeSm.' col-md-'.$sizeMd.' col-lg-'.$sizeLg.'">'.$labelBef.$field.$labelAft.'</div>';
  1696. }
  1697. // Tab Settings Generation
  1698. function printTabRow($data) {
  1699. $hidden = false;
  1700. if ($data===false) {
  1701. $hidden = true;
  1702. $data = array( // New Tab Defaults
  1703. 'id' => 'new',
  1704. 'name' => '',
  1705. 'url' => '',
  1706. 'icon' => 'fa-diamond',
  1707. 'iconurl' => '',
  1708. 'active' => 'true',
  1709. 'user' => 'true',
  1710. 'guest' => 'true',
  1711. 'window' => 'false',
  1712. 'defaultz' => '',
  1713. );
  1714. }
  1715. $image = '<span style="font: normal normal normal 30px/1 FontAwesome;" class="fa fa-hand-paper-o"></span>';
  1716. $output = '
  1717. <li id="tab-'.$data['id'].'" class="list-group-item" style="position: relative; left: 0px; top: 0px; '.($hidden?' display: none;':'').'">
  1718. <tab class="content-form form-inline">
  1719. <div class="row">
  1720. '.buildField(array(
  1721. 'type' => 'custom',
  1722. '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>',
  1723. ),12,1,1).'
  1724. '.buildField(array(
  1725. 'type' => 'hidden',
  1726. 'id' => 'tab-'.$data['id'].'-id',
  1727. 'name' => 'id['.$data['id'].']',
  1728. 'value' => $data['id'],
  1729. ),12,2,1).'
  1730. '.buildField(array(
  1731. 'type' => 'text',
  1732. 'id' => 'tab-'.$data['id'].'-name',
  1733. 'name' => 'name['.$data['id'].']',
  1734. 'required' => true,
  1735. 'placeholder' => 'Organizr Homepage',
  1736. 'labelTranslate' => 'TAB_NAME',
  1737. 'value' => $data['name'],
  1738. ),12,2,1).'
  1739. '.buildField(array(
  1740. 'type' => 'text',
  1741. 'id' => 'tab-'.$data['id'].'-url',
  1742. 'name' => 'url['.$data['id'].']',
  1743. 'required' => true,
  1744. 'placeholder' => 'homepage.php',
  1745. 'labelTranslate' => 'TAB_URL',
  1746. 'value' => $data['url'],
  1747. ),12,2,1).'
  1748. '.buildField(array(
  1749. 'type' => 'text',
  1750. 'id' => 'tab-'.$data['id'].'-iconurl',
  1751. 'name' => 'iconurl['.$data['id'].']',
  1752. 'placeholder' => 'images/organizr.png',
  1753. 'labelTranslate' => 'ICON_URL',
  1754. 'value' => $data['iconurl'],
  1755. ),12,2,1).'
  1756. '.buildField(array(
  1757. 'type' => 'custom',
  1758. 'id' => 'tab-'.$data['id'].'-icon',
  1759. 'name' => 'icon['.$data['id'].']',
  1760. 'html' => '- '.translate('OR').' - <div class="input-group"><input data-placement="bottomRight" class="form-control material icp-auto'.($hidden?'-pend':'').'" id="$id" name="$name" value="$val" type="text" /><span class="input-group-addon"></span></div>',
  1761. 'value' => $data['icon'],
  1762. ),12,1,1).'
  1763. '.buildField(array(
  1764. 'type' => 'checkbox',
  1765. 'labelTranslate' => 'ACTIVE',
  1766. 'name' => 'active['.$data['id'].']',
  1767. 'value' => $data['active'],
  1768. ),12,1,1).'
  1769. '.buildField(array(
  1770. 'type' => 'checkbox',
  1771. 'labelTranslate' => 'USER',
  1772. 'colour' => 'primary',
  1773. 'name' => 'user['.$data['id'].']',
  1774. 'value' => $data['user'],
  1775. ),12,1,1).'
  1776. '.buildField(array(
  1777. 'type' => 'checkbox',
  1778. 'labelTranslate' => 'GUEST',
  1779. 'colour' => 'warning',
  1780. 'name' => 'guest['.$data['id'].']',
  1781. 'value' => $data['guest'],
  1782. ),12,1,1).'
  1783. '.buildField(array(
  1784. 'type' => 'checkbox',
  1785. 'labelTranslate' => 'NO_IFRAME',
  1786. 'colour' => 'danger',
  1787. 'name' => 'window['.$data['id'].']',
  1788. 'value' => $data['window'],
  1789. ),12,1,1).'
  1790. '.buildField(array(
  1791. 'type' => 'radio',
  1792. 'labelTranslate' => 'DEFAULT',
  1793. 'name' => 'defaultz['.$data['id'].']',
  1794. 'value' => $data['defaultz'],
  1795. 'onclick' => "$('[type=radio][id!=\''+this.id+'\']').each(function() { this.checked=false; });",
  1796. ),12,1,1).'
  1797. '.buildField(array(
  1798. 'type' => 'button',
  1799. 'icon' => 'trash',
  1800. 'buttonType' => 'danger',
  1801. 'labelTranslate' => 'REMOVE',
  1802. 'onclick' => "$(this).parents('li').remove();",
  1803. ),12,1,1).'
  1804. </div>
  1805. </tab>
  1806. </li>
  1807. ';
  1808. return $output;
  1809. }
  1810. // Timezone array
  1811. function timezoneOptions() {
  1812. $output = array();
  1813. $timezones = array();
  1814. $regions = array(
  1815. 'Africa' => DateTimeZone::AFRICA,
  1816. 'America' => DateTimeZone::AMERICA,
  1817. 'Antarctica' => DateTimeZone::ANTARCTICA,
  1818. 'Arctic' => DateTimeZone::ARCTIC,
  1819. 'Asia' => DateTimeZone::ASIA,
  1820. 'Atlantic' => DateTimeZone::ATLANTIC,
  1821. 'Australia' => DateTimeZone::AUSTRALIA,
  1822. 'Europe' => DateTimeZone::EUROPE,
  1823. 'Indian' => DateTimeZone::INDIAN,
  1824. 'Pacific' => DateTimeZone::PACIFIC
  1825. );
  1826. foreach ($regions as $name => $mask) {
  1827. $zones = DateTimeZone::listIdentifiers($mask);
  1828. foreach($zones as $timezone) {
  1829. $time = new DateTime(NULL, new DateTimeZone($timezone));
  1830. $ampm = $time->format('H') > 12 ? ' ('. $time->format('g:i a'). ')' : '';
  1831. $output[$name]['optgroup'][substr($timezone, strlen($name) + 1) . ' - ' . $time->format('H:i') . $ampm]['value'] = $timezone;
  1832. }
  1833. }
  1834. return $output;
  1835. }
  1836. // Build Database
  1837. function createSQLiteDB($path = false) {
  1838. if ($path === false) {
  1839. if (DATABASE_LOCATION){
  1840. $path = DATABASE_LOCATION;
  1841. } else {
  1842. debug_out('No Path Specified!');
  1843. }
  1844. }
  1845. if (!is_file($path.'users.db') || filesize($path.'users.db') <= 0) {
  1846. if (!isset($GLOBALS['file_db'])) {
  1847. $GLOBALS['file_db'] = new PDO('sqlite:'.$path.'users.db');
  1848. $GLOBALS['file_db']->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  1849. }
  1850. // Create Users
  1851. $users = $GLOBALS['file_db']->query('CREATE TABLE `users` (
  1852. `id` INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE,
  1853. `username` TEXT UNIQUE,
  1854. `password` TEXT,
  1855. `email` TEXT,
  1856. `token` TEXT,
  1857. `role` TEXT,
  1858. `active` TEXT,
  1859. `last` TEXT,
  1860. `auth_service` TEXT DEFAULT \'internal\'
  1861. );');
  1862. // Create Tabs
  1863. $tabs = $GLOBALS['file_db']->query('CREATE TABLE `tabs` (
  1864. `id` INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE,
  1865. `order` INTEGER,
  1866. `users_id` INTEGER,
  1867. `name` TEXT,
  1868. `url` TEXT,
  1869. `defaultz` TEXT,
  1870. `active` TEXT,
  1871. `user` TEXT,
  1872. `guest` TEXT,
  1873. `icon` TEXT,
  1874. `iconurl` TEXT,
  1875. `window` TEXT
  1876. );');
  1877. // Create Options
  1878. $options = $GLOBALS['file_db']->query('CREATE TABLE `options` (
  1879. `id` INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE,
  1880. `users_id` INTEGER UNIQUE,
  1881. `title` TEXT UNIQUE,
  1882. `topbar` TEXT,
  1883. `bottombar` TEXT,
  1884. `sidebar` TEXT,
  1885. `hoverbg` TEXT,
  1886. `topbartext` TEXT,
  1887. `activetabBG` TEXT,
  1888. `activetabicon` TEXT,
  1889. `activetabtext` TEXT,
  1890. `inactiveicon` TEXT,
  1891. `inactivetext` TEXT,
  1892. `loading` TEXT,
  1893. `hovertext` TEXT
  1894. );');
  1895. // Create Invites
  1896. $invites = $GLOBALS['file_db']->query('CREATE TABLE `invites` (
  1897. `id` INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE,
  1898. `code` TEXT UNIQUE,
  1899. `date` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
  1900. `email` TEXT,
  1901. `username` TEXT,
  1902. `dateused` TIMESTAMP,
  1903. `usedby` TEXT,
  1904. `ip` TEXT,
  1905. `valid` TEXT
  1906. );');
  1907. writeLog("success", "database created/saved");
  1908. return $users && $tabs && $options && $invites;
  1909. } else {
  1910. writeLog("error", "database was unable to be created/saved");
  1911. return false;
  1912. }
  1913. }
  1914. // Upgrade Database
  1915. function updateSQLiteDB($db_path = false, $oldVerNum = false) {
  1916. if (!$db_path) {
  1917. if (defined('DATABASE_LOCATION')) {
  1918. $db_path = DATABASE_LOCATION;
  1919. } else {
  1920. debug_out('No Path Specified',1);
  1921. }
  1922. }
  1923. if (!isset($GLOBALS['file_db'])) {
  1924. $GLOBALS['file_db'] = new PDO('sqlite:'.$db_path.'users.db');
  1925. $GLOBALS['file_db']->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  1926. }
  1927. // Cache current DB
  1928. $cache = array();
  1929. foreach($GLOBALS['file_db']->query('SELECT name FROM sqlite_master WHERE type="table";') as $table) {
  1930. foreach($GLOBALS['file_db']->query('SELECT * FROM '.$table['name'].';') as $key => $row) {
  1931. foreach($row as $k => $v) {
  1932. if (is_string($k)) {
  1933. $cache[$table['name']][$key][$k] = $v;
  1934. }
  1935. }
  1936. }
  1937. }
  1938. // Remove Current Database
  1939. $GLOBALS['file_db'] = null;
  1940. $pathDigest = pathinfo($db_path.'users.db');
  1941. if (file_exists($db_path.'users.db')) {
  1942. rename($db_path.'users.db', $pathDigest['dirname'].'/'.$pathDigest['filename'].'['.date('Y-m-d_H-i-s').']'.($oldVerNum?'['.$oldVerNum.']':'').'.bak.db');
  1943. }
  1944. // Create New Database
  1945. $success = createSQLiteDB($db_path);
  1946. // Restore Items
  1947. if ($success) {
  1948. foreach($cache as $table => $tableData) {
  1949. if ($tableData) {
  1950. $queryBase = 'INSERT INTO '.$table.' (`'.implode('`,`',array_keys(current($tableData))).'`) values ';
  1951. $insertValues = array();
  1952. reset($tableData);
  1953. foreach($tableData as $key => $value) {
  1954. $insertValues[] = '('.implode(',',array_map(function($d) {
  1955. return (isset($d)?$GLOBALS['file_db']->quote($d):'null');
  1956. }, $value)).')';
  1957. }
  1958. $GLOBALS['file_db']->query($queryBase.implode(',',$insertValues).';');
  1959. }
  1960. }
  1961. writeLog("success", "database values have been updated");
  1962. return true;
  1963. } else {
  1964. writeLog("error", "database values unable to be updated");
  1965. return false;
  1966. }
  1967. }
  1968. // Commit colours to database
  1969. function updateDBOptions($values) {
  1970. if (!isset($GLOBALS['file_db'])) {
  1971. $GLOBALS['file_db'] = new PDO('sqlite:'.DATABASE_LOCATION.'users.db');
  1972. $GLOBALS['file_db']->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  1973. }
  1974. // Commit new values to database
  1975. if ($GLOBALS['file_db']->query('UPDATE options SET '.implode(',',array_map(function($d, $k) {
  1976. return '`'.$k.'` = '.(isset($d)?"'".addslashes($d)."'":'null');
  1977. }, $values, array_keys($values))).';')->rowCount()) {
  1978. return true;
  1979. } else if ($GLOBALS['file_db']->query('INSERT OR IGNORE INTO options (`'.implode('`,`',array_keys($values)).'`) VALUES (\''.implode("','",$values).'\');')->rowCount()) {
  1980. writeLog("success", "database values for options table have been updated");
  1981. return true;
  1982. } else {
  1983. writeLog("error", "database values for options table unable to be updated");
  1984. return false;
  1985. }
  1986. }
  1987. // Send AJAX notification
  1988. function sendNotification($success, $message = false, $send = true) {
  1989. $notifyExplode = explode("-", NOTIFYEFFECT);
  1990. if ($success) {
  1991. $msg = array(
  1992. 'html' => ($message?''.$message:'<strong>'.translate("SETTINGS_SAVED").'</strong>'),
  1993. 'icon' => 'floppy-o',
  1994. 'type' => 'success',
  1995. 'length' => '5000',
  1996. 'layout' => $notifyExplode[0],
  1997. 'effect' => $notifyExplode[1],
  1998. );
  1999. } else {
  2000. $msg = array(
  2001. 'html' => ($message?''.$message:'<strong>'.translate("SETTINGS_NOT_SAVED").'</strong>'),
  2002. 'icon' => 'floppy-o',
  2003. 'type' => 'failed',
  2004. 'length' => '5000',
  2005. 'layout' => $notifyExplode[0],
  2006. 'effect' => $notifyExplode[1],
  2007. );
  2008. }
  2009. // Send and kill script?
  2010. if ($send) {
  2011. header('Content-Type: application/json');
  2012. echo json_encode(array('notify'=>$msg));
  2013. die();
  2014. }
  2015. return $msg;
  2016. }
  2017. // Load colours from the database
  2018. function loadAppearance() {
  2019. // Defaults
  2020. $defaults = array(
  2021. 'title' => 'Organizr',
  2022. 'topbartext' => '#66D9EF',
  2023. 'topbar' => '#333333',
  2024. 'bottombar' => '#333333',
  2025. 'sidebar' => '#393939',
  2026. 'hoverbg' => '#AD80FD',
  2027. 'activetabBG' => '#F92671',
  2028. 'activetabicon' => '#FFFFFF',
  2029. 'activetabtext' => '#FFFFFF',
  2030. 'inactiveicon' => '#66D9EF',
  2031. 'inactivetext' => '#66D9EF',
  2032. 'loading' => '#66D9EF',
  2033. 'hovertext' => '#000000',
  2034. );
  2035. if (DATABASE_LOCATION) {
  2036. if(is_file(DATABASE_LOCATION.'users.db') && filesize(DATABASE_LOCATION.'users.db') > 0){
  2037. if (!isset($GLOBALS['file_db'])) {
  2038. $GLOBALS['file_db'] = new PDO('sqlite:'.DATABASE_LOCATION.'users.db');
  2039. $GLOBALS['file_db']->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  2040. }
  2041. // Database Lookup
  2042. $options = $GLOBALS['file_db']->query('SELECT * FROM options');
  2043. // Replace defaults with filled options
  2044. foreach($options as $row) {
  2045. foreach($defaults as $key => $value) {
  2046. if (isset($row[$key]) && $row[$key]) {
  2047. $defaults[$key] = $row[$key];
  2048. }
  2049. }
  2050. }
  2051. }
  2052. }
  2053. // Return the Results
  2054. return $defaults;
  2055. }
  2056. // Delete Database
  2057. function deleteDatabase() {
  2058. unset($_COOKIE['Organizr']);
  2059. setcookie('Organizr', '', time() - 3600, '/');
  2060. unset($_COOKIE['OrganizrU']);
  2061. setcookie('OrganizrU', '', time() - 3600, '/');
  2062. $GLOBALS['file_db'] = null;
  2063. unlink(DATABASE_LOCATION.'users.db');
  2064. foreach(glob(substr_replace($userdirpath, "", -1).'/*') as $file) {
  2065. if(is_dir($file)) {
  2066. rmdir($file);
  2067. } elseif (!is_dir($file)) {
  2068. unlink($file);
  2069. }
  2070. }
  2071. rmdir($userdirpath);
  2072. writeLog("success", "database has been deleted");
  2073. return true;
  2074. }
  2075. // Upgrade the installation
  2076. function upgradeInstall($branch = 'master') {
  2077. function downloadFile($url, $path){
  2078. ini_set('max_execution_time',0);
  2079. $folderPath = "upgrade/";
  2080. if(!mkdir($folderPath)){
  2081. writeLog("error", "organizr could not create upgrade folder");
  2082. }
  2083. $newfname = $folderPath . $path;
  2084. $file = fopen ($url, 'rb');
  2085. if ($file) {
  2086. $newf = fopen ($newfname, 'wb');
  2087. if ($newf) {
  2088. while(!feof($file)) {
  2089. fwrite($newf, fread($file, 1024 * 8), 1024 * 8);
  2090. }
  2091. }
  2092. }else{
  2093. writeLog("error", "organizr could not download $url");
  2094. }
  2095. if ($file) {
  2096. fclose($file);
  2097. writeLog("success", "organizr finished downloading the github zip file");
  2098. }else{
  2099. writeLog("error", "organizr could not download the github zip file");
  2100. }
  2101. if ($newf) {
  2102. fclose($newf);
  2103. writeLog("success", "organizr created upgrade zip file from github zip file");
  2104. }else{
  2105. writeLog("error", "organizr could not create upgrade zip file from github zip file");
  2106. }
  2107. }
  2108. function unzipFile($zipFile){
  2109. $zip = new ZipArchive;
  2110. $extractPath = "upgrade/";
  2111. if($zip->open($extractPath . $zipFile) != "true"){
  2112. writeLog("error", "organizr could not unzip upgrade.zip");
  2113. }else{
  2114. writeLog("success", "organizr unzipped upgrade.zip");
  2115. }
  2116. /* Extract Zip File */
  2117. $zip->extractTo($extractPath);
  2118. $zip->close();
  2119. }
  2120. // Function to remove folders and files
  2121. function rrmdir($dir) {
  2122. if (is_dir($dir)) {
  2123. $files = scandir($dir);
  2124. foreach ($files as $file)
  2125. if ($file != "." && $file != "..") rrmdir("$dir/$file");
  2126. rmdir($dir);
  2127. }
  2128. else if (file_exists($dir)) unlink($dir);
  2129. }
  2130. // Function to Copy folders and files
  2131. function rcopy($src, $dst) {
  2132. if (is_dir ( $src )) {
  2133. if (!file_exists($dst)) : mkdir ( $dst ); endif;
  2134. $files = scandir ( $src );
  2135. foreach ( $files as $file )
  2136. if ($file != "." && $file != "..")
  2137. rcopy ( "$src/$file", "$dst/$file" );
  2138. } else if (file_exists ( $src ))
  2139. copy ( $src, $dst );
  2140. }
  2141. $url = 'https://github.com/causefx/Organizr/archive/'.$branch.'.zip';
  2142. $file = "upgrade.zip";
  2143. $source = __DIR__ . '/upgrade/Organizr-'.$branch.'/';
  2144. $cleanup = __DIR__ . "/upgrade/";
  2145. $destination = __DIR__ . "/";
  2146. writeLog("success", "starting organizr upgrade process");
  2147. downloadFile($url, $file);
  2148. unzipFile($file);
  2149. rcopy($source, $destination);
  2150. writeLog("success", "new organizr files copied");
  2151. rrmdir($cleanup);
  2152. writeLog("success", "organizr upgrade folder removed");
  2153. writeLog("success", "organizr has been updated");
  2154. return true;
  2155. }
  2156. // NzbGET Items
  2157. function nzbgetConnect($list = 'listgroups') {
  2158. $url = qualifyURL(NZBGETURL);
  2159. $api = curl_get($url.'/'.NZBGETUSERNAME.':'.NZBGETPASSWORD.'/jsonrpc/'.$list);
  2160. $api = json_decode($api, true);
  2161. $gotNZB = array();
  2162. if (is_array($api) || is_object($api)){
  2163. foreach ($api['result'] AS $child) {
  2164. $downloadName = htmlentities($child['NZBName'], ENT_QUOTES);
  2165. $downloadStatus = $child['Status'];
  2166. $downloadCategory = $child['Category'];
  2167. if($list == "history"){ $downloadPercent = "100"; $progressBar = ""; }
  2168. if($list == "listgroups"){ $downloadPercent = (($child['FileSizeMB'] - $child['RemainingSizeMB']) / $child['FileSizeMB']) * 100; $progressBar = "progress-bar-striped active"; }
  2169. if($child['Health'] <= "750"){
  2170. $downloadHealth = "danger";
  2171. }elseif($child['Health'] <= "900"){
  2172. $downloadHealth = "warning";
  2173. }elseif($child['Health'] <= "1000"){
  2174. $downloadHealth = "success";
  2175. }
  2176. $gotNZB[] = '<tr>
  2177. <td class="col-xs-7 nzbtable-file-row">'.$downloadName.'</td>
  2178. <td class="col-xs-2 nzbtable nzbtable-row">'.$downloadStatus.'</td>
  2179. <td class="col-xs-1 nzbtable nzbtable-row">'.$downloadCategory.'</td>
  2180. <td class="col-xs-2 nzbtable nzbtable-row">
  2181. <div class="progress">
  2182. <div class="progress-bar progress-bar-'.$downloadHealth.' '.$progressBar.'" role="progressbar" aria-valuenow="'.$downloadPercent.'" aria-valuemin="0" aria-valuemax="100" style="width: '.$downloadPercent.'%">
  2183. <p class="text-center">'.round($downloadPercent).'%</p>
  2184. <span class="sr-only">'.$downloadPercent.'% Complete</span>
  2185. </div>
  2186. </div>
  2187. </td>
  2188. </tr>';
  2189. }
  2190. if ($gotNZB) {
  2191. return implode('',$gotNZB);
  2192. } else {
  2193. return '<tr><td colspan="4"><p class="text-center">No Results</p></td></tr>';
  2194. }
  2195. }else{
  2196. writeLog("error", "NZBGET ERROR: could not connect - check URL and/or check token and/or Usernamd and Password - if HTTPS, is cert valid");
  2197. }
  2198. }
  2199. // Sabnzbd Items
  2200. function sabnzbdConnect($list = 'queue') {
  2201. $url = qualifyURL(SABNZBDURL);
  2202. $api = file_get_contents($url.'/api?mode='.$list.'&output=json&apikey='.SABNZBDKEY);
  2203. $api = json_decode($api, true);
  2204. $gotNZB = array();
  2205. foreach ($api[$list]['slots'] AS $child) {
  2206. if($list == "queue"){ $downloadName = $child['filename']; $downloadCategory = $child['cat']; $downloadPercent = (($child['mb'] - $child['mbleft']) / $child['mb']) * 100; $progressBar = "progress-bar-striped active"; }
  2207. if($list == "history"){ $downloadName = $child['name']; $downloadCategory = $child['category']; $downloadPercent = "100"; $progressBar = ""; }
  2208. $downloadStatus = $child['status'];
  2209. $gotNZB[] = '<tr>
  2210. <td>'.$downloadName.'</td>
  2211. <td>'.$downloadStatus.'</td>
  2212. <td>'.$downloadCategory.'</td>
  2213. <td>
  2214. <div class="progress">
  2215. <div class="progress-bar progress-bar-success '.$progressBar.'" role="progressbar" aria-valuenow="'.$downloadPercent.'" aria-valuemin="0" aria-valuemax="100" style="width: '.$downloadPercent.'%">
  2216. <p class="text-center">'.round($downloadPercent).'%</p>
  2217. <span class="sr-only">'.$downloadPercent.'% Complete</span>
  2218. </div>
  2219. </div>
  2220. </td>
  2221. </tr>';
  2222. }
  2223. if ($gotNZB) {
  2224. return implode('',$gotNZB);
  2225. } else {
  2226. return '<tr><td colspan="4"><p class="text-center">No Results</p></td></tr>';
  2227. }
  2228. }
  2229. // Apply new tab settings
  2230. function updateTabs($tabs) {
  2231. if (!isset($GLOBALS['file_db'])) {
  2232. $GLOBALS['file_db'] = new PDO('sqlite:'.DATABASE_LOCATION.'users.db');
  2233. $GLOBALS['file_db']->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  2234. }
  2235. // Validate
  2236. if (!isset($tabs['defaultz'])) { $tabs['defaultz'][current(array_keys($tabs['name']))] = 'true'; }
  2237. if (isset($tabs['name']) && isset($tabs['url']) && is_array($tabs['name'])) {
  2238. // Clear Existing Tabs
  2239. $GLOBALS['file_db']->query("DELETE FROM tabs");
  2240. // Process New Tabs
  2241. $totalValid = 0;
  2242. foreach ($tabs['name'] as $key => $value) {
  2243. // Qualify
  2244. if (!$value || !isset($tabs['url']) || !$tabs['url'][$key]) { continue; }
  2245. $totalValid++;
  2246. $fields = array();
  2247. foreach(array('id','name','url','icon','iconurl','order') as $v) {
  2248. if (isset($tabs[$v]) && isset($tabs[$v][$key])) { $fields[$v] = $tabs[$v][$key]; }
  2249. }
  2250. foreach(array('active','user','guest','defaultz','window') as $v) {
  2251. if (isset($tabs[$v]) && isset($tabs[$v][$key])) { $fields[$v] = ($tabs[$v][$key]!=='false'?'true':'false'); }
  2252. }
  2253. $GLOBALS['file_db']->query('INSERT INTO tabs (`'.implode('`,`',array_keys($fields)).'`) VALUES (\''.implode("','",$fields).'\');');
  2254. }
  2255. writeLog("success", "tabs successfully saved");
  2256. return $totalValid;
  2257. } else {
  2258. writeLog("error", "tabs could not save");
  2259. return false;
  2260. }
  2261. writeLog("error", "tabs could not save");
  2262. return false;
  2263. }
  2264. // ==============
  2265. function clean($strin) {
  2266. $strout = null;
  2267. for ($i = 0; $i < strlen($strin); $i++) {
  2268. $ord = ord($strin[$i]);
  2269. if (($ord > 0 && $ord < 32) || ($ord >= 127)) {
  2270. $strout .= "&amp;#{$ord};";
  2271. }
  2272. else {
  2273. switch ($strin[$i]) {
  2274. case '<':
  2275. $strout .= '&lt;';
  2276. break;
  2277. case '>':
  2278. $strout .= '&gt;';
  2279. break;
  2280. case '&':
  2281. $strout .= '&amp;';
  2282. break;
  2283. case '"':
  2284. $strout .= '&quot;';
  2285. break;
  2286. default:
  2287. $strout .= $strin[$i];
  2288. }
  2289. }
  2290. }
  2291. return $strout;
  2292. }
  2293. function registration_callback($username, $email, $userdir){
  2294. global $data;
  2295. $data = array($username, $email, $userdir);
  2296. }
  2297. function printArray($arrayName){
  2298. $messageCount = count($arrayName);
  2299. $i = 0;
  2300. foreach ( $arrayName as $item ) :
  2301. $i++;
  2302. if($i < $messageCount) :
  2303. echo "<small class='text-uppercase'>" . $item . "</small> & ";
  2304. elseif($i = $messageCount) :
  2305. echo "<small class='text-uppercase'>" . $item . "</small>";
  2306. endif;
  2307. endforeach;
  2308. }
  2309. function write_ini_file($content, $path) {
  2310. if (!$handle = fopen($path, 'w')) {
  2311. return false;
  2312. }
  2313. $success = fwrite($handle, trim($content));
  2314. fclose($handle);
  2315. return $success;
  2316. }
  2317. function gotTimezone(){
  2318. $regions = array(
  2319. 'Africa' => DateTimeZone::AFRICA,
  2320. 'America' => DateTimeZone::AMERICA,
  2321. 'Antarctica' => DateTimeZone::ANTARCTICA,
  2322. 'Arctic' => DateTimeZone::ARCTIC,
  2323. 'Asia' => DateTimeZone::ASIA,
  2324. 'Atlantic' => DateTimeZone::ATLANTIC,
  2325. 'Australia' => DateTimeZone::AUSTRALIA,
  2326. 'Europe' => DateTimeZone::EUROPE,
  2327. 'Indian' => DateTimeZone::INDIAN,
  2328. 'Pacific' => DateTimeZone::PACIFIC
  2329. );
  2330. $timezones = array();
  2331. foreach ($regions as $name => $mask) {
  2332. $zones = DateTimeZone::listIdentifiers($mask);
  2333. foreach($zones as $timezone) {
  2334. $time = new DateTime(NULL, new DateTimeZone($timezone));
  2335. $ampm = $time->format('H') > 12 ? ' ('. $time->format('g:i a'). ')' : '';
  2336. $timezones[$name][$timezone] = substr($timezone, strlen($name) + 1) . ' - ' . $time->format('H:i') . $ampm;
  2337. }
  2338. }
  2339. print '<select name="timezone" id="timezone" class="form-control material input-sm" required>';
  2340. foreach($timezones as $region => $list) {
  2341. print '<optgroup label="' . $region . '">' . "\n";
  2342. foreach($list as $timezone => $name) {
  2343. if($timezone == TIMEZONE) : $selected = " selected"; else : $selected = ""; endif;
  2344. print '<option value="' . $timezone . '"' . $selected . '>' . $name . '</option>' . "\n";
  2345. }
  2346. print '</optgroup>' . "\n";
  2347. }
  2348. print '</select>';
  2349. }
  2350. function getTimezone(){
  2351. $regions = array(
  2352. 'Africa' => DateTimeZone::AFRICA,
  2353. 'America' => DateTimeZone::AMERICA,
  2354. 'Antarctica' => DateTimeZone::ANTARCTICA,
  2355. 'Arctic' => DateTimeZone::ARCTIC,
  2356. 'Asia' => DateTimeZone::ASIA,
  2357. 'Atlantic' => DateTimeZone::ATLANTIC,
  2358. 'Australia' => DateTimeZone::AUSTRALIA,
  2359. 'Europe' => DateTimeZone::EUROPE,
  2360. 'Indian' => DateTimeZone::INDIAN,
  2361. 'Pacific' => DateTimeZone::PACIFIC
  2362. );
  2363. $timezones = array();
  2364. foreach ($regions as $name => $mask) {
  2365. $zones = DateTimeZone::listIdentifiers($mask);
  2366. foreach($zones as $timezone) {
  2367. $time = new DateTime(NULL, new DateTimeZone($timezone));
  2368. $ampm = $time->format('H') > 12 ? ' ('. $time->format('g:i a'). ')' : '';
  2369. $timezones[$name][$timezone] = substr($timezone, strlen($name) + 1) . ' - ' . $time->format('H:i') . $ampm;
  2370. }
  2371. }
  2372. print '<select name="timezone" id="timezone" class="form-control material" required>';
  2373. foreach($timezones as $region => $list) {
  2374. print '<optgroup label="' . $region . '">' . "\n";
  2375. foreach($list as $timezone => $name) {
  2376. print '<option value="' . $timezone . '">' . $name . '</option>' . "\n";
  2377. }
  2378. print '</optgroup>' . "\n";
  2379. }
  2380. print '</select>';
  2381. }
  2382. function explosion($string, $position){
  2383. $getWord = explode("|", $string);
  2384. return $getWord[$position];
  2385. }
  2386. function getServerPath() {
  2387. if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == "https"){
  2388. $protocol = "https://";
  2389. }elseif (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') {
  2390. $protocol = "https://";
  2391. } else {
  2392. $protocol = "http://";
  2393. }
  2394. $domain = '';
  2395. if (isset($_SERVER['SERVER_NAME']) && strpos($_SERVER['SERVER_NAME'], '.') !== false){
  2396. $domain = $_SERVER['SERVER_NAME'];
  2397. }elseif(isset($_SERVER['HTTP_HOST'])){
  2398. if (strpos($_SERVER['HTTP_HOST'], ':') !== false) {
  2399. $domain = explode(':', $_SERVER['HTTP_HOST'])[0];
  2400. $port = explode(':', $_SERVER['HTTP_HOST'])[1];
  2401. if ($port == "80" || $port == "443"){
  2402. $domain = $domain;
  2403. }else{
  2404. $domain = $_SERVER['HTTP_HOST'];
  2405. }
  2406. }else{
  2407. $domain = $_SERVER['HTTP_HOST'];
  2408. }
  2409. }
  2410. return $protocol . $domain . dirname($_SERVER['REQUEST_URI']);
  2411. }
  2412. function get_browser_name() {
  2413. $user_agent = $_SERVER['HTTP_USER_AGENT'];
  2414. if (strpos($user_agent, 'Opera') || strpos($user_agent, 'OPR/')) return 'Opera';
  2415. elseif (strpos($user_agent, 'Edge')) return 'Edge';
  2416. elseif (strpos($user_agent, 'Chrome')) return 'Chrome';
  2417. elseif (strpos($user_agent, 'Safari')) return 'Safari';
  2418. elseif (strpos($user_agent, 'Firefox')) return 'Firefox';
  2419. elseif (strpos($user_agent, 'MSIE') || strpos($user_agent, 'Trident/7')) return 'Internet Explorer';
  2420. return 'Other';
  2421. }
  2422. function getSickrageCalendarWanted($array){
  2423. $array = json_decode($array, true);
  2424. $gotCalendar = "";
  2425. $i = 0;
  2426. foreach($array['data']['missed'] AS $child) {
  2427. $i++;
  2428. $seriesName = $child['show_name'];
  2429. $episodeID = $child['tvdbid'];
  2430. $episodeAirDate = $child['airdate'];
  2431. $episodeAirDateTime = explode(" ",$child['airs']);
  2432. $episodeAirDateTime = date("H:i:s", strtotime($episodeAirDateTime[1].$episodeAirDateTime[2]));
  2433. $episodeAirDate = strtotime($episodeAirDate.$episodeAirDateTime);
  2434. $episodeAirDate = date("Y-m-d H:i:s", $episodeAirDate);
  2435. if (new DateTime() < new DateTime($episodeAirDate)) { $unaired = true; }
  2436. $downloaded = "0";
  2437. if($downloaded == "0" && isset($unaired)){ $downloaded = "indigo-bg"; }elseif($downloaded == "1"){ $downloaded = "green-bg";}else{ $downloaded = "red-bg"; }
  2438. $gotCalendar .= "{ title: \"$seriesName\", start: \"$episodeAirDate\", className: \"$downloaded tvID--$episodeID\", imagetype: \"tv\" }, \n";
  2439. }
  2440. foreach($array['data']['today'] AS $child) {
  2441. $i++;
  2442. $seriesName = $child['show_name'];
  2443. $episodeID = $child['tvdbid'];
  2444. $episodeAirDate = $child['airdate'];
  2445. $episodeAirDateTime = explode(" ",$child['airs']);
  2446. $episodeAirDateTime = date("H:i:s", strtotime($episodeAirDateTime[1].$episodeAirDateTime[2]));
  2447. $episodeAirDate = strtotime($episodeAirDate.$episodeAirDateTime);
  2448. $episodeAirDate = date("Y-m-d H:i:s", $episodeAirDate);
  2449. if (new DateTime() < new DateTime($episodeAirDate)) { $unaired = true; }
  2450. $downloaded = "0";
  2451. if($downloaded == "0" && isset($unaired)){ $downloaded = "indigo-bg"; }elseif($downloaded == "1"){ $downloaded = "green-bg";}else{ $downloaded = "red-bg"; }
  2452. $gotCalendar .= "{ title: \"$seriesName\", start: \"$episodeAirDate\", className: \"$downloaded tvID--$episodeID\", imagetype: \"tv\" }, \n";
  2453. }
  2454. foreach($array['data']['soon'] AS $child) {
  2455. $i++;
  2456. $seriesName = $child['show_name'];
  2457. $episodeID = $child['tvdbid'];
  2458. $episodeAirDate = $child['airdate'];
  2459. $episodeAirDateTime = explode(" ",$child['airs']);
  2460. $episodeAirDateTime = date("H:i:s", strtotime($episodeAirDateTime[1].$episodeAirDateTime[2]));
  2461. $episodeAirDate = strtotime($episodeAirDate.$episodeAirDateTime);
  2462. $episodeAirDate = date("Y-m-d H:i:s", $episodeAirDate);
  2463. if (new DateTime() < new DateTime($episodeAirDate)) { $unaired = true; }
  2464. $downloaded = "0";
  2465. if($downloaded == "0" && isset($unaired)){ $downloaded = "indigo-bg"; }elseif($downloaded == "1"){ $downloaded = "green-bg";}else{ $downloaded = "red-bg"; }
  2466. $gotCalendar .= "{ title: \"$seriesName\", start: \"$episodeAirDate\", className: \"$downloaded tvID--$episodeID\", imagetype: \"tv\" }, \n";
  2467. }
  2468. foreach($array['data']['later'] AS $child) {
  2469. $i++;
  2470. $seriesName = $child['show_name'];
  2471. $episodeID = $child['tvdbid'];
  2472. $episodeAirDate = $child['airdate'];
  2473. $episodeAirDateTime = explode(" ",$child['airs']);
  2474. $episodeAirDateTime = date("H:i:s", strtotime($episodeAirDateTime[1].$episodeAirDateTime[2]));
  2475. $episodeAirDate = strtotime($episodeAirDate.$episodeAirDateTime);
  2476. $episodeAirDate = date("Y-m-d H:i:s", $episodeAirDate);
  2477. if (new DateTime() < new DateTime($episodeAirDate)) { $unaired = true; }
  2478. $downloaded = "0";
  2479. if($downloaded == "0" && isset($unaired)){ $downloaded = "indigo-bg"; }elseif($downloaded == "1"){ $downloaded = "green-bg";}else{ $downloaded = "red-bg"; }
  2480. $gotCalendar .= "{ title: \"$seriesName\", start: \"$episodeAirDate\", className: \"$downloaded tvID--$episodeID\", imagetype: \"tv\" }, \n";
  2481. }
  2482. if ($i != 0){ return $gotCalendar; }
  2483. }
  2484. function getSickrageCalendarHistory($array){
  2485. $array = json_decode($array, true);
  2486. $gotCalendar = "";
  2487. $i = 0;
  2488. foreach($array['data'] AS $child) {
  2489. $i++;
  2490. $seriesName = $child['show_name'];
  2491. $episodeID = $child['tvdbid'];
  2492. $episodeAirDate = $child['date'];
  2493. $downloaded = "green-bg";
  2494. $gotCalendar .= "{ title: \"$seriesName\", start: \"$episodeAirDate\", className: \"$downloaded tvID--$episodeID\", imagetype: \"tv\" }, \n";
  2495. }
  2496. if ($i != 0){ return $gotCalendar; }
  2497. }
  2498. function getSonarrCalendar($array){
  2499. $array = json_decode($array, true);
  2500. $gotCalendar = "";
  2501. $i = 0;
  2502. foreach($array AS $child) {
  2503. $i++;
  2504. $seriesName = $child['series']['title'];
  2505. $episodeID = $child['series']['tvdbId'];
  2506. if(!isset($episodeID)){ $episodeID = ""; }
  2507. $episodeName = htmlentities($child['title'], ENT_QUOTES);
  2508. if($child['episodeNumber'] == "1"){ $episodePremier = "true"; }else{ $episodePremier = "false"; }
  2509. $episodeAirDate = $child['airDateUtc'];
  2510. $episodeAirDate = strtotime($episodeAirDate);
  2511. $episodeAirDate = date("Y-m-d H:i:s", $episodeAirDate);
  2512. if (new DateTime() < new DateTime($episodeAirDate)) { $unaired = true; }
  2513. $downloaded = $child['hasFile'];
  2514. 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"; }
  2515. $gotCalendar .= "{ title: \"$seriesName\", start: \"$episodeAirDate\", className: \"$downloaded tvID--$episodeID\", imagetype: \"tv\" }, \n";
  2516. }
  2517. if ($i != 0){ return $gotCalendar; }
  2518. }
  2519. function getRadarrCalendar($array){
  2520. $array = json_decode($array, true);
  2521. $gotCalendar = "";
  2522. $i = 0;
  2523. foreach($array AS $child) {
  2524. if(isset($child['inCinemas'])){
  2525. $i++;
  2526. $movieName = $child['title'];
  2527. $movieID = $child['tmdbId'];
  2528. if(!isset($movieID)){ $movieID = ""; }
  2529. if(isset($child['inCinemas']) && isset($child['physicalRelease'])){
  2530. $physicalRelease = $child['physicalRelease'];
  2531. $physicalRelease = strtotime($physicalRelease);
  2532. $physicalRelease = date("Y-m-d", $physicalRelease);
  2533. if (new DateTime() < new DateTime($physicalRelease)) { $notReleased = "true"; }else{ $notReleased = "false"; }
  2534. $downloaded = $child['hasFile'];
  2535. if($downloaded == "0" && $notReleased == "true"){ $downloaded = "indigo-bg"; }elseif($downloaded == "1"){ $downloaded = "green-bg"; }else{ $downloaded = "red-bg"; }
  2536. }else{
  2537. $physicalRelease = $child['inCinemas'];
  2538. $downloaded = "light-blue-bg";
  2539. }
  2540. $gotCalendar .= "{ title: \"$movieName\", start: \"$physicalRelease\", className: \"$downloaded movieID--$movieID\", imagetype: \"film\" }, \n";
  2541. }
  2542. }
  2543. if ($i != 0){ return $gotCalendar; }
  2544. }
  2545. function getHeadphonesCalendar($url, $key, $list){
  2546. $url = qualifyURL(HEADPHONESURL);
  2547. $api = curl_get($url."/api?apikey=".$key."&cmd=$list");
  2548. $api = json_decode($api, true);
  2549. $i = 0;
  2550. $gotCalendar = "";
  2551. if (is_array($api) || is_object($api)){
  2552. foreach($api AS $child) {
  2553. if($child['Status'] == "Wanted" && $list == "getWanted" && $child['ReleaseDate']){
  2554. $i++;
  2555. $albumName = addslashes($child['AlbumTitle']);
  2556. $albumArtist = htmlentities($child['ArtistName'], ENT_QUOTES);
  2557. $albumDate = (strlen($child['ReleaseDate']) > 4) ? $child['ReleaseDate'] : $child['ReleaseDate']."-01-01";
  2558. $albumID = $child['AlbumID'];
  2559. $albumDate = strtotime($albumDate);
  2560. $albumDate = date("Y-m-d", $albumDate);
  2561. $albumStatus = $child['Status'];
  2562. if (new DateTime() < new DateTime($albumDate)) { $notReleased = "true"; }else{ $notReleased = "false"; }
  2563. if($albumStatus == "Wanted" && $notReleased == "true"){ $albumStatusColor = "indigo-bg"; }elseif($albumStatus == "Downloaded"){ $albumStatusColor = "green-bg"; }else{ $albumStatusColor = "red-bg"; }
  2564. $gotCalendar .= "{ title: \"$albumArtist - $albumName\", start: \"$albumDate\", className: \"$albumStatusColor\", imagetype: \"music\", url: \"https://musicbrainz.org/release-group/$albumID\" }, \n";
  2565. }
  2566. if($child['Status'] == "Processed" && $list == "getHistory"){
  2567. $i++;
  2568. $find = array('_','[', ']', '\n');
  2569. $replace = array(' ','(', ')', ' ');
  2570. $albumName = addslashes(str_replace($find,$replace,$child['FolderName']));
  2571. $albumDate = $child['DateAdded'];
  2572. $albumID = $child['AlbumID'];
  2573. $albumDate = strtotime($albumDate);
  2574. $albumDate = date("Y-m-d", $albumDate);
  2575. $albumStatusColor = "green-bg";
  2576. if (new DateTime() < new DateTime($albumDate)) { $notReleased = "true"; }else{ $notReleased = "false"; }
  2577. $gotCalendar .= "{ title: \"$albumName\", start: \"$albumDate\", className: \"$albumStatusColor\", imagetype: \"music\", url: \"https://musicbrainz.org/release-group/$albumID\" }, \n";
  2578. }
  2579. }
  2580. if ($i != 0){ return $gotCalendar; }
  2581. }else{
  2582. writeLog("error", "HEADPHONES $list ERROR: could not connect - check URL and/or check API key - if HTTPS, is cert valid");
  2583. }
  2584. }
  2585. function checkRootPath($string){
  2586. if($string == "\\" || $string == "/"){
  2587. return "/";
  2588. }else{
  2589. return str_replace("\\", "/", $string) . "/";
  2590. }
  2591. }
  2592. function strip($string){
  2593. return str_replace(array("\r","\n","\t"),"",$string);
  2594. }
  2595. function writeLog($type, $message){
  2596. $message = date("Y-m-d H:i:s")."|".$type."|".$message."\n";
  2597. file_put_contents("org.log", $message, FILE_APPEND | LOCK_EX);
  2598. }
  2599. function readLog(){
  2600. $log = file("org.log");
  2601. $log = array_reverse($log);
  2602. foreach($log as $line){
  2603. $line = explode("|", $line);
  2604. $line[1] = ($line[1] == "error") ? '<span class="label label-danger">Error</span>' : '<span class="label label-primary">Success</span>';
  2605. echo "<tr><td>".$line[0]."</td><td>".$line[2]."</td><td>".$line[1]."</td></tr>";
  2606. }
  2607. }
  2608. function buildStream($array){
  2609. $result = "";
  2610. if (array_key_exists('platform', $array)) {
  2611. $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>';
  2612. }
  2613. if (array_key_exists('device', $array)) {
  2614. $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"></i>'.$array['device'].'</span></div></div><div class="clearfix"></div>';
  2615. }
  2616. if (array_key_exists('stream', $array)) {
  2617. $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"></i>'.$array['stream'].'</span></div></div><div class="clearfix"></div>';
  2618. }
  2619. if (array_key_exists('video', $array)) {
  2620. $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"></i>'.$array['video'].'</span></div></div><div class="clearfix"></div>';
  2621. }
  2622. if (array_key_exists('audio', $array)) {
  2623. $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"></i>'.$array['audio'].'</span></div></div><div class="clearfix"></div>';
  2624. }
  2625. return $result;
  2626. }
  2627. function streamType($value){
  2628. if($value == "transcode" || $value == "Transcode"){
  2629. return "Transcode";
  2630. }elseif($value == "copy" || $value == "DirectStream"){
  2631. return "Direct Stream";
  2632. }elseif($value == "directplay" || $value == "DirectPlay"){
  2633. return "Direct Play";
  2634. }else{
  2635. return "Direct Play";
  2636. }
  2637. }
  2638. function getPlatform($platform){
  2639. $allPlatforms = array(
  2640. "Chrome" => "chrome.png",
  2641. "tvOS" => "atv.png",
  2642. "iOS" => "ios.png",
  2643. "Xbox One" => "xbox.png",
  2644. "Mystery 4" => "playstation.png",
  2645. "Samsung" => "samsung.png",
  2646. "Roku" => "roku.png",
  2647. "Emby for iOS" => "ios.png",
  2648. "Emby Mobile" => "emby.png",
  2649. "Emby Theater" => "emby.png",
  2650. "Emby Classic" => "emby.png",
  2651. "Safari" => "safari.png",
  2652. "Android" => "android.png",
  2653. "AndroidTv" => "android.png",
  2654. "Chromecast" => "chromecast.png",
  2655. "Dashboard" => "emby.png",
  2656. "Dlna" => "dlna.png",
  2657. "Windows Phone" => "wp.png",
  2658. "Windows RT" => "win8.png",
  2659. "Kodi" => "kodi.png",
  2660. );
  2661. if (array_key_exists($platform, $allPlatforms)) {
  2662. return $allPlatforms[$platform];
  2663. }else{
  2664. return "pmp.png";
  2665. }
  2666. }
  2667. function getServer(){
  2668. $server = isset($_SERVER["HTTP_HOST"]) ? $_SERVER["HTTP_HOST"] : $_SERVER["SERVER_NAME"];
  2669. return $server;
  2670. }
  2671. function prettyPrint($array) {
  2672. echo "<pre>";
  2673. print_r($array);
  2674. echo "</pre>";
  2675. echo "<br/>";
  2676. }
  2677. function checkFrame($array, $url){
  2678. if(array_key_exists("x-frame-options", $array)){
  2679. if($array['x-frame-options'] == "deny"){
  2680. return false;
  2681. }elseif($array['x-frame-options'] == "sameorgin"){
  2682. $digest = parse_url($url);
  2683. $host = (isset($digest['host'])?$digest['host']:'');
  2684. if(getServer() == $host){
  2685. return true;
  2686. }else{
  2687. return false;
  2688. }
  2689. }
  2690. }else{
  2691. if(!$array){
  2692. return false;
  2693. }
  2694. return true;
  2695. }
  2696. }
  2697. function frameTest($url){
  2698. $array = array_change_key_case(get_headers(qualifyURL($url), 1));
  2699. $url = qualifyURL($url);
  2700. if(checkFrame($array, $url)){
  2701. return true;
  2702. }else{
  2703. return false;
  2704. }
  2705. }
  2706. function sendResult($result, $icon = "floppy-o", $message = false, $success = "WAS_SUCCESSFUL", $fail = "HAS_FAILED", $send = true) {
  2707. $notifyExplode = explode("-", NOTIFYEFFECT);
  2708. if ($result) {
  2709. $msg = array(
  2710. 'html' => ($message?''.$message.' <strong>'.translate($success).'</strong>':'<strong>'.translate($success).'</strong>'),
  2711. 'icon' => $icon,
  2712. 'type' => 'success',
  2713. 'length' => '5000',
  2714. 'layout' => $notifyExplode[0],
  2715. 'effect' => $notifyExplode[1],
  2716. );
  2717. } else {
  2718. $msg = array(
  2719. 'html' => ($message?''.$message.' <strong>'.translate($fail).'</strong>':'<strong>'.translate($fail).'</strong>'),
  2720. 'icon' => $icon,
  2721. 'type' => 'error',
  2722. 'length' => '5000',
  2723. 'layout' => $notifyExplode[0],
  2724. 'effect' => $notifyExplode[1],
  2725. );
  2726. }
  2727. // Send and kill script?
  2728. if ($send) {
  2729. header('Content-Type: application/json');
  2730. echo json_encode(array('notify'=>$msg));
  2731. die();
  2732. }
  2733. return $msg;
  2734. }
  2735. function buildHomepageNotice($layout, $type, $title, $message){
  2736. switch ($layout) {
  2737. case 'elegant':
  2738. return '
  2739. <div id="homepageNotice" class="row">
  2740. <div class="col-lg-12">
  2741. <div class="content-box big-box box-shadow panel-box panel-'.$type.'">
  2742. <div class="content-title i-block">
  2743. <h4 class="zero-m"><strong>'.$title.'</strong></h4>
  2744. <div class="content-tools i-block pull-right">
  2745. <a class="close-btn">
  2746. <i class="fa fa-times"></i>
  2747. </a>
  2748. </div>
  2749. </div>
  2750. '.$message.'
  2751. </div>
  2752. </div>
  2753. </div>
  2754. ';
  2755. break;
  2756. case 'basic':
  2757. return '
  2758. <div id="homepageNotice" class="row">
  2759. <div class="col-lg-12">
  2760. <div class="panel panel-'.$type.'">
  2761. <div class="panel-heading">
  2762. <h3 class="panel-title">'.$title.'</h3>
  2763. </div>
  2764. <div class="panel-body">
  2765. '.$message.'
  2766. </div>
  2767. </div>
  2768. </div>
  2769. </div>
  2770. ';
  2771. break;
  2772. case 'jumbotron';
  2773. return '
  2774. <div id="homepageNotice" class="row">
  2775. <div class="col-lg-12">
  2776. <div class="jumbotron">
  2777. <div class="container">
  2778. <h1>'.$title.'</h1>
  2779. <p>'.$message.'</p>
  2780. </div>
  2781. </div>
  2782. </div>
  2783. </div>
  2784. ';
  2785. }
  2786. }
  2787. function embyArray($array, $type) {
  2788. $key = ($type == "video" ? "Height" : "Channels");
  2789. if (array_key_exists($key, $array)) {
  2790. switch ($type) {
  2791. case "video":
  2792. $codec = $array["Codec"];
  2793. $height = $array["Height"];
  2794. $width = $array["Width"];
  2795. break;
  2796. default:
  2797. $codec = $array["Codec"];
  2798. $channels = $array["Channels"];
  2799. }
  2800. return ($type == "video" ? "(".$codec.") (".$width."x".$height.")" : "(".$codec.") (".$channels."ch)");
  2801. }
  2802. foreach ($array as $element) {
  2803. if (is_array($element)) {
  2804. if (embyArray($element, $type)) {
  2805. return embyArray($element, $type);
  2806. }
  2807. }
  2808. }
  2809. }
  2810. // Get Now Playing Streams From Plex
  2811. function searchPlex($query){
  2812. $address = qualifyURL(PLEXURL);
  2813. $openTab = (PLEXTABNAME) ? "true" : "false";
  2814. // Perform API requests
  2815. $api = @curl_get($address."/search?query=".rawurlencode($query)."&X-Plex-Token=".PLEXTOKEN);
  2816. $api = simplexml_load_string($api);
  2817. $getServer = simplexml_load_string(@curl_get($address."/?X-Plex-Token=".PLEXTOKEN));
  2818. if (!$getServer) { return 'Could not load!'; }
  2819. // Identify the local machine
  2820. $server = $getServer['machineIdentifier'];
  2821. $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>";
  2822. $items = "";
  2823. $albums = $movies = $shows = 0;
  2824. $style = 'style="vertical-align: middle"';
  2825. foreach($api AS $child) {
  2826. if($child['type'] != "artist" && $child['type'] != "episode" && isset($child['librarySectionID'])){
  2827. $time = (string)$child['addedAt'];
  2828. $time = new DateTime("@$time");
  2829. $results = array(
  2830. "title" => (string)$child['title'],
  2831. "image" => (string)$child['thumb'],
  2832. "type" => (string)ucwords($child['type']),
  2833. "year" => (string)$child['year'],
  2834. "key" => (string)$child['ratingKey']."-search",
  2835. "ratingkey" => (string)$child['ratingKey'],
  2836. "genre" => (string)$child->Genre['tag'],
  2837. "added" => $time->format('Y-m-d'),
  2838. "extra" => "",
  2839. );
  2840. switch ($child['type']){
  2841. case "album":
  2842. $push = array(
  2843. "title" => (string)$child['parentTitle']." - ".(string)$child['title'],
  2844. );
  2845. $results = array_replace($results,$push);
  2846. $albums++;
  2847. break;
  2848. case "movie":
  2849. $push = array(
  2850. "extra" => "Content Rating: ".(string)$child['contentRating']."<br/>Movie Rating: ".(string)$child['rating'],
  2851. );
  2852. $results = array_replace($results,$push);
  2853. $movies++;
  2854. break;
  2855. case "show":
  2856. $push = array(
  2857. "extra" => "Seasons: ".(string)$child['childCount']."<br/>Episodes: ".(string)$child['leafCount'],
  2858. );
  2859. $results = array_replace($results,$push);
  2860. $shows++;
  2861. break;
  2862. }
  2863. if (file_exists('images/cache/'.$results['key'].'.jpg')){ $image_url = 'images/cache/'.$results['key'].'.jpg'; }
  2864. if (file_exists('images/cache/'.$results['key'].'.jpg') && (time() - 604800) > filemtime('images/cache/'.$results['key'].'.jpg') || !file_exists('images/cache/'.$results['key'].'.jpg')) {
  2865. $image_url = 'ajax.php?a=plex-image&img='.$results['image'].'&height=150&width=100&key='.$results['key'];
  2866. }
  2867. if(!$results['image']){ $image_url = "images/no-search.png"; $key = "no-search"; }
  2868. if (substr_count(PLEXURL, '.') != 2) {
  2869. $link = "https://app.plex.tv/web/app#!/server/$server/details?key=/library/metadata/".$results['ratingkey'];
  2870. }else{
  2871. $link = PLEXURL."/web/index.html#!/server/$server/details?key=/library/metadata/".$results['ratingkey'];
  2872. }
  2873. $items .= '<tr style="cursor: pointer;" class="openTab" openTab="'.$openTab.'" href="'.$link.'">
  2874. <th scope="row"><img src="'.$image_url.'"></th>
  2875. <td class="col-xs-2 nzbtable nzbtable-row"'.$style.'>'.$results['title'].'</td>
  2876. <td class="col-xs-3 nzbtable nzbtable-row"'.$style.'>'.$results['genre'].'</td>
  2877. <td class="col-xs-1 nzbtable nzbtable-row"'.$style.'>'.$results['year'].'</td>
  2878. <td class="col-xs-1 nzbtable nzbtable-row"'.$style.'>'.$results['type'].'</td>
  2879. <td class="col-xs-3 nzbtable nzbtable-row"'.$style.'>'.$results['added'].'</td>
  2880. <td class="col-xs-2 nzbtable nzbtable-row"'.$style.'>'.$results['extra'].'</td>
  2881. </tr>';
  2882. }
  2883. }
  2884. $totals = '<div style="margin: 10px;" class="sort-todo pull-right">
  2885. <span class="badge gray-bg"><i class="fa fa-film fa-2x white"></i><strong style="
  2886. font-size: 23px;
  2887. ">&nbsp;'.$movies.'</strong></span>
  2888. <span class="badge gray-bg"><i class="fa fa-tv fa-2x white"></i><strong style="
  2889. font-size: 23px;
  2890. ">&nbsp;'.$shows.'</strong></span>
  2891. <span class="badge gray-bg"><i class="fa fa-music fa-2x white"></i><strong style="
  2892. font-size: 23px;
  2893. ">&nbsp;'.$albums.'</strong></span>
  2894. </div>';
  2895. return (!empty($items) ? $totals.$pre.$items."</div></table>" : "<h2 class='text-center'>No Results for $query</h2>" );
  2896. }
  2897. function getBannedUsers($string){
  2898. if (strpos($string, ',') !== false) {
  2899. $banned = explode(",", $string);
  2900. }else{
  2901. $banned = array($string);
  2902. }
  2903. return $banned;
  2904. }
  2905. function getWhitelist($string){
  2906. if (strpos($string, ',') !== false) {
  2907. $whitelist = explode(",", $string);
  2908. }else{
  2909. $whitelist = array($string);
  2910. }
  2911. foreach($whitelist as &$ip){
  2912. $ip = is_numeric(substr($ip, 0, 1)) ? $ip : gethostbyname($ip);
  2913. }
  2914. return $whitelist;
  2915. }
  2916. function get_client_ip() {
  2917. $ipaddress = '';
  2918. if (isset($_SERVER['HTTP_CLIENT_IP']))
  2919. $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
  2920. else if(isset($_SERVER['HTTP_X_FORWARDED_FOR']))
  2921. $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
  2922. else if(isset($_SERVER['HTTP_X_FORWARDED']))
  2923. $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
  2924. else if(isset($_SERVER['HTTP_FORWARDED_FOR']))
  2925. $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
  2926. else if(isset($_SERVER['HTTP_FORWARDED']))
  2927. $ipaddress = $_SERVER['HTTP_FORWARDED'];
  2928. else if(isset($_SERVER['REMOTE_ADDR']))
  2929. $ipaddress = $_SERVER['REMOTE_ADDR'];
  2930. else
  2931. $ipaddress = 'UNKNOWN';
  2932. return $ipaddress;
  2933. }
  2934. //EMAIL SHIT
  2935. function sendEmail($email, $username = "Organizr User", $subject, $body, $cc = null){
  2936. $mail = new PHPMailer;
  2937. $mail->isSMTP();
  2938. $mail->Host = SMTPHOST;
  2939. $mail->SMTPAuth = SMTPHOSTAUTH;
  2940. $mail->Username = SMTPHOSTUSERNAME;
  2941. $mail->Password = SMTPHOSTPASSWORD;
  2942. $mail->SMTPSecure = SMTPHOSTTYPE;
  2943. $mail->Port = SMTPHOSTPORT;
  2944. $mail->setFrom(SMTPHOSTSENDEREMAIL, SMTPHOSTSENDERNAME);
  2945. $mail->addReplyTo(SMTPHOSTSENDEREMAIL, SMTPHOSTSENDERNAME);
  2946. $mail->isHTML(true);
  2947. $mail->addAddress($email, $username);
  2948. $mail->Subject = $subject;
  2949. $mail->Body = $body;
  2950. //$mail->send();
  2951. if(!$mail->send()) {
  2952. writeLog("error", "mail failed to send");
  2953. } else {
  2954. writeLog("success", "mail has been sent");
  2955. }
  2956. }
  2957. //EMAIL SHIT
  2958. function sendTestEmail($to, $from, $host, $auth, $username, $password, $type, $port, $sendername){
  2959. $mail = new PHPMailer;
  2960. $mail->isSMTP();
  2961. $mail->Host = $host;
  2962. $mail->SMTPAuth = $auth;
  2963. $mail->Username = $username;
  2964. $mail->Password = $password;
  2965. $mail->SMTPSecure = $type;
  2966. $mail->Port = $port;
  2967. $mail->setFrom($from, $sendername);
  2968. $mail->addReplyTo($from, $sendername);
  2969. $mail->isHTML(true);
  2970. $mail->addAddress($to, "Organizr Admin");
  2971. $mail->Subject = "Organizr Test E-Mail";
  2972. $mail->Body = "This was just a test!";
  2973. //$mail->send();
  2974. if(!$mail->send()) {
  2975. writeLog("error", "EMAIL TEST: mail failed to send - Error:".$mail->ErrorInfo);
  2976. return false;
  2977. } else {
  2978. writeLog("success", "EMAIL TEST: mail has been sent successfully");
  2979. return true;
  2980. }
  2981. }
  2982. function libraryList(){
  2983. $address = qualifyURL(PLEXURL);
  2984. $headers = array(
  2985. "Accept" => "application/json",
  2986. "X-Plex-Token" => PLEXTOKEN
  2987. );
  2988. $getServer = simplexml_load_string(@curl_get($address."/?X-Plex-Token=".PLEXTOKEN));
  2989. if (!$getServer) { return 'Could not load!'; }else { $gotServer = $getServer['machineIdentifier']; }
  2990. $api = simplexml_load_string(@curl_get("https://plex.tv/api/servers/$gotServer/shared_servers", $headers));
  2991. $libraryList = array();
  2992. foreach($api->SharedServer->Section AS $child) {
  2993. $libraryList['libraries'][(string)$child['title']] = (string)$child['id'];
  2994. }
  2995. foreach($api->SharedServer AS $child) {
  2996. if(!empty($child['username'])){
  2997. $username = (string)strtolower($child['username']);
  2998. $email = (string)strtolower($child['email']);
  2999. $libraryList['users'][$username] = (string)$child['id'];
  3000. $libraryList['emails'][$email] = (string)$child['id'];
  3001. }
  3002. }
  3003. return (!empty($libraryList) ? array_change_key_case($libraryList,CASE_LOWER) : null );
  3004. }
  3005. function plexUserShare($username){
  3006. $address = qualifyURL(PLEXURL);
  3007. $headers = array(
  3008. "Accept" => "application/json",
  3009. "Content-Type" => "application/json",
  3010. "X-Plex-Token" => PLEXTOKEN
  3011. );
  3012. $getServer = simplexml_load_string(@curl_get($address."/?X-Plex-Token=".PLEXTOKEN));
  3013. if (!$getServer) { return 'Could not load!'; }else { $gotServer = $getServer['machineIdentifier']; }
  3014. $json = array(
  3015. "server_id" => $gotServer,
  3016. "shared_server" => array(
  3017. //"library_section_ids" => "[26527637]",
  3018. "invited_email" => $username
  3019. )
  3020. );
  3021. $api = curl_post("https://plex.tv/api/servers/$gotServer/shared_servers/", $json, $headers);
  3022. switch ($api['http_code']['http_code']){
  3023. case 400:
  3024. writeLog("error", "PLEX INVITE: $username already has access to the shared libraries");
  3025. $result = "$username already has access to the shared libraries";
  3026. break;
  3027. case 401:
  3028. writeLog("error", "PLEX INVITE: Invalid Plex Token");
  3029. $result = "Invalid Plex Token";
  3030. break;
  3031. case 200:
  3032. writeLog("success", "PLEX INVITE: $username now has access to your Plex Library");
  3033. $result = "$username now has access to your Plex Library";
  3034. break;
  3035. default:
  3036. writeLog("error", "PLEX INVITE: unknown error");
  3037. $result = false;
  3038. }
  3039. return (!empty($result) ? $result : null );
  3040. }
  3041. function plexUserDelete($username){
  3042. $address = qualifyURL(PLEXURL);
  3043. $headers = array(
  3044. "Accept" => "application/json",
  3045. "Content-Type" => "application/json",
  3046. "X-Plex-Token" => PLEXTOKEN
  3047. );
  3048. $getServer = simplexml_load_string(@curl_get($address."/?X-Plex-Token=".PLEXTOKEN));
  3049. if (!$getServer) { return 'Could not load!'; }else { $gotServer = $getServer['machineIdentifier']; }
  3050. $id = (is_numeric($username) ? $id : convertPlexName($username, "id"));
  3051. $api = curl_delete("https://plex.tv/api/servers/$gotServer/shared_servers/$id", $headers);
  3052. switch ($api['http_code']['http_code']){
  3053. case 401:
  3054. writeLog("error", "PLEX INVITE: Invalid Plex Token");
  3055. $result = "Invalid Plex Token";
  3056. break;
  3057. case 200:
  3058. writeLog("success", "PLEX INVITE: $username doesn't have access to your Plex Library anymore");
  3059. $result = "$username doesn't have access to your Plex Library anymore";
  3060. break;
  3061. default:
  3062. writeLog("error", "PLEX INVITE: unknown error");
  3063. $result = false;
  3064. }
  3065. return (!empty($result) ? $result : null );
  3066. }
  3067. function convertPlexName($user, $type){
  3068. $array = libraryList();
  3069. switch ($type){
  3070. case "username":
  3071. $plexUser = array_search ($user, $array['users']);
  3072. break;
  3073. case "id":
  3074. if (array_key_exists(strtolower($user), $array['users'])) {
  3075. $plexUser = $array['users'][strtolower($user)];
  3076. }
  3077. break;
  3078. default:
  3079. $plexUser = false;
  3080. }
  3081. return (!empty($plexUser) ? $plexUser : null );
  3082. }
  3083. function randomCode($length = 5, $type = null) {
  3084. switch ($type){
  3085. case "alpha":
  3086. $legend = array_merge(range('A', 'Z'));
  3087. break;
  3088. case "numeric":
  3089. $legend = array_merge(range(0,9));
  3090. break;
  3091. default:
  3092. $legend = array_merge(range(0,9),range('A', 'Z'));
  3093. }
  3094. $code = "";
  3095. for($i=0; $i < $length; $i++) {
  3096. $code .= $legend[mt_rand(0, count($legend) - 1)];
  3097. }
  3098. return $code;
  3099. }
  3100. function inviteCodes($action, $code = null, $usedBy = null) {
  3101. if (!isset($GLOBALS['file_db'])) {
  3102. $GLOBALS['file_db'] = new PDO('sqlite:'.DATABASE_LOCATION.'users.db');
  3103. $GLOBALS['file_db']->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  3104. }
  3105. $now = date("Y-m-d H:i:s");
  3106. switch ($action) {
  3107. case "get":
  3108. // Start Array
  3109. $result = array();
  3110. // Database Lookup
  3111. $invites = $GLOBALS['file_db']->query('SELECT * FROM invites WHERE valid = "Yes"');
  3112. // Get Codes
  3113. foreach($invites as $row) {
  3114. array_push($result, $row['code']);
  3115. }
  3116. // Return the Results
  3117. return (!empty($result) ? $result : false );
  3118. break;
  3119. case "check":
  3120. // Start Array
  3121. $result = array();
  3122. // Database Lookup
  3123. $invites = $GLOBALS['file_db']->query('SELECT * FROM invites WHERE valid = "Yes" AND code = "'.$code.'"');
  3124. // Get Codes
  3125. foreach($invites as $row) {
  3126. $result = $row['code'];
  3127. }
  3128. // Return the Results
  3129. return (!empty($result) ? $result : false );
  3130. break;
  3131. case "use":
  3132. $currentIP = get_client_ip();
  3133. $invites = $GLOBALS['file_db']->query('UPDATE invites SET valid = "No", usedby = "'.$usedBy.'", dateused = "'.$now.'", ip = "'.$currentIP.'" WHERE code = "'.$code.'"');
  3134. return (!empty($invites) ? true : false );
  3135. break;
  3136. }
  3137. }
  3138. function plexJoin($username, $email, $password){
  3139. $connectURL = 'https://plex.tv/users.json';
  3140. $headers = array(
  3141. 'Accept'=> 'application/json',
  3142. 'Content-Type' => 'application/x-www-form-urlencoded',
  3143. 'X-Plex-Product' => 'Organizr',
  3144. 'X-Plex-Version' => '1.0',
  3145. 'X-Plex-Client-Identifier' => '01010101-10101010',
  3146. );
  3147. $body = array(
  3148. 'user[email]' => $email,
  3149. 'user[username]' => $username,
  3150. 'user[password]' => $password,
  3151. );
  3152. $api = curl_post($connectURL, $body, $headers);
  3153. $json = json_decode($api['content'], true);
  3154. $errors = (!empty($json['errors']) ? true : false);
  3155. $success = (!empty($json['user']) ? true : false);
  3156. //Use This for later
  3157. $usernameError = (!empty($json['errors']['username']) ? $json['errors']['username'][0] : false);
  3158. $emailError = (!empty($json['errors']['email']) ? $json['errors']['email'][0] : false);
  3159. $passwordError = (!empty($json['errors']['password']) ? $json['errors']['password'][0] : false);
  3160. switch ($api['http_code']['http_code']){
  3161. case 400:
  3162. writeLog("error", "PLEX JOIN: $username already has access to the shared libraries");
  3163. break;
  3164. case 401:
  3165. writeLog("error", "PLEX JOIN: invalid Plex Token");
  3166. break;
  3167. case 422:
  3168. writeLog("error", "PLEX JOIN: user info error");
  3169. break;
  3170. case 429:
  3171. writeLog("error", "PLEX JOIN: too many requests to plex.tv please try later");
  3172. break;
  3173. case 200:
  3174. case 201:
  3175. writeLog("success", "PLEX JOIN: $username now has access to your Plex Library");
  3176. break;
  3177. default:
  3178. writeLog("error", "PLEX JOIN: unknown error, Error: ".$api['http_code']['http_code']);
  3179. }
  3180. //prettyPrint($api);
  3181. //prettyPrint(json_decode($api['content'], true));
  3182. return (!empty($success) && empty($errors) ? true : false );
  3183. }
  3184. function getCert(){
  3185. $url = "http://curl.haxx.se/ca/cacert.pem";
  3186. $file = getcwd()."/config/cacert.pem";
  3187. $directory = getcwd()."/config/";
  3188. @mkdir($directory, 0770, true);
  3189. if(!file_exists($file)){
  3190. file_put_contents( $file, fopen($url, 'r'));
  3191. writeLog("success", "CERT PEM: pem file created");
  3192. }elseif (file_exists($file) && time() - 2592000 > filemtime($file)) {
  3193. writeLog("success", "CERT PEM: downloaded new pem file");
  3194. }
  3195. return $file;
  3196. }
  3197. function customCSS(){
  3198. if(CUSTOMCSS == "true") {
  3199. $template_file = "custom.css";
  3200. $file_handle = fopen($template_file, "rb");
  3201. echo "\n";
  3202. echo fread($file_handle, filesize($template_file));
  3203. fclose($file_handle);
  3204. echo "\n";
  3205. }
  3206. }
  3207. function tvdbToken(){
  3208. $headers = array(
  3209. "Accept" => "application/json",
  3210. "Content-Type" => "application/json"
  3211. );
  3212. $json = array(
  3213. "apikey" => "FBE7B62621F4CAD7",
  3214. "userkey" => "328BB46EB1E9A0F5",
  3215. "username" => "causefx"
  3216. );
  3217. $api = curl_post("https://api.thetvdb.com/login", $json, $headers);
  3218. return json_decode($api['content'], true)['token'];
  3219. }
  3220. function tvdbGet($id){
  3221. $headers = array(
  3222. "Accept" => "application/json",
  3223. "Authorization" => "Bearer ".tvdbToken(),
  3224. "trakt-api-key" => "4502cfdf8f7282fe454878ff8583f5636392cdc5fcac30d0cc4565f7173bf443",
  3225. "trakt-api-version" => "2"
  3226. );
  3227. $trakt = curl_get("https://api.trakt.tv/search/tvdb/$id?type=show", $headers);
  3228. @$api['trakt'] = json_decode($trakt, true)[0]['show']['ids'];
  3229. if(empty($api['trakt'])){
  3230. $series = curl_get("https://api.thetvdb.com/series/$id", $headers);
  3231. $poster = curl_get("https://api.thetvdb.com/series/$id/images/query?keyType=poster", $headers);
  3232. $backdrop = curl_get("https://api.thetvdb.com/series/$id/images/query?keyType=fanart", $headers);
  3233. $api['series'] = json_decode($series, true)['data'];
  3234. $api['poster'] = json_decode($poster, true)['data'];
  3235. $api['backdrop'] = json_decode($backdrop, true)['data'];
  3236. }
  3237. return $api;
  3238. }
  3239. function getPlexPlaylists(){
  3240. $address = qualifyURL(PLEXURL);
  3241. // Perform API requests
  3242. $api = @curl_get($address."/playlists?X-Plex-Token=".PLEXTOKEN);
  3243. $api = simplexml_load_string($api);
  3244. if (is_array($api) || is_object($api)){
  3245. if (!$api->head->title){
  3246. $getServer = simplexml_load_string(@curl_get($address."/?X-Plex-Token=".PLEXTOKEN));
  3247. if (!$getServer) { return 'Could not load!'; }
  3248. // Identify the local machine
  3249. $gotServer = $getServer['machineIdentifier'];
  3250. $output = "";
  3251. $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<span class="caret"></span></button><ul style="right:0; left: auto" class="dropdown-menu filter-recent-playlist">';
  3252. foreach($api AS $child) {
  3253. $items = "";
  3254. if ($child['playlistType'] == "video" && strpos(strtolower($child['title']) , 'private') === false){
  3255. $api = @curl_get($address.$child['key']."?X-Plex-Token=".PLEXTOKEN);
  3256. $api = simplexml_load_string($api);
  3257. if (is_array($api) || is_object($api)){
  3258. if (!$api->head->title){
  3259. $className = preg_replace("/(\W)+/", "", $api['title']);
  3260. $hideMenu .= '<li data-filter="playlist-'.$className.'" data-name="'.$api['title'].'"><a class="js-filter-'.$className.'" href="javascript:void(0)">'.$api['title'].'</a></li>';
  3261. foreach($api->Video AS $child){
  3262. $items[] = resolvePlexItem($gotServer, PLEXTOKEN, $child, false, false,false,$className);
  3263. }
  3264. if (count($items)) {
  3265. $output .= ''.implode('',$items).'';
  3266. }
  3267. }
  3268. }
  3269. }
  3270. }
  3271. $hideMenu .= '</ul></div></div>';
  3272. 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>';
  3273. }else{
  3274. writeLog("error", "PLEX PLAYLIST ERROR: could not connect - check token - if HTTPS, is cert valid");
  3275. }
  3276. }else{
  3277. writeLog("error", "PLEX PLAYLIST ERROR: could not connect - check URL - if HTTPS, is cert valid");
  3278. }
  3279. }
  3280. function orgEmail($header = "Message From Admin", $title = "Important Message", $user = "Organizr User", $mainMessage = "", $button = null, $buttonURL = null, $subTitle = "", $subMessage = ""){
  3281. $path = getServerPath();
  3282. return '
  3283. <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional //EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3284. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
  3285. <head>
  3286. <!--[if gte mso 9]><xml>
  3287. <o:OfficeDocumentSettings>
  3288. <o:AllowPNG/>
  3289. <o:PixelsPerInch>96</o:PixelsPerInch>
  3290. </o:OfficeDocumentSettings>
  3291. </xml><![endif]-->
  3292. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  3293. <meta name="viewport" content="width=device-width">
  3294. <!--[if !mso]><!-->
  3295. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  3296. <!--<![endif]-->
  3297. <title></title>
  3298. <!--[if !mso]><!-- -->
  3299. <link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet" type="text/css">
  3300. <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">
  3301. <!--<![endif]-->
  3302. <style type="text/css" id="media-query">
  3303. body {
  3304. margin: 0;
  3305. padding: 0;
  3306. }
  3307. table,
  3308. tr,
  3309. td {
  3310. vertical-align: top;
  3311. border-collapse: collapse;
  3312. }
  3313. .ie-browser table,
  3314. .mso-container table {
  3315. table-layout: fixed;
  3316. }
  3317. * {
  3318. line-height: inherit;
  3319. }
  3320. a[x-apple-data-detectors=true] {
  3321. color: inherit !important;
  3322. text-decoration: none !important;
  3323. }
  3324. [owa] .img-container div,
  3325. [owa] .img-container button {
  3326. display: block !important;
  3327. }
  3328. [owa] .fullwidth button {
  3329. width: 100% !important;
  3330. }
  3331. [owa] .block-grid .col {
  3332. display: table-cell;
  3333. float: none !important;
  3334. vertical-align: top;
  3335. }
  3336. .ie-browser .num12,
  3337. .ie-browser .block-grid,
  3338. [owa] .num12,
  3339. [owa] .block-grid {
  3340. width: 615px !important;
  3341. }
  3342. .ExternalClass,
  3343. .ExternalClass p,
  3344. .ExternalClass span,
  3345. .ExternalClass font,
  3346. .ExternalClass td,
  3347. .ExternalClass div {
  3348. line-height: 100%;
  3349. }
  3350. .ie-browser .mixed-two-up .num4,
  3351. [owa] .mixed-two-up .num4 {
  3352. width: 204px !important;
  3353. }
  3354. .ie-browser .mixed-two-up .num8,
  3355. [owa] .mixed-two-up .num8 {
  3356. width: 408px !important;
  3357. }
  3358. .ie-browser .block-grid.two-up .col,
  3359. [owa] .block-grid.two-up .col {
  3360. width: 307px !important;
  3361. }
  3362. .ie-browser .block-grid.three-up .col,
  3363. [owa] .block-grid.three-up .col {
  3364. width: 205px !important;
  3365. }
  3366. .ie-browser .block-grid.four-up .col,
  3367. [owa] .block-grid.four-up .col {
  3368. width: 153px !important;
  3369. }
  3370. .ie-browser .block-grid.five-up .col,
  3371. [owa] .block-grid.five-up .col {
  3372. width: 123px !important;
  3373. }
  3374. .ie-browser .block-grid.six-up .col,
  3375. [owa] .block-grid.six-up .col {
  3376. width: 102px !important;
  3377. }
  3378. .ie-browser .block-grid.seven-up .col,
  3379. [owa] .block-grid.seven-up .col {
  3380. width: 87px !important;
  3381. }
  3382. .ie-browser .block-grid.eight-up .col,
  3383. [owa] .block-grid.eight-up .col {
  3384. width: 76px !important;
  3385. }
  3386. .ie-browser .block-grid.nine-up .col,
  3387. [owa] .block-grid.nine-up .col {
  3388. width: 68px !important;
  3389. }
  3390. .ie-browser .block-grid.ten-up .col,
  3391. [owa] .block-grid.ten-up .col {
  3392. width: 61px !important;
  3393. }
  3394. .ie-browser .block-grid.eleven-up .col,
  3395. [owa] .block-grid.eleven-up .col {
  3396. width: 55px !important;
  3397. }
  3398. .ie-browser .block-grid.twelve-up .col,
  3399. [owa] .block-grid.twelve-up .col {
  3400. width: 51px !important;
  3401. }
  3402. @media only screen and (min-width: 635px) {
  3403. .block-grid {
  3404. width: 615px !important;
  3405. }
  3406. .block-grid .col {
  3407. display: table-cell;
  3408. Float: none !important;
  3409. vertical-align: top;
  3410. }
  3411. .block-grid .col.num12 {
  3412. width: 615px !important;
  3413. }
  3414. .block-grid.mixed-two-up .col.num4 {
  3415. width: 204px !important;
  3416. }
  3417. .block-grid.mixed-two-up .col.num8 {
  3418. width: 408px !important;
  3419. }
  3420. .block-grid.two-up .col {
  3421. width: 307px !important;
  3422. }
  3423. .block-grid.three-up .col {
  3424. width: 205px !important;
  3425. }
  3426. .block-grid.four-up .col {
  3427. width: 153px !important;
  3428. }
  3429. .block-grid.five-up .col {
  3430. width: 123px !important;
  3431. }
  3432. .block-grid.six-up .col {
  3433. width: 102px !important;
  3434. }
  3435. .block-grid.seven-up .col {
  3436. width: 87px !important;
  3437. }
  3438. .block-grid.eight-up .col {
  3439. width: 76px !important;
  3440. }
  3441. .block-grid.nine-up .col {
  3442. width: 68px !important;
  3443. }
  3444. .block-grid.ten-up .col {
  3445. width: 61px !important;
  3446. }
  3447. .block-grid.eleven-up .col {
  3448. width: 55px !important;
  3449. }
  3450. .block-grid.twelve-up .col {
  3451. width: 51px !important;
  3452. }
  3453. }
  3454. @media (max-width: 635px) {
  3455. .block-grid,
  3456. .col {
  3457. min-width: 320px !important;
  3458. max-width: 100% !important;
  3459. }
  3460. .block-grid {
  3461. width: calc(100% - 40px) !important;
  3462. }
  3463. .col {
  3464. width: 100% !important;
  3465. }
  3466. .col>div {
  3467. margin: 0 auto;
  3468. }
  3469. img.fullwidth {
  3470. max-width: 100% !important;
  3471. }
  3472. }
  3473. </style>
  3474. </head>
  3475. <body class="clean-body" style="margin: 0;padding: 0;-webkit-text-size-adjust: 100%;background-color: #FFFFFF">
  3476. <!--[if IE]><div class="ie-browser"><![endif]-->
  3477. <!--[if mso]><div class="mso-container"><![endif]-->
  3478. <div class="nl-container" style="min-width: 320px;Margin: 0 auto;background-color: #FFFFFF">
  3479. <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td align="center" style="background-color: #FFFFFF;"><![endif]-->
  3480. <div style="background-color:#333333;">
  3481. <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;"
  3482. class="block-grid ">
  3483. <div style="border-collapse: collapse;display: table;width: 100%;">
  3484. <!--[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]-->
  3485. <!--[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]-->
  3486. <div class="col num12" style="min-width: 320px;max-width: 615px;width: 615px;width: calc(29500% - 180810px);background-color: transparent;">
  3487. <div style="background-color: transparent; width: 100% !important;">
  3488. <!--[if (!mso)&(!IE)]><!-->
  3489. <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;">
  3490. <!--<![endif]-->
  3491. <div align="left" class="img-container left fullwidth" style="padding-right: 30px; padding-left: 30px;">
  3492. <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 30px; padding-left: 30px;" align="left"><![endif]-->
  3493. <img class="left fullwidth" align="left" border="0" src="'.$path.'images/organizr-logo-h.png" alt="Image" title="Image"
  3494. 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"
  3495. width="555">
  3496. <!--[if mso]></td></tr></table><![endif]-->
  3497. </div>
  3498. <!--[if (!mso)&(!IE)]><!-->
  3499. </div>
  3500. <!--<![endif]-->
  3501. </div>
  3502. </div>
  3503. <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
  3504. </div>
  3505. </div>
  3506. </div>
  3507. <div style="background-color:#333333;">
  3508. <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;"
  3509. class="block-grid ">
  3510. <div style="border-collapse: collapse;display: table;width: 100%;">
  3511. <!--[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]-->
  3512. <!--[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]-->
  3513. <div class="col num12" style="min-width: 320px;max-width: 615px;width: 615px;width: calc(29500% - 180810px);background-color: transparent;">
  3514. <div style="background-color: transparent; width: 100% !important;">
  3515. <!--[if (!mso)&(!IE)]><!-->
  3516. <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;">
  3517. <!--<![endif]-->
  3518. <!--[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]-->
  3519. <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;">
  3520. <div style="font-size:12px;line-height:14px;color:#FFFFFF;font-family:\'Lato\', Tahoma, Verdana, Segoe, sans-serif;text-align:left;">
  3521. <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>
  3522. </span>
  3523. </p>
  3524. </div>
  3525. </div>
  3526. <!--[if mso]></td></tr></table><![endif]-->
  3527. <!--[if (!mso)&(!IE)]><!-->
  3528. </div>
  3529. <!--<![endif]-->
  3530. </div>
  3531. </div>
  3532. <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
  3533. </div>
  3534. </div>
  3535. </div>
  3536. <div style="background-color:#393939;">
  3537. <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;"
  3538. class="block-grid ">
  3539. <div style="border-collapse: collapse;display: table;width: 100%;">
  3540. <!--[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]-->
  3541. <!--[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]-->
  3542. <div class="col num12" style="min-width: 320px;max-width: 615px;width: 615px;width: calc(29500% - 180810px);background-color: transparent;">
  3543. <div style="background-color: transparent; width: 100% !important;">
  3544. <!--[if (!mso)&(!IE)]><!-->
  3545. <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;">
  3546. <!--<![endif]-->
  3547. <!--[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]-->
  3548. <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;">
  3549. <div style="font-family:Ubuntu, Tahoma, Verdana, Segoe, sans-serif;font-size:12px;line-height:14px;color:#FFFFFF;text-align:left;">
  3550. <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>
  3551. </div>
  3552. </div>
  3553. <!--[if mso]></td></tr></table><![endif]-->
  3554. <div style="padding-right: 5px; padding-left: 5px; padding-top: 5px; padding-bottom: 5px;">
  3555. <!--[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]-->
  3556. <div align="center">
  3557. <div style="border-top: 2px solid #66D9EF; width:55%; line-height:2px; height:2px; font-size:2px;">&#160;</div>
  3558. </div>
  3559. <!--[if (mso)]></td></tr></table></td></tr></table><![endif]-->
  3560. </div>
  3561. <!--[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]-->
  3562. <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;">
  3563. <div style="font-family:\'Lato\',Tahoma,Verdana,Segoe,sans-serif;font-size:12px;line-height:14px;color:#FFFFFF;text-align:left;">
  3564. <p style="margin: 0;font-size: 12px;line-height: 14px"><span style="font-size: 28px; line-height: 33px;">Hey '.$user.',</span></p>
  3565. </div>
  3566. </div>
  3567. <!--[if mso]></td></tr></table><![endif]-->
  3568. <!--[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]-->
  3569. <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;">
  3570. <div style="font-size:12px;line-height:22px;font-family:\'Lato\',Tahoma,Verdana,Segoe,sans-serif;color:#FFFFFF;text-align:left;">
  3571. <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>
  3572. </span>
  3573. </p>
  3574. </div>
  3575. </div>
  3576. <!--[if mso]></td></tr></table><![endif]-->
  3577. <div align="center" class="button-container center" style="padding-right: 30px; padding-left: 30px; padding-top:15px; padding-bottom:15px;">
  3578. <!--[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]-->
  3579. <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">
  3580. <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>
  3581. <!--[if mso]></center></v:roundrect></td></tr></table><![endif]-->
  3582. </div>
  3583. <!--[if mso]></center></v:roundrect></td></tr></table><![endif]-->
  3584. </div>
  3585. <!--[if (!mso)&(!IE)]><!-->
  3586. </div>
  3587. <!--<![endif]-->
  3588. </div>
  3589. </div>
  3590. <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
  3591. </div>
  3592. </div>
  3593. </div>
  3594. <div style="background-color:#ffffff;">
  3595. <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;"
  3596. class="block-grid ">
  3597. <div style="border-collapse: collapse;display: table;width: 100%;">
  3598. <!--[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]-->
  3599. <!--[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]-->
  3600. <div class="col num12" style="min-width: 320px;max-width: 615px;width: 615px;width: calc(29500% - 180810px);background-color: transparent;">
  3601. <div style="background-color: transparent; width: 100% !important;">
  3602. <!--[if (!mso)&(!IE)]><!-->
  3603. <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;">
  3604. <!--<![endif]-->
  3605. <!--[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]-->
  3606. <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;">
  3607. <div style="font-size:12px;line-height:14px;color:#555555;font-family:\'Lato\', Tahoma, Verdana, Segoe, sans-serif;text-align:left;">
  3608. <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>
  3609. </div>
  3610. </div>
  3611. <!--[if mso]></td></tr></table><![endif]-->
  3612. <div style="padding-right: 20px; padding-left: 20px; padding-top: 15px; padding-bottom: 20px;">
  3613. <!--[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]-->
  3614. <div align="center">
  3615. <div style="border-top: 3px solid #66D9EF; width:40%; line-height:3px; height:3px; font-size:3px;">&#160;</div>
  3616. </div>
  3617. <!--[if (mso)]></td></tr></table></td></tr></table><![endif]-->
  3618. </div>
  3619. <!--[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]-->
  3620. <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;">
  3621. <div style="font-size:12px;line-height:22px;color:#7E7D7D;font-family:\'Lato\', Tahoma, Verdana, Segoe, sans-serif;text-align:left;">
  3622. <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>
  3623. </div>
  3624. </div>
  3625. <!--[if mso]></td></tr></table><![endif]-->
  3626. <!--[if (!mso)&(!IE)]><!-->
  3627. </div>
  3628. <!--<![endif]-->
  3629. </div>
  3630. </div>
  3631. <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
  3632. </div>
  3633. </div>
  3634. </div>
  3635. <div style="background-color:#333333;">
  3636. <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;"
  3637. class="block-grid ">
  3638. <div style="border-collapse: collapse;display: table;width: 100%;">
  3639. <!--[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]-->
  3640. <!--[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]-->
  3641. <div class="col num12" style="min-width: 320px;max-width: 615px;width: 615px;width: calc(29500% - 180810px);background-color: transparent;">
  3642. <div style="background-color: transparent; width: 100% !important;">
  3643. <!--[if (!mso)&(!IE)]><!-->
  3644. <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;">
  3645. <!--<![endif]-->
  3646. <!--[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]-->
  3647. <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;">
  3648. <div style="font-size:12px;line-height:14px;color:#959595;font-family:\'Lato\', Tahoma, Verdana, Segoe, sans-serif;text-align:left;">
  3649. <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"
  3650. href="https://github.com/causefx/Organizr" target="_blank" rel="noopener noreferrer">Organizr</a><strong><br></strong></p>
  3651. </div>
  3652. </div>
  3653. <!--[if mso]></td></tr></table><![endif]-->
  3654. <!--[if (!mso)&(!IE)]><!-->
  3655. </div>
  3656. <!--<![endif]-->
  3657. </div>
  3658. </div>
  3659. <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
  3660. </div>
  3661. </div>
  3662. </div>
  3663. <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
  3664. </div>
  3665. <!--[if (mso)|(IE)]></div><![endif]-->
  3666. </body>
  3667. </html>
  3668. ';
  3669. }
  3670. // Always run this
  3671. dependCheck();