/** * Add product items to the indexer * @param array * @param integer * @param boolean * @return array */ public function getSearchablePages($arrPages, $intRoot = 0, $blnIsSitemap = false) { $arrRoot = array(); if ($intRoot > 0) { $arrRoot = $this->Database->getChildRecords($intRoot, 'tl_page'); } $time = time(); $arrProcessed = array(); // Get all catalog categories $objPhotogallery = \PhotogalleryModel::findByProtected(''); // Walk through each archive if ($objPhotogallery !== null) { while ($objPhotogallery->next()) { // Skip catalog categories without target page if (!$objPhotogallery->jumpTo) { continue; } // Skip catalog categories outside the root nodes if (!empty($arrRoot) && !in_array($objPhotogallery->jumpTo, $arrRoot)) { continue; } // Get the URL of the jumpTo page if (!isset($arrProcessed[$objPhotogallery->jumpTo])) { $objParent = \PageModel::findWithDetails($objPhotogallery->jumpTo); // The target page does not exist if ($objParent === null) { continue; } // The target page has not been published (see #5520) if (!$objParent->published || $objParent->start != '' && $objParent->start > $time || $objParent->stop != '' && $objParent->stop < $time) { continue; } // The target page is exempt from the sitemap (see #6418) if ($blnIsSitemap && $objParent->sitemap == 'map_never') { continue; } // Set the domain (see #6421) $domain = ($objParent->rootUseSSL ? 'https://' : 'http://') . ($objParent->domain ?: \Environment::get('host')) . TL_PATH . '/'; // Generate the URL $arrProcessed[$objPhotogallery->jumpTo] = $domain . $this->generateFrontendUrl($objParent->row(), \Config::get('useAutoItem') && !\Config::get('disableAlias') ? '/%s' : '/items/%s', $objParent->language); } $strUrl = $arrProcessed[$objPhotogallery->jumpTo]; // Get the items $objAlbum = \PhotogalleryAlbumModel::findPublishedByPid($objPhotogallery->id); if ($objAlbum !== null) { while ($objAlbum->next()) { $arrPages[] = $this->getLink($objAlbum, $strUrl); } } } } return $arrPages; }
/** * Sort out protected archives * @param array * @return array */ protected function sortOutProtected($arrCategories) { if (BE_USER_LOGGED_IN || !is_array($arrCategories) || empty($arrCategories)) { return $arrCategories; } $this->import('FrontendUser', 'User'); $objCategory = \PhotogalleryModel::findMultipleByIds($arrCategories); $arrCategories = array(); if ($objCategory !== null) { while ($objCategory->next()) { if ($objCategory->protected) { if (!FE_USER_LOGGED_IN) { continue; } $groups = deserialize($objCategory->groups); if (!is_array($groups) || empty($groups) || !count(array_intersect($groups, $this->User->groups))) { continue; } } $arrCategories[] = $objCategory->id; } } return $arrCategories; }