where(array( '"SiteTree"."HomepageForDomain" LIKE ?' => "%$host%" )); if($candidates) foreach($candidates as $candidate) { if(preg_match('/(,|^) *' . preg_quote($host) . ' *(,|$)/', $candidate->HomepageForDomain)) { self::$cached_homepage_link = trim($candidate->RelativeLink(true), '/'); } } } if(!self::$cached_homepage_link) { // TODO Move to 'translatable' module if ( class_exists('Translatable') && SiteTree::has_extension('Translatable') && $link = Translatable::get_homepage_link_by_locale(Translatable::get_current_locale()) ) { self::$cached_homepage_link = $link; } else { self::$cached_homepage_link = Config::inst()->get('SilverStripe\\CMS\\Controllers\\RootURLController', 'default_homepage_link'); } } } return self::$cached_homepage_link; } /** * Set the URL Segment used for your homepage when it is created by dev/build. * This allows you to use home page URLs other than the default "home". * * @deprecated 4.0 Use the "RootURLController.default_homepage_link" config setting instead * @param string $urlsegment the URL segment for your home page */ static public function set_default_homepage_link($urlsegment = "home") { Deprecation::notice('4.0', 'Use the "RootURLController.default_homepage_link" config setting instead'); Config::inst()->update('SilverStripe\\CMS\\Controllers\\RootURLController', 'default_homepage_link', $urlsegment); } /** * Gets the link that denotes the homepage if there is not one explicitly defined for this HTTP_HOST value. * * @deprecated 4.0 Use the "RootURLController.default_homepage_link" config setting instead * @return string */ static public function get_default_homepage_link() { Deprecation::notice('4.0', 'Use the "RootURLController.default_homepage_link" config setting instead'); return Config::inst()->get('SilverStripe\\CMS\\Controllers\\RootURLController', 'default_homepage_link'); } /** * Returns TRUE if a request to a certain page should be redirected to the site root (i.e. if the page acts as the * home page). * * @param SiteTree $page * @return bool */ static public function should_be_on_root(SiteTree $page) { if(!self::$is_at_root && self::get_homepage_link() == trim($page->RelativeLink(true), '/')) { return !( class_exists('Translatable') && $page->hasExtension('Translatable') && $page->Locale && $page->Locale != Translatable::default_locale() ); } return false; } /** * Resets the cached homepage link value - useful for testing. */ static public function reset() { self::$cached_homepage_link = null; } protected function beforeHandleRequest(SS_HTTPRequest $request, DataModel $model) { parent::beforeHandleRequest($request, $model); self::$is_at_root = true; /** @skipUpgrade */ if(!DB::is_active() || !ClassInfo::hasTable('SiteTree')) { $this->getResponse()->redirect(Controller::join_links( Director::absoluteBaseURL(), 'dev/build', '?' . http_build_query(array( 'returnURL' => isset($_GET['url']) ? $_GET['url'] : null, )) )); } } /** * @param SS_HTTPRequest $request * @param DataModel|null $model * @return SS_HTTPResponse */ public function handleRequest(SS_HTTPRequest $request, DataModel $model = null) { self::$is_at_root = true; $this->beforeHandleRequest($request, $model); if (!$this->getResponse()->isFinished()) { /** @skipUpgrade */ if (!DB::is_active() || !ClassInfo::hasTable('SiteTree')) { $this->getResponse()->redirect(Director::absoluteBaseURL() . 'dev/build?returnURL=' . (isset($_GET['url']) ? urlencode($_GET['url']) : null)); return $this->getResponse(); } $request->setUrl(self::get_homepage_link() . '/'); $request->match('$URLSegment//$Action', true); $controller = new ModelAsController(); $response = $controller->handleRequest($request, $model); $this->prepareResponse($response); } $this->afterHandleRequest(); return $this->getResponse(); } }