| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271 |
- <?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 'getPlexPlaylists':
- return getPlexPlaylists();
- 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;
- case 'getRequests':
- return getOmbiRequests();
- 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;
- case 'playlists':
- $url = $url."/playlists?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 getPlexPlaylists(){
- if($GLOBALS['homepagePlexEnabled'] && !empty($GLOBALS['plexURL']) && !empty($GLOBALS['plexToken']) && !empty($GLOBALS['plexID'] && qualifyRequest($GLOBALS['homepagePlexAuth']) && qualifyRequest($GLOBALS['homepagePlexPlaylistAuth']) && $GLOBALS['homepagePlexPlaylist'])){
- $url = qualifyURL($GLOBALS['plexURL']);
- $url = $url."/playlists?X-Plex-Token=".$GLOBALS['plexToken'];
- 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) {
- if ($child['playlistType'] == "video" && strpos(strtolower($child['title']) , 'private') === false){
- $playlistTitleClean = preg_replace("/(\W)+/", "", (string)$child['title']);
- $playlistURL = qualifyURL($GLOBALS['plexURL']);
- $playlistURL = $playlistURL.$child['key']."?X-Plex-Token=".$GLOBALS['plexToken'];
- $options = (localURL($url)) ? array('verify' => false ) : array();
- $playlistResponse = Requests::get($playlistURL, array(), $options);
- if($playlistResponse->success){
- $playlistResponse = simplexml_load_string($playlistResponse->body);
- $items[$playlistTitleClean]['title'] = (string)$child['title'];
- foreach($playlistResponse->Video AS $playlistItem){
- $items[$playlistTitleClean][] = resolvePlexItem($playlistItem);
- }
- }
- }
- }
- $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; }
- }
- function ombiAPI($array){
- return ombiAction($array['data']['id'],$array['data']['action'],$array['data']['type']);
- }
- function ombiAction($id, $action, $type) {
- if($GLOBALS['homepageOmbiEnabled'] && !empty($GLOBALS['ombiURL']) && !empty($GLOBALS['ombiToken']) && qualifyRequest($GLOBALS['homepageOmbiAuth'])){
- $url = qualifyURL($GLOBALS['ombiURL']);
- $headers = array(
- "Accept" => "application/json",
- "Content-Type" => "application/json",
- "Apikey" => $GLOBALS['ombiToken']
- );
- $data = array(
- 'id' => $id,
- );
- switch ($type) {
- case 'season':
- case 'tv':
- $type = 'tv';
- $add = array(
- 'tvDbId' => $id,
- 'requestAll' => true,
- 'latestSeason' => true,
- 'firstSeason' => true
- );
- break;
- default:
- $type = 'movie';
- $add = array("theMovieDbId" => (int)$id);
- break;
- }
- $success['head'] = $headers;
- $success['act'] = $action;
- $success['data'] = $data;
- $success['add'] = $add;
- $success['type'] = $type;
- try{
- $options = (localURL($url)) ? array('verify' => false ) : array();
- switch ($action) {
- case 'add':
- if(isset($_COOKIE['Auth'])){
- $headers = array(
- "Accept" => "application/json",
- "Content-Type" => "application/json",
- "Authorization" => "Bearer ".$_COOKIE['Auth']
- );
- $success['head'] = $headers;
- }else{
- return false;
- }
- $response = Requests::post($url."/api/v1/Request/".$type, $headers, json_encode($add), $options);
- break;
- default:
- if(qualifyRequest(1)){
- switch ($action) {
- case 'approve':
- $response = Requests::post($url."/api/v1/Request/".$type."/approve", $headers, json_encode($data), $options);
- break;
- case 'available':
- $response = Requests::post($url."/api/v1/Request/".$type."/available", $headers, json_encode($data), $options);
- break;
- case 'unavailable':
- $response = Requests::post($url."/api/v1/Request/".$type."/unavailable", $headers, json_encode($data), $options);
- break;
- case 'deny':
- $response = Requests::put($url."/api/v1/Request/".$type."/deny", $headers, json_encode($data), $options);
- break;
- case 'delete':
- $response = Requests::delete($url."/api/v1/Request/".$type."/".$id, $headers, $options);
- break;
- default:
- return false;
- }
- }
- break;
- }
- $success['api'] = $response;
- $success['bd'] = $response->body;
- $success['hd'] = $response->headers;
- if($response->success){
- $success['ok'] = true;
- }
- }catch( Requests_Exception $e ) {
- writeLog('error', 'OMBI Connect Function - Error: '.$e->getMessage(), 'SYSTEM');
- };
- }
- $api['content'] = isset($success) ? $success : false;
- return $api;
- }
- function getOmbiRequests($type = "both"){
- if($GLOBALS['homepageOmbiEnabled'] && !empty($GLOBALS['ombiURL']) && !empty($GLOBALS['ombiToken']) && qualifyRequest($GLOBALS['homepageOmbiAuth'])){
- $url = qualifyURL($GLOBALS['ombiURL']);
- $headers = array(
- "Accept" => "application/json",
- "Apikey" => $GLOBALS['ombiToken'],
- );
- $requests = array();
- try{
- $options = (localURL($url)) ? array('verify' => false ) : array();
- switch ($type) {
- case 'movie':
- $movie = Requests::get($url."/api/v1/Request/movie", $headers, $options);
- break;
- case 'tv':
- $tv = Requests::get($url."/api/v1/Request/tv", $headers, $options);
- break;
- default:
- $movie = Requests::get($url."/api/v1/Request/movie", $headers, $options);
- $tv = Requests::get($url."/api/v1/Request/tv", $headers, $options);
- break;
- }
- if($movie->success || $tv->success){
- if(isset($movie)){
- $movie = json_decode($movie->body, true);
- //$movie = array_reverse($movie);
- foreach ($movie as $key => $value) {
- $requests[] = array(
- 'test' => $value,
- 'id' => $value['theMovieDbId'],
- 'title' => $value['title'],
- 'overview' => $value['overview'],
- 'poster' => (isset($value['posterPath']) && $value['posterPath'] !== '') ? 'https://image.tmdb.org/t/p/w300/'.$value['posterPath'] : '',
- 'background' => (isset($value['background']) && $value['background'] !== '') ? 'https://image.tmdb.org/t/p/w1280/'.$value['background'] : '',
- 'approved' => $value['approved'],
- 'available' => $value['available'],
- 'denied' => $value['denied'],
- 'deniedReason' => $value['deniedReason'],
- 'user' => $value['requestedUser']['userName'],
- 'request_id' => $value['id'],
- 'request_date' => $value['requestedDate'],
- 'release_date' => $value['releaseDate'],
- 'type' => 'movie',
- 'icon' => 'mdi mdi-filmstrip',
- 'color' => 'palette-Deep-Purple-900 bg white',
- );
- }
- }
- if(isset($tv) && (is_array($tv) || is_object($tv))){
- $tv = json_decode($tv->body, true);
- foreach ($tv as $key => $value) {
- if(is_array($value['childRequests'][0])){
- $requests[] = array(
- 'test' => $value,
- 'id' => $value['tvDbId'],
- 'title' => $value['title'],
- 'overview' => $value['overview'],
- 'poster' => $value['posterPath'],
- 'background' => (isset($value['background']) && $value['background'] !== '') ? 'https://image.tmdb.org/t/p/w1280/'.$value['background'] : '',
- 'approved' => $value['childRequests'][0]['approved'],
- 'available' => $value['childRequests'][0]['available'],
- 'denied' => $value['childRequests'][0]['denied'],
- 'deniedReason' => $value['childRequests'][0]['deniedReason'],
- 'user' => $value['childRequests'][0]['requestedUser']['userName'],
- 'request_id' => $value['id'],
- 'request_date' => $value['childRequests'][0]['requestedDate'],
- 'release_date' => $value['releaseDate'],
- 'type' => 'tv',
- 'icon' => 'mdi mdi-television',
- 'color' => 'grayish-blue-bg',
- );
- }
- }
- }
- //sort here
- usort($requests, function ($item1, $item2) {
- if ($item1['request_date'] == $item2['request_date']) return 0;
- return $item1['request_date'] > $item2['request_date'] ? -1 : 1;
- });
- }
- }catch( Requests_Exception $e ) {
- writeLog('error', 'OMBI Connect Function - Error: '.$e->getMessage(), 'SYSTEM');
- };
- }
- $api['content'] = isset($requests) ? $requests : false;
- return $api;
- }
|