functions.php 159 KB

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