| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045 |
- <?php
- function homepageConnect($array){
- switch ($array['data']['action']) {
- case 'getPlexStreams':
- return plexConnect('streams');
- break;
- case 'getPlexRecent':
- return plexConnect('recent');
- break;
- case 'getPlexMetadata':
- return plexConnect('metadata',$array['data']['key']);
- break;
- case 'getEmbyStreams':
- return embyConnect('streams');
- break;
- case 'getEmbyRecent':
- return embyConnect('recent');
- break;
- case 'getEmbyMetadata':
- return embyConnect('metadata',$array['data']['key'],true);
- break;
- case 'getSabnzbd':
- return sabnzbdConnect();
- break;
- case 'getNzbget':
- return nzbgetConnect();
- break;
- case 'getTransmission':
- return transmissionConnect();
- break;
- case 'getqBittorrent':
- return qBittorrentConnect();
- break;
- case 'getDeluge':
- return delugeConnect();
- break;
- case 'getCalendar':
- return getCalendar();
- break;
- default:
- # code...
- break;
- }
- }
- function streamType($value){
- if($value == "transcode" || $value == "Transcode"){
- return "Transcode";
- }elseif($value == "copy" || $value == "DirectStream"){
- return "Direct Stream";
- }elseif($value == "directplay" || $value == "DirectPlay"){
- return "Direct Play";
- }else{
- return "Direct Play";
- }
- }
- function resolveEmbyItem($itemDetails) {
- // Grab Each item info from Emby (extra call)
- $id = isset($itemDetails['NowPlayingItem']['Id']) ? $itemDetails['NowPlayingItem']['Id'] : $itemDetails['Id'];
- $url = qualifyURL($GLOBALS['embyURL']);
- $url = $url.'/Items?Ids='.$id.'&api_key='.$GLOBALS['embyToken'].'&Fields=Overview,People,Genres,CriticRating,Studios,Taglines';
- try{
- $options = (localURL($url)) ? array('verify' => false ) : array();
- $response = Requests::get($url, array(), $options);
- if($response->success){
- $item = json_decode($response->body,true)['Items'][0];
- }
- }catch( Requests_Exception $e ) {
- return false;
- };
- // Static Height & Width
- $height = 300;
- $width = 200;
- $nowPlayingHeight = 675;
- $nowPlayingWidth = 1200;
- $actorHeight = 450;
- $actorWidth = 300;
- $widthOverride = 100;
- // Cache Directories
- $cacheDirectory = dirname(__DIR__,2).DIRECTORY_SEPARATOR.'plugins'.DIRECTORY_SEPARATOR.'images'.DIRECTORY_SEPARATOR.'cache'.DIRECTORY_SEPARATOR;
- $cacheDirectoryWeb = 'plugins/images/cache/';
- // Types
- $embyItem['array-item'] = $item;
- $embyItem['array-itemdetails'] = $itemDetails;
- switch (@$item['Type']) {
- case 'Series':
- $embyItem['type'] = 'tv';
- $embyItem['title'] = $item['Name'];
- $embyItem['summary'] = '';
- $embyItem['ratingKey'] = $item['Id'];
- $embyItem['thumb'] = $item['Id'];
- $embyItem['key'] = $item['Id'] . "-list";
- $embyItem['nowPlayingThumb'] = $item['Id'];
- $embyItem['nowPlayingKey'] = $item['Id'] . "-np";
- $embyItem['metadataKey'] = $item['Id'];
- $embyItem['nowPlayingImageType'] = isset($item['ImageTags']['Thumb']) ? 'Thumb' : (isset($item['BackdropImageTags'][0]) ? 'Backdrop' : '');
- break;
- case 'Episode':
- $embyItem['type'] = 'tv';
- $embyItem['title'] = $item['SeriesName'];
- $embyItem['summary'] = '';
- $embyItem['ratingKey'] = $item['Id'];
- $embyItem['thumb'] = (isset($item['SeriesId'])?$item['SeriesId']:$item['Id']);
- $embyItem['key'] = (isset($item['SeriesId'])?$item['SeriesId']:$item['Id']) . "-list";
- $embyItem['nowPlayingThumb'] = isset($item['ParentThumbItemId']) ? $item['ParentThumbItemId'] : (isset($item['ParentBackdropItemId']) ? $item['ParentBackdropItemId'] : false);
- $embyItem['nowPlayingKey'] = isset($item['ParentThumbItemId']) ? $item['ParentThumbItemId'].'-np' : (isset($item['ParentBackdropItemId']) ? $item['ParentBackdropItemId'].'-np' : false);
- $embyItem['metadataKey'] = $item['Id'];
- $embyItem['nowPlayingImageType'] = isset($item['ImageTags']['Thumb']) ? 'Thumb' : (isset($item['ParentBackdropImageTags'][0]) ? 'Backdrop' : '');
- $embyItem['nowPlayingTitle'] = @$item['SeriesName'].' - '.@$item['Name'];
- $embyItem['nowPlayingBottom'] = 'S'.@$item['ParentIndexNumber'].' · E'.@$item['IndexNumber'];
- break;
- case 'MusicAlbum':
- case 'Audio':
- $embyItem['type'] = 'music';
- $embyItem['title'] = $item['Name'];
- $embyItem['summary'] = '';
- $embyItem['ratingKey'] = $item['Id'];
- $embyItem['thumb'] = $item['Id'];
- $embyItem['key'] = $item['Id'] . "-list";
- $embyItem['nowPlayingThumb'] = (isset($item['AlbumId']) ? $item['AlbumId'] : @$item['ParentBackdropItemId']);
- $embyItem['nowPlayingKey'] = $item['Id'] . "-np";
- $embyItem['metadataKey'] = isset($item['AlbumId']) ? $item['AlbumId'] : $item['Id'];
- $embyItem['nowPlayingImageType'] = (isset($item['ParentBackdropItemId']) ? "Primary" : "Backdrop");
- $embyItem['nowPlayingTitle'] = @$item['AlbumArtist'].' - '.@$item['Name'];
- $embyItem['nowPlayingBottom'] = @$item['Album'];
- break;
- case 'Movie':
- $embyItem['type'] = 'movie';
- $embyItem['title'] = $item['Name'];
- $embyItem['summary'] = '';
- $embyItem['ratingKey'] = $item['Id'];
- $embyItem['thumb'] = $item['Id'];
- $embyItem['key'] = $item['Id'] . "-list";
- $embyItem['nowPlayingThumb'] = $item['Id'];
- $embyItem['nowPlayingKey'] = $item['Id'] . "-np";
- $embyItem['metadataKey'] = $item['Id'];
- $embyItem['nowPlayingImageType'] = isset($item['ImageTags']['Thumb']) ? "Thumb" : (isset($item['BackdropImageTags']) ? "Backdrop" : false);
- $embyItem['nowPlayingTitle'] = @$item['Name'];
- $embyItem['nowPlayingBottom'] = @$item['ProductionYear'];
- break;
- case 'Video':
- $embyItem['type'] = 'video';
- $embyItem['title'] = $item['Name'];
- $embyItem['summary'] = '';
- $embyItem['ratingKey'] = $item['Id'];
- $embyItem['thumb'] = $item['Id'];
- $embyItem['key'] = $item['Id'] . "-list";
- $embyItem['nowPlayingThumb'] = $item['Id'];
- $embyItem['nowPlayingKey'] = $item['Id'] . "-np";
- $embyItem['metadataKey'] = $item['Id'];
- $embyItem['nowPlayingImageType'] = isset($item['ImageTags']['Thumb']) ? "Thumb" : (isset($item['BackdropImageTags']) ? "Backdrop" : false);
- $embyItem['nowPlayingTitle'] = @$item['Name'];
- $embyItem['nowPlayingBottom'] = @$item['ProductionYear'];
- break;
- default:
- return false;
- }
- $embyItem['uid'] = $item['Id'];
- $embyItem['imageType'] = (isset($item['ImageTags']['Primary']) ? "Primary" : false);
- $embyItem['elapsed'] = isset($itemDetails['PlayState']['PositionTicks']) && $itemDetails['PlayState']['PositionTicks'] !== '0' ? (int)$itemDetails['PlayState']['PositionTicks'] : null;
- $embyItem['duration'] = isset($itemDetails['NowPlayingItem']['RunTimeTicks']) ? (int)$itemDetails['NowPlayingItem']['RunTimeTicks'] : (int)$item['RunTimeTicks'];
- $embyItem['watched'] = ($embyItem['elapsed'] && $embyItem['duration'] ? floor(($embyItem['elapsed'] / $embyItem['duration']) * 100) : 0);
- $embyItem['transcoded'] = isset($itemDetails['TranscodingInfo']['CompletionPercentage']) ? floor((int)$itemDetails['TranscodingInfo']['CompletionPercentage']) : 100;
- $embyItem['stream'] = @$itemDetails['PlayState']['PlayMethod'];
- $embyItem['id'] = $item['ServerId'];
- $embyItem['session'] = @$itemDetails['DeviceId'];
- $embyItem['bandwidth'] = isset($itemDetails['TranscodingInfo']['Bitrate']) ? $itemDetails['TranscodingInfo']['Bitrate'] / 1000 : '';
- $embyItem['bandwidthType'] = 'wan';
- $embyItem['sessionType'] = (@$itemDetails['PlayState']['PlayMethod'] == 'Transcode') ? 'Transcoding' : 'Direct Playing';
- $embyItem['state'] = ((@(string)$itemDetails['PlayState']['IsPaused'] == '1') ? "pause" : "play");
- $embyItem['user'] = ($GLOBALS['homepageShowStreamNames'] && qualifyRequest($GLOBALS['homepageShowStreamNamesAuth']) ) ? @(string)$itemDetails['UserName'] : "";
- $embyItem['userThumb'] = '';
- $embyItem['userAddress'] = (isset($itemDetails['RemoteEndPoint']) ? $itemDetails['RemoteEndPoint'] : "x.x.x.x");
- $embyItem['address'] = $GLOBALS['embyTabURL'] ? '' : '';
- $embyItem['nowPlayingOriginalImage'] = 'api/?v1/image&source=emby&type='.$embyItem['nowPlayingImageType'].'&img='.$embyItem['nowPlayingThumb'].'&height='.$nowPlayingHeight.'&width='.$nowPlayingWidth.'&key='.$embyItem['nowPlayingKey'].'$'.randString();
- $embyItem['originalImage'] = 'api/?v1/image&source=emby&type='.$embyItem['imageType'].'&img='.$embyItem['thumb'].'&height='.$height.'&width='.$width.'&key='.$embyItem['key'].'$'.randString();
- $embyItem['openTab'] = $GLOBALS['embyTabURL'] && $GLOBALS['embyTabName'] ? true : false;
- $embyItem['tabName'] = $GLOBALS['embyTabName'] ? $GLOBALS['embyTabName'] : '';
- // Stream info
- $embyItem['userStream'] = array(
- 'platform' => @(string)$itemDetails['Client'],
- 'product' => @(string)$itemDetails['Client'],
- 'device' => @(string)$itemDetails['DeviceName'],
- 'stream' => @$itemDetails['PlayState']['PlayMethod'],
- 'videoResolution' => isset($itemDetails['NowPlayingItem']['MediaStreams'][0]['Width']) ? $itemDetails['NowPlayingItem']['MediaStreams'][0]['Width'] : '',
- 'throttled' => false,
- 'sourceVideoCodec' => isset($itemDetails['NowPlayingItem']['MediaStreams'][0]) ? $itemDetails['NowPlayingItem']['MediaStreams'][0]['Codec'] : '',
- 'videoCodec' => @$itemDetails['TranscodingInfo']['VideoCodec'],
- 'audioCodec' => @$itemDetails['TranscodingInfo']['AudioCodec'],
- 'sourceAudioCodec' => isset($itemDetails['NowPlayingItem']['MediaStreams'][1]) ? $itemDetails['NowPlayingItem']['MediaStreams'][1]['Codec'] : (isset($itemDetails['NowPlayingItem']['MediaStreams'][0]) ? $itemDetails['NowPlayingItem']['MediaStreams'][0]['Codec'] : ''),
- 'videoDecision' => streamType(@$itemDetails['PlayState']['PlayMethod']),
- 'audioDecision' => streamType(@$itemDetails['PlayState']['PlayMethod']),
- 'container' => isset($itemDetails['NowPlayingItem']['Container']) ? $itemDetails['NowPlayingItem']['Container'] : '',
- 'audioChannels' => @$itemDetails['TranscodingInfo']['AudioChannels']
- );
- // Genre catch all
- if($item['Genres']){
- $genres = array();
- foreach ($item['Genres'] as $genre) {
- $genres[] = $genre;
- }
- }
- // Actor catch all
- if($item['People'] ){
- $actors = array();
- foreach ($item['People'] as $key => $value) {
- if(@$value['PrimaryImageTag'] && @$value['Role']){
- if (file_exists($cacheDirectory.(string)$value['Id'].'-cast.jpg')){ $actorImage = $cacheDirectoryWeb.(string)$value['Id'].'-cast.jpg'; }
- if (file_exists($cacheDirectory.(string)$value['Id'].'-cast.jpg') && (time() - 604800) > filemtime($cacheDirectory.(string)$value['Id'].'-cast.jpg') || !file_exists($cacheDirectory.(string)$value['Id'].'-cast.jpg')) {
- $actorImage = 'api/?v1/image&source=emby&type=Primary&img='.(string)$value['Id'].'&height='.$actorHeight.'&width='.$actorWidth.'&key='.(string)$value['Id'].'-cast';
- }
- $actors[] = array(
- 'name' => (string)$value['Name'],
- 'role' => (string)$value['Role'],
- 'thumb' => $actorImage
- );
- }
- }
- }
- // Metadata information
- $embyItem['metadata'] = array(
- 'guid' => $item['Id'],
- 'summary' => @(string)$item['Overview'],
- 'rating' => @(string)$item['CommunityRating'],
- 'duration' => @(string)$item['RunTimeTicks'],
- 'originallyAvailableAt' => @(string)$item['PremiereDate'],
- 'year' => (string)$item['ProductionYear'],
- //'studio' => (string)$item['studio'],
- 'tagline' => @(string)$item['Taglines'][0],
- 'genres' => ($item['Genres']) ? $genres : '',
- 'actors' => ($item['People']) ? $actors : ''
- );
- if (file_exists($cacheDirectory.$embyItem['nowPlayingKey'].'.jpg')){ $embyItem['nowPlayingImageURL'] = $cacheDirectoryWeb.$embyItem['nowPlayingKey'].'.jpg'; }
- if (file_exists($cacheDirectory.$embyItem['key'].'.jpg')){ $embyItem['imageURL'] = $cacheDirectoryWeb.$embyItem['key'].'.jpg'; }
- if (file_exists($cacheDirectory.$embyItem['nowPlayingKey'].'.jpg') && (time() - 604800) > filemtime($cacheDirectory.$embyItem['nowPlayingKey'].'.jpg') || !file_exists($cacheDirectory.$embyItem['nowPlayingKey'].'.jpg')) {
- $embyItem['nowPlayingImageURL'] = 'api/?v1/image&source=emby&type='.$embyItem['nowPlayingImageType'].'&img='.$embyItem['nowPlayingThumb'].'&height='.$nowPlayingHeight.'&width='.$nowPlayingWidth.'&key='.$embyItem['nowPlayingKey'].'';
- }
- if (file_exists($cacheDirectory.$embyItem['key'].'.jpg') && (time() - 604800) > filemtime($cacheDirectory.$embyItem['key'].'.jpg') || !file_exists($cacheDirectory.$embyItem['key'].'.jpg')) {
- $embyItem['imageURL'] = 'api/?v1/image&source=emby&type='.$embyItem['imageType'].'&img='.$embyItem['thumb'].'&height='.$height.'&width='.$width.'&key='.$embyItem['key'].'';
- }
- if(!$embyItem['nowPlayingThumb'] ){ $embyItem['nowPlayingOriginalImage'] = $embyItem['nowPlayingImageURL'] = "plugins/images/cache/no-np.png"; $embyItem['nowPlayingKey'] = "no-np"; }
- if(!$embyItem['thumb'] ){ $embyItem['originalImage'] = $embyItem['imageURL'] = "plugins/images/cache/no-list.png"; $embyItem['key'] = "no-list"; }
- if(isset($useImage)){ $embyItem['useImage'] = $useImage; }
- return $embyItem;
- }
- function resolvePlexItem($item) {
- // Static Height & Width
- $height = 300;
- $width = 200;
- $nowPlayingHeight = 675;
- $nowPlayingWidth = 1200;
- $widthOverride = 100;
- // Cache Directories
- $cacheDirectory = dirname(__DIR__,2).DIRECTORY_SEPARATOR.'plugins'.DIRECTORY_SEPARATOR.'images'.DIRECTORY_SEPARATOR.'cache'.DIRECTORY_SEPARATOR;
- $cacheDirectoryWeb = 'plugins/images/cache/';
- // Types
- switch ($item['type']) {
- case 'season':
- $plexItem['type'] = 'tv';
- $plexItem['title'] = (string)$item['parentTitle'];
- $plexItem['summary'] = (string)$item['parentSummary'];
- $plexItem['ratingKey'] = (string)$item['parentRatingKey'];
- $plexItem['thumb'] = (string)$item['thumb'];
- $plexItem['key'] = (string)$item['ratingKey'] . "-list";
- $plexItem['nowPlayingThumb'] = (string)$item['art'];
- $plexItem['nowPlayingKey'] = (string)$item['ratingKey'] . "-np";
- $plexItem['metadataKey'] = (string)$item['parentRatingKey'];
- break;
- case 'episode':
- $plexItem['type'] = 'tv';
- $plexItem['title'] = (string)$item['grandparentTitle'];
- $plexItem['summary'] = (string)$item['title'];
- $plexItem['ratingKey'] = (string)$item['parentRatingKey'];
- $plexItem['thumb'] = ($item['parentThumb'] ? (string)$item['parentThumb'] : (string)$item['grandparentThumb']);
- $plexItem['key'] = (string)$item['ratingKey'] . "-list";
- $plexItem['nowPlayingThumb'] = (string)$item['grandparentArt'];
- $plexItem['nowPlayingKey'] = (string)$item['grandparentRatingKey'] . "-np";
- $plexItem['nowPlayingTitle'] = (string)$item['grandparentTitle'].' - '.(string)$item['title'];
- $plexItem['nowPlayingBottom'] = 'S'.(string)$item['parentIndex'].' · E'.(string)$item['index'];
- $plexItem['metadataKey'] = (string)$item['grandparentRatingKey'];
- break;
- case 'clip':
- $useImage = (isset($item['live']) ? "plugins/images/cache/livetv.png" : null);
- $plexItem['type'] = 'clip';
- $plexItem['title'] = (string)$item['title'];
- $plexItem['summary'] = (string)$item['summary'];
- $plexItem['ratingKey'] = (string)$item['parentRatingKey'];
- $plexItem['thumb'] = (string)$item['thumb'];
- $plexItem['key'] = (string)$item['ratingKey'] . "-list";
- $plexItem['nowPlayingThumb'] = (string)$item['art'];
- $plexItem['nowPlayingKey'] = isset($item['ratingKey']) ? (string)$item['ratingKey'] . "-np" : (isset($item['live']) ? "livetv.png" : ":)");
- $plexItem['nowPlayingTitle'] = $plexItem['title'];
- $plexItem['nowPlayingBottom'] = isset($item['extraType']) ? "Trailer" : (isset($item['live']) ? "Live TV" : ":)");
- break;
- case 'album':
- case 'track':
- $plexItem['type'] = 'music';
- $plexItem['title'] = (string)$item['parentTitle'];
- $plexItem['summary'] = (string)$item['title'];
- $plexItem['ratingKey'] = (string)$item['parentRatingKey'];
- $plexItem['thumb'] = (string)$item['thumb'];
- $plexItem['key'] = (string)$item['ratingKey'] . "-list";
- $plexItem['nowPlayingThumb'] = ($item['parentThumb']) ? (string)$item['parentThumb'] : (string)$item['art'];
- $plexItem['nowPlayingKey'] = (string)$item['parentRatingKey'] . "-np";
- $plexItem['nowPlayingTitle'] = (string)$item['grandparentTitle'].' - '.(string)$item['title'];
- $plexItem['nowPlayingBottom'] = (string)$item['parentTitle'];
- $plexItem['metadataKey'] = isset($item['grandparentRatingKey']) ? (string)$item['grandparentRatingKey'] : (string)$item['parentRatingKey'];
- break;
- default:
- $plexItem['type'] = 'movie';
- $plexItem['title'] = (string)$item['title'];
- $plexItem['summary'] = (string)$item['summary'];
- $plexItem['ratingKey'] = (string)$item['ratingKey'];
- $plexItem['thumb'] = (string)$item['thumb'];
- $plexItem['key'] = (string)$item['ratingKey'] . "-list";
- $plexItem['nowPlayingThumb'] = (string)$item['art'];
- $plexItem['nowPlayingKey'] = (string)$item['ratingKey'] . "-np";
- $plexItem['nowPlayingTitle'] = (string)$item['title'];
- $plexItem['nowPlayingBottom'] = (string)$item['year'];
- $plexItem['metadataKey'] = (string)$item['ratingKey'];
- }
- $plexItem['uid'] = (string)$item['ratingKey'];
- $plexItem['elapsed'] = isset($item['viewOffset']) && $item['viewOffset'] !== '0' ? (int)$item['viewOffset'] : null;
- $plexItem['duration'] = isset($item['duration']) ? (int)$item['duration'] : (int)$item->Media['duration'];
- $plexItem['watched'] = ($plexItem['elapsed'] && $plexItem['duration'] ? floor(($plexItem['elapsed'] / $plexItem['duration']) * 100) : 0);
- $plexItem['transcoded'] = isset($item->TranscodeSession['progress']) ? floor((int)$item->TranscodeSession['progress']- $plexItem['watched']) : '';
- $plexItem['stream'] = isset($item->Media->Part->Stream['decision']) ? (string)$item->Media->Part->Stream['decision']: '';
- $plexItem['id'] = str_replace('"', '', (string)$item->Player['machineIdentifier']);
- $plexItem['session'] = (string)$item->Session['id'];
- $plexItem['bandwidth'] = (string)$item->Session['bandwidth'];
- $plexItem['bandwidthType'] = (string)$item->Session['location'];
- $plexItem['sessionType'] = isset($item->TranscodeSession['progress']) ? 'Transcoding' : 'Direct Playing';
- $plexItem['state'] = (((string)$item->Player['state'] == "paused") ? "pause" : "play");
- $plexItem['user'] = ($GLOBALS['homepageShowStreamNames'] && qualifyRequest($GLOBALS['homepageShowStreamNamesAuth']) ) ? (string)$item->User['title'] : "";
- $plexItem['userThumb'] = ($GLOBALS['homepageShowStreamNames'] && qualifyRequest($GLOBALS['homepageShowStreamNamesAuth']) ) ? (string)$item->User['thumb'] : "";
- $plexItem['userAddress'] = ($GLOBALS['homepageShowStreamNames'] && qualifyRequest($GLOBALS['homepageShowStreamNamesAuth']) ) ? (string)$item->Player['address'] : "x.x.x.x";
- $plexItem['address'] = $GLOBALS['plexTabURL'] ? $GLOBALS['plexTabURL']."/web/index.html#!/server/".$GLOBALS['plexID']."/details?key=/library/metadata/".$item['ratingKey'] : "https://app.plex.tv/web/app#!/server/".$GLOBALS['plexID']."/details?key=/library/metadata/".$item['ratingKey'];
- $plexItem['nowPlayingOriginalImage'] = 'api/?v1/image&source=plex&img='.$plexItem['nowPlayingThumb'].'&height='.$nowPlayingHeight.'&width='.$nowPlayingWidth.'&key='.$plexItem['nowPlayingKey'].'$'.randString();
- $plexItem['originalImage'] = 'api/?v1/image&source=plex&img='.$plexItem['thumb'].'&height='.$height.'&width='.$width.'&key='.$plexItem['key'].'$'.randString();
- $plexItem['openTab'] = $GLOBALS['plexTabURL'] && $GLOBALS['plexTabName'] ? true : false;
- $plexItem['tabName'] = $GLOBALS['plexTabName'] ? $GLOBALS['plexTabName'] : '';
- // Stream info
- $plexItem['userStream'] = array(
- 'platform' => (string)$item->Player['platform'],
- 'product' => (string)$item->Player['product'],
- 'device' => (string)$item->Player['device'],
- 'stream' => (string)$item->Media->Part['decision'].($item->TranscodeSession['throttled'] == '1' ? ' (Throttled)': ''),
- 'videoResolution' => (string)$item->Media['videoResolution'],
- 'throttled' => ($item->TranscodeSession['throttled'] == 1) ? true : false,
- 'sourceVideoCodec' => (string)$item->TranscodeSession['sourceVideoCodec'],
- 'videoCodec' => (string)$item->TranscodeSession['videoCodec'],
- 'audioCodec' => (string)$item->TranscodeSession['audioCodec'],
- 'sourceAudioCodec' => (string)$item->TranscodeSession['sourceAudioCodec'],
- 'videoDecision' => streamType((string)$item->TranscodeSession['videoDecision']),
- 'audioDecision' => streamType((string)$item->TranscodeSession['audioDecision']),
- 'container' => (string)$item->TranscodeSession['container'],
- 'audioChannels' => (string)$item->TranscodeSession['audioChannels']
- );
- // Genre catch all
- if($item->Genre){
- $genres = array();
- foreach ($item->Genre as $key => $value) {
- $genres[] = (string)$value['tag'];
- }
- }
- // Actor catch all
- if($item->Role ){
- $actors = array();
- foreach ($item->Role as $key => $value) {
- if($value['thumb']){
- $actors[] = array(
- 'name' => (string)$value['tag'],
- 'role' => (string)$value['role'],
- 'thumb' => (string)$value['thumb']
- );
- }
- }
- }
- // Metadata information
- $plexItem['metadata'] = array(
- 'guid' => (string)$item['guid'],
- 'summary' => (string)$item['summary'],
- 'rating' => (string)$item['rating'],
- 'duration' => (string)$item['duration'],
- 'originallyAvailableAt' => (string)$item['originallyAvailableAt'],
- 'year' => (string)$item['year'],
- 'studio' => (string)$item['studio'],
- 'tagline' => (string)$item['tagline'],
- 'genres' => ($item->Genre) ? $genres : '',
- 'actors' => ($item->Role) ? $actors : ''
- );
- if (file_exists($cacheDirectory.$plexItem['nowPlayingKey'].'.jpg')){ $plexItem['nowPlayingImageURL'] = $cacheDirectoryWeb.$plexItem['nowPlayingKey'].'.jpg'; }
- if (file_exists($cacheDirectory.$plexItem['key'].'.jpg')){ $plexItem['imageURL'] = $cacheDirectoryWeb.$plexItem['key'].'.jpg'; }
- if (file_exists($cacheDirectory.$plexItem['nowPlayingKey'].'.jpg') && (time() - 604800) > filemtime($cacheDirectory.$plexItem['nowPlayingKey'].'.jpg') || !file_exists($cacheDirectory.$plexItem['nowPlayingKey'].'.jpg')) {
- $plexItem['nowPlayingImageURL'] = 'api/?v1/image&source=plex&img='.$plexItem['nowPlayingThumb'].'&height='.$nowPlayingHeight.'&width='.$nowPlayingWidth.'&key='.$plexItem['nowPlayingKey'].'';
- }
- if (file_exists($cacheDirectory.$plexItem['key'].'.jpg') && (time() - 604800) > filemtime($cacheDirectory.$plexItem['key'].'.jpg') || !file_exists($cacheDirectory.$plexItem['key'].'.jpg')) {
- $plexItem['imageURL'] = 'api/?v1/image&source=plex&img='.$plexItem['thumb'].'&height='.$height.'&width='.$width.'&key='.$plexItem['key'].'';
- }
- if(!$plexItem['nowPlayingThumb'] ){ $plexItem['nowPlayingOriginalImage'] = $plexItem['nowPlayingImageURL'] = "plugins/images/cache/no-np.png"; $plexItem['nowPlayingKey'] = "no-np"; }
- if(!$plexItem['thumb'] ){ $plexItem['originalImage'] = $plexItem['imageURL'] = "plugins/images/cache/no-list.png"; $plexItem['key'] = "no-list"; }
- if(isset($useImage)){ $plexItem['useImage'] = $useImage; }
- return $plexItem;
- }
- function plexConnect($action,$key=null){
- if($GLOBALS['homepagePlexEnabled'] && !empty($GLOBALS['plexURL']) && !empty($GLOBALS['plexToken']) && !empty($GLOBALS['plexID'] && qualifyRequest($GLOBALS['homepagePlexAuth']))){
- $url = qualifyURL($GLOBALS['plexURL']);
- switch ($action) {
- case 'streams':
- $url = $url."/status/sessions?X-Plex-Token=".$GLOBALS['plexToken'];
- break;
- case 'recent':
- $url = $url."/library/recentlyAdded?X-Plex-Token=".$GLOBALS['plexToken'];
- break;
- case 'metadata':
- $url = $url."/library/metadata/".$key."?X-Plex-Token=".$GLOBALS['plexToken'];
- break;
- default:
- # code...
- break;
- }
- try{
- $options = (localURL($url)) ? array('verify' => false ) : array();
- $response = Requests::get($url, array(), $options);
- libxml_use_internal_errors(true);
- if($response->success){
- $items = array();
- $plex = simplexml_load_string($response->body);
- foreach($plex AS $child) {
- $items[] = resolvePlexItem($child);
- }
- $api['content'] = $items;
- $api['plexID'] = $GLOBALS['plexID'];
- $api['showNames'] = true;
- $api['group'] = '1';
- return $api;
- }
- }catch( Requests_Exception $e ) {
- writeLog('error', 'Plex Connect Function - Error: '.$e->getMessage(), 'SYSTEM');
- };
- }
- return false;
- }
- function embyConnect($action,$key=null,$skip=false){
- if($GLOBALS['homepageEmbyEnabled'] && !empty($GLOBALS['embyURL']) && !empty($GLOBALS['embyToken']) && qualifyRequest($GLOBALS['homepageEmbyAuth'])){
- $url = qualifyURL($GLOBALS['embyURL']);
- switch ($action) {
- case 'streams':
- $url = $url.'/Sessions?api_key='.$GLOBALS['embyToken'];
- break;
- case 'recent':
- $username = false;
- if (isset($GLOBALS['organizrUser']['username'])) {
- $username = strtolower($GLOBALS['organizrUser']['username']);
- }
- // Get A User
- $userIds = $url."/Users?api_key=".$GLOBALS['embyToken'];
- $showPlayed = true;
- try{
- $options = (localURL($userIds)) ? array('verify' => false ) : array();
- $response = Requests::get($userIds, array(), $options);
- if($response->success){
- $emby = json_decode($response->body, true);
- foreach ($emby as $value) { // Scan for admin user
- if (isset($value['Policy']) && isset($value['Policy']['IsAdministrator']) && $value['Policy']['IsAdministrator']) {
- $userId = $value['Id'];
- }
- if ($username && strtolower($value['Name']) == $username) {
- $userId = $value['Id'];
- $showPlayed = false;
- break;
- }
- }
- }
- }catch( Requests_Exception $e ) {
- writeLog('error', 'Emby Connect Function - Error: '.$e->getMessage(), 'SYSTEM');
- };
- $url = $url.'/Users/'.$userId.'/Items/Latest?EnableImages=false&Limit=100&api_key='.$GLOBALS['embyToken'].($showPlayed?'':'&IsPlayed=false');
- break;
- case 'metadata':
- $skip = true;
- break;
- default:
- # code...
- break;
- }
- if($skip && $key){
- $items[] = resolveEmbyItem(array('Id'=>$key));
- $api['content'] = $items;
- return $api;
- }
- try{
- $options = (localURL($url)) ? array('verify' => false ) : array();
- $response = Requests::get($url, array(), $options);
- if($response->success){
- $items = array();
- $emby = json_decode($response->body, true);
- foreach($emby AS $child) {
- if (isset($child['NowPlayingItem']) || isset($child['Name'])) {
- $items[] = resolveEmbyItem($child);
- }
- }
- $api['content'] = array_filter($items);
- return $api;
- }
- }catch( Requests_Exception $e ) {
- writeLog('error', 'Emby Connect Function - Error: '.$e->getMessage(), 'SYSTEM');
- };
- }
- return false;
- }
- function sabnzbdConnect() {
- if($GLOBALS['homepageSabnzbdEnabled'] && !empty($GLOBALS['sabnzbdURL']) && !empty($GLOBALS['sabnzbdToken']) && qualifyRequest($GLOBALS['homepageSabnzbdAuth'])){
- $url = qualifyURL($GLOBALS['sabnzbdURL']);
- $url = $url.'/api?mode=queue&output=json&apikey='.$GLOBALS['sabnzbdToken'];
- try{
- $options = (localURL($url)) ? array('verify' => false ) : array();
- $response = Requests::get($url, array(), $options);
- if($response->success){
- $api['content']['queueItems'] = json_decode($response->body, true);
- }
- }catch( Requests_Exception $e ) {
- writeLog('error', 'SabNZBd Connect Function - Error: '.$e->getMessage(), 'SYSTEM');
- };
- $url = qualifyURL($GLOBALS['sabnzbdURL']);
- $url = $url.'/api?mode=history&output=json&apikey='.$GLOBALS['sabnzbdToken'];
- try{
- $options = (localURL($url)) ? array('verify' => false ) : array();
- $response = Requests::get($url, array(), $options);
- if($response->success){
- $api['content']['historyItems']= json_decode($response->body, true);
- }
- }catch( Requests_Exception $e ) {
- writeLog('error', 'SabNZBd Connect Function - Error: '.$e->getMessage(), 'SYSTEM');
- };
- $api['content'] = isset($api['content']) ? $api['content'] : false;
- return $api;
- }
- }
- function nzbgetConnect() {
- if($GLOBALS['homepageNzbgetEnabled'] && !empty($GLOBALS['nzbgetURL']) && qualifyRequest($GLOBALS['homepageNzbgetAuth'])){
- $url = qualifyURL($GLOBALS['nzbgetURL']);
- $url = $url.'/'.$GLOBALS['nzbgetUsername'].':'.decrypt($GLOBALS['nzbgetPassword']).'/jsonrpc/listgroups';
- try{
- $options = (localURL($url)) ? array('verify' => false ) : array();
- $response = Requests::get($url, array(), $options);
- if($response->success){
- $api['content']['queueItems'] = json_decode($response->body, true);
- }
- }catch( Requests_Exception $e ) {
- writeLog('error', 'NZBGet Connect Function - Error: '.$e->getMessage(), 'SYSTEM');
- };
- $url = qualifyURL($GLOBALS['nzbgetURL']);
- $url = $url.'/'.$GLOBALS['nzbgetUsername'].':'.decrypt($GLOBALS['nzbgetPassword']).'/jsonrpc/history';
- try{
- $options = (localURL($url)) ? array('verify' => false ) : array();
- $response = Requests::get($url, array(), $options);
- if($response->success){
- $api['content']['historyItems']= json_decode($response->body, true);
- }
- }catch( Requests_Exception $e ) {
- writeLog('error', 'NZBGet Connect Function - Error: '.$e->getMessage(), 'SYSTEM');
- };
- $api['content'] = isset($api['content']) ? $api['content'] : false;
- return $api;
- }
- }
- function transmissionConnect() {
- if($GLOBALS['homepageTransmissionEnabled'] && !empty($GLOBALS['transmissionURL']) && qualifyRequest($GLOBALS['homepageTransmissionAuth'])){
- $digest = qualifyURL($GLOBALS['transmissionURL'], true);
- $passwordInclude = ($GLOBALS['transmissionUsername'] != '' && $GLOBALS['transmissionPassword'] != '') ? $GLOBALS['transmissionUsername'].':'.decrypt($GLOBALS['transmissionPassword'])."@" : '';
- $url = $digest['scheme'].'://'.$passwordInclude.$digest['host'].$digest['port'].$digest['path'].'/rpc';
- try{
- $options = (localURL($GLOBALS['transmissionURL'])) ? array('verify' => false ) : array();
- $response = Requests::get($url, array(), $options);
- if($response->headers['x-transmission-session-id']){
- $headers = array(
- 'X-Transmission-Session-Id' => $response->headers['x-transmission-session-id'],
- 'Content-Type' => 'application/json'
- );
- $data = array(
- 'method' => 'torrent-get',
- 'arguments' => array(
- 'fields' => array(
- "id", "name", "totalSize", "eta", "isFinished", "isStalled", "percentDone", "rateDownload", "status", "downloadDir","errorString"
- ),
- ),
- 'tags' => ''
- );
- $response = Requests::post($url, $headers, json_encode($data), $options);
- if($response->success){
- $torrentList = json_decode($response->body, true)['arguments']['torrents'];
- if($GLOBALS['transmissionHideSeeding'] || $GLOBALS['transmissionHideCompleted']){
- $filter = array();
- $torrents['arguments']['torrents'] = array();
- if($GLOBALS['transmissionHideSeeding']){ array_push($filter, 6, 5); }
- if($GLOBALS['transmissionHideCompleted']){ array_push($filter, 0); }
- foreach ($torrentList as $key => $value) {
- if(!in_array($value['status'], $filter)){
- $torrents['arguments']['torrents'][] = $value;
- }
- }
- }else{
- $torrents = json_decode($response->body, true);
- }
- $api['content']['queueItems'] = $torrents;
- $api['content']['historyItems'] = false;
- }
- }else{
- writeLog('error', 'Transmission Connect Function - Error: Could not get session ID', 'SYSTEM');
- }
- }catch( Requests_Exception $e ) {
- writeLog('error', 'Transmission Connect Function - Error: '.$e->getMessage(), 'SYSTEM');
- };
- $api['content'] = isset($api['content']) ? $api['content'] : false;
- return $api;
- }
- }
- function qBittorrentConnect() {
- if($GLOBALS['homepageqBittorrentEnabled'] && !empty($GLOBALS['qBittorrentURL']) && qualifyRequest($GLOBALS['homepageqBittorrentAuth'])){
- $digest = qualifyURL($GLOBALS['qBittorrentURL'], true);
- $passwordInclude = ($GLOBALS['qBittorrentUsername'] != '' && $GLOBALS['qBittorrentPassword'] != '') ? 'username='.$GLOBALS['qBittorrentUsername'].'&password='.decrypt($GLOBALS['qBittorrentPassword'])."@" : '';
- $data = array('username'=>$GLOBALS['qBittorrentUsername'], 'password'=> decrypt($GLOBALS['qBittorrentPassword']));
- $url = $digest['scheme'].'://'.$digest['host'].$digest['port'].$digest['path'].'/login';
- try{
- $options = (localURL($GLOBALS['qBittorrentURL'])) ? array('verify' => false ) : array();
- $response = Requests::post($url, array(), $data, $options);
- $reflection = new ReflectionClass($response->cookies);
- $cookie = $reflection->getProperty("cookies");
- $cookie->setAccessible(true);
- $cookie = $cookie->getValue($response->cookies);
- if($cookie){
- $headers = array(
- 'Cookie' => 'SID=' . $cookie['SID']->value
- );
- $reverse = $GLOBALS['qBittorrentReverseSorting'] ? 'true' : 'false';
- $url = $digest['scheme'].'://'.$digest['host'].$digest['port'].$digest['path'].'/query/torrents?sort=' . $GLOBALS['qBittorrentSortOrder'] . '&reverse=' . $reverse;
- $response = Requests::get($url, $headers, $options);
- if($response){
- $torrentList = json_decode($response->body, true);
- if($GLOBALS['qBittorrentHideSeeding'] || $GLOBALS['qBittorrentHideCompleted']){
- $filter = array();
- $torrents['arguments']['torrents'] = array();
- if($GLOBALS['qBittorrentHideSeeding']){ array_push($filter, 'uploading', 'stalledUP', 'queuedUP'); }
- if($GLOBALS['qBittorrentHideCompleted']){ array_push($filter, 'pausedUP'); }
- foreach ($torrentList as $key => $value) {
- if(!in_array($value['state'], $filter)){
- $torrents['arguments']['torrents'][] = $value;
- }
- }
- }else{
- $torrents['arguments']['torrents'] = json_decode($response->body, true);
- }
- $api['content']['queueItems'] = $torrents;
- $api['content']['historyItems'] = false;
- }
- }else{
- writeLog('error', 'qBittorrent Connect Function - Error: Could not get session ID', 'SYSTEM');
- }
- }catch( Requests_Exception $e ) {
- writeLog('error', 'qBittorrent Connect Function - Error: '.$e->getMessage(), 'SYSTEM');
- };
- $api['content'] = isset($api['content']) ? $api['content'] : false;
- return $api;
- }
- }
- function delugeConnect(){
- if($GLOBALS['homepageDelugeEnabled'] && !empty($GLOBALS['delugeURL']) && qualifyRequest($GLOBALS['homepageDelugeAuth'])){
- try{
- $deluge = new deluge($GLOBALS['delugeURL'], decrypt($GLOBALS['delugePassword']));
- $torrents = $deluge->getTorrents(null, 'comment, download_payload_rate, eta, is_finished, is_seed, message, name, paused, progress, queue, state, total_size, upload_payload_rate');
- $api['content']['queueItems'] = $torrents;
- $api['content']['historyItems'] = false;
- }catch( Excecption $e){
- writeLog('error', 'Deluge Connect Function - Error: '.$e->getMessage(), 'SYSTEM');
- }
- }
- $api['content'] = isset($api['content']) ? $api['content'] : false;
- return $api;
- }
- function getCalendar(){
- $startDate = date('Y-m-d',strtotime("-".$GLOBALS['calendarStart']." days"));
- $endDate = date('Y-m-d',strtotime("+".$GLOBALS['calendarEnd']." days"));
- $calendarItems = array();
- // SONARR CONNECT
- if($GLOBALS['homepageSonarrEnabled'] && qualifyRequest($GLOBALS['homepageSonarrAuth']) && !empty($GLOBALS['sonarrURL']) && !empty($GLOBALS['sonarrToken'])){
- $sonarrs = array();
- $sonarrURLList = explode(',', $GLOBALS['sonarrURL']);
- $sonarrTokenList = explode(',', $GLOBALS['sonarrToken']);
- if(count($sonarrURLList) == count($sonarrTokenList)){
- foreach ($sonarrURLList as $key => $value) {
- $sonarrs[$key] = array(
- 'url' => $value,
- 'token' => $sonarrTokenList[$key]
- );
- }
- foreach ($sonarrs as $key => $value) {
- try {
- $sonarr = new Kryptonit3\Sonarr\Sonarr($value['url'], $value['token']);
- $sonarrCalendar = getSonarrCalendar($sonarr->getCalendar($startDate, $endDate),$key);
- } catch (Exception $e) {
- writeLog('error', 'Sonarr Connect Function - Error: '.$e->getMessage(), 'SYSTEM');
- }
- if(!empty($sonarrCalendar)) { $calendarItems = array_merge($calendarItems, $sonarrCalendar); }
- }
- }
- }
- // RADARR CONNECT
- if($GLOBALS['homepageRadarrEnabled'] && qualifyRequest($GLOBALS['homepageRadarrAuth']) && !empty($GLOBALS['radarrURL']) && !empty($GLOBALS['radarrToken'])){
- $radarrs = array();
- $radarrURLList = explode(',', $GLOBALS['radarrURL']);
- $radarrTokenList = explode(',', $GLOBALS['radarrToken']);
- if(count($radarrURLList) == count($radarrTokenList)){
- foreach ($radarrURLList as $key => $value) {
- $radarrs[$key] = array(
- 'url' => $value,
- 'token' => $radarrTokenList[$key]
- );
- }
- foreach ($radarrs as $key => $value) {
- try {
- $radarr = new Kryptonit3\Sonarr\Sonarr($value['url'], $value['token']);
- $radarrCalendar = getRadarrCalendar($radarr->getCalendar($startDate, $endDate),$key,$value['url']);
- } catch (Exception $e) {
- writeLog('error', 'Radarr Connect Function - Error: '.$e->getMessage(), 'SYSTEM');
- }
- if(!empty($radarrCalendar)) { $calendarItems = array_merge($calendarItems, $radarrCalendar); }
- }
- }
- }
- // SICKRAGE/BEARD/MEDUSA CONNECT
- if($GLOBALS['homepageSickrageEnabled'] && qualifyRequest($GLOBALS['homepageSickrageAuth']) && !empty($GLOBALS['sickrageURL']) && !empty($GLOBALS['sickrageToken'])){
- $sicks = array();
- $sickURLList = explode(',', $GLOBALS['sickrageURL']);
- $sickTokenList = explode(',', $GLOBALS['sickrageToken']);
- if(count($sickURLList) == count($sickTokenList)){
- foreach ($sickURLList as $key => $value) {
- $sicks[$key] = array(
- 'url' => $value,
- 'token' => $sickTokenList[$key]
- );
- }
- foreach ($sicks as $key => $value) {
- try {
- $sickrage = new Kryptonit3\SickRage\SickRage($value['url'], $value['token']);
- $sickrageFuture = getSickrageCalendarWanted($sickrage->future(),$key);
- $sickrageHistory = getSickrageCalendarHistory($sickrage->history("100","downloaded"),$key);
- if(!empty($sickrageFuture)) { $calendarItems = array_merge($calendarItems, $sickrageFuture); }
- if(!empty($sickrageHistory)) { $calendarItems = array_merge($calendarItems, $sickrageHistory); }
- } catch (Exception $e) {
- writeLog('error', 'Sickrage Connect Function - Error: '.$e->getMessage(), 'SYSTEM');
- }
- }
- }
- }
- // COUCHPOTATO CONNECT
- if($GLOBALS['homepageCouchpotatoEnabled'] && qualifyRequest($GLOBALS['homepageCouchpotatoAuth']) && !empty($GLOBALS['couchpotatoURL']) && !empty($GLOBALS['couchpotatoToken'])){
- $couchs = array();
- $couchpotatoURLList = explode(',', $GLOBALS['couchpotatoURL']);
- $couchpotatoTokenList = explode(',', $GLOBALS['couchpotatoToken']);
- if(count($couchpotatoURLList) == count($couchpotatoTokenList)){
- foreach ($couchpotatoURLList as $key => $value) {
- $couchs[$key] = array(
- 'url' => $value,
- 'token' => $couchpotatoTokenList[$key]
- );
- }
- foreach ($couchs as $key => $value) {
- try {
- $couchpotato = new Kryptonit3\CouchPotato\CouchPotato($value['url'], $value['token']);
- $couchCalendar = getCouchCalendar($couchpotato->getMediaList(),$key);
- if(!empty($couchCalendar)) { $calendarItems = array_merge($calendarItems, $couchCalendar); }
- } catch (Exception $e) {
- writeLog('error', 'Sickrage Connect Function - Error: '.$e->getMessage(), 'SYSTEM');
- }
- }
- }
- }
- return ($calendarItems) ? $calendarItems : false;
- }
- function getSonarrCalendar($array,$number){
- $array = json_decode($array, true);
- $gotCalendar = array();
- $i = 0;
- foreach($array AS $child) {
- $i++;
- $seriesName = $child['series']['title'];
- $episodeID = $child['series']['tvdbId'];
- if(!isset($episodeID)){ $episodeID = ""; }
- $episodeName = htmlentities($child['title'], ENT_QUOTES);
- if($child['episodeNumber'] == "1"){ $episodePremier = "true"; }else{ $episodePremier = "false"; }
- $episodeAirDate = $child['airDateUtc'];
- $episodeAirDate = strtotime($episodeAirDate);
- $episodeAirDate = date("Y-m-d H:i:s", $episodeAirDate);
- if (new DateTime() < new DateTime($episodeAirDate)) { $unaired = true; }
- $downloaded = $child['hasFile'];
- if($downloaded == "0" && isset($unaired) && $episodePremier == "true"){ $downloaded = "text-primary"; }elseif($downloaded == "0" && isset($unaired)){ $downloaded = "text-info"; }elseif($downloaded == "1"){ $downloaded = "text-success"; }else{ $downloaded = "text-danger"; }
- $fanart = "/plugins/images/cache/no-np.png";
- foreach ($child['series']['images'] as $image) {
- if($image['coverType'] == "fanart") {
- $fanart = $image['url'];
- }
- }
- $bottomTitle = 'S' . sprintf("%02d", $child['seasonNumber']) . 'E' . sprintf("%02d", $child['episodeNumber']) . ' - ' . $child['title'];
- $details = array(
- "seasonCount" => $child['series']['seasonCount'],
- "status" => $child['series']['status'],
- "topTitle" => $seriesName,
- "bottomTitle" => $bottomTitle,
- "overview" => isset($child['overview']) ? $child['overview'] : '',
- "runtime" => $child['series']['runtime'],
- "image" => $fanart,
- "ratings" => $child['series']['ratings']['value'],
- "videoQuality" => $child["hasFile"] ? $child['episodeFile']['quality']['quality']['name'] : "unknown",
- "audioChannels" => $child["hasFile"] ? $child['episodeFile']['mediaInfo']['audioChannels'] : "unknown",
- "audioCodec" => $child["hasFile"] ? $child['episodeFile']['mediaInfo']['audioCodec'] : "unknown",
- "videoCodec" => $child["hasFile"] ? $child['episodeFile']['mediaInfo']['videoCodec'] : "unknown",
- "size" => $child["hasFile"] ? $child['episodeFile']['size'] : "unknown",
- "genres" => $child['series']['genres'],
- );
- array_push($gotCalendar, array(
- "id" => "Sonarr-".$number."-".$i,
- "title" => $seriesName,
- "start" => $child['airDateUtc'],
- "className" => "bg-calendar calendar-item tvID--".$episodeID,
- "imagetype" => "tv ".$downloaded,
- "details" => $details
- ));
- }
- if ($i != 0){ return $gotCalendar; }
- }
- function getRadarrCalendar($array,$number, $url){
- $array = json_decode($array, true);
- $gotCalendar = array();
- $i = 0;
- foreach($array AS $child) {
- if(isset($child['physicalRelease'])){
- $i++;
- $movieName = $child['title'];
- $movieID = $child['tmdbId'];
- if(!isset($movieID)){ $movieID = ""; }
- $physicalRelease = $child['physicalRelease'];
- $physicalRelease = strtotime($physicalRelease);
- $physicalRelease = date("Y-m-d", $physicalRelease);
- if (new DateTime() < new DateTime($physicalRelease)) { $notReleased = "true"; }else{ $notReleased = "false"; }
- $downloaded = $child['hasFile'];
- if($downloaded == "0" && $notReleased == "true"){ $downloaded = "text-info"; }elseif($downloaded == "1"){ $downloaded = "text-success"; }else{ $downloaded = "text-danger"; }
- $banner = "/plugins/images/cache/no-np.png";
- foreach ($child['images'] as $image) {
- if($image['coverType'] == "banner") {
- $url = rtrim($url, '/'); //remove trailing slash
- $imageUrl = $image['url'];
- $urlParts = explode("/", $url);
- $imageParts = explode("/", $image['url']);
- if ($imageParts[1] == end($urlParts)) {
- unset($imageParts[1]);
- $imageUrl = implode("/", $imageParts);
- }
- $banner = $url . $imageUrl;
- }
- }
- if($banner !== "/plugins/images/cache/no-np.png"){
- $cacheDirectory = dirname(__DIR__,2).DIRECTORY_SEPARATOR.'plugins'.DIRECTORY_SEPARATOR.'images'.DIRECTORY_SEPARATOR.'cache'.DIRECTORY_SEPARATOR;
- $imageURL = $banner;
- $cacheFile = $cacheDirectory.$movieID.'.jpg';
- $banner = 'plugins/images/cache/'.$movieID.'.jpg';
- if(!file_exists($cacheFile)){
- cacheImage($imageURL,$movieID);
- unset($imageURL);
- unset($cacheFile);
- }
- }
- $alternativeTitles = "";
- foreach ($child['alternativeTitles'] as $alternative) {
- $alternativeTitles .= $alternative['title'] . ', ';
- }
- $alternativeTitles = empty($child['alternativeTitles']) ? "" : substr($alternativeTitles, 0, -2);
- $details = array(
- "topTitle" => $movieName,
- "bottomTitle" => $alternativeTitles,
- "status" => $child['status'],
- "overview" => $child['overview'],
- "runtime" => $child['runtime'],
- "image" => $banner,
- "ratings" => $child['ratings']['value'],
- "videoQuality" => $child["hasFile"] ? $child['movieFile']['quality']['quality']['name'] : "unknown",
- "audioChannels" => $child["hasFile"] ? $child['movieFile']['mediaInfo']['audioChannels'] : "unknown",
- "audioCodec" => $child["hasFile"] ? $child['movieFile']['mediaInfo']['audioFormat'] : "unknown",
- "videoCodec" => $child["hasFile"] ? $child['movieFile']['mediaInfo']['videoCodec'] : "unknown",
- "size" => $child["hasFile"] ? $child['movieFile']['size'] : "unknown",
- "genres" => $child['genres'],
- );
- array_push($gotCalendar, array(
- "id" => "Radarr-".$number."-".$i,
- "title" => $movieName,
- "start" => $physicalRelease,
- "className" => "bg-calendar movieID--".$movieID,
- "imagetype" => "film ".$downloaded,
- "details" => $details
- ));
- }
- }
- if ($i != 0){ return $gotCalendar; }
- }
- function getCouchCalendar($array,$number){
- $api = json_decode($array, true);
- $gotCalendar = array();
- $i = 0;
- foreach($api['movies'] AS $child) {
- if($child['status'] == "active" || $child['status'] == "done" ){
- $i++;
- $movieName = $child['info']['original_title'];
- $movieID = $child['info']['tmdb_id'];
- if(!isset($movieID)){ $movieID = ""; }
- $physicalRelease = (isset($child['info']['released']) ? $child['info']['released'] : null);
- $backupRelease = (isset($child['info']['release_date']['theater']) ? $child['info']['release_date']['theater'] : null);
- $physicalRelease = (isset($physicalRelease) ? $physicalRelease : $backupRelease);
- $physicalRelease = strtotime($physicalRelease);
- $physicalRelease = date("Y-m-d", $physicalRelease);
- if (new DateTime() < new DateTime($physicalRelease)) { $notReleased = "true"; }else{ $notReleased = "false"; }
- $downloaded = ($child['status'] == "active") ? "0" : "1";
- if($downloaded == "0" && $notReleased == "true"){ $downloaded = "text-info"; }elseif($downloaded == "1"){ $downloaded = "text-success"; }else{ $downloaded = "text-danger"; }
- array_push($gotCalendar, array(
- "id" => "CouchPotato-".$number."-".$i,
- "title" => $movieName,
- "start" => $physicalRelease,
- "className" => "bg-calendar calendar-item movieID--".$movieID,
- "imagetype" => "film ".$downloaded,
- ));
- }
- }
- if ($i != 0){ return $gotCalendar; }
- }
- function getSickrageCalendarWanted($array,$number){
- $array = json_decode($array, true);
- $gotCalendar = array();
- $i = 0;
- foreach($array['data']['missed'] AS $child) {
- $i++;
- $seriesName = $child['show_name'];
- $episodeID = $child['tvdbid'];
- $episodeAirDate = $child['airdate'];
- $episodeAirDateTime = explode(" ",$child['airs']);
- $episodeAirDateTime = date("H:i:s", strtotime($episodeAirDateTime[1].$episodeAirDateTime[2]));
- $episodeAirDate = strtotime($episodeAirDate.$episodeAirDateTime);
- $episodeAirDate = date("Y-m-d H:i:s", $episodeAirDate);
- if (new DateTime() < new DateTime($episodeAirDate)) { $unaired = true; }
- $downloaded = "0";
- if($downloaded == "0" && isset($unaired)){ $downloaded = "text-info"; }elseif($downloaded == "1"){ $downloaded = "text-success";}else{ $downloaded = "text-danger"; }
- array_push($gotCalendar, array(
- "id" => "Sick-".$number."-Miss-".$i,
- "title" => $seriesName,
- "start" => $episodeAirDate,
- "className" => "bg-calendar calendar-item tvID--".$episodeID,
- "imagetype" => "tv ".$downloaded,
- ));
- }
- foreach($array['data']['today'] AS $child) {
- $i++;
- $seriesName = $child['show_name'];
- $episodeID = $child['tvdbid'];
- $episodeAirDate = $child['airdate'];
- $episodeAirDateTime = explode(" ",$child['airs']);
- $episodeAirDateTime = date("H:i:s", strtotime($episodeAirDateTime[1].$episodeAirDateTime[2]));
- $episodeAirDate = strtotime($episodeAirDate.$episodeAirDateTime);
- $episodeAirDate = date("Y-m-d H:i:s", $episodeAirDate);
- if (new DateTime() < new DateTime($episodeAirDate)) { $unaired = true; }
- $downloaded = "0";
- if($downloaded == "0" && isset($unaired)){ $downloaded = "text-info"; }elseif($downloaded == "1"){ $downloaded = "text-success";}else{ $downloaded = "text-danger"; }
- array_push($gotCalendar, array(
- "id" => "Sick-".$number."-Today-".$i,
- "title" => $seriesName,
- "start" => $episodeAirDate,
- "className" => "bg-calendar calendar-item tvID--".$episodeID,
- "imagetype" => "tv ".$downloaded,
- ));
- }
- foreach($array['data']['soon'] AS $child) {
- $i++;
- $seriesName = $child['show_name'];
- $episodeID = $child['tvdbid'];
- $episodeAirDate = $child['airdate'];
- $episodeAirDateTime = explode(" ",$child['airs']);
- $episodeAirDateTime = date("H:i:s", strtotime($episodeAirDateTime[1].$episodeAirDateTime[2]));
- $episodeAirDate = strtotime($episodeAirDate.$episodeAirDateTime);
- $episodeAirDate = date("Y-m-d H:i:s", $episodeAirDate);
- if (new DateTime() < new DateTime($episodeAirDate)) { $unaired = true; }
- $downloaded = "0";
- if($downloaded == "0" && isset($unaired)){ $downloaded = "text-info"; }elseif($downloaded == "1"){ $downloaded = "text-success";}else{ $downloaded = "text-danger"; }
- array_push($gotCalendar, array(
- "id" => "Sick-".$number."-Soon-".$i,
- "title" => $seriesName,
- "start" => $episodeAirDate,
- "className" => "bg-calendar calendar-item tvID--".$episodeID,
- "imagetype" => "tv ".$downloaded,
- ));
- }
- foreach($array['data']['later'] AS $child) {
- $i++;
- $seriesName = $child['show_name'];
- $episodeID = $child['tvdbid'];
- $episodeAirDate = $child['airdate'];
- $episodeAirDateTime = explode(" ",$child['airs']);
- $episodeAirDateTime = date("H:i:s", strtotime($episodeAirDateTime[1].$episodeAirDateTime[2]));
- $episodeAirDate = strtotime($episodeAirDate.$episodeAirDateTime);
- $episodeAirDate = date("Y-m-d H:i:s", $episodeAirDate);
- if (new DateTime() < new DateTime($episodeAirDate)) { $unaired = true; }
- $downloaded = "0";
- if($downloaded == "0" && isset($unaired)){ $downloaded = "text-info"; }elseif($downloaded == "1"){ $downloaded = "text-success";}else{ $downloaded = "text-danger"; }
- array_push($gotCalendar, array(
- "id" => "Sick-".$number."-Later-".$i,
- "title" => $seriesName,
- "start" => $episodeAirDate,
- "className" => "bg-calendar calendar-item tvID--".$episodeID,
- "imagetype" => "tv ".$downloaded,
- ));
- }
- if ($i != 0){ return $gotCalendar; }
- }
- function getSickrageCalendarHistory($array,$number){
- $array = json_decode($array, true);
- $gotCalendar = array();
- $i = 0;
- foreach($array['data'] AS $child) {
- $i++;
- $seriesName = $child['show_name'];
- $episodeID = $child['tvdbid'];
- $episodeAirDate = $child['date'];
- $downloaded = "text-success";
- array_push($gotCalendar, array(
- "id" => "Sick-".$number."-History-".$i,
- "title" => $seriesName,
- "start" => $episodeAirDate,
- "className" => "bg-calendar calendar-item tvID--".$episodeID,
- "imagetype" => "tv ".$downloaded,
- ));
- }
- if ($i != 0){ return $gotCalendar; }
- }
|