| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <?php
- trait CouchPotatoHomepageItem
- {
- public function couchPotatoSettingsArray($infoOnly = false)
- {
- $homepageInformation = [
- 'name' => 'CouchPotato',
- 'enabled' => strpos('personal', $this->config['license']) !== false,
- 'image' => 'plugins/images/tabs/couchpotato.png',
- 'category' => 'PVR',
- 'settingsArray' => __FUNCTION__
- ];
- if ($infoOnly) {
- return $homepageInformation;
- }
- $homepageSettings = [
- 'debug' => true,
- 'settings' => [
- 'Enable' => [
- $this->settingsOption('enable', 'homepageCouchpotatoEnabled'),
- $this->settingsOption('auth', 'homepageCouchpotatoAuth'),
- ],
- 'Connection' => [
- $this->settingsOption('multiple-url', 'couchpotatoURL'),
- $this->settingsOption('multiple-token', 'couchpotatoToken'),
- $this->settingsOption('disable-cert-check', 'couchpotatoDisableCertCheck'),
- $this->settingsOption('use-custom-certificate', 'couchpotatoUseCustomCertificate'),
- ],
- 'Misc Options' => [
- $this->settingsOption('calendar-start', 'calendarStart'),
- $this->settingsOption('calendar-end', 'calendarEnd'),
- $this->settingsOption('calendar-starting-day', 'calendarFirstDay'),
- $this->settingsOption('calendar-default-view', 'calendarDefault'),
- $this->settingsOption('calendar-time-format', 'calendarTimeFormat'),
- $this->settingsOption('calendar-locale', 'calendarLocale'),
- $this->settingsOption('calendar-limit', 'calendarLimit'),
- $this->settingsOption('refresh', 'calendarRefresh'),
- ]
- ]
- ];
- return array_merge($homepageInformation, $homepageSettings);
- }
- public function couchPotatoHomepagePermissions($key = null)
- {
- $permissions = [
- 'calendar' => [
- 'enabled' => [
- 'homepageCouchpotatoEnabled'
- ],
- 'auth' => [
- 'homepageCouchpotatoAuth'
- ],
- 'not_empty' => [
- 'couchpotatoURL',
- 'couchpotatoToken'
- ]
- ]
- ];
- return $this->homepageCheckKeyPermissions($key, $permissions);
- }
- public function getCouchPotatoCalendar()
- {
- if (!$this->homepageItemPermissions($this->couchPotatoHomepagePermissions('calendar'), true)) {
- return false;
- }
- $calendarItems = array();
- $list = $this->csvHomepageUrlToken($this->config['couchpotatoURL'], $this->config['couchpotatoToken']);
- foreach ($list as $key => $value) {
- try {
- $options = $this->requestOptions($value['url'], 60, $this->config['couchpotatoDisableCertCheck'], $this->config['couchpotatoUseCustomCertificate']);
- $downloader = new Kryptonit3\CouchPotato\CouchPotato($value['url'], $value['token'], null, null, $options);
- $calendar = $this->formatCouchCalendar($downloader->getMediaList(array('status' => 'active,done')), $key);
- } catch (Exception $e) {
- $this->setLoggerChannel('Radarr')->error($e);
- }
- if (!empty($calendar)) {
- $calendarItems = array_merge($calendarItems, $calendar);
- }
- }
- $this->setAPIResponse('success', null, 200, $calendarItems);
- return $calendarItems;
- }
- public function formatCouchCalendar($array, $number)
- {
- $api = json_decode($array, true);
- $gotCalendar = array();
- $i = 0;
- foreach ($api['movies'] as $child) {
- $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);
- $oldestDay = new DateTime ($this->currentTime);
- $oldestDay->modify('-' . $this->config['calendarStart'] . ' days');
- $newestDay = new DateTime ($this->currentTime);
- $newestDay->modify('+' . $this->config['calendarEnd'] . ' days');
- $startDt = new DateTime ($physicalRelease);
- $calendarStartDiff = date_diff($startDt, $newestDay);
- $calendarEndDiff = date_diff($startDt, $oldestDay);
- if (!$this->calendarDaysCheck($calendarStartDiff->format('%R') . $calendarStartDiff->days, $calendarEndDiff->format('%R') . $calendarEndDiff->days)) {
- continue;
- }
- if (new DateTime() < $startDt) {
- $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";
- }
- if (!empty($child['info']['images']['backdrop_original'])) {
- $banner = $child['info']['images']['backdrop_original'][0];
- } elseif (!empty($child['info']['images']['backdrop'])) {
- $banner = $child['info']['images']['backdrop_original'][0];
- } else {
- $banner = "/plugins/images/homepage/no-np.png";
- }
- if ($banner !== "/plugins/images/homepage/no-np.png") {
- $cacheDirectory = dirname(__DIR__, 2) . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR;
- $imageURL = $banner;
- $cacheFile = $cacheDirectory . $movieID . '.jpg';
- $banner = 'data/cache/' . $movieID . '.jpg';
- if (!file_exists($cacheFile)) {
- $this->cacheImage($imageURL, $movieID);
- unset($imageURL);
- unset($cacheFile);
- }
- }
- $hasFile = (!empty($child['releases']) && !empty($child['releases'][0]['files']['movie']));
- $details = array(
- "topTitle" => $movieName,
- "bottomTitle" => $child['info']['tagline'],
- "status" => $child['status'],
- "overview" => $child['info']['plot'],
- "runtime" => $child['info']['runtime'],
- "image" => $banner,
- "ratings" => isset($child['info']['rating']['imdb'][0]) ? $child['info']['rating']['imdb'][0] : '',
- "videoQuality" => $hasFile ? $child['releases'][0]['quality'] : "unknown",
- "audioChannels" => "",
- "audioCodec" => "",
- "videoCodec" => "",
- "genres" => $child['info']['genres'],
- "year" => isset($child['info']['year']) ? $child['info']['year'] : '',
- "studio" => isset($child['info']['year']) ? $child['info']['year'] : '',
- );
- array_push($gotCalendar, array(
- "id" => "CouchPotato-" . $number . "-" . $i,
- "title" => $movieName,
- "start" => $physicalRelease,
- "className" => "inline-popups bg-calendar calendar-item movieID--" . $movieID,
- "imagetype" => "film " . $downloaded,
- "imagetypeFilter" => "film",
- "downloadFilter" => $downloaded,
- "bgColor" => str_replace('text', 'bg', $downloaded),
- "details" => $details
- ));
- }
- if ($i != 0) {
- return $gotCalendar;
- }
- return false;
- }
- }
|